/* ============================================
   MODERN INSTITUTIONAL WARMTH DESIGN SYSTEM
   ============================================ */

/* ===== FONT IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
   /* === COLOR PALETTE === */
   /* Primary Colors - Navy Blues */
   --navy-deep: #0A2540;
   --navy-mid: #1C3D5A;
   --navy-light: #2E5075;
   
   /* Accent Colors - Purple Theme */
   --accent-warm: #9370DB;          /* Medium Purple */
   --accent-deep: #4B0082;          /* Deep Purple */
   --accent-light: #B8A2E3;         /* Light Purple */
   
   /* Background Colors */
   --bg-lavender: #E6E6FA;          /* Hero Background */
   --bg-cream: #FAF9F6;             /* Warm cream for sections */
   --bg-white: #FFFFFF;
   --bg-offwhite: #F8FAFF;
   
   /* Border & Divider Colors */
   --divider-lilac: #D8BFD8;        /* Soft Lilac */
   --border-light: #E9E4F4;
   --border-medium: #D4CCE6;
   
   /* Text Colors */
   --text-dark: #0A2540;
   --text-primary: #2D3748;
   --text-secondary: #4A5568;
   --text-light: #718096;
   
   /* Status & Brand Colors */
   --success: #10B981;
   --whatsapp: #25D366;
   --whatsapp-dark: #128C7E;
   --warning: #F59E0B;
   
   /* === EFFECTS & SHADOWS === */
   --shadow-subtle: 0 2px 12px rgba(10, 37, 64, 0.04);
   --shadow-medium: 0 4px 24px rgba(10, 37, 64, 0.08);
   --shadow-elevated: 0 8px 40px rgba(10, 37, 64, 0.12);
   --shadow-deep: 0 12px 60px rgba(10, 37, 64, 0.15);
   
   /* === TRANSITIONS === */
   --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
   
   /* === BORDER RADIUS === */
   --radius-sm: 8px;
   --radius-md: 16px;
   --radius-lg: 24px;
   --radius-xl: 32px;
   --radius-full: 100px;
}

/* ===== BASE RESET & SETUP ===== */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   text-decoration: none;
   scroll-behavior: smooth;
   list-style: none;
}

html {
   font-size: 16px;
   scroll-padding-top: 80px;
}

body {
   font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
   color: var(--text-primary);
   background: var(--bg-white);
   line-height: 1.6;
   overflow-x: hidden;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

/* Selection Styling */
::selection {
   background-color: rgba(147, 112, 219, 0.2);
   color: var(--text-dark);
}

/* ============================================
   FLOATING WHATSAPP CONTACT
   ============================================ */
.floating-contact {
   position: fixed;
   bottom: 30px;
   right: 30px;
   z-index: 1000;
}

.float-whatsapp {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 60px;
   height: 60px;
   background: var(--whatsapp);
   color: white;
   border-radius: 50%;
   box-shadow: var(--shadow-elevated);
   position: relative;
   transition: var(--transition-smooth);
   animation: float 3s ease-in-out infinite;
}

.float-whatsapp:hover {
   background: var(--whatsapp-dark);
   transform: scale(1.1);
   box-shadow: 0 6px 30px rgba(37, 211, 102, 0.3);
}

.float-whatsapp i {
   font-size: 1.5rem;
}

.float-tooltip {
   position: absolute;
   right: 70px;
   background: var(--text-dark);
   color: white;
   padding: 8px 16px;
   border-radius: var(--radius-sm);
   font-size: 0.85rem;
   white-space: nowrap;
   opacity: 0;
   transform: translateX(10px);
   transition: var(--transition-smooth);
   pointer-events: none;
}

.float-whatsapp:hover .float-tooltip {
   opacity: 1;
   transform: translateX(0);
}

/* Floating Animation */
@keyframes float {
   0%, 100% { transform: translateY(0); }
   50% { transform: translateY(-10px); }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
   position: fixed;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 1000;
   background: rgba(255, 255, 255, 0.96);
   backdrop-filter: blur(20px);
   border-bottom: 1px solid var(--border-light);
   transition: var(--transition-smooth);
   padding: 0.8rem 0;
}

.header-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

/* === LOGO SECTION === */
.logo-section {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.logo {
   display: flex;
   align-items: center;
   gap: 12px;
   position: relative;
}

.bank-logo {
   height: 45px;
   width: auto;
   filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
   transition: transform 0.3s ease;
}

.logo:hover .bank-logo {
   transform: scale(1.05);
}

.partner-badge {
   display: flex;
   align-items: center;
   gap: 6px;
   background: rgba(147, 112, 219, 0.1);
   padding: 4px 10px;
   border-radius: var(--radius-full);
   font-size: 0.75rem;
   font-weight: 600;
   color: var(--accent-warm);
}

.badge-dot {
   width: 6px;
   height: 6px;
   background: var(--success);
   border-radius: 50%;
   animation: pulse 2s infinite;
}

/* === MAIN NAVIGATION === */
.header-nav {
   display: flex;
   align-items: center;
}

.navbar {
   display: flex;
   gap: 2rem;
   align-items: center;
}

.nav-link {
   display: flex;
   align-items: center;
   gap: 8px;
   color: var(--text-primary);
   font-weight: 500;
   font-size: 0.9rem;
   padding: 8px 16px;
   border-radius: var(--radius-full);
   transition: var(--transition-smooth);
   position: relative;
   overflow: hidden;
}

.nav-link i {
   font-size: 1rem;
   color: var(--accent-warm);
   transition: var(--transition-smooth);
}

.nav-link span {
   position: relative;
   z-index: 1;
}

.nav-link::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.1), rgba(75, 0, 130, 0.05));
   border-radius: var(--radius-full);
   opacity: 0;
   transition: var(--transition-smooth);
}

.nav-link:hover::before {
   opacity: 1;
}

.nav-link:hover,
.nav-link.active {
   color: var(--accent-deep);
}

.nav-link.active i {
   color: var(--accent-deep);
}

.nav-link.active::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 20px;
   height: 3px;
   background: var(--accent-warm);
   border-radius: 2px;
}

/* Contact CTA Button */
.cta-contact {
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   color: white !important;
   padding: 10px 24px !important;
   font-weight: 600;
   box-shadow: var(--shadow-subtle);
}

.cta-contact i {
   color: white !important;
}

.cta-contact:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-medium);
}

/* === MOBILE MENU TOGGLE === */
.mobile-toggle {
   display: none;
   flex-direction: column;
   gap: 4px;
   cursor: pointer;
   padding: 10px;
}

.toggle-line {
   width: 24px;
   height: 2px;
   background: var(--text-dark);
   border-radius: 2px;
   transition: var(--transition-smooth);
}

/* === HEADER ACCENT LINE === */
.header-accent {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 1px;
   overflow: hidden;
}

.accent-line {
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
   animation: shimmer 3s infinite;
}

@keyframes shimmer {
   0%, 100% { transform: translateX(-100%); }
   50% { transform: translateX(100%); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
   min-height: 100vh;
   background: linear-gradient(135deg, var(--bg-lavender) 0%, #F0F2FF 100%);
   position: relative;
   overflow: hidden;
   padding-top: 100px;
}

/* === HERO BACKGROUND ORNAMENTS === */
.hero-ornament {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
}

.ornament-circle {
   position: absolute;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(147, 112, 219, 0.08) 0%, transparent 70%);
}

.circle-1 {
   width: 600px;
   height: 600px;
   top: -300px;
   right: -300px;
   animation: rotate 30s linear infinite;
}

.circle-2 {
   width: 400px;
   height: 400px;
   bottom: -200px;
   left: -200px;
   animation: rotate 40s linear infinite reverse;
}

.ornament-wave {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 150px;
   background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18 138.3 24.88 209.4 13.08 36.15-6 69.85-17.84 104.45-29.34C989.49 25 1113-14.29 1200 52.47V0z' fill='%23ffffff' opacity='.3'/%3E%3C/svg%3E");
   background-size: 1200px 120px;
}

/* Circle Rotation Animation */
@keyframes rotate {
   from { transform: rotate(0deg); }
   to { transform: rotate(360deg); }
}

/* === HERO CONTAINER LAYOUT === */
.hero-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 4rem 2rem;
   display: grid;
   grid-template-columns: 1.2fr 1fr;
   gap: 4rem;
   align-items: center;
   position: relative;
   z-index: 2;
}

