/* ==========================================================================
   Armenia E-Visa Portal - Government Style Stylesheet
   --------------------------------------------------------------------------
   Palette: deep navy + gold + burgundy + flag tricolour accents.
   Typography: Source Serif 4 (headings) + Source Sans 3 (body) - the same
   pairing many official .gov sites use.

   Sections:
     1. Design tokens
     2. Reset & base typography
     3. Layout helpers
     4. Buttons & forms
     5. Gov banner + flag stripe + top bar
     6. Masthead + main nav
     7. Hero slider (formal)
     8. Quick actions / steps / visa cards / why / stats / faq / cta / notice
     9. Trust strip + footer + official notice
    10. Utilities, animations, back-to-top
   ========================================================================== */

/* ---------- 1. Design tokens (official palette) -------------------------- */
:root {
    /* Government / official */
    --color-navy:           #0a2354;   /* primary - .gov style deep navy */
    --color-navy-dark:      #051232;
    --color-navy-soft:      #13306f;
    --color-burgundy:       #8b1a1a;   /* secondary - formal red */
    --color-burgundy-dark:  #5b0e0e;
    --color-gold:           #c9a227;   /* accent - official seal */
    --color-gold-dark:      #8b6914;

    /* Armenian flag */
    --flag-red:    #d90429;
    --flag-blue:   #0033a0;
    --flag-orange: #f2a900;

    /* Neutrals - all contrast-checked WCAG 2.1 AA+ on their typical backgrounds.
       (computed via the standard relative luminance formula)
         #1a2541 on #fff         -> 15.1:1  (AAA)
         #4d5b75 on #fff         -> 6.4 :1  (AA  - body 'muted')
         #3a4762 on #fff         -> 9.2 :1  (AAA - 'muted-strong' for small text)
         #8d5409 on #fff         -> 7.0 :1  (AAA - warning text)
         #0c6f33 on #fff         -> 6.0 :1  (AA  - success text)
         #c9a227 (gold) on navy  -> 5.4 :1  (AA  - icon on dark surfaces only)
    */
    --color-text:         #1a2541;
    --color-muted:        #4d5b75;   /* darkened from #5b6b86 for safer AA reading */
    --color-muted-strong: #3a4762;   /* for small / fine-print text */
    --color-light:        #f4f6fb;
    --color-cream:        #fbf9f1;
    --color-border:       #d8dde8;
    --color-white:        #ffffff;
    --color-dark:         #0a1326;
    --color-success:      #0c6f33;   /* darkened a touch for AA */
    --color-warning:      #8d5409;   /* darkened a touch for AAA */

    /* Aliases used by buttons / sections */
    --color-primary:      var(--color-navy);
    --color-primary-dark: var(--color-navy-dark);
    --color-secondary:    var(--color-burgundy);
    --color-accent:       var(--color-gold);

    --font-body:    'Source Sans 3', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-display: 'Source Serif 4', Georgia, "Times New Roman", serif;

    --container:   1240px;
    --radius:      4px;     /* sharper, more formal */
    --radius-sm:   3px;
    --radius-lg:   8px;

    --shadow-sm:  0 1px 2px rgba(10, 35, 84, .06), 0 1px 3px rgba(10, 35, 84, .08);
    --shadow-md:  0 4px 8px rgba(10, 35, 84, .08), 0 2px 4px rgba(10, 35, 84, .06);
    --shadow-lg:  0 20px 40px -12px rgba(10, 35, 84, .22);

    --transition: 220ms cubic-bezier(.4, 0, .2, 1);

    --masthead-h:   100px;
    --nav-h:        52px;
}

/* ---------- 2. Reset & base ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--color-navy); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--color-burgundy); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 .6em;
    line-height: 1.22;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 3.6vw, 3rem); }
h2 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); }

p { margin: 0 0 1em; }

ul { list-style: none; padding: 0; margin: 0; }

button { font: inherit; cursor: pointer; }

:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 2px; border-radius: 2px; }

.sr-only {
    position: absolute !important; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; left: -10000px; top: 0; z-index: 9999;
    background: var(--color-navy); color: #fff; padding: 10px 16px;
    font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Layout helpers -------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 22px;
}

.section            { padding: 90px 0; }
.section--alt       { background: var(--color-light); }
.section--cream     { background: var(--color-cream); }
.section__header    { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section__eyebrow   {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--color-gold-dark);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: 16px;
    font-family: var(--font-body);
}
.section__eyebrow::before,
.section__eyebrow::after {
    content: ""; display: inline-block;
    width: 28px; height: 2px; background: var(--color-gold);
}
.section__title     { margin: 0 0 14px; }
.section__lead      { color: var(--color-muted); font-size: 1.05rem; }

/* ---------- 4. Buttons & forms ------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
    letter-spacing: .2px;
}
.btn:hover, .btn:focus { text-decoration: none; }

.btn-primary {
    background: var(--color-burgundy); color: #fff;
    border-color: var(--color-burgundy);
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--color-burgundy-dark); border-color: var(--color-burgundy-dark);
    color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md);
}

.btn-navy {
    background: var(--color-navy); color: #fff; border-color: var(--color-navy);
}
.btn-navy:hover, .btn-navy:focus {
    background: var(--color-navy-dark); border-color: var(--color-navy-dark); color: #fff;
}

.btn-outline {
    background: transparent; color: var(--color-navy); border-color: var(--color-navy);
}
.btn-outline:hover, .btn-outline:focus {
    background: var(--color-navy); color: #fff;
}

.btn-ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.5);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover, .btn-ghost:focus {
    background: rgba(255,255,255,.18); color: #fff; border-color: #fff;
}

.btn-gold {
    background: var(--color-gold); color: var(--color-navy-dark);
    border-color: var(--color-gold);
}
.btn-gold:hover { background: var(--color-gold-dark); border-color: var(--color-gold-dark); color: #fff; }

.btn-light  { background: #fff; color: var(--color-navy); border-color: #fff; }
.btn-light:hover { background: var(--color-light); color: var(--color-navy); }

.btn-lg     { padding: 14px 30px; font-size: 1rem; }

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font: inherit;
    color: var(--color-text);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(10, 35, 84, .14);
    outline: none;
}

/* ---------- 5. Flag stripe + header --------------------------------------- */

/* Tricolour flag stripe - used as masthead/nav divider and at footer top */
.flag-stripe {
    display: flex; height: 4px; width: 100%;
}
.flag-stripe span { flex: 1; display: block; }
.flag-stripe span:nth-child(1) { background: var(--flag-red); }
.flag-stripe span:nth-child(2) { background: var(--flag-blue); }
.flag-stripe span:nth-child(3) { background: var(--flag-orange); }
.flag-stripe--footer { height: 5px; }

