/* =========================================================================
   ULTRA-PREMIUM VARIABLES & BASE STYLES
   ========================================================================= */
   :root {
    /* Dynamic Color Palette */
    --primary: #0A192F;        /* Rich Navy */
    --primary-light: #112240;  
    --accent: #FF6A00;         /* Vibrant Orange */
    --accent-glow: rgba(255, 106, 0, 0.4);
    --success: #25D366;        /* WhatsApp Green */
    --success-glow: rgba(37, 211, 102, 0.4);
    
    --bg-color: #FAFAFB;       /* Crisp Off-White */
    --offset-bg: #F0F4F8;      /* Soft cool grey for sections */
    --text-main: #1D2D3F;      /* Deep dark grey */
    --text-muted: #5A6B80;     /* Elegant muted grey text */
    --border-light: rgba(255, 255, 255, 0.2);
    --border-dark: rgba(0, 0, 0, 0.05);
  
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
  
    /* Glass & Depth */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
    --hover-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  
    /* Utilities */
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --radius-pill: 100px;
  }
  
  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  html { scroll-behavior: smooth; scroll-padding-top: 90px; }
  
  body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.7;
    font-size: 1.05rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  
  /* Beautiful Gradients */
  .text-gradient {
    background: linear-gradient(135deg, var(--accent), #FFB703);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
  }
  
  h1 { font-size: 4rem; letter-spacing: -1.5px; margin-bottom: 20px; font-weight: 800; }
  h2 { font-size: 3rem; letter-spacing: -1px; margin-bottom: 20px; }
  h3 { font-size: 1.75rem; margin-bottom: 15px; }
  
  p { color: var(--text-muted); margin-bottom: 1rem; }
  a { text-decoration: none; color: inherit; transition: var(--transition); }
  ul { list-style: none; }
  img { max-width: 100%; display: block; border-radius: var(--radius-md); }
  
  .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
  .section-padding { padding: 120px 0; }
  .offset-bg { background-color: var(--offset-bg); }
  .text-center { text-align: center; }
  .relative-z { position: relative; z-index: 2; }
  .mt-lg { margin-top: 60px; }
  .mt-15 { margin-top: 15px; }
  
  /*  Decorative Background  */
  .blob-bg {
    position: absolute; filter: blur(100px); z-index: 0; opacity: 0.5; border-radius: 50%; pointer-events: none;
  }
  .blob-1 { width: 500px; height: 500px; background: rgba(255, 106, 0, 0.15); top: -100px; right: -100px; }
  .blob-2 { width: 600px; height: 600px; background: rgba(10, 25, 47, 0.08); bottom: 20%; left: -200px; }
  
  /* =========================================================================
     BUTTONS
     ========================================================================= */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; border-radius: var(--radius-pill); font-family: var(--font-heading);
    font-weight: 600; font-size: 1.05rem; cursor: pointer; border: none; transition: var(--transition); position: relative; overflow: hidden; z-index: 1; text-align: center;
  }
  .btn-primary { background: linear-gradient(135deg, var(--accent), #FF9100); color: white; }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px var(--accent-glow); color: white;}
  .glow-btn { box-shadow: 0 0 15px var(--accent-glow); }
  
  .btn-outline-dark { background: transparent; border: 2px solid var(--border-dark); color: var(--primary); }
  .btn-outline-dark:hover { background: var(--primary); color: white; border-color: var(--primary); }
  
  .btn-inverted-outline { border: 2px solid rgba(255,255,255,0.3); }
  .btn-inverted-outline:hover { border-color: white; }
  
  .btn-success { background: var(--success); color: white; }
  .btn-success:hover { transform: translateY(-3px); box-shadow: 0 10px 20px var(--success-glow); background: #1ebd5a; color: white;}
  .glow-success { box-shadow: 0 0 15px var(--success-glow); }
  
  .btn-large { padding: 16px 32px; font-size: 1.15rem; }
  .btn-block { width: 100%; padding: 18px; font-size: 1.15rem; }
  .btn-small { padding: 10px 20px; font-size: 0.95rem; }
  
  /* =========================================================================
     HEADER & NAVIGATION 
     ========================================================================= */
  .glass-header {
    position: fixed; top: 0; left: 0; width: 100%; padding: 15px 0; z-index: 1001; transition: var(--transition); background: transparent;
  }
  .glass-header.scrolled {
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 20px rgba(0,0,0,0.05); padding: 10px 0;
  }
  
  .nav-container { display: flex; justify-content: space-between; align-items: center; position: relative; }
  
  .logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--primary); letter-spacing: -0.5px; line-height: 1; z-index: 1002; position: relative; }
  .logo span { color: var(--accent); }
  
  .navbar { display: flex; align-items: center; gap: 3rem; }
  .nav-links { display: flex; gap: 2rem; }
  .nav-links a { font-family: var(--font-heading); font-weight: 500; color: var(--text-main); position: relative; }
  
  .nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--accent); transition: var(--transition);
  }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
  
  .mobile-actions { display: none; align-items: center; gap: 15px; position: relative; z-index: 1002; }
  .mobile-call-btn { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: white; font-size: 1.1rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
  .mobile-call-btn:hover { background: var(--primary); transform: scale(1.05); }
  .mobile-toggle { background: none; border: none; font-size: 1.8rem; color: var(--primary); cursor: pointer; display: flex; align-items: center; }
  
  /* =========================================================================
     HERO SECTION (NEW SUPER PROFESSIONAL SPLIT LAYOUT)
     ========================================================================= */
  .hero-split {
    padding-top: 180px; 
    padding-bottom: 90px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  
  .hero-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .chip-dark {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(10, 25, 47, 0.05);
    border: 1px solid rgba(10, 25, 47, 0.1);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .hero-text h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; }
  .hero-text .subheading { font-size: 1.25rem; font-weight: 400; max-width: 550px; margin-bottom: 40px; }
  
  .hero-buttons { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
  
  .hero-trust { display: flex; gap: 30px; border-top: 1px solid var(--border-dark); padding-top: 25px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1rem; color: var(--text-main); }
  .trust-item i { color: var(--accent); font-size: 1.1rem; }
  
  .hero-image { position: relative; }
  .image-wrapper {
    position: relative; z-index: 2; border-radius: var(--radius-lg); box-shadow: var(--card-shadow);
    padding: 15px; background: white; transform: rotate(1deg); transition: var(--transition);
  }
  .image-wrapper:hover { transform: rotate(0deg) scale(1.02); box-shadow: var(--hover-shadow); }
  .image-wrapper img { width: 100%; border-radius: 12px; }
  
  .floating-badge {
    position: absolute; bottom: -20px; left: -30px; background: white; padding: 20px 25px; border-radius: var(--radius-md); box-shadow: var(--hover-shadow); display: flex; flex-direction: column; gap: 5px; z-index: 3;
  }
  .floating-badge .stars { color: #FFB703; font-size: 1.1rem; }
  .floating-badge span { font-weight: 700; color: var(--primary); font-family: var(--font-heading); font-size: 1.1rem; }
  
  .floating-badge-small {
    position: absolute; top: -15px; right: -15px; width: 60px; height: 60px; border-radius: 50%;
    background: var(--accent); color: white; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; box-shadow: 0 10px 20px var(--accent-glow); z-index: 3;
  }
  
  @keyframes pulse-badge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  .pulse-badge { animation: pulse-badge 4s ease-in-out infinite; }
  
  /* =========================================================================
     GENERIC SECTIONS & SPLIT LAYOUT
     ========================================================================= */
  .section-title { font-size: 2.8rem; letter-spacing: -0.5px; }
  .section-title.lg { font-size: 3.5rem; }
  .section-subtitle { font-size: 1.2rem; max-width: 600px; margin: 0 auto; color: var(--text-muted); }
  .section-subtitle strong { font-weight: 600; color: var(--primary); }
  .lead-p { font-size: 1.2rem; font-weight: 500; color: var(--primary); margin-bottom: 20px; }
  .lead-p strong { color: var(--accent); }
  
  .split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  
  .glass-box { background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid white; border-radius: var(--radius-lg); padding: 50px; box-shadow: var(--card-shadow); }
  .highlight-box { background: white; border: none; box-shadow: var(--shadow-float); position: relative; border-radius: var(--radius-lg); }
  .highlight-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--accent), #FFB703); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  
  /* =========================================================================
     ANIMATED STATS STRIP
     ========================================================================= */
  .stats-strip { background: var(--primary); color: white; padding: 60px 0; position: relative; overflow: hidden; }
  .stats-strip::before { content: ''; position: absolute; right: -10%; top: -50%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,106,0,0.15) 0%, rgba(255,106,0,0) 70%); }
  
  .stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; position: relative; z-index: 2; }
  .stat-number { font-size: 4.5rem; font-family: var(--font-heading); font-weight: 900; color: white; line-height: 1; margin-bottom: 5px; }
  .stat-number span { color: var(--accent); }
  .stat-label { font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.7); }
  .premium-promise { display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .stat-icon-wrap { font-size: 3rem; color: var(--accent); margin-bottom: 10px; }
  
  /* =========================================================================
     SPECIALIZED RELOCATION SERVICES
     ========================================================================= */
  .specialized-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .sp-card { padding: 50px 30px; background: white; border-radius: var(--radius-lg); text-align: center; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); transition: var(--transition); border-bottom: 4px solid transparent; }
  .sp-card:hover { transform: translateY(-10px); border-bottom-color: var(--accent); box-shadow: var(--hover-shadow); }
  .sp-icon-large { width: 90px; height: 90px; margin: 0 auto 25px; border-radius: 50%; background: rgba(10, 25, 47, 0.04); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--primary); transition: var(--transition); }
  .sp-card:hover .sp-icon-large { background: var(--accent); color: white; transform: rotate(10deg) scale(1.1); box-shadow: 0 10px 20px var(--accent-glow); }
  .sp-card h3 { font-size: 1.6rem; margin-bottom: 15px; }
  .sp-card p { font-size: 1.05rem; }

  /* =========================================================================
     SERVICES GRID 
     ========================================================================= */
  .premium-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
  .p-service-card { background: white; padding: 40px 30px; border-radius: var(--radius-lg); border: 1px solid var(--border-dark); box-shadow: 0 4px 10px rgba(0,0,0,0.02); transition: var(--transition); position: relative; overflow: hidden; }
  .p-service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--accent), #FFB703); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
  .p-service-card:hover { transform: translateY(-10px); box-shadow: var(--hover-shadow); border-color: transparent; }
  .p-service-card:hover::after { transform: scaleX(1); }
  
  .p-icon { width: 70px; height: 70px; background: rgba(255, 106, 0, 0.1); color: var(--accent); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin-bottom: 25px; transition: var(--transition); }
  .p-service-card:hover .p-icon { background: var(--accent); color: white; border-radius: 50%; }
  
  .p-service-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
  .p-service-card p { font-size: 1rem; margin: 0; }
  
  /* =========================================================================
     ICON LIST
     ========================================================================= */
  .icon-list { display: flex; flex-direction: column; gap: 30px; margin-top: 30px; }
  .icon-list-item { display: flex; gap: 20px; }
  .icon-wrap { width: 60px; height: 60px; flex-shrink: 0; background: white; border-radius: 50%; box-shadow: 0 5px 15px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--accent); }
  .icon-list-item h4 { margin-bottom: 5px; font-size: 1.3rem; }
  .icon-list-item p { font-size: 1rem; margin: 0; }
  
  /* =========================================================================
     CONNECTED TIMELINE
     ========================================================================= */
  .timeline-container { display: flex; flex-direction: column; gap: 25px; max-width: 800px; margin: 0 auto; position: relative; }
  .timeline-container::before { content: ''; position: absolute; left: 30px; top: 0; height: 100%; width: 4px; background: rgba(10, 25, 47, 0.05); border-radius: 2px; }
  .timeline-item { display: flex; align-items: center; gap: 30px; position: relative; }
  .t-node { width: 64px; height: 64px; flex-shrink: 0; background: var(--primary); color: white; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 8px rgba(10, 25, 47, 0.05); z-index: 2; transition: var(--transition); }
  .timeline-item:hover .t-node { background: var(--accent); transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255, 106, 0, 0.15); }
  .t-content { flex-grow: 1; padding: 30px; }
  .glass-card { background: white; border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius-md); box-shadow: var(--card-shadow); transition: var(--transition); }
  .timeline-item:hover .glass-card { transform: translateX(10px); box-shadow: var(--hover-shadow); }
  
  /* =========================================================================
     AREAS WE SERVE (PILLS) & SEO CONTENT
     ========================================================================= */
  .areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; max-width: 900px; margin: 0 auto; }
  .area-pill {
    background: white; border: 1px solid var(--border-dark); padding: 12px 28px;
    border-radius: var(--radius-pill); font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
    color: var(--primary); display: flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); transition: var(--transition); cursor: default;
  }
  .area-pill i { color: var(--accent); font-size: 1.2rem; }
  .area-pill:hover { transform: translateY(-4px); box-shadow: var(--hover-shadow); border-color: transparent; }
  .area-pill:hover i { transform: scale(1.15); }

  .seo-modern-block { text-align: left;}
  .seo-card { max-width: 900px; margin: 0 auto; padding: 50px; text-align: center; }
  .seo-card h2 { font-size: 2.2rem; margin-bottom: 20px; }
  .seo-card p { font-size: 1.15rem; color: var(--text-main); margin-bottom: 25px; line-height: 1.8; }
  .seo-card strong { color: var(--primary); font-weight: 700; }
  
  /* =========================================================================
     LUXURY CTA BANNER (REVAMPED)
     ========================================================================= */
  .luxury-cta { background: var(--primary); border-radius: var(--radius-lg); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 20px 40px rgba(10, 25, 47, 0.15); }
  .luxury-cta::before { content: ''; position: absolute; top: -50%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255, 106, 0, 0.25), transparent 70%); border-radius: 50%; pointer-events: none;}
  .luxury-cta::after { content: ''; position: absolute; bottom: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%); border-radius: 50%; pointer-events: none;}
  .cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
  .cta-inner.text-center { display: flex; flex-direction: column; align-items: center; }
  .luxury-cta h2 { color: white; font-size: 3.2rem; margin-bottom: 20px; letter-spacing: -0.5px; }
  .luxury-cta p { color: rgba(255,255,255,0.7); font-size: 1.25rem; margin-bottom: 40px; }
  .cta-inner-buttons { display: flex; justify-content: center; width: 100%; }
  
  /* =========================================================================
     MASONRY/GRID REVIEWS
     ========================================================================= */
  .masonry-reviews { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
  .review-glass-card { background: white; padding: 40px; border-radius: var(--radius-md); border: 1px solid var(--border-dark); box-shadow: var(--card-shadow); display: flex; flex-direction: column; transition: var(--transition); }
  .review-glass-card:hover { transform: translateY(-5px); box-shadow: var(--hover-shadow); }
  .r-stars { color: #FFB703; font-size: 1.1rem; margin-bottom: 20px; }
  .r-quote { font-style: italic; color: var(--text-main); font-size: 1.05rem; flex-grow: 1; margin-bottom: 25px; line-height: 1.6; }
  .r-author { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 1.1rem; }
  
  /* =========================================================================
     MODERN FAQ SECTION
     ========================================================================= */
  .modern-faq-wrapper { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
  .faq-item { background: white; border-radius: var(--radius-md); border: 1px solid var(--border-dark); box-shadow: 0 4px 10px rgba(0,0,0,0.02); overflow: hidden; transition: var(--transition); }
  .faq-item:hover { box-shadow: var(--card-shadow); }
  .faq-head { width: 100%; padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; background: transparent; border: none; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--primary); cursor: pointer; text-align: left; }
  .faq-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--offset-bg); display: flex; align-items: center; justify-content: center; color: var(--accent); transition: var(--transition); flex-shrink: 0; }
  .faq-head.active .faq-icon { transform: rotate(45deg); background: var(--accent); color: white; }
  .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; }
  .faq-inner { padding: 0 30px 25px 30px; color: var(--text-muted); font-size: 1.05rem; }
  
  /* =========================================================================
     ULTRA FORM & CONTACT
     ========================================================================= */
  .contact-split { grid-template-columns: 1fr 1.3fr; align-items: stretch; }
  .modern-contact-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
  .c-card { display: flex; align-items: center; gap: 20px; padding: 25px; background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-dark); transition: var(--transition); }
  .c-card:hover { transform: translateX(10px); box-shadow: var(--card-shadow); }
  .c-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(10, 25, 47, 0.05); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
  .c-text { display: flex; flex-direction: column; }
  .c-label { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; letter-spacing: 0.5px; }
  .c-text a, .c-text p { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 0; }
  .c-text a:hover { color: var(--accent); }
  
  .ultra-form { padding: 50px; background: white; border-radius: var(--radius-lg); box-shadow: var(--card-shadow); border: 1px solid var(--border-dark); }
  .ultra-form h3 { font-size: 2.2rem; margin-bottom: 30px; text-align: center; }
  .f-group { margin-bottom: 25px; }
  .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .f-group label { display: block; font-weight: 600; font-size: 0.95rem; color: var(--text-main); margin-bottom: 8px; }
  input, select, textarea { width: 100%; padding: 16px 20px; background: var(--offset-bg); border: 2px solid transparent; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; color: var(--text-main); transition: var(--transition); }
  input:focus, select:focus, textarea:focus { outline: none; background: white; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1); }
  .select-wrapper { position: relative; }
  .select-wrapper select { appearance: none; cursor: pointer; }
  .select-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text-muted); }
  
  /* =========================================================================
     MODERN FOOTER
     ========================================================================= */
  .modern-footer { background: var(--primary); color: white; padding: 100px 0 30px; position: relative; overflow: hidden; }
  .modern-footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); }
  .f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 80px; }
  .f-brand h3 { color: white; font-size: 2.5rem; margin-bottom: 20px; }
  .f-brand span { color: var(--accent); }
  .f-brand p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 400px; }
  .f-links h4, .f-contact h4 { color: white; font-size: 1.3rem; margin-bottom: 25px; }
  .f-links ul { display: flex; flex-direction: column; gap: 15px; }
  .f-links a { color: rgba(255,255,255,0.6); font-weight: 500; font-size: 1.05rem; }
  .f-links a:hover { color: var(--accent); padding-left: 8px; }
  .f-phone { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: white; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
  .f-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; color: rgba(255,255,255,0.4); font-size: 1rem; }
  
  /* =========================================================================
     FIXED HIGH-CONTRAST FLOATING ACTIONS
     ========================================================================= */
  .floating-actions { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 20px; z-index: 1000; }
  .float-btn {
    width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 2rem; box-shadow: var(--hover-shadow); position: relative; transition: var(--transition);
  }
  .float-btn:hover { transform: scale(1.1); }
  .float-wa { background: var(--success); }
  .float-phone { background: var(--accent); }
  
  @keyframes pulse-success { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
  @keyframes pulse-accent { 0% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(255, 106, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); } }
  .pulse-wa { animation: pulse-success 2s infinite; }
  .pulse-ph { animation: pulse-accent 2s infinite; }
  
  /* =========================================================================
     SCROLL REVEAL ANIMATIONS 
     ========================================================================= */
  .reveal { opacity: 0; transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
  .reveal.slide-up { transform: translateY(60px); }
  .reveal.slide-right { transform: translateX(-60px); }
  .reveal.slide-left { transform: translateX(60px); }
  .reveal.fade-in { transform: scale(0.95); }
  .reveal.zoom-in { transform: scale(0.9); }
  .reveal.active { opacity: 1; transform: translate(0) scale(1); }
  .delay-1 { transition-delay: 0.15s; }
  .delay-2 { transition-delay: 0.3s; }
  .delay-3 { transition-delay: 0.45s; }
  .delay-4 { transition-delay: 0.6s; }
  
  /* =========================================================================
     RESPONSIVE DESIGN
     ========================================================================= */
  @media (max-width: 1024px) {
    .section-title, .section-title.lg { font-size: 3rem; }
    .split-layout, .contact-split { grid-template-columns: 1fr; gap: 50px; }
    .hero-split-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-split { padding-top: 130px; }
    .hero-text h1 { font-size: 3.8rem; }
    .luxury-cta h2 { font-size: 2.8rem; }
    .f-grid { grid-template-columns: 1fr; gap: 50px; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .specialized-cards { grid-template-columns: 1fr; }
    .timeline-container::before { left: 24px; }
    .t-node { width: 50px; height: 50px; font-size: 1.2rem; }
  }
  
  @media (max-width: 768px) {
    h1, .hero-text h1 { font-size: 3rem; margin-bottom: 15px; }
    h2, .section-title, .section-title.lg { font-size: 2.3rem; }
    .seo-card h2 { font-size: 1.8rem; }
    .luxury-cta h2 { font-size: 2.2rem; }
    .luxury-cta { padding: 60px 20px; }
    
    .hero-split { padding-top: 150px; padding-bottom: 50px; }
    
    /* Ensure buttons are side by side perfectly */
    .hero-buttons { 
      flex-direction: row; 
      gap: 10px; 
      flex-wrap: nowrap;
      width: 100%;
    }
    .hero-buttons .btn {
      flex: 1; /* Makes both buttons take 50% width */
      padding: 14px 5px; /* Decrease padding to fit screens */
      font-size: 0.95rem; /* Slightly smaller text */
    }
    
    .trust-item { font-size: 0.9rem; }
    
    /* Fixed mobile badge overflow */
    .floating-badge { 
      left: 0; right: 0; margin: 0 auto; 
      bottom: -40px; width: 85%; max-width: 300px; text-align: center; 
    }
  
    .nav-cta { display: none; }
    .mobile-actions { display: flex; }
    .navbar { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1000; }
    .navbar.active { opacity: 1; visibility: visible; }
    .nav-links { flex-direction: column; align-items: center; gap: 30px; }
    .nav-links a { color: var(--primary); font-size: 1.5rem; font-weight: 700; }
    
    .stats-container { grid-template-columns: 1fr; }
    .f-row { grid-template-columns: 1fr; }

    /* Area Pills aligned next to each other on mobile */
    .areas-grid { flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 0; gap: 10px; }
    .area-pill { font-size: 0.95rem; padding: 10px 18px; width: auto; flex: 0 1 auto; }
    
    .seo-card { padding: 30px 20px; }
  }
