:root {
    --navy: #0d1f3c;
    --gold: #b8975a;
    --gold-light: #d4b07a;
    --teal: #1a8a8a;
    --teal-light: #2ab5b5;
    --white: #f8f6f0;
    --off-white: #ede9df;
    --text-dark: #0d1f3c;
    --text-muted: #6b7a96;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }

  /* CURSOR */
  .cursor-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transition: transform 0.1s ease; }
  .cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transition: all 0.15s ease; opacity: 0.6; }

  /* NOISE */
  body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; opacity: 0.4; }

  /* NAVBAR */
  .navbar-custom { background: rgba(13,31,60,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(184,151,90,0.2); padding: 18px 0; transition: all 0.4s ease; position: fixed; width: 100%; top: 0; z-index: 1000; }
  .navbar-custom.scrolled { padding: 12px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
  .navbar-brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), var(--teal)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: white; position: relative; overflow: hidden; }
  .logo-icon::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2)); animation: logo-shine 3s ease-in-out infinite; }
  @keyframes logo-shine { 0%,100%{transform:translateX(-100%);} 50%{transform:translateX(100%);} }
  .brand-text span:first-child { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: white; letter-spacing: 3px; display: block; line-height: 1; }
  .brand-text span:last-child { font-size: 0.58rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
  .nav-link-custom { color: rgba(255,255,255,0.75) !important; font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; padding: 8px 16px !important; position: relative; transition: color 0.3s ease; text-decoration: none; display: block; }
  .nav-link-custom::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%) scaleX(0); width: 20px; height: 1.5px; background: var(--gold); transition: transform 0.3s ease; }
  .nav-link-custom:hover { color: var(--gold) !important; }
  .nav-link-custom:hover::after { transform: translateX(-50%) scaleX(1); }

  /* ANIMATED NAV BUTTON */
  .btn-nav {
    position: relative;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    color: var(--navy) !important;
    font-size: 0.78rem; letter-spacing: 1.5px;
    text-transform: uppercase; font-weight: 700;
    padding: 10px 22px !important;
    border-radius: 3px;
    border: none; cursor: pointer;
    animation: nav-btn-shimmer 3s ease-in-out infinite;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-block;
  }
  .btn-nav::before { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent); animation: btn-sweep 2.8s ease-in-out infinite; }
  .btn-nav::after { content: ''; position: absolute; inset: -3px; border-radius: 5px; background: linear-gradient(135deg, var(--gold), var(--teal), var(--gold)); background-size: 300% 300%; animation: nav-glow 3s ease-in-out infinite; z-index: -1; opacity: 0; transition: opacity 0.3s ease; }
  .btn-nav:hover::after { opacity: 1; }
  .btn-nav:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,151,90,0.55); }
  .btn-pulse-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100%; height: 100%; border-radius: 3px; border: 2px solid rgba(184,151,90,0.7); animation: ring-pulse 2s ease-out infinite; pointer-events: none; }
  @keyframes nav-btn-shimmer { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }
  @keyframes btn-sweep { 0%{left:-60%;} 100%{left:120%;} }
  @keyframes nav-glow { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }
  @keyframes ring-pulse { 0%{transform:translate(-50%,-50%) scale(1);opacity:0.7;} 100%{transform:translate(-50%,-50%) scale(1.4);opacity:0;} }

  .navbar-toggler { border: 1px solid rgba(255,255,255,0.15) !important; padding: 6px 10px; }
  .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; }

  /* HERO */
  .hero { min-height: 100vh; background: var(--navy); position: relative; display: flex; align-items: center; overflow: hidden; }
  .hero-bg-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; }
  .hero-bg-shape-1 { width: 600px; height: 600px; background: var(--teal); top: -200px; right: -150px; animation: float1 8s ease-in-out infinite; }
  .hero-bg-shape-2 { width: 400px; height: 400px; background: var(--gold); bottom: -100px; left: -100px; animation: float2 10s ease-in-out infinite; }
  .hero-bg-shape-3 { width: 250px; height: 250px; background: var(--teal-light); top: 50%; left: 30%; animation: float3 7s ease-in-out infinite; }
  @keyframes float1 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-30px,30px) scale(1.05);} }
  @keyframes float2 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(25px,-25px) scale(1.08);} }
  @keyframes float3 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-15px,20px) scale(0.95);} }
  .hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(184,151,90,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(184,151,90,0.05) 1px, transparent 1px); background-size: 60px 60px; animation: grid-drift 20s linear infinite; }
  @keyframes grid-drift { from{transform:translate(0,0);} to{transform:translate(60px,60px);} }
  .hero-content { position: relative; z-index: 2; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 12px; margin-bottom: 24px; animation: fadeSlideUp 0.8s ease 0.2s both; }
  .hero-eyebrow::before { content: ''; flex: 0 0 40px; height: 1px; background: var(--gold); }
  .hero-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; color: white; line-height: 1.1; animation: fadeSlideUp 0.8s ease 0.4s both; }
  .hero-headline em { font-style: italic; color: var(--gold); display: block; }
  .hero-desc { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 420px; line-height: 1.8; margin: 28px 0 40px; font-weight: 300; animation: fadeSlideUp 0.8s ease 0.6s both; }
  .hero-actions { animation: fadeSlideUp 0.8s ease 0.8s both; }
  .btn-primary-custom { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border: none; border-radius: 2px; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px; cursor: pointer; display: inline-block; position: relative; overflow: hidden; transition: all 0.3s ease; }
  .btn-primary-custom::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent); transition: left 0.5s ease; }
  .btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(184,151,90,0.5); }
  .btn-primary-custom:hover::before { left: 100%; }
  .btn-outline-custom { border: 1.5px solid rgba(255,255,255,0.25); color: white; background: transparent; border-radius: 2px; font-size: 0.8rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px; text-decoration: none; display: inline-block; transition: all 0.3s ease; }
  .btn-outline-custom:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,151,90,0.05); }
  .hero-stats { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); animation: fadeSlideUp 0.8s ease 1s both; }
  .stat-item .num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
  .stat-item .label { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }
  .stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); align-self: center; }
  .hero-img-wrap { position: relative; animation: fadeIn 1.2s ease 0.5s both; }
  .hero-img-frame { position: relative; border-radius: 4px; overflow: hidden; }
  .hero-img-frame img { width: 100%; height: 600px; object-fit: cover; filter: brightness(0.85) saturate(0.9); }
  .hero-img-frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,31,60,0.4) 0%, transparent 60%); z-index: 1; }
  .hero-img-decoration { position: absolute; border: 1.5px solid rgba(184,151,90,0.4); border-radius: 4px; top: -20px; right: -20px; bottom: 20px; left: 20px; pointer-events: none; animation: pulse-border 3s ease-in-out infinite; }
  @keyframes pulse-border { 0%,100%{opacity:0.4;transform:scale(1);} 50%{opacity:0.8;transform:scale(1.005);} }
  .hero-badge { position: absolute; bottom: 30px; left: -30px; background: white; border-radius: 4px; padding: 18px 22px; z-index: 2; box-shadow: 0 20px 60px rgba(0,0,0,0.2); animation: float-badge 4s ease-in-out infinite; }
  @keyframes float-badge { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
  .hero-badge .badge-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--teal), var(--teal-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; margin-bottom: 8px; }
  .hero-badge .badge-text { font-size: 0.75rem; font-weight: 700; color: var(--navy); }
  .hero-badge .badge-sub { font-size: 0.65rem; color: var(--text-muted); }
  @keyframes fadeSlideUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
  @keyframes fadeIn { from{opacity:0;transform:scale(0.97);} to{opacity:1;transform:scale(1);} }

  /* MARQUEE */
  .marquee-strip { background: linear-gradient(135deg, var(--gold), var(--gold-light)); padding: 14px 0; overflow: hidden; }
  .marquee-track { display: flex; animation: marquee 25s linear infinite; white-space: nowrap; }
  .marquee-item { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); font-weight: 700; padding: 0 40px; display: flex; align-items: center; gap: 16px; }
  .marquee-item i { opacity: 0.5; }
  @keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

  /* SECTION COMMONS */
  .section-eyebrow { font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .section-eyebrow::before { content: ''; flex: 0 0 30px; height: 1px; background: var(--gold); }
  .section-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; line-height: 1.2; color: var(--navy); }
  .section-headline em { font-style: italic; color: var(--teal); }

  /* SERVICES */
  .services-section { padding: 120px 0; background: var(--white); position: relative; }
  .services-section::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: radial-gradient(ellipse at right, rgba(26,138,138,0.04) 0%, transparent 70%); }
  .service-card { background: white; border: 1px solid rgba(13,31,60,0.07); border-radius: 4px; padding: 40px 36px; position: relative; overflow: hidden; cursor: pointer; transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275); height: 100%; }
  .service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
  .service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(13,31,60,0.12); border-color: rgba(26,138,138,0.2); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon-wrap { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: white; margin-bottom: 28px; position: relative; z-index: 1; transition: transform 0.4s ease; }
  .service-card:hover .service-icon-wrap { transform: rotate(10deg) scale(1.1); }
  .icon-teal { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
  .icon-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
  .icon-navy { background: linear-gradient(135deg, var(--navy), #1a3a6e); }
  .icon-dark-teal { background: linear-gradient(135deg, #116060, var(--teal)); }
  .service-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
  .service-list { list-style: none; padding: 0; }
  .service-list li { font-size: 0.875rem; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; gap: 10px; transition: color 0.3s ease; }
  .service-list li:last-child { border-bottom: none; }
  .service-card:hover .service-list li { color: var(--text-dark); }
  .service-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

  /* WHY */
  .why-section { padding: 120px 0; background: var(--navy); position: relative; overflow: hidden; }
  .why-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(184,151,90,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184,151,90,0.04) 1px, transparent 1px); background-size: 50px 50px; }
  .why-section .section-headline { color: white; }
  .why-section .section-headline em { color: var(--gold); }
  .feature-item { display: flex; gap: 24px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: all 0.3s ease; }
  .feature-item:last-child { border-bottom: none; }
  .feature-item:hover { transform: translateX(8px); }
  .feature-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: rgba(184,151,90,0.2); line-height: 1; flex-shrink: 0; transition: color 0.3s ease; min-width: 60px; }
  .feature-item:hover .feature-num { color: rgba(184,151,90,0.6); }
  .feature-content h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: white; margin-bottom: 8px; }
  .feature-content p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 0; }
  .why-img-wrap { position: relative; }
  .why-img-inner { border-radius: 4px; overflow: hidden; position: relative; }
  .why-img-inner img { width: 100%; height: 620px; object-fit: cover; filter: brightness(0.8) saturate(0.8); transition: filter 0.6s ease; }
  .why-img-inner:hover img { filter: brightness(0.9) saturate(1); }
  .why-img-inner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,31,60,0.7) 0%, transparent 50%); z-index: 1; }
  .why-img-caption { position: absolute; bottom: 30px; left: 30px; right: 30px; z-index: 2; color: white; }
  .why-img-caption h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; margin-bottom: 4px; }
  .why-img-caption p { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 2px; text-transform: uppercase; }
  .why-corner-dec { position: absolute; border: 1.5px solid rgba(184,151,90,0.3); border-radius: 4px; top: -16px; right: -16px; bottom: 16px; left: 16px; pointer-events: none; }

  /* TESTIMONIALS */
  .testi-section { padding: 120px 0; background: var(--off-white); position: relative; overflow: hidden; }
  .testi-section::before { content: '"'; position: absolute; top: -40px; left: -20px; font-family: 'Cormorant Garamond', serif; font-size: 400px; font-weight: 700; color: rgba(26,138,138,0.05); line-height: 1; pointer-events: none; }
  .testi-card { background: white; border-radius: 4px; padding: 44px 40px; border: 1px solid rgba(13,31,60,0.06); position: relative; transition: all 0.4s ease; height: 100%; }
  .testi-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px rgba(13,31,60,0.1); }
  .testi-card::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 80px; color: var(--teal); opacity: 0.2; line-height: 0.8; position: absolute; top: 30px; right: 30px; }
  .testi-stars { color: var(--gold); margin-bottom: 20px; font-size: 14px; }
  .testi-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--gold)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; flex-shrink: 0; }
  .testi-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
  .testi-role { font-size: 0.75rem; color: var(--text-muted); }

  /* PROCESS */
  .process-section { padding: 120px 0; background: white; }
  .process-step { text-align: center; position: relative; padding: 0 20px; }
  .process-step::after { content: ''; position: absolute; top: 40px; left: 60%; width: 80%; height: 1px; border-top: 1.5px dashed rgba(26,138,138,0.3); }
  .process-step:last-child::after { display: none; }
  .process-circle { width: 80px; height: 80px; border-radius: 50%; background: var(--white); border: 2px solid rgba(26,138,138,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; transition: all 0.4s ease; }
  .process-step:hover .process-circle { background: linear-gradient(135deg, var(--teal), var(--teal-light)); border-color: var(--teal); transform: scale(1.1); box-shadow: 0 15px 40px rgba(26,138,138,0.3); }
  .process-circle i { font-size: 28px; color: var(--teal); transition: color 0.4s ease; }
  .process-step:hover .process-circle i { color: white; }
  .process-step h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
  .process-step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

  /* CTA */
  .cta-section { padding: 100px 0; background: linear-gradient(135deg, var(--navy) 0%, #142d58 50%, var(--navy) 100%); position: relative; overflow: hidden; text-align: center; }
  .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(26,138,138,0.15) 0%, transparent 70%); }
  .cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 600; color: white; line-height: 1.15; margin-bottom: 20px; }
  .cta-section h2 em { font-style: italic; color: var(--gold); }
  .cta-section p { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }

  /* FOOTER */
  .footer { background: #080f1e; padding: 80px 0 40px; }
  .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: white; letter-spacing: 3px; }
  .footer-tagline { font-size: 0.7rem; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; margin-top: 4px; }
  .footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.8; margin-top: 20px; max-width: 280px; }
  .footer-heading { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 24px; }
  .footer-links { list-style: none; padding: 0; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s ease; display: flex; align-items: center; gap: 8px; }
  .footer-links a:hover { color: var(--gold); }
  .contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
  .contact-icon { width: 36px; height: 36px; background: rgba(26,138,138,0.1); border: 1px solid rgba(26,138,138,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal-light); font-size: 13px; flex-shrink: 0; }
  .contact-text { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.5; }
  .contact-text strong { color: rgba(255,255,255,0.7); display: block; }
  .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 40px 0 30px; }
  .footer-bottom { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
  .footer-bottom a { color: var(--gold); text-decoration: none; }
  .social-links { display: flex; gap: 12px; margin-top: 24px; }
  .social-link { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); font-size: 14px; text-decoration: none; transition: all 0.3s ease; }
  .social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal-left.revealed { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal-right.revealed { opacity: 1; transform: translateX(0); }
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }

  /* SCROLL INDICATOR */
  .scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 5; animation: fadeIn 1s 1.5s both; cursor: pointer; }
  .scroll-indicator span { display: block; width: 28px; height: 48px; border: 2px solid rgba(255,255,255,0.25); border-radius: 20px; position: relative; margin: 0 auto; }
  .scroll-indicator span::before { content: ''; width: 4px; height: 10px; background: var(--gold); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scroll-bounce 2s ease-in-out infinite; }
  @keyframes scroll-bounce { 0%,100%{transform:translateX(-50%) translateY(0);opacity:1;} 80%{transform:translateX(-50%) translateY(16px);opacity:0;} }

  /* LIVE BADGE */
  .live-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(26,138,138,0.15); border: 1px solid rgba(26,138,138,0.3); border-radius: 20px; padding: 6px 14px; font-size: 0.72rem; color: var(--teal-light); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; animation: fadeSlideUp 0.8s ease 0s both; }
  .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-light); animation: ping 1.5s ease-in-out infinite; }
  @keyframes ping { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.5);opacity:0.5;} }

  /* MOBILE */
  @media (max-width: 767px) {
    .hero { padding: 120px 0 80px; }
    .hero-img-wrap { margin-top: 50px; }
    .hero-badge { left: 10px; bottom: 20px; }
    .process-step::after { display: none; }
    .stat-divider { display: none; }
    .hero-img-frame img { height: 350px; }
    .why-img-inner img { height: 350px; }
  }

  /* ═══════════════════════════════════════
     WHATSAPP BOOKING MODAL
  ═══════════════════════════════════════ */
  .wa-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(8,15,30,0.82);
    backdrop-filter: blur(8px);
    z-index: 99999;
    align-items: center; justify-content: center;
    padding: 16px;
  }
  .wa-overlay.active { display: flex; animation: overlay-in 0.3s ease both; }
  @keyframes overlay-in { from{opacity:0;} to{opacity:1;} }

  .wa-modal {
    background: #fff; border-radius: 14px;
    width: 100%; max-width: 530px;
    overflow: hidden; position: relative;
    animation: modal-in 0.45s cubic-bezier(0.175,0.885,0.32,1.275) both;
    box-shadow: 0 50px 120px rgba(0,0,0,0.45);
  }
  @keyframes modal-in { from{opacity:0;transform:scale(0.85) translateY(40px);} to{opacity:1;transform:scale(1) translateY(0);} }

  /* MODAL HEADER */
  .wa-header {
    background: linear-gradient(135deg, #0d1f3c 0%, #142d58 100%);
    padding: 30px 34px 26px; position: relative; overflow: hidden;
  }
  .wa-header::before { content: ''; position: absolute; top: -70px; right: -70px; width: 200px; height: 200px; border-radius: 50%; background: rgba(184,151,90,0.1); }
  .wa-header::after { content: ''; position: absolute; bottom: -50px; left: -30px; width: 150px; height: 150px; border-radius: 50%; background: rgba(42,181,181,0.08); }
  .wa-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; z-index: 10; }
  .wa-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
  .wa-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; position: relative; z-index: 1; }
  .wa-logo { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--teal)); display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; }
  .wa-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 3px; line-height: 1; display: block; }
  .wa-brand-sub { font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
  .wa-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: #fff; position: relative; z-index: 1; margin-bottom: 6px; }
  .wa-title em { font-style: italic; color: var(--gold); }
  .wa-subtitle { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 1px; position: relative; z-index: 1; }
  .wa-badge { position: absolute; top: 22px; right: 56px; display: flex; align-items: center; gap: 7px; background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.35); border-radius: 20px; padding: 6px 13px; z-index: 5; }
  .wa-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #25D366; animation: wa-ping 1.5s ease-in-out infinite; }
  .wa-badge-text { font-size: 10px; color: #25D366; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
  @keyframes wa-ping { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.5);opacity:0.5;} }

  /* MODAL FORM */
  .wa-form-wrap { padding: 28px 34px 34px; }
  .wa-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .wa-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
  .wa-field label { font-size: 10.5px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: #6b7a96; }
  .wa-field label span { color: #e24b4a; margin-left: 2px; }
  .wa-input, .wa-select, .wa-textarea {
    width: 100%; padding: 12px 15px;
    border: 1.5px solid #e5e8f0;
    border-radius: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: #0d1f3c;
    background: #f8f9fc;
    transition: all 0.25s ease;
    outline: none; appearance: none;
  }
  .wa-input:focus, .wa-select:focus, .wa-textarea:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(26,138,138,0.1); }
  .wa-input::placeholder, .wa-textarea::placeholder { color: #c0c5d0; }
  .wa-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
  .wa-textarea { resize: none; height: 90px; line-height: 1.6; }
  .wa-error { font-size: 11px; color: #e24b4a; margin-top: 3px; display: none; }
  .wa-field.has-error .wa-input, .wa-field.has-error .wa-select { border-color: #e24b4a; box-shadow: 0 0 0 3px rgba(226,75,74,0.1); }
  .wa-field.has-error .wa-error { display: block; }

  .wa-submit {
    width: 100%; padding: 16px;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: #fff; border: none; border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 10px; margin-top: 20px;
    position: relative; overflow: hidden;
    transition: all 0.3s ease;
  }
  .wa-submit::before { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s ease; }
  .wa-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(37,211,102,0.45); }
  .wa-submit:hover::before { left: 120%; }
  .wa-submit:active { transform: translateY(0); }
  .wa-privacy { text-align: center; font-size: 11px; color: #b0b6c4; margin-top: 12px; }
  .wa-privacy a { color: var(--teal); text-decoration: none; }

  /* SUCCESS */
  .wa-success { display: none; padding: 56px 34px; text-align: center; }
  .wa-success.active { display: block; animation: modal-in 0.4s ease both; }
  .wa-success-ring {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #1da851);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    animation: pop-in 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both;
    position: relative;
  }
  .wa-success-ring::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.3); animation: ring-pulse 2s ease-out infinite; }
  @keyframes pop-in { from{transform:scale(0) rotate(-45deg);} to{transform:scale(1) rotate(0);} }
  .wa-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: #0d1f3c; margin-bottom: 10px; }
  .wa-success p { font-size: 14px; color: #6b7a96; line-height: 1.7; max-width: 360px; margin: 0 auto 28px; }
  .wa-close-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; background: var(--navy); color: white; border: none; border-radius: 7px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease; }
  .wa-close-btn:hover { background: var(--teal); transform: translateY(-2px); }

  @media (max-width: 480px) {
    .wa-row { grid-template-columns: 1fr; }
    .wa-form-wrap { padding: 20px; }
    .wa-header { padding: 22px 20px 20px; }
    .wa-badge { display: none; }
    .wa-modal { border-radius: 10px; }
  }