/* Header scrolls with the page (no sticky/fixed positioning) */
.site-header { background: #fff; box-shadow: var(--shadow-sm); }

/* ---------- 6. Masthead + main nav --------------------------------------- */
.masthead {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    border-bottom: 1px solid var(--color-border);
}
.masthead__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    min-height: var(--masthead-h);
    padding: 16px 22px;
}
.masthead__eservices {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
}
.masthead__eservices:hover,
.masthead__eservices:focus {
    text-decoration: none;
    opacity: .92;
}
.masthead__eservices img {
    display: block;
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.brand {
    display: inline-flex; align-items: center; gap: 14px;
    color: var(--color-navy-dark);
    text-decoration: none;
}
.brand:hover, .brand:focus { color: var(--color-navy); text-decoration: none; }

/* ----- "eVisa" logotype --------------------------------------------------
   Faithful port of the evisa.govt.tl / Turkey eVisa wordmark CSS: a script
   "e" (self-hosted LemongrassE woff2 subset) positioned absolutely so it
   sweeps under and overlaps the chunky bold sans-serif "Visa". The
   LemongrassE-fallback @font-face uses size-adjust to match Arial's metrics
   so the logo doesn't reflow if the custom font loads late. */
@font-face {
    font-family: 'LemongrassE';
    src: url('lemongrass-e-subset.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: optional; /* avoid logo reflow when the custom font arrives late */
}
@font-face {
    font-family: 'LemongrassE-fallback';
    size-adjust: 105%; /* matches LemongrassE's visual width on Arial */
    src: local('Arial');
}

.brand__wordmark {
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    position: relative;
    padding-left: 30px; /* room for the -24px overhang of .brand__wordmark-e */
    user-select: none;
    transform-origin: left center; /* scale anchor for mobile */
}

/* Shared tricolor flag gradient (red - blue - apricot) painted INSIDE each
   glyph via background-clip: text. A second diagonal hairline gradient adds
   a subtle weave texture so the flag feels embroidered into the letters
   rather than a flat colour fill. Same technique used by the Azerbaijan
   eVisa portal, with the Armenian tricolour swapped in. */
.brand__wordmark-e,
.brand__wordmark-visa {
    background-image:
        linear-gradient(90deg,
            #D90012 0 33.34%,
            #0033A0 33.34% 66.67%,
            #F2A800 66.67% 100%),
        repeating-linear-gradient(135deg,
            rgba(255, 255, 255, .18) 0 7px,
            rgba(255, 255, 255, 0)   7px 14px);
    background-size: 100% 100%, 220% 220%;
    background-position: center;
    background-repeat: no-repeat;
    color: transparent;
    -webkit-background-clip: text;
            background-clip: text;
    text-shadow: 0 1px 1px rgba(10, 35, 84, .18);
}

.brand__wordmark-e {
    font-family: 'LemongrassE', 'LemongrassE-fallback', sans-serif;
    font-size: 66px;
    position: absolute;
    margin-left: -24px;
    margin-bottom: -10px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: -.02em;
}

.brand__wordmark-visa {
    font-size: 55px;
    font-weight: bold;
    margin-left: 4px;
    line-height: 1;
    letter-spacing: -.02em;
}

/* ----- Native-script tagline beside the wordmark --------------------------- */
.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
}
.brand__title {
    font-family: 'Noto Sans Armenian', var(--font-body);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-weight: 700;
    color: var(--color-navy-dark);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.brand__subtitle {
    font-family: 'Noto Sans Armenian', var(--font-body);
    font-size: clamp(.78rem, .95vw, .98rem);
    font-weight: 600;
    color: var(--color-muted);
    margin-top: 3px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Main nav */
.main-nav { background: var(--color-navy); color: #fff; }
.main-nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: var(--nav-h);
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    background: transparent; border: 0; padding: 8px;
    flex-direction: column; gap: 5px; cursor: pointer;
}
.nav-toggle span {
    display: block; width: 26px; height: 3px;
    background: #fff;
    border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Primary menu */
.primary-menu { display: flex; align-items: center; }
.primary-menu > li { position: relative; }
.primary-menu > li > a {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 16px 18px;
    font-weight: 600; font-size: .92rem;
    color: rgba(255,255,255,.92);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.primary-menu > li > a i { font-size: .85em; opacity: .85; }
.primary-menu > li > a:hover,
.primary-menu > li > a:focus,
.primary-menu > li > a.active {
    color: #fff;
    background: var(--color-navy-dark);
    border-bottom-color: var(--color-gold);
}

.primary-menu .has-children > a i.fa-chevron-down { font-size: .65rem; transition: transform var(--transition); }
.primary-menu .has-children:hover > a i.fa-chevron-down,
.primary-menu .has-children.is-open > a i.fa-chevron-down { transform: rotate(-180deg); }

.sub-menu {
    position: absolute; left: 0; top: 100%;
    min-width: 240px; padding: 6px 0;
    background: #fff;
    border-top: 3px solid var(--color-gold);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition), visibility 0s linear var(--transition);
    z-index: 1050;
}
.primary-menu .has-children:hover .sub-menu,
.primary-menu .has-children:focus-within .sub-menu,
.primary-menu .has-children.is-open .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s;
}
.sub-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    color: var(--color-text); font-size: .9rem; font-weight: 500;
    text-decoration: none;
}
.sub-menu a i { color: var(--color-navy); width: 16px; }
.sub-menu a:hover { background: var(--color-light); color: var(--color-navy); }

/* ---------- 7. Hero slider (formal) -------------------------------------- */
.hero-slider {
    position: relative;
    height: clamp(520px, 70vh, 720px);
    overflow: hidden;
    background: var(--color-navy-dark);
}
.hero-slider__watermark {
    position: absolute;
    right: -60px; top: 50%;
    width: 560px; height: auto;
    transform: translateY(-50%);
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

.hero-slider__track { position: relative; width: 100%; height: 100%; z-index: 2; }

.hero-slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    opacity: 0; visibility: hidden;
    transition: opacity 800ms ease-in-out, visibility 0s linear 800ms;
}
.hero-slide.is-active {
    opacity: 1; visibility: visible;
    transition: opacity 800ms ease-in-out;
}

.hero-slide__picture {
    position: absolute; inset: 0;
    z-index: 0;
    display: block;
    width: 100%; height: 100%;
}
.hero-slide__img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-slide__overlay {
    position: absolute; inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(8, 22, 60, .78), rgba(8, 22, 60, .65));
    pointer-events: none;
}

.hero-slide__inner {
    color: #fff;
    max-width: 760px;
    text-align: left;
    position: relative;
    z-index: 2;
    padding-left: 26px;
    border-left: 4px solid var(--color-gold);
}
.hero-slide.is-active .hero-slide__inner > * {
    animation: heroIn 900ms cubic-bezier(.2,.7,.2,1) both;
}
.hero-slide.is-active .hero-slide__overline { animation-delay:   0ms; }
.hero-slide.is-active .hero-slide__subtitle { animation-delay: 100ms; }
.hero-slide.is-active .hero-slide__title    { animation-delay: 200ms; }
.hero-slide.is-active .hero-slide__desc     { animation-delay: 350ms; }
.hero-slide.is-active .hero-slide__actions  { animation-delay: 500ms; }

@keyframes heroIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0);   }
}

.hero-slide__overline {
    color: var(--color-gold);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 18px;
    display: inline-flex; align-items: center; gap: 8px;
}
.hero-slide__subtitle {
    color: rgba(255,255,255,.85);
    font-family: var(--font-body);
    font-size: 1rem; font-weight: 600;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-slide__title {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    line-height: 1.1;
    margin: 0 0 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-slide__desc {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    max-width: 640px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.65;
}
.hero-slide__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-slider__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 3;
    width: 46px; height: 46px;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.4);
    color: #fff; border-radius: var(--radius);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}
.hero-slider__nav:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-navy-dark); }
.hero-slider__nav--prev { left: 28px; }
.hero-slider__nav--next { right: 28px; }

.hero-slider__dots {
    position: absolute; left: 0; right: 0; bottom: 26px;
    z-index: 3;
    display: flex; justify-content: center; gap: 8px;
}
.hero-slider__dot {
    width: 38px; height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.35);
    border: 0;
    transition: background var(--transition), transform var(--transition);
}
.hero-slider__dot.is-active { background: var(--color-gold); }
.hero-slider__dot:hover     { background: #fff; }

/* ---------- 8. Page sections -------------------------------------------- */

/* Notice ribbon */
.notice-ribbon {
    background: linear-gradient(90deg, #fff8e1 0%, #fff3c2 100%);
    border-top: 3px solid var(--color-gold);
    border-bottom: 1px solid var(--color-border);
    padding: 14px 0;
    font-size: .92rem;
}
.notice-ribbon__inner {
    display: flex; align-items: center; gap: 14px;
    color: var(--color-warning);
}
.notice-ribbon i { color: var(--color-warning); font-size: 1.1rem; }
.notice-ribbon strong { color: var(--color-navy-dark); }
.notice-ribbon a {
    margin-left: auto; color: var(--color-navy);
    font-weight: 700; font-size: .85rem;
    text-decoration: none; white-space: nowrap;
}
.notice-ribbon a:hover { text-decoration: underline; }

/* Quick actions */
.quick-actions {
    margin-top: -56px;
    position: relative; z-index: 5;
}
.quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.action-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-navy);
    position: relative;
    overflow: hidden;
}
.action-card::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--flag-red) 0%, var(--flag-red) 33%,
                                       var(--flag-blue) 33%, var(--flag-blue) 66%,
                                       var(--flag-orange) 66%, var(--flag-orange) 100%);
    opacity: 0; transition: opacity var(--transition);
}
.action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--color-burgundy);
}
.action-card:hover::after { opacity: 1; }