/* === HERO CONTENT - LEFT SIDE === */
/* Professional Verification Badge */
.professional-tag {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: rgba(255, 255, 255, 0.9);
   backdrop-filter: blur(10px);
   padding: 10px 20px;
   border-radius: var(--radius-full);
   margin-bottom: 2rem;
   border: 1px solid rgba(147, 112, 219, 0.1);
   box-shadow: var(--shadow-subtle);
}

.tag-dot {
   width: 8px;
   height: 8px;
   background: var(--success);
   border-radius: 50%;
   animation: pulse 2s infinite;
}

.tag-text {
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--accent-deep);
   letter-spacing: 0.5px;
}

/* Name & Title Section */
.name-title {
   margin-bottom: 2rem;
}

/* Headline Text */
.headline-main {
   display: block;
   font-size: 3rem;
   font-weight: 800;
   color: var(--text-dark);
   line-height: 1.1;
   margin-bottom: 0.5rem;
}

.headline-sub {
   display: block;
   font-size: 2.5rem;
   font-weight: 300;
   color: var(--text-secondary);
   line-height: 1.2;
   font-style: italic;
}

/* Hero Description */
.hero-description {
   margin: 2rem 0;
   max-width: 500px;
}

.hero-description p {
   font-size: 1.2rem;
   line-height: 1.7;
   color: var(--text-secondary);
}

.bank-name {
   color: var(--accent-deep);
   font-weight: 700;
   position: relative;
   display: inline-block;
}

.bank-name::after {
   content: '';
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 100%;
   height: 2px;
   background: linear-gradient(90deg, var(--accent-warm), transparent);
   border-radius: 1px;
}

/* === TRUST INDICATORS === */
.trust-marks {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
   margin: 3rem 0;
   padding: 2rem;
   background: rgba(255, 255, 255, 0.7);
   backdrop-filter: blur(10px);
   border-radius: var(--radius-lg);
   border: 1px solid rgba(216, 191, 216, 0.3);
}

.trust-mark {
   display: flex;
   gap: 1rem;
   align-items: center;
}

.mark-icon {
   width: 48px;
   height: 48px;
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.1), rgba(75, 0, 130, 0.05));
   border-radius: var(--radius-md);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.mark-icon i {
   font-size: 1.2rem;
   color: var(--accent-warm);
}

.mark-content h4 {
   font-size: 0.95rem;
   font-weight: 700;
   color: var(--text-dark);
   margin-bottom: 4px;
}

.mark-content p {
   font-size: 0.85rem;
   color: var(--text-light);
   margin: 0;
}

.mark-content strong {
   color: var(--accent-deep);
   font-weight: 700;
}

/* === CALL-TO-ACTION BUTTONS === */
.hero-actions {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   margin: 2rem 0;
}

.action-btn {
   display: block;
   text-decoration: none;
   border-radius: var(--radius-md);
   overflow: hidden;
   transition: var(--transition-smooth);
}

/* Primary Action Button */
.primary-action {
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   color: white;
   box-shadow: var(--shadow-medium);
}

/* Secondary Action Button */
.secondary-action {
   background: white;
   color: var(--text-dark);
   box-shadow: var(--shadow-subtle);
   border: 1px solid var(--border-light);
}

/* Button Wrapper */
.btn-wrapper {
   padding: 1.5rem 2rem;
   display: flex;
   align-items: center;
   gap: 1.5rem;
}

.btn-icon {
   width: 48px;
   height: 48px;
   border-radius: var(--radius-md);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.primary-action .btn-icon {
   background: rgba(255, 255, 255, 0.2);
}

.secondary-action .btn-icon {
   background: rgba(147, 112, 219, 0.1);
}

.btn-icon i {
   font-size: 1.2rem;
}

.secondary-action .btn-icon i {
   color: var(--whatsapp);
}

.btn-text {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 4px;
}

.btn-title {
   font-size: 1.1rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.btn-sub {
   font-size: 0.85rem;
   opacity: 0.9;
}

.btn-arrow {
   opacity: 0.8;
   transition: var(--transition-smooth);
}

.action-btn:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-elevated);
}

.primary-action:hover .btn-arrow {
   transform: translateX(5px);
}

/* === VERIFICATION BLOCK === */
.verification-block {
   margin-top: 2rem;
}

.verify-link {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   color: var(--text-light);
   font-size: 0.9rem;
   padding: 12px 20px;
   background: rgba(255, 255, 255, 0.7);
   border-radius: var(--radius-full);
   border: 1px solid var(--border-light);
   transition: var(--transition-smooth);
   backdrop-filter: blur(10px);
}

.verify-link:hover {
   color: var(--accent-deep);
   border-color: var(--accent-light);
   background: white;
   transform: translateX(5px);
}

/* === HERO IMAGE - RIGHT SIDE === */
.hero-image {
   position: relative;
}

.image-frame {
   position: relative;
   margin-bottom: 2rem;
}

.image-container {
   position: relative;
   background: white;
   padding: 20px;
   border-radius: var(--radius-xl);
   box-shadow: var(--shadow-deep);
   overflow: hidden;
}

.agent-portrait {
   width: 100%;
   height: 450px;
   object-fit: cover;
   border-radius: var(--radius-lg);
   display: block;
   transition: var(--transition-smooth);
}

.image-container:hover .agent-portrait {
   transform: scale(1.02);
}

/* Portrait Decoration Elements */
.portrait-decoration {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
}

.decoration-dot {
   position: absolute;
   width: 12px;
   height: 12px;
   background: var(--accent-light);
   border-radius: 50%;
   animation: pulse 3s infinite;
}

.dot-1 { top: 30px; left: 30px; animation-delay: 0.2s; }
.dot-2 { bottom: 30px; right: 30px; animation-delay: 0.4s; }

.decoration-line {
   position: absolute;
   top: 50%;
   left: 20px;
   right: 20px;
   height: 1px;
   background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
   transform: translateY(-50%);
}

/* Portrait Badge */
.portrait-badge {
   position: absolute;
   bottom: -15px;
   left: 50%;
   transform: translateX(-50%);
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   color: white;
   padding: 1rem 2rem;
   border-radius: var(--radius-full);
   display: flex;
   align-items: center;
   gap: 12px;
   box-shadow: var(--shadow-medium);
   z-index: 2;
}

.portrait-badge i {
   font-size: 1.2rem;
}

.badge-content {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.badge-content span {
   font-size: 0.8rem;
   opacity: 0.9;
}

.badge-content strong {
   font-size: 1rem;
   font-weight: 700;
}

/* === OPEN ACCOUNT CTA === */
.open-account-cta {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 2rem;
}

.account-cta-btn {
   display: block;
   text-decoration: none;
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   color: white;
   border-radius: var(--radius-md);
   overflow: hidden;
   transition: var(--transition-smooth);
   box-shadow: var(--shadow-medium);
   width: 100%;
   max-width: 400px;
}

.account-cta-btn:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-elevated);
}

.cta-wrapper {
   padding: 1.5rem 2rem;
   display: flex;
   align-items: center;
   gap: 1.5rem;
}

