:root {
    --navy: #0B1D3A;
    --navy-mid: #162C52;
    --sky: #2B7FD4;
    --sky-light: #5BAAF0;
    --sky-pale: #EBF4FF;
    --gold: #C8A96E;
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --grey-100: #F0F4F8;
    --grey-200: #DDE5EE;
    --grey-400: #8FA3B8;
    --grey-600: #4A6580;
    --grey-800: #1E3448;
    --text: #0B1D3A;
    --text-light: #4A6580;
    --radius: 4px;
    --radius-lg: 12px;
    --shadow: 0 2px 20px rgba(11,29,58,0.08);
    --shadow-lg: 0 8px 40px rgba(11,29,58,0.14);
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
  h1,h2,h3,h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--grey-200); transition: box-shadow var(--transition); }
  nav.scrolled { box-shadow: var(--shadow); }
  .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; height: 72px; }
  .nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
  .nav-logo-mark { width: 38px; height: 38px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
  .nav-logo-mark::before { content: ''; position: absolute; width: 18px; height: 18px; border: 2.5px solid var(--sky-light); border-radius: 50%; top: 6px; left: 6px; }
  .nav-logo-mark::after { content: ''; position: absolute; width: 8px; height: 12px; background: var(--gold); bottom: 5px; right: 8px; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); transform: rotate(5deg); }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
  .nav-logo-text span:first-child { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.25rem; color: var(--navy); letter-spacing: -0.02em; }
  .nav-logo-text span:last-child { font-size: 0.65rem; font-weight: 500; color: var(--sky); letter-spacing: 0.12em; text-transform: uppercase; }
  .nav-links { display: flex; align-items: stretch; gap: 0; list-style: none; height: 72px; }
  .nav-links li { display: flex; align-items: center; }
  .nav-links a { display: flex; align-items: center; padding: 0 14px; height: 72px; font-size: 0.875rem; font-weight: 500; color: var(--grey-600); text-decoration: none; border-radius: 0; transition: color var(--transition), background var(--transition); cursor: pointer; white-space: nowrap; }
  .nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--sky-pale); }
  .nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 0 20px !important; margin-left: 8px; border-radius: var(--radius) !important; height: 40px !important; align-self: center; }
  .nav-cta:hover { background: var(--sky) !important; }
  .nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
  .nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

  /* HERO */
  .hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 72px; }
  .hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(43,127,212,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(43,127,212,0.06) 1px, transparent 1px); background-size: 60px 60px; }
  .hero-bg-glow { position: absolute; width: 800px; height: 800px; background: radial-gradient(circle, rgba(43,127,212,0.18) 0%, transparent 70%); top: -200px; right: -200px; pointer-events: none; }
  .hero-bg-glow2 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%); bottom: 0; left: 100px; pointer-events: none; }
  .hero-inner { max-width: 1200px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(43,127,212,0.15); border: 1px solid rgba(43,127,212,0.3); border-radius: 100px; padding: 6px 16px; margin-bottom: 28px; font-size: 0.8rem; font-weight: 500; color: var(--sky-light); letter-spacing: 0.06em; text-transform: uppercase; }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--sky-light); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
  .hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); color: var(--white); line-height: 1.12; margin-bottom: 24px; font-weight: 600; }
  .hero h1 em { color: var(--gold); font-style: italic; font-weight: 300; }
  .hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 40px; max-width: 480px; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary { background: var(--sky); color: var(--white); padding: 14px 28px; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600; border: none; cursor: pointer; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; }
  .btn-primary:hover { background: var(--sky-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(43,127,212,0.4); }
  .btn-outline { background: transparent; color: var(--white); padding: 14px 28px; border-radius: var(--radius); font-size: 0.95rem; font-weight: 500; border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer; transition: all var(--transition); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; }
  .btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
  .hero-visual { position: relative; }
  .hero-card-main { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 32px; backdrop-filter: blur(8px); }
  .hero-card-main h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 24px; font-weight: 600; }
  .visa-pill-grid { display: flex; flex-direction: column; gap: 10px; }
  .visa-pill { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 12px 16px; transition: background var(--transition); cursor: pointer; }
  .visa-pill:hover { background: rgba(43,127,212,0.15); border-color: rgba(43,127,212,0.3); }
  .visa-pill-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .visa-pill-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
  .visa-pill-sub { font-size: 0.73rem; color: rgba(255,255,255,0.45); margin-top: 1px; }
  .visa-pill-arrow { color: rgba(255,255,255,0.3); font-size: 0.875rem; margin-left: auto; }
  .hero-card-float { position: absolute; bottom: -20px; left: -24px; background: var(--white); border-radius: 10px; padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; }
  .float-icon { font-size: 1.4rem; }
  .float-text-top { font-size: 0.72rem; color: var(--grey-600); }
  .float-text-num { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }

  /* SECTIONS */
  section { padding: 96px 32px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky); margin-bottom: 16px; display: block; }
  .section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--navy); font-weight: 600; line-height: 1.15; margin-bottom: 20px; }
  .section-title em { color: var(--sky); font-style: italic; font-weight: 300; }
  .section-body { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; max-width: 580px; }
  .section-header { margin-bottom: 60px; }
  .section-header-center { text-align: center; }
  .section-header-center .section-body { margin: 0 auto; }

  /* TRUST BAR */
  .trust-bar { background: var(--off-white); padding: 28px 32px; border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
  .trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 10px; }
  .trust-item-icon { font-size: 1.2rem; }
  .trust-item-text { font-size: 0.85rem; font-weight: 500; color: var(--grey-600); }

  /* VISA CARDS */
  .visa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .visa-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); padding: 32px 28px; transition: all var(--transition); cursor: pointer; position: relative; overflow: hidden; }
  .visa-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--sky); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
  .visa-card:hover { border-color: var(--sky); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
  .visa-card:hover::before { transform: scaleX(1); }
  .visa-card-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
  .visa-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
  .visa-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 20px; }
  .visa-card-link { font-size: 0.85rem; font-weight: 600; color: var(--sky); text-decoration: none; display: flex; align-items: center; gap: 6px; cursor: pointer; }
  .visa-card-link:hover { gap: 10px; }

  /* PROCESS */
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .process-grid::before { content: ''; position: absolute; top: 27px; left: calc(12.5% + 28px); right: calc(12.5% + 28px); height: 1px; background: var(--grey-200); z-index: 0; }
  .process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
  .process-num { width: 54px; height: 54px; border-radius: 50%; background: var(--white); border: 2px solid var(--grey-200); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 0 auto 20px; transition: all var(--transition); }
  .process-step:hover .process-num { background: var(--sky); border-color: var(--sky); color: var(--white); }
  .process-step h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
  .process-step p { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; }


  /* QUIZ */
  .quiz-section { background: var(--navy); }
  .quiz-wrapper { max-width: 680px; margin: 0 auto; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 44px; }
  .quiz-step { display: none; }
  .quiz-step.active { display: block; }
  .quiz-question { font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--white); margin-bottom: 8px; }
  .quiz-sub { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
  .quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .quiz-option { background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 14px 18px; color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all var(--transition); text-align: left; width: 100%; display: flex; align-items: center; gap: 12px; font-family: 'DM Sans', sans-serif; }
  .quiz-option:hover, .quiz-option.selected { border-color: var(--sky); background: rgba(43,127,212,0.15); color: var(--white); }
  .quiz-option-icon { font-size: 1.1rem; }
  .quiz-progress { display: flex; gap: 6px; margin-bottom: 32px; }
  .quiz-progress-dot { height: 4px; flex: 1; border-radius: 2px; background: rgba(255,255,255,0.15); transition: background var(--transition); }
  .quiz-progress-dot.active { background: var(--sky); }
  .quiz-progress-dot.done { background: rgba(43,127,212,0.5); }
  .quiz-result { display: none; text-align: center; }
  .quiz-result.active { display: block; }
  .quiz-result h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 16px; }
  .quiz-result p { color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
  .quiz-result-visas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
  .quiz-visa-tag { background: rgba(43,127,212,0.2); border: 1px solid rgba(43,127,212,0.4); color: var(--sky-light); border-radius: 100px; padding: 6px 16px; font-size: 0.85rem; font-weight: 500; }

  /* FORMS */
  .book-form-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--grey-200); padding: 40px; box-shadow: var(--shadow); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--grey-200); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--text); background: var(--white); outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(43,127,212,0.1); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .field-error { display: block; font-size: 0.75rem; color: #DC2626; margin-top: 5px; min-height: 16px; }
  .field-hint { display: block; font-size: 0.72rem; color: var(--grey-400); margin-top: 4px; text-align: right; }
  .form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: #DC2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.08); }
  .form-group input.valid, .form-group select.valid, .form-group textarea.valid { border-color: #16A34A; }
  .form-submit { width: 100%; padding: 15px; background: var(--navy); color: var(--white); border: none; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all var(--transition); }
  .form-submit:hover { background: var(--sky); }

  /* CONTACT */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
  .contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
  .contact-method { display: flex; gap: 16px; align-items: flex-start; background: var(--off-white); border-radius: var(--radius); padding: 18px 22px; }
  .contact-method-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--sky); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
  .contact-method h4 { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; font-family: 'DM Sans', sans-serif; }
  .contact-method p { font-size: 0.85rem; color: var(--text-light); }
  .whatsapp-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); padding: 13px 22px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all var(--transition); font-family: 'DM Sans', sans-serif; }
  .whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-1px); }

  /* FAQ */
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--grey-200); padding: 22px 0; }
  .faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 20px; }
  .faq-question h4 { font-size: 0.975rem; font-weight: 600; color: var(--navy); line-height: 1.4; font-family: 'DM Sans', sans-serif; }
  .faq-toggle { width: 30px; height: 30px; border-radius: 50%; background: var(--off-white); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background var(--transition); font-size: 1.2rem; color: var(--navy); }
  .faq-item.open .faq-toggle { background: var(--sky); color: var(--white); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
  .faq-item.open .faq-answer { max-height: 300px; padding-top: 14px; }
  .faq-answer p { font-size: 0.875rem; color: var(--text-light); line-height: 1.75; }

  /* SKILLS */
  .skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .skill-body-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); padding: 26px; transition: all var(--transition); }
  .skill-body-card:hover { border-color: var(--sky); box-shadow: var(--shadow); }
  .skill-body-icon { font-size: 1.6rem; margin-bottom: 12px; }
  .skill-body-card h4 { font-size: 0.975rem; color: var(--navy); margin-bottom: 8px; font-weight: 600; font-family: 'DM Sans', sans-serif; }
  .skill-body-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.6; }

  /* RESOURCES */
  .resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .resource-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; transition: all var(--transition); }
  .resource-card:hover { border-color: var(--sky); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .resource-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-bottom: 14px; }
  .resource-card h4 { font-size: 0.975rem; color: var(--navy); margin-bottom: 10px; font-weight: 600; line-height: 1.35; font-family: 'DM Sans', sans-serif; }
  .resource-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; flex: 1; margin-bottom: 18px; }
  .resource-link { font-size: 0.84rem; font-weight: 600; color: var(--sky); text-decoration: none; display: flex; align-items: center; gap: 6px; cursor: pointer; }

  /* ABOUT */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .about-img-main { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: var(--radius-lg); height: 440px; position: relative; overflow: hidden; }
  .about-img-main::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(43,127,212,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(43,127,212,0.08) 1px, transparent 1px); background-size: 40px 40px; }
  .about-img-center { position: relative; z-index: 1; text-align: center; }
  .about-img-center-text { font-size: 4rem; margin-bottom: 10px; }
  .about-img-center-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
  .about-float-card { position: absolute; bottom: -24px; right: -20px; background: var(--white); border-radius: var(--radius-lg); padding: 18px 22px; box-shadow: var(--shadow-lg); }
  .about-float-stat { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 700; color: var(--navy); }
  .about-float-label { font-size: 0.78rem; color: var(--text-light); }
  .about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
  .about-value { background: var(--off-white); border-radius: var(--radius); padding: 16px 18px; display: flex; gap: 12px; }
  .about-value-icon { font-size: 1.2rem; flex-shrink: 0; }
  .about-value h5 { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; font-family: 'DM Sans', sans-serif; }
  .about-value p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

  /* FOOTER */
  footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 64px 32px 32px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }
  .footer-col h5 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--transition); cursor: pointer; }
  .footer-links a:hover { color: var(--white); }
  /* Legal / disclaimer section */
  .footer-legal { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; margin-top: 4px; }
  .footer-disclaimer-full { font-size: 0.73rem; color: rgba(255,255,255,0.3); line-height: 1.65; margin-bottom: 12px; max-width: 100%; }
  .footer-disclaimer-full strong { color: rgba(255,255,255,0.45); font-weight: 600; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
  .footer-bottom p { font-size: 0.78rem; }
  .footer-bottom-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .footer-disclaimer { font-size: 0.73rem; color: rgba(255,255,255,0.3); max-width: 100%; line-height: 1.55; }
  .mara-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(43,127,212,0.2); border: 1px solid rgba(43,127,212,0.3); border-radius: 100px; padding: 6px 14px; font-size: 0.78rem; color: var(--sky-light); font-weight: 500; }

  /* SEARCHABLE COUNTRY DROPDOWN */
  .cc-wrapper { position: relative; width: 160px; flex-shrink: 0; }
  .cc-input { width: 100%; padding: 11px 32px 11px 12px; border: 1.5px solid var(--grey-200); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--text); background: var(--white); outline: none; cursor: text; transition: border-color var(--transition), box-shadow var(--transition); box-sizing: border-box; }
  .cc-input:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(43,127,212,0.1); }
  .cc-arrow { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--grey-400); font-size: 0.75rem; }
  .cc-dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; width: 280px; background: var(--white); border: 1.5px solid var(--grey-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 2000; max-height: 240px; overflow-y: auto; }
  .cc-dropdown.open { display: block; }
  .cc-option { padding: 10px 14px; font-size: 0.84rem; color: var(--text); cursor: pointer; display: flex; align-items: center; gap: 10px; transition: background var(--transition); }
  .cc-option:hover, .cc-option.cc-highlighted { background: var(--sky-pale); color: var(--navy); }
  .cc-option .cc-dial { font-size: 0.75rem; color: var(--grey-400); margin-left: auto; flex-shrink: 0; }
  .cc-no-results { padding: 12px 14px; font-size: 0.84rem; color: var(--grey-400); text-align: center; }

  /* STAFF CARDS */
  .staff-card { background: var(--white); border: 2px solid var(--grey-200); border-radius: var(--radius-lg); padding: 28px 24px; cursor: pointer; transition: all var(--transition); text-align: center; }
  .staff-card:hover { border-color: var(--sky); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
  .staff-card.selected { border-color: var(--sky); background: var(--sky-pale); box-shadow: 0 0 0 3px rgba(43,127,212,0.15); }
  .staff-card-avatar { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 700; color: var(--white); margin: 0 auto 14px; }
  .staff-card-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; font-family: 'Fraunces', serif; }
  .staff-card-role { font-size: 0.8rem; color: var(--sky); font-weight: 600; margin-bottom: 4px; }
  .staff-card-marn { font-size: 0.73rem; color: var(--grey-400); margin-bottom: 14px; min-height: 16px; }
  .staff-card-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
  .staff-tag { background: var(--grey-100); color: var(--grey-600); font-size: 0.7rem; font-weight: 500; padding: 3px 10px; border-radius: 100px; }
  .staff-card.selected .staff-tag { background: rgba(43,127,212,0.1); color: var(--sky); }

  /* CALENDAR */
  .cal-day { text-align: center; padding: 6px 2px; font-size: 0.82rem; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); font-family: 'DM Sans', sans-serif; color: var(--text); border: 1.5px solid transparent; }
  .cal-day:hover:not(.cal-disabled):not(.cal-empty) { background: var(--sky-pale); color: var(--sky); border-color: rgba(43,127,212,0.2); }
  .cal-day.cal-today { font-weight: 700; color: var(--sky); }
  .cal-day.cal-selected { background: var(--sky); color: var(--white) !important; border-color: var(--sky); font-weight: 600; }
  .cal-day.cal-disabled { color: var(--grey-200); cursor: not-allowed; }
  .cal-day.cal-empty { cursor: default; }
  .time-slot { padding: 8px 6px; text-align: center; font-size: 0.78rem; font-weight: 500; border: 1.5px solid var(--grey-200); border-radius: var(--radius); cursor: pointer; transition: all var(--transition); color: var(--text); font-family: 'DM Sans', sans-serif; }
  .time-slot:hover { border-color: var(--sky); color: var(--sky); background: var(--sky-pale); }
  .time-slot.selected { background: var(--sky); color: var(--white); border-color: var(--sky); font-weight: 600; }

  /* CALENDAR LINK BUTTONS */
  .cal-link-btn { display: flex; align-items: center; gap: 10px; padding: 11px 16px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; text-decoration: none; border: 1.5px solid var(--grey-200); color: var(--navy); transition: all var(--transition); font-family: 'DM Sans', sans-serif; cursor: pointer; background: var(--white); }
  .cal-link-btn:hover { border-color: var(--sky); color: var(--sky); background: var(--sky-pale); }
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* SUCCESS */
  .form-success { display: none; text-align: center; padding: 40px 20px; }
  .form-success.show { display: block; }
  .form-success .success-icon { font-size: 2.8rem; margin-bottom: 14px; }
  .form-success h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 10px; }
  .form-success p { font-size: 0.9rem; color: var(--text-light); }

  /* VISA ACCORDION PANEL */
  .visa-panel { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; }
  .visa-panel-header { padding: 26px 30px; cursor: pointer; display: flex; gap: 18px; align-items: flex-start; transition: background var(--transition); }
  .visa-panel-header:hover { background: var(--off-white); }
  .visa-panel-icon { font-size: 1.8rem; flex-shrink: 0; }
  .visa-panel-info { flex: 1; }
  .visa-panel-info h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; font-weight: 600; }
  .visa-panel-info p { font-size: 0.84rem; color: var(--text-light); }
  .visa-panel-toggle { color: var(--sky); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.3s; margin-top: 2px; }
  .visa-panel.open .visa-panel-toggle { transform: rotate(45deg); }
  .visa-panel-body { display: none; padding: 0 30px 28px; border-top: 1px solid var(--grey-100); }
  .visa-panel.open .visa-panel-body { display: block; }
  .visa-panel-body-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 24px; }
  .visa-panel-body h4 { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; font-family: 'DM Sans', sans-serif; }
  .visa-panel-body ul { list-style: none; font-size: 0.84rem; color: var(--text-light); line-height: 2; }
  .visa-panel-body p { font-size: 0.84rem; color: var(--text-light); line-height: 1.75; }

  /* RESPONSIVE */

  /* ════════════════════════════════════════
     RESPONSIVE — TABLET  (≤ 900px)
  ════════════════════════════════════════ */
  @media (max-width: 900px) {

    /* Nav */
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .nav-inner { padding: 0 20px; }

    /* Hero */
    .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
    .hero-visual { display: none; }
    .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }

    /* Sections */
    section { padding: 72px 24px; }
    .section-title { font-size: clamp(1.6rem, 4vw, 2.4rem); }

    /* Grids */
    .visa-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .skills-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .resources-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .process-grid::before { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .visa-panel-body-inner { grid-template-columns: 1fr; gap: 20px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; }

    /* Trust bar */
    .trust-bar-inner { gap: 24px; }

    /* About image */
    .about-img-main { height: 280px; }

    /* Booking */
    #booking-staff-step > div { grid-template-columns: 1fr 1fr !important; gap: 16px; }
    #booking-calendar-step > div { grid-template-columns: 1fr !important; }
  }

  /* ════════════════════════════════════════
     RESPONSIVE — MOBILE  (≤ 600px)
  ════════════════════════════════════════ */
  @media (max-width: 600px) {

    /* Nav */
    .nav-inner { padding: 0 16px; height: 64px; }
    .nav-logo-text span:first-child { font-size: 1.1rem; }
    .nav-logo-text span:last-child { display: none; }

    /* Hero */
    .hero { padding-top: 64px; }
    .hero-inner { padding: 48px 16px 56px; }
    .hero h1 { font-size: clamp(1.85rem, 7vw, 2.5rem); margin-bottom: 16px; }
    .hero-sub { font-size: 0.95rem; margin-bottom: 28px; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { width: 100%; justify-content: center; }
    .hero-badge { font-size: 0.72rem; padding: 5px 12px; }

    /* Sections */
    section { padding: 56px 16px; }
    .section-title { font-size: clamp(1.5rem, 5.5vw, 2rem); }
    .section-header { margin-bottom: 36px; }
    .section-body { font-size: 0.95rem; }
    .container { padding: 0; }

    /* Grids — single column */
    .visa-grid,
    .skills-grid,
    .resources-grid { grid-template-columns: 1fr; gap: 14px; }

    /* Visa cards */
    .visa-card { padding: 24px 20px; }
    .visa-card-icon { width: 44px; height: 44px; font-size: 1.3rem; margin-bottom: 14px; }

    /* Process */
    .process-grid { grid-template-columns: 1fr; gap: 28px; }
    .process-step { padding: 0 8px; }

    /* About */
    .about-grid { grid-template-columns: 1fr; }
    .about-img-main { height: 220px; }
    .about-values { grid-template-columns: 1fr; gap: 10px; }

    /* Quiz */
    .quiz-wrapper { padding: 24px 16px; }
    .quiz-question { font-size: 1.15rem; }
    .quiz-option { padding: 12px 14px; font-size: 0.84rem; }

    /* Forms */
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .book-form-card { padding: 24px 16px; }
    .cc-wrapper { width: 130px; }
    .cc-dropdown { width: calc(100vw - 32px); left: 0; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-method { padding: 14px 16px; }
    .whatsapp-btn { width: 100%; justify-content: center; }

    /* Booking */
    #booking-staff-step > div { grid-template-columns: 1fr !important; gap: 12px; }
    #booking-calendar-step > div { grid-template-columns: 1fr !important; }
    .staff-card { padding: 20px 16px; }
    .staff-card-tags { gap: 4px; }

    /* Calendar */
    .cal-day { padding: 5px 1px; font-size: 0.78rem; }
    .time-slot { padding: 7px 4px; font-size: 0.74rem; }
    #time-slots { grid-template-columns: repeat(3, 1fr); gap: 6px; }

    /* Visa panels */
    .visa-panel-header { padding: 18px 16px; gap: 12px; }
    .visa-panel-body { padding: 0 16px 20px; }
    .visa-panel-info h3 { font-size: 1rem; }
    .visa-panel-info p { font-size: 0.78rem; }
    .visa-panel-body-inner { grid-template-columns: 1fr; gap: 16px; }

    /* FAQ */
    .faq-question h4 { font-size: 0.9rem; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand p { max-width: 100%; }
    footer { padding: 48px 16px 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-disclaimer-full { font-size: 0.7rem; }

    /* Trust bar */
    .trust-bar { padding: 20px 16px; }
    .trust-bar-inner { gap: 16px; justify-content: flex-start; }
    .trust-item-text { font-size: 0.8rem; }

    /* Buttons */
    .btn-primary, .btn-outline { padding: 12px 22px; font-size: 0.9rem; }

    /* CTA sections */
    section[style*="background:var(--navy)"] .hero-actions,
    section[style*="background:var(--navy)"] > .container > div[style*="display:flex"] {
      flex-direction: column;
      align-items: stretch;
    }
  }

  /* ════════════════════════════════════════
     RESPONSIVE — SMALL MOBILE  (≤ 380px)
  ════════════════════════════════════════ */
  @media (max-width: 380px) {
    .hero h1 { font-size: 1.7rem; }
    .section-title { font-size: 1.4rem; }
    .nav-logo-mark { width: 32px; height: 32px; }
    .visa-panel-icon { font-size: 1.4rem; }
    .process-num { width: 44px; height: 44px; font-size: 1rem; }
    .book-form-card { padding: 20px 12px; }
    .quiz-wrapper { padding: 20px 12px; }
  }
/* ═══════════════════════════════════════════════
   ASK CLEARSTEPS — AI CHAT WIDGET
═══════════════════════════════════════════════ */

/* Floating bubble */
#cs-chat-bubble {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0B1D3A;
  background: var(--navy, #0B1D3A);
  border: 2.5px solid #2B7FD4;
  border-color: var(--sky, #2B7FD4);
  box-shadow: 0 4px 20px rgba(11,29,58,0.35);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#cs-chat-bubble:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(43,127,212,0.45); }
#cs-chat-bubble svg { width: 26px; height: 26px; }
#cs-chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--sky);
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  opacity: 0;
  transition: opacity 0.3s;
}
#cs-chat-badge.show { opacity: 1; }

/* Chat panel */
#cs-chat-panel {
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: 360px;
  max-height: 540px;
  background: #ffffff;
  background: var(--white, #ffffff);
  border-radius: 12px;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 12px 48px rgba(11,29,58,0.22);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}
#cs-chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Panel header */
.cs-header {
  background: var(--navy);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cs-header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cs-header-avatar svg { width: 20px; height: 20px; }
.cs-header-name { font-size: 0.95rem; font-weight: 700; color: var(--white); font-family: 'Fraunces', serif; }
.cs-header-status { font-size: 0.72rem; color: var(--sky-light); display: flex; align-items: center; gap: 5px; }
.cs-header-status::before { content: ''; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; display: inline-block; }
.cs-header-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.cs-header-close:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* Disclaimer banner */
.cs-disclaimer {
  background: #FEF9ED;
  border-bottom: 1px solid #FDDFA0;
  padding: 9px 14px;
  font-size: 0.72rem;
  color: #92650A;
  line-height: 1.5;
  flex-shrink: 0;
}
.cs-disclaimer strong { font-weight: 700; }

/* Messages area */
.cs-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.cs-messages::-webkit-scrollbar { width: 4px; }
.cs-messages::-webkit-scrollbar-thumb { background: var(--grey-200); border-radius: 4px; }

/* Message bubbles */
.cs-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  max-width: 90%;
}
.cs-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.cs-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sky-pale);
  border: 1.5px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sky);
  font-family: 'Fraunces', serif;
}
.cs-msg.user .cs-msg-avatar { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cs-msg-bubble {
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-bottom-left-radius: 4px;
}
.cs-msg.user .cs-msg-bubble {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 4px;
}
.cs-msg-bubble a { color: var(--sky); text-decoration: underline; }
.cs-msg.user .cs-msg-bubble a { color: rgba(255,255,255,0.85); }

/* Typing indicator */
.cs-typing { display: flex; align-items: center; gap: 4px; padding: 10px 13px; }
.cs-typing span {
  width: 7px; height: 7px; background: var(--grey-400);
  border-radius: 50%; display: inline-block;
  animation: cs-bounce 1.2s infinite ease-in-out;
}
.cs-typing span:nth-child(2) { animation-delay: 0.2s; }
.cs-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes cs-bounce { 0%,80%,100%{transform:scale(0.7);opacity:0.5} 40%{transform:scale(1);opacity:1} }

/* Quick reply chips */
.cs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0 8px;
}
.cs-chip {
  background: var(--sky-pale);
  color: var(--sky);
  border: 1.5px solid rgba(43,127,212,0.25);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.cs-chip:hover { background: var(--sky); color: var(--white); border-color: var(--sky); }

/* Input area */
.cs-input-area {
  padding: 12px 14px;
  border-top: 1px solid var(--grey-200);
  display: flex;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
  background: var(--white);
}
#cs-input {
  flex: 1;
  resize: none;
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  padding: 9px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  min-height: 40px;
  max-height: 100px;
  line-height: 1.4;
  transition: border-color 0.2s;
}
#cs-input:focus { border-color: var(--sky); }
#cs-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--sky);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
#cs-send-btn:hover { background: var(--navy); transform: scale(1.05); }
#cs-send-btn svg { width: 17px; height: 17px; }
#cs-send-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* Mobile adjustments */
@media (max-width: 480px) {
  #cs-chat-panel { width: calc(100vw - 24px); left: 12px; bottom: 90px; }
  #cs-chat-bubble { bottom: 20px; left: 20px; }
}