.action-card__icon {
    width: 60px; height: 60px;
    margin: 0 auto 18px;
    background: var(--color-navy);
    color: var(--color-gold);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.action-card h3 {
    font-size: 1.1rem; margin: 0 0 8px;
    font-family: var(--font-display); font-weight: 700;
    color: var(--color-navy-dark);
}
.action-card p  { color: var(--color-muted); font-size: .9rem; margin: 0 0 14px; }
.action-card a  {
    color: var(--color-burgundy); font-weight: 600; font-size: .88rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
}
.action-card a:hover { color: var(--color-burgundy-dark); }

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    counter-reset: step;
    position: relative;
}
.steps-grid::before {
    content: "";
    position: absolute;
    top: 56px; left: 18%; right: 18%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold) 50%, transparent 50%);
    background-size: 14px 2px;
    z-index: 0;
}
.step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 26px 30px;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    z-index: 1;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-gold); }
.step-card::before {
    counter-increment: step;
    content: "Step " counter(step);
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: var(--color-navy); color: #fff;
    font-weight: 700; font-size: .78rem;
    padding: 6px 14px; border-radius: var(--radius);
    font-family: var(--font-body);
    letter-spacing: 2px; text-transform: uppercase;
    border: 2px solid var(--color-gold);
}
.step-card__icon {
    width: 72px; height: 72px;
    margin: 8px auto 18px;
    background: var(--color-cream);
    color: var(--color-navy);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    border: 2px solid var(--color-gold);
}
.step-card h3 { font-size: 1.15rem; font-family: var(--font-display); color: var(--color-navy-dark); }

/* Visa types */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.visa-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
}
.visa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-gold); }

.visa-card__head {
    padding: 28px 24px;
    color: #fff;
    background: var(--color-navy);
    border-bottom: 3px solid var(--color-gold);
    position: relative;
}
.visa-card:nth-child(2) .visa-card__head { background: var(--color-burgundy); }
.visa-card:nth-child(3) .visa-card__head { background: var(--color-navy-soft); }
.visa-card__head i { font-size: 1.8rem; margin-bottom: 10px; color: var(--color-gold); }
.visa-card__head h3 { color: #fff; font-family: var(--font-display); margin: 0; font-size: 1.3rem; }

.visa-card__body { padding: 22px 24px; flex: 1; }
.visa-card__body ul { display: grid; gap: 10px; }
.visa-card__body li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: .92rem; color: var(--color-text);
}
.visa-card__body li i { color: var(--color-success); margin-top: 4px; }

.visa-card__foot {
    padding: 16px 24px;
    border-top: 1px solid var(--color-border);
    display: flex; justify-content: space-between; align-items: center;
    background: var(--color-light);
}
.visa-card__price {
    color: var(--color-navy-dark);
    font-weight: 700; font-family: var(--font-display);
    font-size: 1.05rem;
}

/* Why choose */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-features { display: grid; gap: 24px; margin-top: 24px; }
.feature { display: grid; grid-template-columns: 56px 1fr; gap: 18px; }
.feature__icon {
    width: 56px; height: 56px;
    background: var(--color-navy);
    color: var(--color-gold);
    border-radius: var(--radius);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.feature h4 { font-family: var(--font-display); font-size: 1.05rem; margin: 0 0 4px; color: var(--color-navy-dark); }
.feature p  { color: var(--color-muted); font-size: .92rem; margin: 0; }

.why-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background:
        radial-gradient(circle at center, rgba(255,255,255,.05) 0%, transparent 70%),
        linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--color-navy-dark);
}
.why-image img {
    width: 70%; height: auto;
    opacity: 0.92;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
}
.why-image__badge {
    position: absolute; right: 20px; bottom: 20px;
    background: var(--color-gold);
    color: var(--color-navy-dark);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: .78rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
}

/* Stats */
.stats {
    background: var(--color-navy);
    color: #fff;
    padding: 70px 0;
    position: relative;
    border-top: 4px solid var(--color-gold);
    border-bottom: 4px solid var(--color-gold);
}
.stats::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201,162,39,.15), transparent 50%);
    pointer-events: none;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; }
.stat__num   {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-family: var(--font-display); font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-gold);
}
.stat__label {
    letter-spacing: 2px; text-transform: uppercase;
    font-size: .82rem; opacity: .9; font-weight: 600;
}

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.is-open { box-shadow: var(--shadow-md); border-color: var(--color-navy); border-left: 4px solid var(--color-gold); }
.faq-question {
    width: 100%; text-align: left;
    background: transparent; border: 0;
    padding: 18px 22px;
    font-weight: 600; font-size: 1rem;
    color: var(--color-navy-dark);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: var(--font-body);
}
.faq-question i { color: var(--color-navy); transition: transform var(--transition); }
.faq-item.is-open .faq-question i { transform: rotate(180deg); color: var(--color-burgundy); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 400ms ease;
    padding: 0 22px;
    color: var(--color-muted);
}
.faq-item.is-open .faq-answer { max-height: 500px; padding-bottom: 18px; }