.cta-icon {
   width: 50px;
   height: 50px;
   background: rgba(255, 255, 255, 0.2);
   border-radius: var(--radius-md);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.cta-icon i {
   font-size: 1.5rem;
   color: white;
}

.cta-text {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 4px;
}

.cta-main {
   font-size: 1.3rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.cta-sub {
   font-size: 0.9rem;
   opacity: 0.9;
   font-weight: 500;
}

.cta-arrow {
   transition: var(--transition-smooth);
   font-size: 1.2rem;
}

.account-cta-btn:hover .cta-arrow {
   transform: translateX(5px);
}

/* ============================================
   BANK LOGOS SLIDER
   ============================================ */
.partners-header {
   max-width: 1200px;
   margin: 1.5rem auto 0;
   padding: 0 1rem;
   text-align: center;
}

.partners-title {
   font-size: 1.5rem;
   font-weight: 800;
   color: var(--text-dark);
   margin: 0 0 1rem 0;
   letter-spacing: 0.8px;
   text-transform: uppercase;
   line-height: 1.1;
}

.bank-logos-slider {
   max-width: 100%;
   margin: 1.5rem auto 0;
   padding: 0;
   text-align: center;
}

/* Slider Container */
.slider {
   height: 90px;
   margin: 0 auto;
   overflow: hidden;
   position: relative;
   width: 100%;
}

/* Gradient Edges */
.slider::before,
.slider::after {
   content: '';
   position: absolute;
   top: 0;
   width: 80px;
   height: 100%;
   z-index: 2;
   pointer-events: none;
   opacity: 0.8;
}

.slider::before {
   left: 0;
   background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.slider::after {
   right: 0;
   background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

/* Slide Track - Infinite Scroll */
.slide-track {
   animation: scroll 30s linear infinite;
   display: flex;
   align-items: center;
   width: calc(180px * 20);
   height: 100%;
}

/* Individual Slide */
.slide {
   height: 90px;
   width: 160px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   padding: 0 1rem;
}

.slide img {
   height: auto;
   width: 140px;
   max-height: 60px;
   object-fit: contain;
   filter: grayscale(0%) brightness(1.1) sepia(1) hue-rotate(60deg) saturate(1.5);
   opacity: 0.9;
   transition: all 0.4s ease;
}

.slide:hover img {
   filter: grayscale(100%) brightness(0.9);
   opacity: 0.7;
   transform: scale(1.02);
}

/* Slide Animation */
@keyframes scroll {
   0% { transform: translateX(0); }
   100% { transform: translateX(calc(-160px * 16)); }
}

/* Pause on Hover */
.slider:hover .slide-track {
   animation-play-state: paused;
}

/* Slider Note */
.slider-note {
   color: var(--text-light);
   font-size: 0.85rem;
   margin-top: 0.8rem;
   font-style: italic;
   opacity: 0.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
   background: var(--bg-cream);
   padding: 6rem 2rem;
   position: relative;
}

/* === SECTION HEADER === */
.section-header {
   text-align: center;
   margin-bottom: 4rem;
}

.header-decoration {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   margin-bottom: 1.5rem;
}

.decoration-line {
   width: 60px;
   height: 2px;
   background: linear-gradient(90deg, transparent, var(--accent-warm), transparent);
}

.decoration-diamond {
   width: 12px;
   height: 12px;
   background: var(--accent-warm);
   transform: rotate(45deg);
}

.section-header h2 {
   font-family: 'DM Serif Display', serif;
   font-size: 3rem;
   font-weight: 400;
   color: var(--text-dark);
   margin-bottom: 0.5rem;
}

.section-subtitle {
   font-size: 1.1rem;
   color: var(--accent-warm);
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 2px;
}

/* === ABOUT CONTAINER LAYOUT === */
.about-container {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 4rem;
   align-items: start;
}

/* === LEFT COLUMN: VISUAL ELEMENTS === */
.about-visual {
   position: relative;
}

.visual-frame {
   position: relative;
   margin-bottom: 2rem;
}

/* Image Decoration */
.image-decoration {
   position: absolute;
   top: -10px;
   left: -10px;
   right: -10px;
   bottom: -10px;
   z-index: 1;
   pointer-events: none;
}

.decor-border {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   border: 2px solid var(--accent-light);
   border-radius: var(--radius-xl);
   opacity: 0.5;
}

.decor-corner {
   position: absolute;
   width: 24px;
   height: 24px;
   border: 2px solid var(--accent-warm);
   opacity: 0.7;
}

.corner-1 { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.corner-2 { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.corner-3 { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.corner-4 { bottom: 10px; right: 10px; border-left: none; border-top: none; }

/* About Portrait */
.about-portrait {
   width: 100%;
   height: 400px;
   object-fit: cover;
   border-radius: var(--radius-lg);
   position: relative;
   z-index: 2;
   box-shadow: var(--shadow-deep);
}

/* Visual Badge */
.visual-badge {
   position: absolute;
   bottom: -20px;
   left: 50%;
   transform: translateX(-50%);
   background: white;
   padding: 1rem 1.5rem;
   border-radius: var(--radius-full);
   display: flex;
   align-items: center;
   gap: 12px;
   box-shadow: var(--shadow-medium);
   z-index: 3;
}

.badge-icon {
   width: 40px;
   height: 40px;
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
}

.badge-details {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.badge-details span {
   font-size: 0.8rem;
   color: var(--text-light);
}

.badge-details strong {
   font-size: 1rem;
   color: var(--text-dark);
   font-weight: 700;
}

/* === CREDENTIALS SECTION === */
.credentials {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   padding: 1.5rem;
   background: white;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-subtle);
}

.credential-item {
   display: flex;
   align-items: center;
   gap: 1rem;
   padding: 1rem;
   border-radius: var(--radius-md);
   background: var(--bg-offwhite);
   transition: var(--transition-smooth);
}

.credential-item:hover {
   background: rgba(147, 112, 219, 0.05);
   transform: translateX(5px);
}

.credential-item i {
   font-size: 1.2rem;
   color: var(--accent-warm);
}

.credential-text {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.credential-text span {
   font-weight: 600;
   color: var(--text-dark);
}

.credential-text small {
   font-size: 0.85rem;
   color: var(--text-light);
}

/* === RIGHT COLUMN: CONTENT === */
.about-content {
   display: flex;
   flex-direction: column;
   gap: 3rem;
}

/* Role Statement */
.role-statement {
   padding: 2rem;
   background: white;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-subtle);
   border-left: 4px solid var(--accent-warm);
}

.statement-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.1), rgba(75, 0, 130, 0.05));
   border-radius: var(--radius-md);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 1.5rem;
}

.statement-icon i {
   font-size: 1.5rem;
   color: var(--accent-warm);
}

.role-statement h3 {
   font-size: 1.8rem;
   color: var(--text-dark);
   margin-bottom: 1rem;
}

.statement-text {
   font-size: 1.1rem;
   line-height: 1.7;
   color: var(--text-secondary);
   margin: 0;
}

/* === RESPONSIBILITY GRID === */
.responsibility-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem;
}

.responsibility-card {
   background: white;
   padding: 1.5rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-subtle);
   transition: var(--transition-smooth);
   border: 1px solid var(--border-light);
}

.responsibility-card:hover {
   transform: translateY(-5px);
   box-shadow: var(--shadow-medium);
   border-color: var(--accent-light);
}

.card-icon {
   width: 48px;
   height: 48px;
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.1), rgba(75, 0, 130, 0.05));
   border-radius: var(--radius-md);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 1rem;
}

.card-icon i {
   font-size: 1.2rem;
   color: var(--accent-warm);
}

.card-content h4 {
   font-size: 1.1rem;
   color: var(--text-dark);
   margin-bottom: 0.5rem;
   font-weight: 600;
}

.card-content p {
   font-size: 0.95rem;
   color: var(--text-secondary);
   line-height: 1.5;
   margin: 0;
}

/* === APPROACH STATEMENT === */
.approach-statement {
   padding: 2rem;
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.05), rgba(75, 0, 130, 0.02));
   border-radius: var(--radius-lg);
   border: 1px solid rgba(216, 191, 216, 0.3);
}

