  /* ═══════════════════════════════════════════
       CSS VARIABLES — LIGHT & DARK
    ═══════════════════════════════════════════ */
    :root {
      --navy:        #0b2240;
      --navy-mid:    #123460;
      --blue:        #1a5fa8;
      --blue-light:  #2d8dd9;
      --sky:         #e8f4ff;
      --sky-mid:     #d0e8fa;
      --gold:        #f5a623;
      --gold-light:  #fef3dc;
      --green:       #16a96b;
      --green-light: #d4f5e8;
      --red:         #e84040;
      --red-light:   #fde8e8;
      --bg:          #e8eff8;
      --bg2:         #dde8f5;
      --white:       #f4f9ff;
      --card:        #f4f9ff;
      --text:        #0d1f35;
      --muted:       #5a7490;
      --border:      rgba(11,34,64,0.09);
      --border2:     rgba(11,34,64,0.14);
      --shadow-sm:   0 2px 12px rgba(11,34,64,0.07);
      --shadow-md:   0 6px 28px rgba(11,34,64,0.11);
      --shadow-lg:   0 16px 56px rgba(11,34,64,0.16);
      --input-bg:    #e8eff8;
      --f-display: 'Playfair Display', Georgia, serif;
      --f-body:    'Plus Jakarta Sans', system-ui, sans-serif;
    }
    [data-theme="dark"] {
      --navy:        #e2eaf8;
      --navy-mid:    #c5d5ee;
      --blue:        #5ba8f5;
      --blue-light:  #7dbfff;
      --sky:         #1a2a3f;
      --sky-mid:     #1e3250;
      --gold:        #f5a623;
      --gold-light:  #2e2000;
      --green:       #2fd98a;
      --green-light: #0a2a1c;
      --red:         #ff6b6b;
      --red-light:   #2a0a0a;
      --bg:          #0d1826;
      --bg2:         #111f33;
      --white:       #0d1826;
      --card:        #152035;
      --text:        #dce8f8;
      --muted:       #7a9bbb;
      --border:      rgba(255,255,255,0.07);
      --border2:     rgba(255,255,255,0.13);
      --shadow-sm:   0 2px 12px rgba(0,0,0,0.3);
      --shadow-md:   0 6px 28px rgba(0,0,0,0.4);
      --shadow-lg:   0 16px 56px rgba(0,0,0,0.5);
      --input-bg:    #0d1826;
    }
    [data-theme="dark"] select option { background-color: #152035; color: #dce8f8; }

    /* AUTOFILL FIX */
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
      -webkit-text-fill-color: var(--text) !important;
      -webkit-box-shadow: 0 0 0px 1000px var(--input-bg) inset !important;
      transition: background-color 5000s ease-in-out 0s;
    }

    /* ═══════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--f-body);
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      opacity: 0;
      transition: opacity 0.5s ease, background 0.35s ease, color 0.35s ease;
    }
    body.loaded { opacity: 1; }

    /* ═══════════════════════════════════════════
       PAGE LOADER
    ═══════════════════════════════════════════ */
    #page-loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--navy-mid, #123460);
      display: flex; align-items: center; justify-content: center;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    #page-loader.hide { opacity: 0; visibility: hidden; }
    .loader-inner { text-align: center; animation: loaderPulse 1.4s ease-in-out infinite; }
    .loader-logo { width: 68px; height: 68px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.15); padding: 4px; margin: 0 auto 1rem; }
    .loader-logo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
    .loader-text { color: rgba(255,255,255,0.7); font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; }
    .loader-bar { width: 120px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; margin: 0.8rem auto 0; overflow: hidden; }
    .loader-bar-fill { height: 100%; background: var(--gold); border-radius: 2px; animation: loadBar 1.1s ease forwards; }
    @keyframes loadBar { from{width:0} to{width:100%} }
    @keyframes loaderPulse { 0%,100%{opacity:1} 50%{opacity:0.6} }

    /* ═══════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════ */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 0 1.5rem;
      transition: background 0.3s, box-shadow 0.3s;
    }
    .navbar.scrolled {
      background: var(--card);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-sm);
    }
    .nav-inner {
      max-width: 1160px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
    }
    .nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
    .nav-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; box-shadow: 0 0 0 2px var(--gold), 0 0 0 4px rgba(245,166,35,0.18), 0 4px 14px rgba(245,166,35,0.25); transition: box-shadow 0.25s, transform 0.25s; }
    .nav-brand:hover img { transform: scale(1.08); box-shadow: 0 0 0 2px var(--gold), 0 0 0 6px rgba(245,166,35,0.28), 0 6px 22px rgba(245,166,35,0.35); }
    .navbar.scrolled .nav-brand img { box-shadow: 0 0 0 2px var(--gold), 0 0 0 4px rgba(245,166,35,0.18), 0 4px 14px rgba(245,166,35,0.25); }
    .brand-name { font-family: var(--f-display); font-size: 1.12rem; color: #fff; transition: color 0.3s; white-space: nowrap; }
    .navbar.scrolled .brand-name { color: var(--navy); }

    .nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
    .nav-links a { display: block; padding: 0.45rem 0.85rem; border-radius: 8px; color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: background 0.2s, color 0.2s; }
    .navbar.scrolled .nav-links a { color: var(--muted); }
    .nav-links a:hover { background: rgba(255,255,255,0.15); color: #fff; }
    .navbar.scrolled .nav-links a:hover { background: var(--sky); color: var(--blue); }
    .nav-links a.active { color: var(--gold) !important; font-weight: 700; }
    .nav-cta a { background: var(--gold) !important; color: var(--navy, #0b2240) !important; font-weight: 700 !important; padding: 0.5rem 1.2rem !important; border-radius: 8px; }
    .nav-cta a:hover { background: #e09318 !important; transform: translateY(-1px); }

    /* Theme toggle */
    .theme-toggle {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.2);
      color: #fff; font-size: 1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
      flex-shrink: 0;
    }
    .navbar.scrolled .theme-toggle { background: var(--sky); color: var(--blue); border-color: var(--border2); }
    .theme-toggle:hover { transform: rotate(20deg) scale(1.1); }

    .nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; width: 40px; height: 40px; border-radius: 8px; align-items: center; justify-content: center; transition: color 0.3s; }
    .navbar.scrolled .nav-toggle { color: var(--navy); }

    /* ═══════════════════════════════════════════
       HERO HEADER
    ═══════════════════════════════════════════ */
    .page-hero {
      position: relative;
      background: linear-gradient(150deg, #0b2240 0%, #123460 55%, #0f4d8a 100%);
      padding: 140px 1.5rem 90px;
      text-align: center;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .hero-mesh { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .mesh-blob {
      position: absolute; border-radius: 50%;
      filter: blur(70px); opacity: 0.16;
      animation: blobFloat 12s ease-in-out infinite;
    }
    .mesh-blob:nth-child(1) { width: 450px; height: 450px; background: #2d8dd9; top: -120px; right: -60px; animation-duration: 14s; }
    .mesh-blob:nth-child(2) { width: 280px; height: 280px; background: #f5a623; bottom: -40px; left: -40px; animation-duration: 10s; animation-delay: -4s; }
    .mesh-blob:nth-child(3) { width: 180px; height: 180px; background: #16a96b; top: 40%; left: 35%; animation-duration: 16s; animation-delay: -8s; opacity: 0.08; }
    @keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(18px,-25px) scale(1.07)} 66%{transform:translate(-12px,16px) scale(0.94)} }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px; padding: 0.4rem 1.1rem;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.88);
      margin-bottom: 1.4rem;
      animation: fadeUp 0.7s cubic-bezier(.2,.8,.3,1) 0.2s both;
    }
    .hero-badge i { color: var(--gold); }
    .page-hero h1 {
      font-family: var(--f-display);
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      color: #fff; line-height: 1.12; letter-spacing: -0.02em;
      margin-bottom: 1rem;
      animation: fadeUp 0.8s cubic-bezier(.2,.8,.3,1) 0.4s both;
    }
    .page-hero h1 em { font-style: italic; color: var(--gold); }
    .page-hero p {
      max-width: 560px; margin: 0 auto;
      font-size: 1.05rem; line-height: 1.8; font-weight: 300;
      color: rgba(255,255,255,0.72);
      animation: fadeUp 0.8s cubic-bezier(.2,.8,.3,1) 0.6s both;
    }
    @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }

    /* Contact info chips */
    .hero-chips {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem;
      margin-top: 2rem;
      animation: fadeUp 0.8s cubic-bezier(.2,.8,.3,1) 0.8s both;
    }
    .hero-chip {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50px; padding: 0.55rem 1.2rem;
      color: rgba(255,255,255,0.88); font-size: 0.88rem; font-weight: 500;
      text-decoration: none; transition: background 0.2s, transform 0.2s;
    }
    .hero-chip:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); color: #fff; }
    .hero-chip i { color: var(--gold); }

    /* ═══════════════════════════════════════════
       SCROLL ANIMATIONS
    ═══════════════════════════════════════════ */
    .anim { opacity: 0; transform: translateY(32px); transition: opacity 0.65s cubic-bezier(.2,.8,.3,1), transform 0.65s cubic-bezier(.2,.8,.3,1); }
    .anim.fl { transform: translateX(-32px); }
    .anim.fr { transform: translateX(32px); }
    .anim.fs { transform: scale(0.93); }
    .anim.in { opacity: 1; transform: none; }
    .d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

    /* ═══════════════════════════════════════════
       MAIN SECTION
    ═══════════════════════════════════════════ */
    .contact-section { padding: 80px 1.5rem 100px; }
    .contact-inner { max-width: 1100px; margin: 0 auto; }

    .sec-eyebrow {
      display: inline-block; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--blue-light); margin-bottom: 0.6rem;
    }
    .sec-title {
      font-family: var(--f-display);
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      color: var(--navy); line-height: 1.2; letter-spacing: -0.02em;
      margin-bottom: 0.6rem;
    }
    .sec-sub { font-size: 0.97rem; color: var(--muted); line-height: 1.7; max-width: 480px; }

    /* Layout: left info + right forms */
    .contact-layout {
      display: grid; grid-template-columns: 320px 1fr;
      gap: 3rem; align-items: start; margin-top: 3.5rem;
    }

    /* ─── Left: Info Column ─── */
  
    .info-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px; padding: 2rem;
      box-shadow: var(--shadow-sm);
      margin-bottom: 1.2rem;
      transition: background 0.35s, border-color 0.35s;
    }
    .info-card h3 { font-family: var(--f-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 1.1rem; }
    .info-item {
      display: flex; align-items: flex-start; gap: 0.85rem;
      margin-bottom: 1.1rem;
    }
    .info-item:last-child { margin-bottom: 0; }
    .info-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--sky); display: flex; align-items: center;
      justify-content: center; font-size: 0.9rem; color: var(--blue);
      flex-shrink: 0; transition: background 0.35s;
    }
    .info-item-text { flex: 1; }
    .info-item-label { font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.2rem; }
    .info-item-val { font-size: 0.88rem; color: var(--text); font-weight: 500; word-break: break-all; }
    .info-item-val a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
    .info-item-val a:hover { color: var(--blue-light); text-decoration: underline; }

    /* Social links */
    .social-links { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.3rem; }
    .soc-btn {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.5rem 1rem; border-radius: 50px;
      font-size: 0.82rem; font-weight: 600;
      text-decoration: none; transition: transform 0.2s, opacity 0.2s;
    }
    .soc-btn:hover { transform: translateY(-2px); opacity: 0.9; }
    .soc-btn.wa  { background: #25d366; color: #fff; }
    .soc-btn.li  { background: #0077b5; color: #fff; }
    .soc-btn.ig  { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); color: #fff; }

    /* Response time badge */
    .resp-badge {
      display: flex; align-items: center; gap: 0.6rem;
      background: var(--green-light); border-radius: 10px;
      padding: 0.75rem 1rem; margin-top: 0;
      transition: backgrou 0.35s;
    }
    .resp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
    .resp-text { font-size: 0.82rem; color: var(--green); font-weight: 600; }

    /* ─── Right: Form Column ─── */
  

    /* Tab pills */
    .form-tabs {
      display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0;
    }
    .ftab {
      padding: 0.6rem 1.2rem; border-radius: 50px 50px 0 0;
      border: 1.5px solid var(--border2); border-bottom: none;
      background: var(--bg2); color: var(--muted);
      font-weight: 600; font-size: 0.85rem; font-family: var(--f-body);
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .ftab:hover { color: var(--blue); border-color: var(--blue); }
    .ftab.active { background: var(--card); color: var(--navy); border-color: var(--border2); border-bottom-color: var(--card); position: relative; z-index: 2; }

    /* Form panels */
    .fpanel {
      display: none;
      background: var(--card);
      border: 1.5px solid var(--border2); border-radius: 0 16px 16px 16px;
      padding: 2.2rem 2rem;
      box-shadow: var(--shadow-sm);
      position: relative; z-index: 1;
      transition: background 0.35s, border-color 0.35s;
    }
    .fpanel.active { display: block; animation: panelIn 0.4s cubic-bezier(.2,.8,.3,1); }
    @keyframes panelIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }

    .fpanel-header { margin-bottom: 1.8rem; }
    .fpanel-header h3 { font-family: var(--f-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 0.35rem; }
    .fpanel-header p { color: var(--muted); font-size: 0.88rem; }

    /* Form fields */
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .fg { margin-bottom: 1.1rem; }
    .fg label {
      display: block; font-size: 0.74rem; font-weight: 700;
      color: var(--navy-mid); text-transform: uppercase; letter-spacing: 0.07em;
      margin-bottom: 0.4rem;
    }
    .fg label .req { color: var(--red); margin-left: 2px; }
    .fg input, .fg textarea, .fg select {
      width: 100%; padding: 0.78rem 1rem;
      border: 1.5px solid var(--border2); border-radius: 10px;
      font-family: var(--f-body); font-size: 0.93rem;
      color: var(--text); background: var(--input-bg);
      outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.35s;
    }
    .fg input::placeholder, .fg textarea::placeholder { color: var(--muted); opacity: 0.7; }
    .fg input:focus, .fg textarea:focus, .fg select:focus {
      border-color: var(--blue-light);
      box-shadow: 0 0 0 3px rgba(45,141,217,0.12);
    }
    .fg textarea { resize: vertical; min-height: 120px; }
    .fg select option { background: var(--card); }

    /* Star rating */
    .star-rating { display: flex; gap: 0.3rem; margin-top: 0.3rem; }
    .star-rating input { display: none; }
    .star-rating label { font-size: 1.5rem; color: var(--border2); cursor: pointer; transition: color 0.15s; }
    .star-rating input:checked ~ label,
    .star-rating label:hover,
    .star-rating label:hover ~ label { color: var(--gold); }
    .star-rating { flex-direction: row-reverse; }
    .star-rating label:hover,
    .star-rating label:hover ~ label,
    .star-rating input:checked ~ label { color: var(--gold); }

    /* Character counter */
    .char-counter { font-size: 0.72rem; color: var(--muted); text-align: right; margin-top: 0.25rem; }

    /* Submit button */
    .submit-btn {
      width: 100%; padding: 0.92rem;
      background: var(--navy, #0b2240); color: #fff;
      border: none; border-radius: 10px;
      font-family: var(--f-body); font-size: 0.95rem; font-weight: 700;
      cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
      transition: background 0.2s, transform 0.2s;
      margin-top: 0.5rem;
    }
    .submit-btn:hover:not(:disabled) { background: var(--blue); transform: translateY(-2px); }
    .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    /* Dark mode button overrides */
    [data-theme="dark"] .submit-btn { background: var(--gold); color: #0b2240; }
    [data-theme="dark"] .submit-btn:hover:not(:disabled) { background: #e09318; }
    [data-theme="dark"] .privacy-note { background: var(--sky-mid); }
    [data-theme="dark"] .ftab.active { background: var(--gold); color: #0b2240; }
    [data-theme="dark"] .ftab { background: var(--bg2); color: var(--muted); }

    /* Form messages */
    .form-msg {
      display: none; margin-top: 1rem;
      border-radius: 10px; padding: 0.9rem 1.1rem;
      font-size: 0.9rem; font-weight: 600;
      align-items: center; gap: 0.5rem;
    }
    .form-msg.success { background: var(--green-light); color: var(--green); display: flex; }
    .form-msg.error   { background: var(--red-light); color: var(--red); display: flex; }

    /* Required note */
    .req-note { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; }
    .req-note span { color: var(--red); }

    /* Privacy note */
    .privacy-note {
      display: flex; align-items: flex-start; gap: 0.5rem;
      background: var(--sky); border-radius: 10px; padding: 0.9rem 1rem;
      margin-bottom: 1.2rem; transition: background 0.35s;
    }
    .privacy-note i { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
    .privacy-note p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

    /* ═══════════════════════════════════════════
       TOAST
    ═══════════════════════════════════════════ */
    #toast {
      position: fixed; bottom: 1.5rem; right: 1.5rem;
      background: var(--navy, #0b2240); color: #fff;
      padding: 0.85rem 1.4rem; border-radius: 14px;
      font-size: 0.88rem; font-weight: 500;
      box-shadow: var(--shadow-lg); z-index: 9000;
      transform: translateY(20px); opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
      pointer-events: none; max-width: 300px;
      display: flex; align-items: center; gap: 0.6rem;
    }
    #toast.show { transform: none; opacity: 1; }
    #toast.success { background: var(--green); }
    #toast.error   { background: var(--red); }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    footer { background: #07162a; color: rgba(255,255,255,0.5); padding: 2.5rem 1.5rem; text-align: center; }
    .footer-inner { max-width: 1160px; margin: 0 auto; }
    .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.2rem; }
    footer a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
    footer a:hover { color: var(--gold); }
    .footer-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 1.2rem; }
    .footer-ci { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; }
    .footer-bottom { font-size: 0.8rem; }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 960px) {
      .contact-layout { grid-template-columns: 1fr; }
      .info-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    }
    @media (max-width: 680px) {
      .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--card); backdrop-filter: blur(20px); padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid var(--border); gap: 0.25rem; z-index: 199; }
      .nav-links.open { display: flex; }
      .nav-links a { color: var(--muted) !important; padding: 0.6rem 0.9rem; }
      .nav-links a:hover { background: var(--sky); color: var(--blue) !important; }
      .nav-toggle { display: flex; }
      .form-row { grid-template-columns: 1fr; }
      .fpanel { padding: 1.5rem 1.2rem; }
      .contact-section { padding: 60px 1.2rem 80px; }
      .info-col { grid-template-columns: 1fr; }
      .ftab { font-size: 0.78rem; padding: 0.5rem 0.8rem; }
      .page-hero { padding: 120px 1.2rem 70px; }
    }
    @media (max-width: 400px) {
      .page-hero h1 { font-size: 1.9rem; }
      .sec-title { font-size: 1.5rem; }
    }

    /* Transition for theme */
    *, *::before, *::after { transition: background-color 0.35s ease, border-color 0.35s ease, color 0.2s ease; }
    .anim, .anim * { transition: opacity 0.65s cubic-bezier(.2,.8,.3,1), transform 0.65s cubic-bezier(.2,.8,.3,1), background-color 0.35s ease, border-color 0.35s ease, color 0.2s ease; }
    /* -- Dark mode button & element overrides -- */
    [data-theme="dark"] .btn-next,
    [data-theme="dark"] .submit-btn { background: var(--gold); color: #0b2240; }
    [data-theme="dark"] .btn-next:hover:not(:disabled),
    [data-theme="dark"] .submit-btn:hover:not(:disabled) { background: #e09318; color: #0b2240; }
    [data-theme="dark"] .privacy-note { background: var(--sky-mid); }
    [data-theme="dark"] .ftab.active { background: var(--gold); color: #0b2240; border-color: var(--gold); }
    [data-theme="dark"] .method-btn.active { background: var(--sky); color: var(--blue); }  