/* CTA */
.cta {
    background:
        linear-gradient(135deg, rgba(10,35,84,.96) 0%, rgba(5,18,50,.96) 100%),
        url('../images/cta-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 90px 0;
    position: relative;
    border-top: 4px solid var(--color-gold);
}
.cta__emblem {
    width: 90px; height: 100px; margin: 0 auto 24px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.cta h2 { color: #fff; font-family: var(--font-display); }
.cta p  { max-width: 700px; margin: 0 auto 30px; opacity: .95; font-size: 1.05rem; }
.cta__buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* Verification box */
.verify-box {
    background: #fff;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: center;
}
.verify-box__icon {
    width: 100px; height: 100px;
    background: var(--color-navy);
    color: var(--color-gold);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 2.6rem;
    margin: 0 auto;
    border: 4px solid var(--color-gold);
}
.verify-box h3 { margin-top: 0; color: var(--color-navy-dark); }

/* ---------- 9. Trust strip + footer + official notice -------------------- */
.trust-strip {
    background: var(--color-navy-dark);
    color: #fff;
    padding: 26px 0;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-strip__item {
    display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: center;
}
.trust-strip__item i {
    color: var(--color-gold); font-size: 1.6rem;
}
.trust-strip__item strong {
    display: block; color: #fff; font-weight: 600; font-size: .95rem; margin-bottom: 2px;
}
.trust-strip__item span { color: #aab3c8; font-size: .82rem; line-height: 1.45; display: block; }

/* Footer */
.site-footer { background: #050f2d; color: #cbd5e1; }
.footer-top  { padding: 48px 0 28px; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 32px;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0 0 18px;
    position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 40px; height: 3px; background: var(--color-gold);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #cbd5e1; font-size: .9rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color var(--transition), padding var(--transition);
    text-decoration: none;
}
.footer-links a::before {
    content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--color-gold); font-size: .8rem;
}
.footer-links a:hover { color: #fff; padding-left: 4px; text-decoration: none; }

/* Social links - compact, sit on the footer-bottom row next to copyright */
.social-links { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; }
.social-links a {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.06); color: #cbd5e1;
    border-radius: var(--radius);
    font-size: .82rem;
    transition: background var(--transition), color var(--transition);
}
.social-links a:hover {
    background: var(--color-gold); color: var(--color-navy-dark);
}

/* Official notice in footer */
.official-notice {
    margin-top: 50px;
    background: rgba(201,162,39,.08);
    border: 1px solid rgba(201,162,39,.3);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius);
    padding: 18px 22px;
    display: grid; grid-template-columns: 32px 1fr; gap: 14px;
    align-items: flex-start;
}
.official-notice i {
    color: var(--color-gold); font-size: 1.3rem; margin-top: 2px;
}
.official-notice p {
    color: #d9dde8; font-size: .9rem; line-height: 1.65; margin: 0;
}
.official-notice strong { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    background: #03081e;
}
.footer-bottom__inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
    font-size: .85rem; color: #94a3b8;
}
.footer-bottom p { margin: 0; }
.footer-bottom strong { color: #cbd5e1; }
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom__links a { color: #94a3b8; text-decoration: none; }
.footer-bottom__links a:hover { color: #fff; text-decoration: underline; }

/* ---------- 10. Utilities ----------------------------------------------- */
.back-to-top {
    position: fixed; right: 22px; bottom: 22px;
    width: 46px; height: 46px;
    background: var(--color-navy); color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 999;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover      { background: var(--color-gold); color: var(--color-navy-dark); }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   11. DENSE / COMPACT HOME-PAGE LAYOUT
       Cambodia-portal style: tight spacing, 3-col info cards, 2-col content
       boxes, FAQ + holidays table, news ticker, disclaimer strip.
       (Overrides earlier looser defaults.)
   ========================================================================== */

/* Tighter global section padding */
.section            { padding: 50px 0; }
.section--alt,
.section--cream     { padding: 50px 0; }
.section__header    { margin-bottom: 30px; }
.section__header p  { margin-bottom: 0; }

/* Shorter, more "official" hero - desktop */
.hero-slider              { height: clamp(300px, 42vh, 380px); }
.hero-slide__overline     { margin-bottom: 8px;  font-size: .72rem; letter-spacing: 2px; }
.hero-slide__subtitle     { margin-bottom: 6px;  font-size: .82rem; letter-spacing: 1.5px; }
.hero-slide__title        { font-size: clamp(1.5rem, 3.2vw, 2.2rem); margin-bottom: 10px; line-height: 1.15; }
.hero-slide__desc         { font-size: .94rem; margin-bottom: 18px; max-width: 560px; line-height: 1.55; }
.hero-slide__inner        { padding-left: 18px; border-left-width: 3px; }
.hero-slider__watermark   { width: 360px; right: -80px; opacity: .05; }
.hero-slider__dots        { bottom: 14px; }
.hero-slider__dot         { width: 30px; height: 3px; }
.hero-slider__nav         { width: 40px; height: 40px; }
.hero-slide__actions      { gap: 12px; }
.hero-slide__actions .btn-lg { padding: 10px 18px; font-size: .9rem; }

/* Compact notice ribbon */
.notice-ribbon { padding: 10px 0; font-size: .88rem; }

/* Compact quick-actions */
.quick-actions               { margin-top: -36px; }
.quick-actions__grid         { gap: 16px; }
.action-card                 { padding: 20px 18px; }
.action-card__icon           { width: 52px; height: 52px; font-size: 1.2rem; margin-bottom: 12px; }
.action-card h3              { font-size: 1rem; margin-bottom: 6px; }
.action-card p               { font-size: .85rem; margin-bottom: 10px; }

/* ---------- News ticker (animated marquee) ------------------------------ */
.news-ticker {
    background: #fff7d8;
    border-top: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    padding: 9px 0;
    overflow: hidden;
}
.news-ticker__inner {
    display: flex; align-items: center;
    gap: 14px;
    font-size: .9rem;
}
.news-ticker__label {
    flex-shrink: 0;
    background: var(--color-burgundy); color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    font-weight: 700; font-size: .74rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
}
.news-ticker__viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
}
.news-ticker__items {
    display: inline-flex; gap: 50px;
    white-space: nowrap;
    animation: tickerScroll 60s linear infinite;
    padding-left: 24px;
}
.news-ticker:hover .news-ticker__items { animation-play-state: paused; }
.news-ticker__item {
    color: var(--color-navy-dark);
    font-weight: 500;
}
.news-ticker__item i {
    color: var(--color-burgundy);
    margin-right: 6px;
}
.news-ticker__item strong { color: var(--color-burgundy-dark); font-weight: 700; }

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- Welcome intro (h1 + paragraph + CTA) ------------------------ */
.welcome-intro {
    padding: 36px 0 26px;
    text-align: center;
    background: #fff;
    border-bottom: 1px dashed var(--color-border);
}
.welcome-intro h1 {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    color: var(--color-burgundy);
    margin: 0 0 14px;
    line-height: 1.3;
}
.welcome-intro h1 strong { color: var(--color-burgundy-dark); }
.welcome-intro__slogan {
    margin: -2px auto 14px;
    color: var(--color-muted-strong);
    font-size: clamp(.92rem, 1.35vw, 1.02rem);
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.welcome-intro p {
    max-width: 940px; margin: 0 auto 18px;
    color: var(--color-text);
    font-size: .96rem; line-height: 1.7;
}
.welcome-intro p strong { color: var(--color-navy-dark); }
.welcome-intro .btn { margin: 4px; }

/* Policy updates + essentials — directly below welcome intro */
.welcome-policy-section {
    padding: 28px 0 16px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.welcome-policy-section:not(.welcome-policy-section--continued) {
    border-bottom: none;
}
.welcome-policy-section--continued {
    padding: 0 0 36px;
    margin-top: 0;
    border-bottom: 1px solid var(--color-border);
}
.welcome-policy-section--continued .content-box .box-image {
    margin-bottom: 0;
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    object-position: top center;
    background: #fff;
}
.welcome-policy-section .row-2col--unequal {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
}
.welcome-policy-section .evisa-update-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}
.welcome-policy-section .policy-updates-scroll-container {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
}
.welcome-policy-section .col-stack .content-box {
    height: auto;
    display: flex;
    flex-direction: column;
}
.welcome-policy-section .col-stack .content-box:last-child > p {
    margin-bottom: 8px;
    font-size: .88rem;
    line-height: 1.45;
}
.welcome-policy-section .col-stack .content-box:last-child .content-box__cta {
    padding-top: 8px;
}
.welcome-policy-section .col-stack .purpose-simple {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin: 0;
    gap: 6px;
    align-items: stretch;
}
.welcome-policy-section .col-stack .content-box .purpose-simple__list {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 6px 8px;
    gap: 0;
    margin: 0;
    list-style: none;
}
.welcome-policy-section .col-stack .purpose-simple__list--tourist {
    border-top: 3px solid var(--color-navy);
}
.welcome-policy-section .col-stack .purpose-simple__list--business {
    border-top: 3px solid var(--color-burgundy);
}
.welcome-policy-section .col-stack .purpose-simple__list--transit {
    border-top: 3px solid var(--color-gold);
}
.welcome-policy-section .col-stack .content-box .purpose-simple__list li {
    font-size: .78rem;
    line-height: 1.2;
    margin: 0;
    padding: 2px 0 2px 14px;
}

/* ---------- Visa purposes + Tourist/Business 21/120 days ------------------ */
.visa-purpose-section {
    padding: 48px 0 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid var(--color-border);
}
.visa-purpose-section__header {
    text-align: center;
    margin-bottom: 28px;
}
.visa-purpose-section__header h2 {
    color: var(--color-burgundy);
    font-size: clamp(1.45rem, 2.3vw, 1.85rem);
    margin: 0 0 10px;
}
.visa-purpose-section__header p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-text);
    font-size: .96rem;
    line-height: 1.65;
}
.visa-type-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 32px;
}
.visa-type-panel {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.visa-type-panel:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.visa-type-panel__head {
    padding: 22px 22px 18px;
    background: var(--color-navy);
    color: #fff;
    border-bottom: 3px solid var(--color-gold);
}
.visa-type-panel__head--business {
    background: var(--color-burgundy);
}
.visa-type-panel__head--transit {
    background: var(--color-navy-soft);
}
.visa-type-panel__head i {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 8px;
}
.visa-type-panel__head h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 6px;
}
.visa-type-panel__head p {
    margin: 0;
    font-size: .88rem;
    opacity: .92;
    line-height: 1.45;
}
.visa-type-panel__body {
    padding: 18px 22px;
    flex: 1;
}
.visa-duration-options {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}
.visa-duration-option {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px 12px;
    padding: 10px 12px;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 6px;
}
.visa-duration-option__days {
    font-weight: 700;
    color: var(--color-navy-dark);
    font-family: var(--font-display);
    font-size: 1rem;
}
.visa-duration-option__meta {
    font-size: .84rem;
    color: var(--color-muted);
}
.visa-type-panel__uses {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.visa-type-panel__uses li {
    font-size: .88rem;
    color: var(--color-text);
    padding-left: 18px;
    position: relative;
}
.visa-type-panel__uses li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-size: .72rem;
    top: 3px;
}
.visa-type-panel__foot {
    padding: 14px 22px 18px;
    border-top: 1px solid var(--color-border);
    background: #fafbfc;
}
.visa-purpose-section__subhead {
    text-align: center;
    font-family: var(--font-display);
    color: var(--color-navy-dark);
    font-size: 1.25rem;
    margin: 0 0 8px;
}
.visa-purpose-section__lead {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 22px;
    font-size: .92rem;
    color: var(--color-muted);
    line-height: 1.6;
}
/* Simple purpose-of-visit list (grouped by e-Visa type) */
.purpose-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}
.purpose-simple__group {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 16px 18px;
}
.purpose-simple__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-border);
}
.purpose-simple__title i {
    font-size: .95rem;
    opacity: .9;
}
.purpose-simple__title--tourist { color: var(--color-navy-dark); border-bottom-color: var(--color-navy); }
.purpose-simple__title--tourist i { color: var(--color-navy); }
.purpose-simple__title--business { color: var(--color-burgundy-dark); border-bottom-color: var(--color-burgundy); }
.purpose-simple__title--business i { color: var(--color-burgundy); }
.purpose-simple__title--transit { color: var(--color-navy-dark); border-bottom-color: var(--color-gold); }
.purpose-simple__title--transit i { color: var(--color-gold); }
.purpose-simple__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.purpose-simple__list li {
    font-size: .9rem;
    color: var(--color-text);
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}
.purpose-simple__list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: .65rem;
    color: var(--color-success);
}
.visa-purpose-section__note {
    margin: 22px 0 0;
    text-align: center;
    font-size: .88rem;
    color: var(--color-muted);
    line-height: 1.55;
}
.visa-purpose-section__note a {
    color: var(--color-navy);
    font-weight: 600;
}