.approach-statement h3 {
   font-size: 1.5rem;
   color: var(--text-dark);
   margin-bottom: 1.5rem;
}

.approach-points {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.approach-point {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
}

.point-check {
   width: 24px;
   height: 24px;
   background: var(--success);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   margin-top: 2px;
}

.point-check i {
   font-size: 0.8rem;
}

.approach-point span {
   color: var(--text-secondary);
   line-height: 1.6;
   font-size: 1rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
   background: var(--bg-white);
   padding: 6rem 2rem;
   position: relative;
}

.services-container {
   max-width: 1200px;
   margin: 0 auto;
}

/* Services Grid */
.services-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 3rem;
   margin: 4rem 0;
}

.services-card {
   background: white;
   border-radius: var(--radius-xl);
   padding: 2.5rem;
   box-shadow: var(--shadow-medium);
   transition: var(--transition-smooth);
   border: 1px solid var(--border-light);
}

.services-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-elevated);
   border-color: var(--accent-light);
}

.services-card-header {
   text-align: center;
   margin-bottom: 2.5rem;
}

.services-icon {
   width: 80px;
   height: 80px;
   margin: 0 auto 1.5rem;
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   border-radius: var(--radius-lg);
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 2rem;
}

.services-card h3 {
   font-size: 1.8rem;
   color: var(--text-dark);
   margin-bottom: 0.5rem;
   font-weight: 700;
}

.services-subtitle {
   color: var(--text-secondary);
   font-size: 1rem;
   font-weight: 500;
}

/* Services List */
.services-list {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.service-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
   padding: 1.2rem;
   background: var(--bg-offwhite);
   border-radius: var(--radius-md);
   transition: var(--transition-smooth);
}

.service-item:hover {
   background: white;
   box-shadow: var(--shadow-subtle);
   transform: translateX(5px);
}

.service-icon {
   width: 48px;
   height: 48px;
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.1), rgba(75, 0, 130, 0.05));
   border-radius: var(--radius-md);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   margin-top: 2px;
}

.service-icon i {
   font-size: 1.2rem;
   color: var(--accent-warm);
}

.service-content {
   flex: 1;
}

.service-content h4 {
   font-size: 1.1rem;
   color: var(--text-dark);
   margin-bottom: 0.4rem;
   font-weight: 600;
}

.service-content p {
   font-size: 0.95rem;
   color: var(--text-secondary);
   line-height: 1.5;
   margin: 0;
}

/* Policy Note */
.policy-note {
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.05), rgba(75, 0, 130, 0.02));
   border-radius: var(--radius-lg);
   padding: 2rem;
   margin: 3rem 0;
   border-left: 4px solid var(--accent-warm);
   display: flex;
   gap: 1.5rem;
   align-items: flex-start;
}

.policy-icon {
   width: 40px;
   height: 40px;
   background: var(--accent-warm);
   border-radius: var(--radius-md);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   color: white;
}

.policy-note p {
   color: var(--text-secondary);
   font-size: 1rem;
   line-height: 1.6;
   margin: 0;
}

/* Clients Section */
.clients-section {
   background: var(--bg-cream);
   border-radius: var(--radius-xl);
   padding: 3rem;
   margin: 4rem 0;
}

.clients-header {
   text-align: center;
   margin-bottom: 3rem;
}

.clients-header h3 {
   font-size: 2rem;
   color: var(--text-dark);
   margin-bottom: 0.5rem;
   font-weight: 700;
}

.clients-header p {
   color: var(--text-secondary);
   font-size: 1.1rem;
}

.clients-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
}

.client-profile {
   background: white;
   padding: 2rem;
   border-radius: var(--radius-lg);
   text-align: center;
   transition: var(--transition-smooth);
   box-shadow: var(--shadow-subtle);
}

.client-profile:hover {
   transform: translateY(-5px);
   box-shadow: var(--shadow-medium);
}

.client-icon {
   width: 60px;
   height: 60px;
   margin: 0 auto 1.5rem;
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   border-radius: var(--radius-lg);
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 1.5rem;
}

.client-profile h4 {
   font-size: 1.1rem;
   color: var(--text-dark);
   margin-bottom: 0.8rem;
   font-weight: 600;
}

.client-profile p {
   color: var(--text-secondary);
   font-size: 0.95rem;
   line-height: 1.5;
   margin: 0;
}

/* Services CTA */
.services-cta {
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   border-radius: var(--radius-xl);
   padding: 4rem;
   text-align: center;
   color: white;
   margin-top: 4rem;
}

.services-cta .cta-content h3 {
   font-size: 2rem;
   margin-bottom: 1rem;
   font-weight: 700;
   color: white;
}

.services-cta .cta-content p {
   font-size: 1.1rem;
   opacity: 0.9;
   margin-bottom: 2rem;
   color: white;
}

.cta-button {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   background: white;
   color: var(--accent-deep);
   padding: 1rem 2.5rem;
   border-radius: var(--radius-full);
   font-weight: 600;
   font-size: 1.1rem;
   text-decoration: none;
   transition: var(--transition-smooth);
   box-shadow: var(--shadow-medium);
}

.cta-button:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-elevated);
   color: var(--accent-warm);
}

.cta-button i {
   font-size: 1.2rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
   background: var(--bg-cream);
   padding: 6rem 2rem;
   position: relative;
   overflow: hidden;
}

.process-container {
   max-width: 1200px;
   margin: 0 auto;
   position: relative;
   z-index: 2;
}

/* ===== JOURNEY MAP ===== */
.journey-map {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   position: relative;
   margin: 4rem 0;
   gap: 2rem;
}

.process-step {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   position: relative;
   min-height: 420px;
}

/* Step Header */
.step-header {
   display: flex;
   flex-direction: column;
   align-items: center;
   margin-bottom: 1.5rem;
   position: relative;
}

.step-badge {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   z-index: 2;
   box-shadow: 0 8px 25px rgba(147, 112, 219, 0.3);
   margin-bottom: 1rem;
}

.step-number {
   font-size: 1.5rem;
   font-weight: 800;
   color: white;
   z-index: 3;
}

.badge-decoration {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
}

.sparkle {
   position: absolute;
   width: 6px;
   height: 6px;
   background: white;
   border-radius: 50%;
   opacity: 0.7;
   animation: sparkle 3s infinite;
}

.sparkle:nth-child(1) {
   top: 10px;
   left: 10px;
   animation-delay: 0.2s;
}

.sparkle:nth-child(2) {
   top: 10px;
   right: 10px;
   animation-delay: 0.4s;
}

.sparkle:nth-child(3) {
   bottom: 10px;
   left: 50%;
   transform: translateX(-50%);
   animation-delay: 0.6s;
}

.step-icon {
   width: 48px;
   height: 48px;
   background: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: var(--shadow-subtle);
   border: 2px solid var(--border-light);
}

.step-icon i {
   font-size: 1.5rem;
   color: var(--accent-deep);
}

/* Step Card - Consistent Layout */
.step-card {
   background: white;
   border-radius: var(--radius-xl);
   padding: 2rem;
   box-shadow: var(--shadow-medium);
   transition: var(--transition-smooth);
   border: 1px solid var(--border-light);
   text-align: center;
   width: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   min-height: 320px;
   position: relative;
}

.step-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-elevated);
   border-color: var(--accent-light);
}

.card-content {
   margin-bottom: 1.5rem;
   flex: 1;
}

.step-title {
   font-size: 1.3rem;
   color: var(--text-dark);
   margin-bottom: 0.8rem;
   font-weight: 700;
   min-height: 3rem;
   display: flex;
   align-items: center;
   justify-content: center;
}

.step-description {
   color: var(--text-secondary);
   font-size: 0.95rem;
   line-height: 1.5;
   margin: 0 0 1rem 0;
   min-height: 3.5rem;
}