/* Divider rule */
.rule {
    height: 1px;
    background: var(--color-border);
    margin: 28px 0;
    border: 0;
}

/* ---------- 3-column info cards (Procedure / Ports / Visa Types) -------- */
.info-cards-section {
    padding: 36px 0;
    background: var(--color-cream);
}
.row-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.info-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-navy);
    border-radius: var(--radius);
    padding: 22px 22px 18px;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--color-burgundy);
}
.info-card__visual {
    height: 130px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    border-radius: var(--radius);
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-navy-dark);
}
.info-card__visual picture {
    display: block;
    width: 100%;
    height: 100%;
}
.info-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.info-card__visual::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(rgba(8, 22, 60, .35), rgba(8, 22, 60, .2)),
                radial-gradient(circle at 30% 20%, rgba(201,162,39,.12), transparent 55%);
    pointer-events: none;
}
.info-card__visual::after {
    content: ""; position: absolute; right: -30px; bottom: -30px; z-index: 2;
    width: 120px; height: 120px;
    border: 2px solid rgba(201,162,39,.18);
    border-radius: 50%;
    pointer-events: none;
}
.info-card h3 {
    font-size: 1.1rem;
    color: var(--color-navy-dark);
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-gold);
    font-family: var(--font-display);
}
.info-card ol,
.info-card ul {
    flex: 1;
    margin: 0 0 14px;
    color: var(--color-text);
}
.info-card ol { padding-left: 22px; }
.info-card ul { padding-left: 0; list-style: none; }
.info-card ol li,
.info-card ul li {
    font-size: .88rem;
    margin-bottom: 6px;
    line-height: 1.5;
}
.info-card ul li {
    position: relative;
    padding-left: 20px;
}
.info-card ul li::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; left: 6px; top: 0;
    color: var(--color-gold);
    font-size: .85rem;
}
.info-card ul li.strike { text-decoration: line-through; color: var(--color-muted); }
.info-card ul li.strike::before { color: var(--color-muted); }
.info-card__note {
    font-size: .8rem; color: var(--color-muted);
    margin: -4px 0 12px; font-style: italic;
}
.info-card__cta {
    margin-top: auto; text-align: center;
}
.info-card__cta .btn {
    width: 100%; justify-content: center;
    padding: 9px 16px; font-size: .88rem;
}

/* ---------- 2-column content rows (boxed) -------------------------------- */
.content-section {
    padding: 36px 0;
}
.content-section + .content-section { padding-top: 0; }
.content-section + .content-section.section--cream {
    padding-top: 50px;
}
.welcome-policy-section + .visa-purpose-section {
    padding-top: 52px;
}
.welcome-policy-section--continued + .visa-purpose-section {
    padding-top: 40px;
}

.row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}
.row-2col--unequal {
    grid-template-columns: 1.05fr 1fr;
}
.col-stack {
    display: grid; gap: 22px;
    align-content: stretch;
}

/* Policy updates card (Laos-style scrollable feed) */
.evisa-update-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}
.evisa-update-card .update-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-soft) 100%);
    color: #fff;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid var(--color-gold);
}
.evisa-update-card .update-header i {
    font-size: 1.25rem;
    color: var(--color-gold);
}
.evisa-update-card .update-header h2 {
    margin: 0;
    font-size: clamp(.95rem, 1.2vw, 1.05rem);
    font-weight: 700;
    font-family: var(--font-display);
    color: #fff;
    line-height: 1.3;
}
.evisa-update-card .update-content {
    padding: 18px 20px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.evisa-update-card .update-content > p {
    font-size: .9rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0 0 14px;
}
.policy-updates-scroll-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.policy-updates-scroll-container {
    max-height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-right: 8px;
}
.policy-updates-scroll-container::-webkit-scrollbar {
    width: 7px;
}
.policy-updates-scroll-container::-webkit-scrollbar-track {
    background: var(--color-light);
    border-radius: 4px;
}
.policy-updates-scroll-container::-webkit-scrollbar-thumb {
    background: var(--color-muted);
    border-radius: 4px;
}
.policy-updates-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--color-navy);
}
.policy-updates-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.policy-item {
    background: var(--color-light);
    padding: 14px 14px 14px 12px;
    border-radius: 6px;
    border-left: 3px solid var(--color-burgundy);
    transition: transform var(--transition), box-shadow var(--transition);
}
.policy-item:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-sm);
}
.policy-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-burgundy);
    font-size: .78rem;
    margin-bottom: 8px;
    font-weight: 600;
}
.policy-date i { font-size: .8rem; opacity: .9; }
.policy-item h3 {
    font-size: .92rem;
    color: var(--color-navy-dark);
    margin: 0 0 8px;
    font-weight: 700;
    font-family: var(--font-display);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.35;
}
.policy-item h3 i {
    color: var(--color-burgundy);
    font-size: .9rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.policy-item p {
    font-size: .84rem;
    color: var(--color-muted-strong);
    line-height: 1.55;
    margin: 0;
}
.policy-item p a {
    color: var(--color-navy);
    font-weight: 600;
}
.policy-scroll-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
    padding-right: 2px;
}
.policy-scroll-btn {
    background: var(--color-navy);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.policy-scroll-btn:hover { background: var(--color-navy-dark); }
.policy-scroll-btn:active { transform: scale(.97); }
.policy-scroll-btn:disabled {
    background: var(--color-border);
    color: var(--color-muted);
    cursor: not-allowed;
    opacity: .75;
}

.content-box {
    background: #fff;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius);
    padding: 22px 26px;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    height: 100%;
}
.content-box h2,
.content-box h3,
.content-box h4 {
    color: var(--color-navy-dark);
    margin: 0 0 12px;
    font-family: var(--font-display);
}
.content-box h2 { font-size: 1.35rem; }
.content-box h3 { font-size: 1.15rem; }
.content-box h4 { font-size: 1rem; }
.content-box > h2,
.content-box > h3 {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
}
.content-box p {
    color: var(--color-text);
    font-size: .94rem;
    line-height: 1.65;
    margin: 0 0 12px;
}
.content-box p:last-child { margin-bottom: 0; }
.content-box p strong { color: var(--color-navy-dark); }
.content-box ul,
.content-box ol {
    margin: 0 0 12px;
    padding-left: 22px;
    color: var(--color-text);
    font-size: .93rem;
}
.content-box ul li,
.content-box ol li {
    margin-bottom: 7px;
    line-height: 1.55;
}
.content-box ul li strong,
.content-box ol li strong {
    color: var(--color-navy-dark);
}
.content-box img,
.content-box svg.box-image {
    border-radius: var(--radius);
    margin: 0 0 14px;
    border: 1px solid var(--color-border);
    max-width: 100%;
    height: auto;
}
.content-box__cta {
    margin-top: auto;
    padding-top: 12px;
    text-align: center;
}

/* ---------- Custom-bullet visa-exempt country list ----------------------- */
.country-list {
    list-style: none !important;
    padding-left: 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
}
.country-list li {
    padding-left: 20px;
    position: relative;
    font-size: .9rem !important;
}
.country-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; left: 0; top: 2px;
    color: var(--color-success); font-size: .75rem;
}
.country-list li a {
    color: var(--color-navy-dark);
    text-decoration: none;
    font-weight: 500;
}
.country-list li a:hover {
    color: var(--color-burgundy);
    text-decoration: underline;
}

/* ---------- FAQ accordion inside content-box ----------------------------- */
.content-box .faq-item {
    margin-bottom: 8px;
    box-shadow: none;
}
.content-box .faq-question {
    padding: 12px 14px;
    font-size: .94rem;
}
.content-box .faq-question i { font-size: .75rem; }
.content-box .faq-answer { padding: 0 14px; font-size: .9rem; }
.content-box .faq-item.is-open .faq-answer { padding-bottom: 14px; }

/* ---------- Public holidays table --------------------------------------- */
.holidays-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    background: #fff;
}
.holidays-table thead {
    background: var(--color-navy);
    color: #fff;
}
.holidays-table thead th {
    padding: 9px 12px;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-gold);
}
.holidays-table tbody td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.45;
    vertical-align: top;
}
.holidays-table tbody tr:nth-child(even) td { background: var(--color-light); }
.holidays-table tbody tr:hover td            { background: #eef3ff; }
.holidays-table td:first-child {
    font-weight: 600;
    color: var(--color-navy-dark);
    white-space: nowrap;
    width: 110px;
}
.holidays-note {
    margin-top: 10px; font-size: .82rem;
    color: var(--color-muted); font-style: italic;
}

/* ---------- Verify box - compact ---------------------------------------- */
.verify-box {
    padding: 22px;
    gap: 22px;
    grid-template-columns: 130px 1fr;
}
.verify-box__icon { width: 80px; height: 80px; font-size: 2rem; }
.verify-box h3 { font-size: 1.2rem; margin: 0 0 8px; padding: 0; border: 0; }
.verify-box p  { font-size: .92rem; margin-bottom: 16px; }

/* ---------- Stats - compact -------------------------------------------- */
.stats         { padding: 36px 0; border-top-width: 3px; border-bottom-width: 3px; }
.stat__num     { font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: 4px; }
.stat__label   { font-size: .76rem; letter-spacing: 1.5px; }

/* ---------- CTA - compact ---------------------------------------------- */
.cta            { padding: 50px 0; }
.cta__emblem    { width: 64px; height: 72px; margin-bottom: 14px; }
.cta h2         { font-size: clamp(1.45rem, 2.4vw, 1.9rem); margin-bottom: 10px; }
.cta p          { font-size: .98rem; margin-bottom: 20px; }
.cta__buttons   { gap: 12px; }

/* ---------- Trust strip - compact -------------------------------------- */
.trust-strip            { padding: 22px 0; }
.trust-strip__item i    { font-size: 1.4rem; }
.trust-strip__item strong { font-size: .9rem; }
.trust-strip__item span   { font-size: .78rem; }

/* ---------- Footer - compact ------------------------------------------- */
.footer-top { padding: 50px 0 24px; }
.footer-col h4 { margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; }
.official-notice { margin-top: 36px; padding: 14px 18px; }
.official-notice p { font-size: .86rem; }

/* ---------- Mobile quick-nav (icons next to hamburger) ----------------- */
.mobile-quicknav {
    display: none; /* Hidden on desktop - shown via responsive.css on mobile */
}
.mobile-quicknav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1 1 0;
    min-width: 0;
    padding: 6px 4px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
    text-align: center;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    line-height: 1.1;
}
.mobile-quicknav__item i {
    font-size: 1.05rem;
    color: var(--color-gold);
    transition: color var(--transition);
}
.mobile-quicknav__item:hover,
.mobile-quicknav__item:focus {
    background: var(--color-navy-dark);
    color: #fff;
    border-color: rgba(201,162,39,.4);
    outline: 0;
}
.mobile-quicknav__item--cta {
    background: var(--color-burgundy);
    color: #fff;
    border-color: var(--color-burgundy-dark);
}
.mobile-quicknav__item--cta i { color: var(--color-gold); }
.mobile-quicknav__item--cta:hover,
.mobile-quicknav__item--cta:focus {
    background: var(--color-burgundy-dark);
    color: #fff;
    border-color: var(--color-gold);
}

/* ---------- Disclaimer strip ------------------------------------------ */
.disclaimer-strip {
    background: var(--color-light);
    padding: 18px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.disclaimer-strip small {
    color: var(--color-muted);
    font-size: .82rem;
    line-height: 1.65;
    display: block;
}
.disclaimer-strip strong { color: var(--color-navy-dark); }

/* ==========================================================================
   12. SEO CONTENT COMPONENTS
       Fees table, nationality cards, attraction cards, checklists, seasons
   ========================================================================== */

/* ---------- Fees / pricing table ---------------------------------------- */
.fees-box { padding: 22px 26px; }
.fees-box > h2 {
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
    color: var(--color-navy-dark);
    font-family: var(--font-display);
    font-size: 1.35rem;
}
.table-scroll { overflow-x: auto; margin: 14px 0 10px; }

.fees-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
    background: #fff;
    min-width: 600px;
}
.fees-table thead {
    background: var(--color-navy);
    color: #fff;
}
.fees-table thead th {
    padding: 10px 14px;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-gold);
}
.fees-table thead th.num,
.fees-table tbody td.num {
    text-align: right;
    font-weight: 700;
    color: var(--color-burgundy);
    font-family: var(--font-display);
    font-size: 1rem;
}
.fees-table thead th.num { color: #fff; }
.fees-table tbody td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}
.fees-table tbody tr:nth-child(even) td { background: var(--color-light); }
.fees-table tbody tr:hover td            { background: #fff8e1; }

.fees-note {
    font-size: .85rem;
    color: var(--color-muted);
    margin: 8px 0 0;
    padding: 10px 14px;
    background: var(--color-light);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.fees-note i { color: var(--color-gold-dark); margin-right: 4px; }

/* ---------- Page hero (inner pages) ------------------------------------- */
.page-hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    color: #fff;
    padding: 28px 0 32px;
}
.page-hero h1 {
    margin: 10px 0 8px;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
}
.page-hero__lead {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.55;
}
.page-hero--inner { padding: 24px 0 28px; }
.page-hero__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.6vw, 1.85rem);
    line-height: 1.2;
    color: #fff;
}
.page-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--color-burgundy) 0%, var(--color-gold) 50%, var(--color-navy) 100%);
}
.fees-page,
.visa-country-page {
    margin-top: 28px;
    margin-bottom: 48px;
}