/* ===== DOCUMENT DOWNLOADS SECTION ===== */
.document-downloads {
   margin: 1.2rem 0 1.5rem 0;
   text-align: left;
}

.downloads-label {
   font-size: 0.85rem;
   font-weight: 600;
   color: var(--text-dark);
   margin: 0 0 1rem 0;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   display: block;
}

.document-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
   margin-bottom: 1.5rem;
}

.doc-download-link {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 1rem;
   background: var(--bg-offwhite);
   color: var(--text-dark);
   border: 1px solid var(--border-light);
   border-radius: var(--radius-md);
   text-decoration: none;
   font-weight: 500;
   font-size: 0.9rem;
   transition: var(--transition-smooth);
   text-align: left;
   height: 100%;
   min-height: 72px;
}

.doc-download-link:hover {
   background: var(--accent-light);
   color: white;
   border-color: var(--accent-warm);
   transform: translateY(-2px);
   box-shadow: var(--shadow-subtle);
}

.doc-download-link:hover .doc-icon {
   background: rgba(255, 255, 255, 0.2);
}

.doc-download-link:hover .doc-title,
.doc-download-link:hover .doc-size,
.doc-download-link:hover .doc-action {
   color: white;
}

.doc-icon {
   width: 40px;
   height: 40px;
   min-width: 40px;
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.1), rgba(75, 0, 130, 0.05));
   border-radius: var(--radius-sm);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition-smooth);
}

.doc-icon i {
   font-size: 1.2rem;
   color: var(--accent-deep);
   transition: var(--transition-smooth);
}

.doc-info {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 4px;
}

.doc-title {
   font-weight: 600;
   font-size: 0.9rem;
   line-height: 1.2;
   color: var(--text-dark);
   transition: var(--transition-smooth);
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.doc-size {
   font-size: 0.75rem;
   color: var(--text-secondary);
   transition: var(--transition-smooth);
}

.doc-action {
   font-size: 1rem;
   color: var(--accent-warm);
   margin-left: auto;
   transition: var(--transition-smooth);
}

/* Download All Button */
.download-all-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   color: white;
   padding: 0.9rem 1.8rem;
   border-radius: var(--radius-full);
   font-weight: 600;
   font-size: 0.95rem;
   text-decoration: none;
   transition: var(--transition-smooth);
   border: none;
   width: 100%;
   max-width: 280px;
   margin: 0 auto;
   cursor: pointer;
   box-shadow: 0 4px 12px rgba(147, 112, 219, 0.2);
}

.download-all-btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 20px rgba(147, 112, 219, 0.3);
   background: linear-gradient(135deg, var(--accent-deep), var(--accent-warm));
}

.download-all-btn i {
   font-size: 1rem;
}

/* Step CTA Button - For other steps */
.step-cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.1), rgba(75, 0, 130, 0.05));
   color: var(--accent-deep);
   padding: 0.8rem 1.5rem;
   border-radius: var(--radius-full);
   font-weight: 600;
   font-size: 0.9rem;
   text-decoration: none;
   transition: var(--transition-smooth);
   border: 1px solid var(--border-light);
   width: 100%;
   max-width: 250px;
   margin: 0 auto;
   cursor: pointer;
}

.step-cta:hover {
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   color: white;
   border-color: var(--accent-warm);
   transform: translateY(-2px);
   box-shadow: var(--shadow-subtle);
}

.step-cta i {
   font-size: 0.9rem;
}

/* Connector Arrows */
.connector {
   flex: 0 0 60px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   position: relative;
   margin-top: 30px;
}

.arrow-line {
   width: 100%;
   height: 3px;
   background: linear-gradient(90deg, 
      rgba(147, 112, 219, 0.3), 
      rgba(147, 112, 219, 0.8),
      rgba(147, 112, 219, 0.3)
   );
   border-radius: 2px;
   position: relative;
   animation: flow 3s linear infinite;
   background-size: 200% 100%;
}

.arrow-head {
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.arrow-tip {
   width: 12px;
   height: 3px;
   background: var(--accent-warm);
   border-radius: 2px;
}

.arrow-tip:first-child {
   transform: rotate(45deg) translateY(1px);
}

.arrow-tip:last-child {
   transform: rotate(-45deg) translateY(-1px);
}

/* Animations */
@keyframes sparkle {
   0%, 100% {
      opacity: 0.3;
      transform: scale(0.8);
   }
   50% {
      opacity: 1;
      transform: scale(1.2);
   }
}

@keyframes flow {
   0% {
      background-position: 200% 0;
   }
   100% {
      background-position: -200% 0;
   }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
   background: white;
   border-radius: var(--radius-xl);
   padding: 4rem;
   margin-top: 6rem;
   box-shadow: var(--shadow-medium);
   border: 1px solid var(--border-light);
}

.benefits-header {
   text-align: center;
   margin-bottom: 3rem;
}

.benefits-header h3 {
   font-size: 2rem;
   color: var(--text-dark);
   margin-bottom: 0.5rem;
   font-weight: 700;
}

.benefits-header p {
   color: var(--text-secondary);
   font-size: 1.1rem;
}

.benefits-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-bottom: 4rem;
}

.benefit-card {
   text-align: center;
   padding: 2rem;
   border-radius: var(--radius-lg);
   background: var(--bg-offwhite);
   transition: var(--transition-smooth);
   border: 1px solid transparent;
}

.benefit-card:hover {
   background: white;
   border-color: var(--accent-light);
   transform: translateY(-5px);
   box-shadow: var(--shadow-subtle);
}

.benefit-icon {
   width: 60px;
   height: 60px;
   margin: 0 auto 1.5rem;
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.1), rgba(75, 0, 130, 0.05));
   border-radius: var(--radius-lg);
   display: flex;
   align-items: center;
   justify-content: center;
}

.benefit-icon i {
   font-size: 1.5rem;
   color: var(--accent-warm);
}

.benefit-card h4 {
   font-size: 1.1rem;
   color: var(--text-dark);
   margin-bottom: 0.8rem;
   font-weight: 600;
}

.benefit-card p {
   color: var(--text-secondary);
   font-size: 0.95rem;
   line-height: 1.5;
   margin: 0;
}

/* ===== PROCESS CTA ===== */
.process-cta {
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   border-radius: var(--radius-xl);
   padding: 3rem;
   text-align: center;
   color: white;
   margin-top: 4rem;
   position: relative;
   overflow: hidden;
}

.process-cta .cta-content h3 {
   font-size: 1.8rem;
   color: white;
   margin-bottom: 1rem;
   font-weight: 700;
}

.process-cta .cta-content p {
   color: white;
   font-size: 1.1rem;
   margin-bottom: 2rem;
}

.cta-buttons {
   display: flex;
   justify-content: center;
   gap: 1.5rem;
   flex-wrap: wrap;
}

.cta-button {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   padding: 1rem 2.5rem;
   border-radius: var(--radius-full);
   font-weight: 600;
   font-size: 1rem;
   text-decoration: none;
   transition: var(--transition-smooth);
   border: 2px solid transparent;
}

.cta-button.primary {
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   color: white;
   box-shadow: var(--shadow-medium);
}

.cta-button.primary:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-elevated);
   border-color: rgba(255, 255, 255, 0.2);
}

.cta-button.secondary {
   background: white;
   color: var(--text-dark);
   border-color: var(--border-medium);
   box-shadow: var(--shadow-subtle);
}

.cta-button.secondary:hover {
   background: var(--bg-offwhite);
   transform: translateY(-4px);
   box-shadow: var(--shadow-medium);
   border-color: var(--accent-light);
}