/* ---------- Visa country page — mixed 1 / 2 / 3-column layouts -------- */
.visa-country-page .vcp-block {
    margin-bottom: 20px;
}
.vcp-country-intro {
    text-align: center;
}
.vcp-country-intro__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.vcp-country-intro__head h2 {
    margin: 0;
    font-size: clamp(.88rem, 2.8vw, 1.35rem);
    line-height: 1.2;
    color: var(--color-navy-dark);
    text-align: center;
}
.vcp-country-intro__visual {
    display: block;
    width: 100%;
    max-width: 870px;
    margin: 0 auto 16px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.vcp-country-intro__visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.vcp-country-intro__body {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.vcp-country-intro__body .content-box__cta {
    justify-content: center;
}
.visa-country-page .vcp-block:last-child {
    margin-bottom: 0;
}
.visa-country-page .vcp-layout-1 > .content-box,
.visa-country-page .vcp-layout-1 > .vcp-panel {
    width: 100%;
}
.vcp-layout-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}
.vcp-layout-2--equal {
    align-items: stretch;
}
.vcp-layout-2--unequal {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
}
.vcp-panel--stretch {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.vcp-panel__lead {
    margin: 0 0 10px;
    font-size: .86rem;
    line-height: 1.45;
    color: var(--color-text-muted, #5a6472);
}
.vcp-panel__foot {
    margin-top: auto;
    padding-top: 10px;
    font-size: .8rem;
    line-height: 1.4;
    border-top: 1px solid var(--color-border);
}
.vcp-doc-set__title {
    font-size: clamp(.82rem, 2.6vw, 1rem);
    line-height: 1.22;
}
.vcp-docs-notice {
    margin-bottom: 12px;
}
.vcp-doc-list {
    margin: 0;
    padding-left: 1.25em;
    flex: 1;
}
.vcp-doc-list > li {
    margin-bottom: 8px;
    font-size: .86rem;
    line-height: 1.45;
}
.vcp-doc-list > li:last-child {
    margin-bottom: 0;
}
.vcp-doc-sublist {
    margin: 6px 0 0;
    padding-left: 1.1em;
    list-style: disc;
}
.vcp-doc-sublist li {
    margin-bottom: 4px;
    font-size: .84rem;
    line-height: 1.4;
}
.vcp-layout-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}
.vcp-layout-3--equal {
    align-items: stretch;
}
.vcp-info-list {
    margin: 0;
    padding-left: 1.1em;
    flex: 1;
}
.vcp-info-list > li {
    margin-bottom: 8px;
    font-size: .86rem;
    line-height: 1.45;
}
.vcp-info-list > li:last-child {
    margin-bottom: 0;
}
.vcp-layout-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.vcp-panel {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
}
.vcp-panel h2,
.vcp-panel h3 {
    font-size: clamp(.84rem, 2.7vw, 1.02rem);
    line-height: 1.22;
    margin: 0 0 8px;
    color: var(--color-navy-dark);
}
.vcp-panel p,
.vcp-panel li {
    font-size: .86rem;
    line-height: 1.45;
}
.vcp-section-head {
    margin-bottom: 12px;
}
.vcp-section-head h2 {
    font-size: clamp(.9rem, 2.9vw, 1.2rem);
    line-height: 1.2;
    margin: 0 0 4px;
    color: var(--color-navy-dark);
}
.vcp-section-head p {
    margin: 0;
    font-size: .88rem;
    color: var(--color-muted);
}
.vcp-faq-intro {
    margin: 0 0 14px;
    font-size: .88rem;
    line-height: 1.45;
}
.vcp-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.vcp-stat {
    text-align: center;
    padding: 14px 10px;
    background: linear-gradient(180deg, #fff 0%, var(--color-light) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    border-top: 3px solid var(--color-gold);
}
.vcp-stat__value {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
}
.vcp-stat__label {
    display: block;
    font-size: .78rem;
    color: var(--color-muted);
    margin-top: 4px;
}
.vcp-cta-banner {
    text-align: center;
    padding: 22px 20px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    border-radius: var(--radius);
    color: #fff;
}
.vcp-cta-banner h2 {
    color: #fff;
    font-size: clamp(.85rem, 2.8vw, 1.2rem);
    line-height: 1.2;
    margin: 0 0 8px;
}
.vcp-cta-banner p {
    color: rgba(255, 255, 255, .88);
    font-size: .88rem;
    margin: 0 0 14px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.vcp-cta-banner .visa-fee-note {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
    text-align: left;
    max-width: 480px;
    margin: 0 auto 14px;
}
.vcp-cta-banner .visa-fee-note i { color: var(--color-gold); }
.vcp-cta-banner .visa-fee-note a { color: #fff; text-decoration: underline; }
.visa-fee-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 12px;
    background: #f0f6ff;
    border: 1px solid rgba(26, 95, 180, .15);
    border-radius: var(--radius);
    font-size: .82rem;
    color: var(--color-navy-dark);
}
.visa-fee-note i { color: var(--color-navy); margin-top: 2px; }
.visa-fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem;
    margin-top: 8px;
}
.visa-fee-table th,
.visa-fee-table td {
    padding: 7px 10px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}
.visa-fee-table thead th {
    background: var(--color-navy);
    color: #fff;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.visa-fee-table tbody tr:nth-child(even) td { background: var(--color-light); }
.visa-procedure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.visa-procedure-grid--text {
    align-items: stretch;
}
.visa-procedure-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-sm);
}
.visa-procedure-step--text {
    height: 100%;
    padding: 14px 16px;
}
.visa-procedure-step--text .visa-procedure-step__body {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.visa-procedure-step--text .vcp-info-list {
    flex: 1;
}
.visa-procedure-step--text .visa-procedure-step__label i {
    margin-right: 4px;
    opacity: .9;
}
.visa-procedure-step--text h3 {
    font-size: clamp(.78rem, 2.6vw, .95rem);
    line-height: 1.22;
}
.visa-procedure-step__shot {
    width: 100%;
}
.visa-procedure-step__shot img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    display: block;
}
.visa-procedure-step__body {
    flex: 1;
}
.visa-procedure-step__label {
    display: inline-block;
    background: var(--color-navy);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.visa-procedure-step h3 {
    margin: 0 0 6px;
    font-size: .92rem;
    color: var(--color-navy-dark);
}
.visa-procedure-step p,
.visa-procedure-step ul,
.visa-procedure-step ol {
    font-size: .8rem;
    margin: 0 0 6px;
}
.visa-procedure-step ul,
.visa-procedure-step ol {
    padding-left: 1.2rem;
}
.visa-procedure-step__link {
    margin-top: 6px;
}
.embassy-address-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.embassy-address-list li {
    padding: 10px 12px;
    background: var(--color-light);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: .84rem;
}
.embassy-address-list strong {
    display: block;
    color: var(--color-navy-dark);
    margin-bottom: 4px;
}
.flight-route-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}
.flight-route-table th,
.flight-route-table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
}
.flight-route-table thead th {
    background: var(--color-navy);
    color: #fff;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.flight-route-table tbody tr:nth-child(even) td {
    background: var(--color-light);
}
.season-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.season-card {
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
}
.season-card h4 {
    margin: 0 0 6px;
    font-size: clamp(.72rem, 2.5vw, .88rem);
    line-height: 1.2;
    color: var(--color-navy-dark);
}
.season-card h4 .season-card__months {
    font-weight: 500;
    color: var(--color-muted);
    font-size: clamp(.66rem, 2.2vw, .78rem);
}
.season-card__months {
    font-size: .78rem;
    color: var(--color-muted);
    margin-bottom: 6px;
}
.season-card p {
    margin: 0;
    font-size: .86rem;
}
@media (max-width: 991px) {
    .vcp-layout-3,
    .visa-procedure-grid { grid-template-columns: 1fr 1fr; }
    .vcp-layout-4 { grid-template-columns: 1fr 1fr; }
    .vcp-stat-row { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .vcp-layout-2,
    .vcp-layout-2--unequal,
    .vcp-layout-3,
    .vcp-layout-4,
    .visa-procedure-grid,
    .vcp-stat-row { grid-template-columns: 1fr; }
    .season-grid { grid-template-columns: 1fr; }

    .page-hero--inner .page-hero__title {
        font-size: clamp(.78rem, 3.4vw, 1.05rem);
        line-height: 1.18;
    }
    .visa-country-page .content-box > h2,
    .visa-country-page .content-box > h3 {
        font-size: clamp(.76rem, 3.2vw, .95rem);
        line-height: 1.2;
    }
    .visa-country-page .vcp-section-head h2 {
        font-size: clamp(.74rem, 3.1vw, .92rem);
    }
    .visa-country-page .vcp-panel h2,
    .visa-country-page .vcp-panel h3,
    .visa-country-page .vcp-doc-set__title {
        font-size: clamp(.72rem, 2.9vw, .88rem);
    }
    .visa-country-page .visa-procedure-step h3 {
        font-size: clamp(.7rem, 2.8vw, .84rem);
    }
    .visa-country-page .season-card h4 {
        font-size: clamp(.68rem, 2.6vw, .8rem);
    }
    .visa-country-page .vcp-cta-banner h2 {
        font-size: clamp(.72rem, 3vw, .9rem);
    }
}
.breadcrumb-nav { margin-bottom: 22px; }
.breadcrumb-nav .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: .88rem;
}
.breadcrumb-nav .breadcrumb a {
    color: var(--color-navy);
    text-decoration: none;
}
.breadcrumb-nav .breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-nav .breadcrumb .active {
    color: var(--color-muted);
}
.breadcrumb-nav .breadcrumb li + li::before {
    content: "/";
    margin-right: 10px;
    color: var(--color-border);
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    margin: 0;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span[aria-hidden="true"] { color: rgba(255, 255, 255, 0.45); }
.breadcrumb span[aria-current="page"] { color: var(--color-gold); }

/* ---------- Fee calculator page ----------------------------------------- */
.fee-calc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.fee-calculator__intro {
    color: var(--color-muted);
    margin: 0 0 18px;
    font-size: .95rem;
}
.form-select {
    width: 100%;
    font-size: 1rem;
    padding: 10px 12px;
    height: auto;
}
.fee-result {
    margin-top: 22px;
    padding: 20px 22px;
    background: var(--color-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--color-burgundy);
}
.fee-result--special {
    border-left-color: var(--color-gold-dark);
    background: #fffbf0;
}
.fee-result__country {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-navy-dark);
}
.fee-result__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 0 16px;
    font-size: .88rem;
}
.fee-result__meta dt {
    margin: 0;
    color: var(--color-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .04em;
}
.fee-result__meta dd {
    margin: 4px 0 0;
    color: var(--color-navy-dark);
    font-weight: 600;
}
.fee-result__prices { margin-bottom: 12px; }
.fee-result__price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}
.fee-result__price-row:last-child { border-bottom: none; }
.fee-result__price-label {
    font-weight: 600;
    color: var(--color-text);
}
.fee-result__price-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-burgundy);
}
.fee-result--special .fee-result__price-value { color: var(--color-gold-dark); }
.fee-result__condition {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}
.fee-result__condition h4 {
    margin: 0 0 8px;
    font-size: .95rem;
    color: var(--color-navy-dark);
}
.fee-result__condition p {
    margin: 0;
    color: var(--color-muted);
    font-size: .92rem;
    line-height: 1.55;
}
.fee-result__note {
    margin: 14px 0 0;
    font-size: .82rem;
    color: var(--color-muted);
}
.fee-calculator__actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.fee-calculator__actions .btn { flex: 1; text-align: center; }
.fee-calculator__actions .btn-primary { flex: 2; }
/* SEO accordion (native details — crawlable, no JS required) */
.fee-accordion-wrap { padding: 20px 22px; }
.fee-accordion { display: flex; flex-direction: column; gap: 0; }
.fee-accordion__item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}
.fee-accordion__item:last-child { margin-bottom: 0; }
.fee-accordion__item[open] {
    border-color: var(--color-navy);
    box-shadow: 0 2px 8px rgba(10, 35, 84, 0.06);
}
.fee-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    color: var(--color-navy-dark);
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.fee-accordion__summary::-webkit-details-marker { display: none; }
.fee-accordion__summary::after {
    content: "\25BC";
    font-size: .7rem;
    color: var(--color-muted);
    flex-shrink: 0;
    transition: transform .2s ease;
}
.fee-accordion__item:not([open]) .fee-accordion__summary::after {
    content: "\25BA";
}
.fee-accordion__body {
    padding: 0 16px 14px;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--color-muted);
}
.fee-accordion__body p { margin: 0 0 10px; }
.fee-accordion__body p:last-child { margin-bottom: 0; }
.fee-accordion__body strong { color: var(--color-navy-dark); }

/* ---------- Nationality / country cards --------------------------------- */
.nationality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.nationality-grid > article {
    display: flex;
    min-height: 0;
}
.nationality-grid > article > .nationality-card {
    flex: 1;
    width: 100%;
}
.nationality-grid--4col {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.nationality-grid--6col {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.nationality-section--compact {
    padding: 24px 0;
}
.nationality-section__header {
    text-align: center;
    margin-bottom: 14px;
}
.nationality-section__header h2 {
    color: var(--color-burgundy);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    margin: 0 0 6px;
    font-family: var(--font-display);
}
.nationality-section__header p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--color-text);
    font-size: .84rem;
    line-height: 1.4;
}
.nationality-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-burgundy);
    border-radius: var(--radius);
    padding: 18px 20px 16px;
    text-decoration: none;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
    position: relative;
}
.nationality-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-gold);
    color: var(--color-text);
}
.nationality-card__flag {
    width: 60px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.nationality-card__flag svg { display: block; width: 100%; height: 100%; }
.nationality-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-navy-dark);
    margin: 0 0 8px;
    line-height: 1.3;
}
.nationality-card p {
    font-size: .87rem;
    line-height: 1.55;
    color: var(--color-text);
    margin: 0 0 12px;
    flex: 1;
}
.nationality-card p strong { color: var(--color-navy-dark); }
.nationality-card__link {
    margin-top: auto;
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-burgundy);
    letter-spacing: .5px;
}
.nationality-card:hover .nationality-card__link { color: var(--color-gold-dark); }
.nationality-grid--4col .nationality-card {
    padding: 12px 14px 10px;
}
.nationality-grid--4col .nationality-card__flag {
    width: 48px;
    height: 32px;
    margin-bottom: 8px;
}
.nationality-grid--4col .nationality-card h3 {
    font-size: .9rem;
    margin-bottom: 5px;
}
.nationality-grid--4col .nationality-card p {
    font-size: .78rem;
    line-height: 1.35;
    margin-bottom: 8px;
}
.nationality-grid--4col .nationality-card__link {
    font-size: .8rem;
}
.nationality-card__head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.nationality-card__head h3 {
    margin: 0;
    flex: 1;
    min-width: 0;
}
.nationality-grid--6col .nationality-card {
    padding: 7px 9px 7px;
    border-left-width: 3px;
}
.nationality-grid--6col .nationality-card__head {
    gap: 5px;
    margin-bottom: 3px;
}
.nationality-grid--6col .nationality-card__flag {
    width: 32px;
    height: 21px;
    margin-bottom: 0;
}
.nationality-grid--6col .nationality-card__head h3 {
    font-size: .76rem;
    line-height: 1.15;
    font-family: var(--font-display);
    color: var(--color-navy-dark);
}
.nationality-grid--6col .nationality-card p {
    font-size: .68rem;
    line-height: 1.2;
    margin-bottom: 3px;
    flex: 0;
}
.nationality-grid--6col .nationality-card__link {
    font-size: .68rem;
    margin-top: 0;
    line-height: 1.2;
}
.nationality-section__cta {
    margin-top: 14px;
    text-align: center;
}
.nationality-section__cta p {
    margin: 0 0 10px;
    font-size: .82rem;
    color: var(--color-text);
    line-height: 1.5;
}
.nationality-section__cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ---------- Tourist attraction cards ----------------------------------- */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.attraction-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-gold);
    border-radius: var(--radius);
    padding: 18px 18px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.attraction-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.attraction-card__icon {
    width: 56px; height: 56px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.attraction-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-navy-dark);
    margin: 0 0 8px;
}
.attraction-card p {
    font-size: .85rem;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}
.attraction-card p strong { color: var(--color-burgundy); }

/* ---------- Checklist (photo / documents / rejection) ------------------ */
.checklist {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 12px 0 14px !important;
}
.checklist li {
    position: relative;
    padding-left: 24px !important;
    margin-bottom: 8px !important;
    font-size: .92rem;
    line-height: 1.55;
    color: var(--color-text);
}
.checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; left: 0; top: 2px;
    color: var(--color-success); font-size: .8rem;
}
.checklist--warning li::before {
    content: "\f071";
    color: #b8742c;
}

/* ---------- Seasons list (best time to visit) -------------------------- */
.seasons-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 12px 0 0 !important;
}
.seasons-list li {
    padding: 10px 0 !important;
    border-bottom: 1px dashed var(--color-border);
    font-size: .9rem;
    line-height: 1.55;
    color: var(--color-text);
    margin: 0 !important;
}
.seasons-list li:last-child { border-bottom: 0; padding-bottom: 0 !important; }
.seasons-list li strong { color: var(--color-navy-dark); }
.seasons-list__badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 9px;
    border-radius: 12px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-right: 8px;
    vertical-align: 1px;
}
.season-spring { background: #e7f6e1; color: #2e6b1d; }
.season-summer { background: #fff3cd; color: #8a5a00; }
.season-autumn { background: #ffe1cf; color: #94431a; }
.season-winter { background: #e1ecff; color: #1d3f7a; }

/* ---------- Eligible countries hub -------------------------------------- */
.eligible-countries-page .eligible-intro { padding-top: 8px; }
.eligible-regions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}
.eligible-region h3 {
    color: var(--color-burgundy);
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-gold);
}
.eligible-section__header { text-align: center; margin-bottom: 18px; }
.eligible-section__header h2 {
    color: var(--color-burgundy);
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    margin: 0 0 8px;
}
.eligible-section__header p {
    max-width: 760px;
    margin: 0 auto;
    font-size: .9rem;
    line-height: 1.55;
    color: var(--color-text);
}
.eligible-search-bar {
    max-width: 520px;
    margin: 0 auto 18px;
    position: relative;
}
.eligible-search-bar__label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted);
    pointer-events: none;
}
.eligible-search-bar__input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font: inherit;
    font-size: .95rem;
    color: var(--color-navy-dark);
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.eligible-search-bar__input:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 1px;
    border-color: var(--color-navy);
}
.eligible-search-bar__hint {
    margin: 8px 0 0;
    font-size: .8rem;
    color: var(--color-muted);
    text-align: center;
}
.eligible-table-wrap {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
    margin-bottom: 14px;
}
.eligible-countries-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.eligible-countries-table td {
    width: 25%;
    padding: 11px 14px;
    border: 1px solid var(--color-border);
    font-size: .88rem;
    line-height: 1.35;
    vertical-align: middle;
}
.eligible-countries-table td a {
    color: var(--color-navy-dark);
    text-decoration: none;
    font-weight: 500;
}
.eligible-countries-table td a:hover {
    color: var(--color-burgundy);
    text-decoration: underline;
}
.eligible-countries-table__empty {
    background: var(--color-light);
}
.eligible-countries-table tr:nth-child(even) td:not(.eligible-countries-table__empty) {
    background: #fafbfd;
}
.eligible-table-note {
    font-size: .84rem;
    line-height: 1.55;
    color: var(--color-muted);
    margin: 0 0 16px;
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.eligible-search-empty {
    margin: 14px 0 0;
    text-align: center;
    font-size: .9rem;
    color: var(--color-muted);
}
.country-list--3col {
    grid-template-columns: repeat(3, 1fr);
}
details.faq-item { border-left: 4px solid transparent; }
details.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--color-navy);
    border-left-color: var(--color-gold);
}
details.faq-item summary.faq-question {
    cursor: pointer;
    list-style: none;
}
details.faq-item summary.faq-question::-webkit-details-marker { display: none; }
details.faq-item[open] summary.faq-question i {
    transform: rotate(180deg);
    color: var(--color-burgundy);
}
details.faq-item .faq-answer {
    max-height: none;
    padding-bottom: 18px;
}