.cta-button i {
   font-size: 1.1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
   .journey-map {
      flex-direction: column;
      gap: 3rem;
   }
   
   .process-step {
      width: 100%;
      min-height: auto;
   }
   
   .connector {
      display: none;
   }
   
   .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   .process-section {
      padding: 4rem 1rem;
   }
   
   .document-grid {
      grid-template-columns: 1fr;
      gap: 0.8rem;
   }
   
   .doc-download-link {
      min-height: 68px;
   }
   
   .benefits-grid {
      grid-template-columns: 1fr;
   }
   
   .benefits-section {
      padding: 2rem;
   }
   
   .process-cta {
      padding: 2rem;
   }
   
   .cta-buttons {
      flex-direction: column;
      align-items: center;
   }
   
   .cta-button {
      width: 100%;
      justify-content: center;
   }
}

@media (max-width: 480px) {
   .step-card {
      padding: 1.5rem;
   }
   
   .document-grid {
      gap: 0.6rem;
   }
   
   .doc-download-link {
      padding: 0.8rem;
      gap: 10px;
   }
   
   .doc-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
   }
   
   .doc-title {
      font-size: 0.85rem;
   }
   
   .download-all-btn {
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem;
   }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
   background: linear-gradient(135deg, 
      rgba(230, 230, 250, 0.1), 
      rgba(248, 250, 255, 0.9)
   );
   padding: 6rem 2rem;
   position: relative;
   overflow: hidden;
}

.contact-container {
   max-width: 1200px;
   margin: 0 auto;
   position: relative;
   z-index: 2;
}

.contact-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   margin: 4rem 0;
   align-items: start;
}

/* ===== LEFT COLUMN: CONTACT INFORMATION ===== */
.contact-info {
   display: flex;
   flex-direction: column;
   gap: 2.5rem;
}

.contact-methods-container {
   background: white;
   border-radius: var(--radius-xl);
   padding: 2.5rem;
   box-shadow: var(--shadow-medium);
   border: 1px solid var(--border-light);
}

.contact-method {
   background: transparent;
   padding: 1.5rem;
   border-radius: var(--radius-lg);
   transition: var(--transition-smooth);
   display: flex;
   gap: 1.5rem;
   align-items: flex-start;
   border: 1px solid transparent;
}

.contact-method:hover {
   background: var(--bg-offwhite);
   transform: translateY(-3px);
   box-shadow: var(--shadow-subtle);
   border-color: var(--accent-light);
}

.method-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.1), rgba(75, 0, 130, 0.05));
   border-radius: var(--radius-md);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   margin-top: 5px;
}

.method-icon i {
   font-size: 1.5rem;
   color: var(--accent-warm);
}

.method-content {
   flex: 1;
}

.method-content h4 {
   font-size: 1.1rem;
   color: var(--text-dark);
   margin-bottom: 0.8rem;
   font-weight: 600;
}

.contact-link {
   display: block;
   color: var(--accent-deep);
   font-size: 1.2rem;
   font-weight: 600;
   margin-bottom: 0.5rem;
   text-decoration: none;
   transition: var(--transition-smooth);
   position: relative;
   padding-bottom: 5px;
}

.contact-link:hover {
   color: var(--accent-warm);
   transform: translateX(5px);
}

.contact-link::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--accent-warm);
   transition: width 0.3s ease;
}

.contact-link:hover::after {
   width: 100%;
}

.response-time,
.availability {
   color: var(--text-secondary);
   font-size: 0.9rem;
   margin: 0;
   font-style: italic;
}

/* Live Chat Specific */
.live-chat .method-icon {
   background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.05));
}

.live-chat .method-icon i {
   color: var(--whatsapp);
}

.live-chat-btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: var(--whatsapp);
   color: white;
   padding: 0.8rem 1.5rem;
   border-radius: var(--radius-full);
   font-weight: 600;
   text-decoration: none;
   margin-top: 1rem;
   transition: var(--transition-smooth);
   box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.live-chat-btn:hover {
   background: var(--whatsapp-dark);
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.live-chat-btn i {
   font-size: 1.2rem;
}

/* Support Note */
.support-note {
   background: linear-gradient(135deg, rgba(147, 112, 219, 0.05), rgba(75, 0, 130, 0.02));
   border-radius: var(--radius-lg);
   padding: 1.5rem;
   border-left: 4px solid var(--accent-warm);
   display: flex;
   gap: 1rem;
   align-items: flex-start;
   margin-top: 2rem;
}

.note-icon {
   width: 40px;
   height: 40px;
   background: var(--accent-warm);
   border-radius: var(--radius-md);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   color: white;
}

.note-icon i {
   font-size: 1.2rem;
}

.note-content h5 {
   font-size: 1rem;
   color: var(--text-dark);
   margin-bottom: 0.5rem;
   font-weight: 600;
}

.note-content p {
   color: var(--text-secondary);
   font-size: 0.9rem;
   line-height: 1.5;
   margin: 0;
}

/* ===== RIGHT COLUMN: CONTACT FORM ===== */
.contact-form-container {
   background: white;
   border-radius: var(--radius-xl);
   padding: 2.5rem;
   box-shadow: var(--shadow-medium);
   border: 1px solid var(--border-light);
}

.contact-form {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.form-group {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
}

.form-group label {
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--text-dark);
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
   padding: 1rem 1.5rem;
   border: 2px solid var(--border-light);
   border-radius: var(--radius-md);
   font-family: 'Inter', sans-serif;
   font-size: 1rem;
   color: var(--text-primary);
   background: var(--bg-offwhite);
   transition: var(--transition-smooth);
   outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
   border-color: var(--accent-light);
   background: white;
   box-shadow: 0 0 0 3px rgba(147, 112, 219, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
   color: var(--text-light);
   opacity: 0.7;
}

.message-group textarea {
   resize: vertical;
   min-height: 120px;
}

/* Submit Button */
.submit-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 12px;
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   color: white;
   border: none;
   padding: 1.2rem 2.5rem;
   border-radius: var(--radius-full);
   font-size: 1.1rem;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition-smooth);
   margin-top: 1rem;
   box-shadow: var(--shadow-medium);
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.submit-btn:hover {
   transform: translateY(-3px);
   box-shadow: var(--shadow-elevated);
   background: linear-gradient(135deg, var(--accent-deep), var(--accent-warm));
}

.submit-btn:disabled {
   opacity: 0.7;
   cursor: not-allowed;
   transform: none !important;
}

.submit-btn i {
   font-size: 1.1rem;
}

/* Form Note */
.form-note {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-top: 2rem;
   padding: 1rem;
   background: var(--bg-offwhite);
   border-radius: var(--radius-md);
   border: 1px solid var(--border-light);
}

.form-note i {
   color: var(--success);
   font-size: 1.1rem;
}

.form-note p {
   color: var(--text-secondary);
   font-size: 0.85rem;
   margin: 0;
   line-height: 1.4;
}

/* Form Notifications */
.form-notification {
   margin-bottom: 1.5rem;
   padding: 1rem;
   border-radius: var(--radius-md);
   animation: slideDown 0.3s ease-out;
}

.form-notification-success {
   background: rgba(16, 185, 129, 0.1);
   border: 1px solid var(--success);
   color: var(--success);
}

.form-notification-error {
   background: rgba(239, 68, 68, 0.1);
   border: 1px solid #ef4444;
   color: #ef4444;
}

.notification-content {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 500;
}

.notification-content i {
   font-size: 1.2rem;
}

.notification-fade-out {
   animation: fadeOut 0.3s ease-out forwards;
}

@keyframes slideDown {
   from {
      opacity: 0;
      transform: translateY(-10px);
   }
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes fadeOut {
   to {
      opacity: 0;
      transform: translateY(-10px);
   }
}

/* ===== CONTACT CTA ===== */
.contact-cta {
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   border-radius: var(--radius-xl);
   padding: 4rem;
   text-align: center;
   color: white;
   margin-top: 4rem;
   position: relative;
   overflow: hidden;
}

.contact-cta .cta-content h3 {
   font-size: 2rem;
   margin-bottom: 1rem;
   font-weight: 700;
   color: white;
}

.contact-cta .cta-content p {
   font-size: 1.1rem;
   opacity: 0.9;
   margin-bottom: 2rem;
   color: white;
}

.contact-cta::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm56-76c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' opacity='0.05'/%3E%3C/svg%3E");
   opacity: 0.3;
}

.cta-content {
   position: relative;
   z-index: 2;
}

.cta-content h3 {
   font-size: 2rem;
   margin-bottom: 1rem;
   font-weight: 700;
   gap: 1.5rem;
   flex-wrap: wrap;
}

.whatsapp-btn {
   background: var(--whatsapp);
   color: white;
   border: 2px solid var(--whatsapp);
}

.whatsapp-btn:hover {
   background: var(--whatsapp-dark);
   border-color: var(--whatsapp-dark);
   transform: translateY(-3px);
}

.email-btn {
   background: white;
   color: var(--accent-deep);
   border: 2px solid white;
}

.email-btn:hover {
   background: transparent;
   color: white;
   border-color: white;
   transform: translateY(-3px);
}

/* ============================================
   FOOTER SECTION
============================================ */
.footer-section {
   background-color: #4B0082; /* Deep Purple */
   color: #FFFFFF; /* White text */
   padding: 60px 0 30px;
   margin-top: 80px;
   position: relative;
}

.footer-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1);
}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

/* Footer Top Row */
.footer-top {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
   margin-bottom: 40px;
}

.footer-info .footer-logo {
   display: flex;
   align-items: center;
   gap: 15px;
   margin-bottom: 20px;
}

.footer-bank-logo {
   height: 40px;
   width: auto;
   filter: brightness(0) invert(1);
}

.footer-partner-badge {
   background: rgba(255, 255, 255, 0.1);
   padding: 5px 12px;
   border-radius: 20px;
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.85rem;
}

.footer-badge-dot {
   width: 8px;
   height: 8px;
   background-color: #4ECDC4;
   border-radius: 50%;
   animation: pulse 2s infinite;
}

.footer-agent-name {
   font-size: 1.5rem;
   margin: 10px 0 5px;
   font-weight: 600;
}

.footer-agent-title {
   color: #4ECDC4;
   font-size: 1.1rem;
   margin-bottom: 15px;
}

.footer-description {
   line-height: 1.6;
   opacity: 0.9;
}

/* Footer Headings */
.footer-heading {
   font-size: 1.2rem;
   margin-bottom: 20px;
   position: relative;
   padding-bottom: 10px;
}

.footer-heading::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 40px;
   height: 2px;
   background-color: #4ECDC4;
}

/* Footer Navigation */
.footer-nav {
   list-style: none;
}

.footer-nav li {
   margin-bottom: 12px;
}

.footer-nav a {
   color: #FFFFFF;
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 10px;
   transition: all 0.3s ease;
   opacity: 0.9;
}

.footer-nav a:hover {
   color: #4ECDC4;
   opacity: 1;
   transform: translateX(5px);
}

.footer-nav i {
   font-size: 0.8rem;
   color: #4ECDC4;
}

/* Services List */
.services-list {
   list-style: none;
}

.services-list li {
   margin-bottom: 12px;
   display: flex;
   align-items: center;
   gap: 10px;
   opacity: 0.9;
}

.services-list i {
   color: #4ECDC4;
   font-size: 0.9rem;
}

/* Contact Details */
.contact-details {
   display: flex;
   flex-direction: column;
   gap: 15px;
}

.contact-item {
   display: flex;
   align-items: flex-start;
   gap: 15px;
}

.contact-item i {
   color: #4ECDC4;
   font-size: 1.2rem;
   margin-top: 2px;
}

.contact-item div {
   display: flex;
   flex-direction: column;
}

.contact-item span {
   font-size: 0.9rem;
   opacity: 0.8;
   margin-bottom: 2px;
}

.contact-item a {
   color: #FFFFFF;
   text-decoration: none;
   transition: color 0.3s ease;
}

.contact-item a:hover {
   color: #4ECDC4;
}

/* Disclaimer Section */
.footer-disclaimer {
   background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 8px;
   padding: 15px;
   margin: 30px 0;
}

.disclaimer-header {
   display: flex;
   align-items: center;
   gap: 15px;
   margin-bottom: 20px;
}

.disclaimer-header i {
   color: #FFD700;
   font-size: 1.5rem;
}

.disclaimer-header h4 {
   color: #FFD700;
   font-size: 1.2rem;
   margin: 0;
}

.disclaimer-content {
   background: rgba(0, 0, 0, 0.2);
   padding: 20px;
   border-radius: 6px;
   border-left: 4px solid #4ECDC4;
}

.disclaimer-content p {
   margin-bottom: 15px;
   line-height: 1.6;
   font-size: 0.95rem;
   opacity: 0.9;
}

.disclaimer-content p:last-child {
   margin-bottom: 0;
}

.disclaimer-content strong {
   color: #FFD700;
}

/* Footer Bottom Row */
.footer-bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 20px;
   padding-top: 30px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
   display: flex;
   gap: 15px;
}

.social-icon {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.1);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #FFFFFF;
   text-decoration: none;
   transition: all 0.3s ease;
   font-size: 1rem;
}

.social-icon:hover {
   background: #4ECDC4;
   transform: translateY(-3px);
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.whatsapp:hover {
   background: #25D366;
}

.copyright {
   text-align: center;
   opacity: 0.8;
   font-size: 0.9rem;
}

.copyright p {
   margin: 5px 0;
}

.disclaimer-note {
   font-size: 0.8rem;
   margin-top: 10px;
   opacity: 0.7;
   max-width: 500px;
}

/* Responsive Design */
@media (max-width: 992px) {
   .footer-top {
       gap: 30px;
   }
}

@media (max-width: 768px) {
   .footer-section {
       padding: 40px 0 20px;
   }
   
   .footer-top {
       grid-template-columns: 1fr;
       gap: 30px;
   }
   
   .footer-bottom {
       flex-direction: column;
       text-align: center;
   }
   
   .footer-social {
       justify-content: center;
   }
   
   .disclaimer-content {
       padding: 15px;
   }
}

@media (max-width: 480px) {
   .footer-agent-name {
       font-size: 1.3rem;
   }
   
   .footer-heading {
       font-size: 1.1rem;
   }
   
   .contact-item {
       flex-direction: column;
       gap: 5px;
   }
   
   .footer-disclaimer {
       padding: 15px;
   }
   
   .disclaimer-header {
       flex-direction: column;
       text-align: center;
       gap: 10px;
   }
}


/* ===== ANIMATIONS ===== */
@keyframes pulse {
   0% { opacity: 1; }
   50% { opacity: 0.5; }
   100% { opacity: 1; }
}

@keyframes sparkle {
   0%, 100% {
      opacity: 0.3;
      transform: scale(0.8);
   }
   50% {
      opacity: 0.8;
      transform: scale(1.2);
   }
}

@keyframes flow {
   0% {
      background-position: 200% 0;
   }
   100% {
      background-position: -200% 0;
   }
}

@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes shimmer {
   0%, 100% { transform: translateX(-100%); }
   50% { transform: translateX(100%); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* === TABLET & SMALL DESKTOP (1024px) === */
@media (max-width: 1024px) {
   .hero-container,
   .about-container,
   .contact-content {
      grid-template-columns: 1fr;
      gap: 3rem;
   }
   
   .headline-main {
      font-size: 2.5rem;
   }
   
   .headline-sub {
      font-size: 2rem;
   }
   
   .trust-marks {
      grid-template-columns: 1fr;
      max-width: 400px;
   }
   
   .hero-actions,
   .hero-description,
   .trust-marks {
      margin-left: auto;
      margin-right: auto;
   }
   
   /* Mobile Navigation */
   .navbar {
      position: fixed;
      top: 70px;
      right: -100%;
      width: 280px;
      height: calc(100vh - 70px);
      background: white;
      flex-direction: column;
      padding: 2rem;
      transition: var(--transition-smooth);
      box-shadow: var(--shadow-deep);
      z-index: 999;
   }
   
   .navbar.active {
      right: 0;
   }
   
   .mobile-toggle {
      display: flex;
   }
   
   /* Journey Map Responsive */
   .journey-map {
      flex-wrap: wrap;
      justify-content: center;
      gap: 4rem;
   }
   
   .process-step {
      flex: 0 0 calc(50% - 2rem);
      margin-bottom: 2rem;
   }
   
   .connector {
      display: none;
   }
   
   .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
   }
   
   .cta-buttons {
      flex-direction: column;
      align-items: center;
   }
   
   .cta-button {
      width: 100%;
      max-width: 300px;
      justify-content: center;
   }
   
   /* Services Responsive */
   .services-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
   }
   
   .clients-grid {
      grid-template-columns: repeat(2, 1fr);
   }
   
   .services-cta {
      padding: 3rem 2rem;
   }
   
   /* Slider Adjustments */
   .slider {
      height: 70px;
   }
   
   .slide {
      height: 70px;
      width: 130px;
   }
   
   .slide img {
      width: 110px;
      max-height: 45px;
   }
   
   .slide-track {
      width: calc(130px * 32);
   }
   
   .slider::before,
   .slider::after {
      width: 50px;
   }
   
   /* Contact Form Responsive */
   .contact-form-container {
      padding: 2rem;
   }
   
   .contact-cta {
      padding: 3rem 2rem;
   }
   
   .contact-method {
      padding: 1.5rem;
   }
}

/* === TABLET (768px) === */
@media (max-width: 768px) {
   .header-container {
      padding: 0 1rem;
   }
   
   .hero {
      padding-top: 80px;
   }
   
   .section-header h2 {
      font-size: 2.5rem;
   }
   
   .responsibility-grid {
      grid-template-columns: 1fr;
   }
   
   /* Account CTA Button */
   .account-cta-btn {
      max-width: 100%;
   }
   
   .cta-wrapper {
      padding: 1.2rem 1.5rem;
   }
   
   .cta-main {
      font-size: 1.1rem;
   }
   
   /* Services Responsive */
   .services-section {
      padding: 4rem 1.5rem;
   }
   
   .services-card {
      padding: 2rem;
   }
   
   .clients-section {
      padding: 2rem;
   }
   
   .policy-note {
      flex-direction: column;
      text-align: center;
   }
   
   .cta-content h3 {
      font-size: 1.8rem;
   }
   
   /* Process Section Responsive */
   .process-section {
      padding: 4rem 1.5rem;
   }
   
   .process-step {
      flex: 0 0 100%;
   }
   
   .benefits-section {
      padding: 2.5rem;
   }
   
   .benefits-grid {
      grid-template-columns: 1fr;
   }
   
   .process-cta {
      padding: 2rem;
   }
   
   .step-card {
      padding: 1.5rem;
   }
   
   .benefit-card {
      padding: 1.5rem;
   }
   
   /* Contact Section Responsive */
   .contact-section {
      padding: 4rem 1.5rem;
   }
   
   .contact-info {
      gap: 1.5rem;
   }
   
   .contact-method {
      flex-direction: column;
      text-align: center;
   }
   
   .method-icon {
      margin: 0 auto;
   }
   
   .contact-cta .cta-buttons {
      flex-direction: column;
   }
   
   .contact-cta .cta-button {
      width: 100%;
      justify-content: center;
   }
}

/* === MOBILE (576px) === */
@media (max-width: 576px) {
   .hero-container {
      padding: 2rem 1rem;
   }
   
   .headline-main {
      font-size: 2rem;
   }
   
   .headline-sub {
      font-size: 1.5rem;
   }
   
   .agent-portrait,
   .about-portrait {
      height: 300px;
   }
   
   .btn-wrapper {
      padding: 1.2rem 1.5rem;
   }
   
   .floating-contact {
      bottom: 20px;
      right: 20px;
   }
   
   /* Journey Map Mobile */
   .journey-map {
      gap: 3rem;
   }
   
   .step-badge {
      width: 50px;
      height: 50px;
   }
   
   .step-number {
      font-size: 1.2rem;
   }
   
   .step-icon {
      width: 40px;
      height: 40px;
   }
   
   .step-icon i {
      font-size: 1.2rem;
   }
   
   .benefits-section {
      padding: 2rem;
   }
   
   .process-cta {
      padding: 1.5rem;
   }
   
   .cta-content h3 {
      font-size: 1.3rem;
   }
   
   .cta-content p {
      font-size: 1rem;
   }
   
   /* Services Mobile */
   .clients-grid {
      grid-template-columns: 1fr;
   }
   
   .services-cta {
      padding: 2.5rem 1.5rem;
   }
   
   /* Slider Mobile */
   .slider {
      height: 60px;
   }
   
   .slide {
      height: 60px;
      width: 110px;
   }
   
   .slide img {
      width: 90px;
      max-height: 35px;
   }
   
   .slide-track {
      width: calc(110px * 32);
   }
   
   .slider-note {
      font-size: 0.8rem;
      margin-top: 0.6rem;
   }
   
   /* Contact Mobile */
   .contact-form-container {
      padding: 1.5rem;
   }
   
   .submit-btn {
      padding: 1rem 2rem;
      font-size: 1rem;
   }
   
   .contact-cta {
      padding: 2rem 1.5rem;
   }
   
   .contact-cta h3 {
      font-size: 1.5rem;
   }
}

/* === MOBILE (480px) === */
@media (max-width: 480px) {
   .bank-logos-slider {
      margin: 3rem auto 0;
   }
   
   .partners-title {
      font-size: 1.3rem;
   }
   
   .slider {
      height: 70px;
   }
   
   .slide {
      height: 70px;
      width: 120px;
   }
   
   .slide img {
      width: 100px;
      max-height: 40px;
   }
   
   .slide-track {
      width: calc(120px * 20);
   }
   
   .slider-note {
      font-size: 0.8rem;
      margin-top: 0.6rem;
   }
   
   .services-cta .cta-button,
   .process-cta .cta-button,
   .contact-cta .cta-button {
      width: 100%;
      justify-content: center;
   }
   
   /* Contact Form Mobile */
   .form-group input,
   .form-group textarea {
      padding: 0.8rem 1rem;
   }
   
   .live-chat-btn {
      width: 100%;
      justify-content: center;
   }
}

/* Staggered Animations for Elements */
.responsibility-card,
.trust-mark,
.approach-point,
.credential-item,
.services-card,
.client-profile,
.service-item,
.process-step,
.benefit-card,
.contact-method {
   animation: fadeInUp 0.6s ease forwards;
   opacity: 0;
}

/* About Section Animations */
.responsibility-card:nth-child(1) { animation-delay: 0.1s; }
.responsibility-card:nth-child(2) { animation-delay: 0.2s; }
.responsibility-card:nth-child(3) { animation-delay: 0.3s; }
.responsibility-card:nth-child(4) { animation-delay: 0.4s; }
.trust-mark:nth-child(1) { animation-delay: 0.2s; }
.trust-mark:nth-child(2) { animation-delay: 0.3s; }
.trust-mark:nth-child(3) { animation-delay: 0.4s; }

/* Services Section Animations */
.services-card:nth-child(1) { animation-delay: 0.2s; }
.services-card:nth-child(2) { animation-delay: 0.3s; }

.client-profile:nth-child(1) { animation-delay: 0.1s; }
.client-profile:nth-child(2) { animation-delay: 0.2s; }
.client-profile:nth-child(3) { animation-delay: 0.3s; }
.client-profile:nth-child(4) { animation-delay: 0.4s; }

/* Contact Section Animations */
.contact-method:nth-child(1) { animation-delay: 0.1s; }
.contact-method:nth-child(2) { animation-delay: 0.2s; }
.contact-method:nth-child(3) { animation-delay: 0.3s; }