/* Uzbekistan E-Visa Portal - Uzbekistan flag color theme */
:root {
    /* Brand / decorative (backgrounds, borders, icons) */
    --color-blue:       #0099B5;
    --color-blue-dark:  #007A91;
    --color-green:      #1EB53A;
    --color-green-dark: #168F2E;
    /* Flag stripe only — vivid Uzbekistan red (non-text, decorative) */
    --flag-red:         #CE1126;
    /* UI red — softened/darkened for WCAG AA 4.5:1+ on white & on soft tints */
    --color-red:        #9B1528;
    --color-red-dark:   #7A101F;
    --color-red-soft:   #F8E8EA;
    --color-teal:       #0099B5;
    --color-teal-dark:  #006B80;
    --flag-blue:        #0099B5;
    --flag-white:       #ffffff;
    --flag-green:       #1EB53A;

    /* Readable text — WCAG AA 4.5:1+ on white / cream */
    --color-text:           #1a2e35;
    --color-text-secondary: #2f454d;
    --color-muted:          #3a545e;
    --color-link:           #005a6e;
    --color-link-hover:     var(--color-red-dark);
    --color-blue-text:      #005a6e;
    --color-heading:        #004d5c; /* AA 4.5:1+ on white and --color-light */
    --color-green-text:     #0f6b24;
    --color-on-dark-muted:  #e8f4f7;

    /* Surfaces */
    --color-light:      #f0f8fa;
    --color-cream:      #f8fcf9;
    --color-border:     #d0e8ee;
    --color-white:      #ffffff;
    --color-dark:       #0a1f26;
    --color-success:    #168F2E;
    --color-warning:    #6d4207;
    --color-primary:    var(--color-blue);
    --color-primary-dark: var(--color-blue-dark);
    --color-secondary:  var(--color-red);
    --color-accent:     var(--color-green);

    /* Red buttons — white text on --color-red meets AA; hover darkens further */
    --color-btn-primary:       var(--color-red);
    --color-btn-primary-hover: var(--color-red-dark);
    --font-body:    'Quicksand', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
    --font-heading: 'Quicksand', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
    --container:   1240px;
    --radius:      4px;
    --radius-lg:   8px;
    --shadow-sm:  0 1px 3px rgba(0, 105, 128, .08);
    --shadow-md:  0 4px 12px rgba(0, 105, 128, .12);
    --shadow-lg:  0 20px 40px -12px rgba(0, 105, 128, .2);
    --transition: 220ms ease;
    --masthead-h: 100px;
    --nav-h:      52px;
    --hero-h:     380px;

    /* Compact layout spacing */
    --space-section-top:    22px;
    --space-section-bottom: 26px;
    --space-header-below:   22px;
    --space-grid:           16px;
    --space-grid-lg:        18px;
    --space-card:           16px;
    --space-stack:          14px;
    --space-heading-top:    0.45em;
    --space-heading:        0.4em;
    --space-paragraph:      0.7em;

    /* Heading scale — desktop slightly reduced; overridden on tablet/mobile */
    --fs-h1: clamp(1.55rem, 2.4vw, 2.0rem);
    --fs-h2: clamp(1.28rem, 1.75vw, 1.72rem);
    --fs-h3: clamp(1.02rem, 1.15vw, 1.18rem);
    --fs-h4: clamp(0.92rem, 1vw, 1.05rem);
    --fs-hero-title: clamp(1.75rem, 3.6vw, 2.75rem);
    --fs-body: 1rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: normal;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-link); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--color-link-hover); }
a:focus-visible { outline: 2px solid var(--color-blue); outline-offset: 2px; }
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-stretch: normal;
    letter-spacing: normal;
    color: var(--color-dark);
    margin: var(--space-heading-top) 0 var(--space-heading);
    line-height: 1.3;
    text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
p { margin: 0 0 var(--space-paragraph); }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; }

.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; fill: currentColor; }
.icon--chevron { transition: transform var(--transition); }
.faq-item.is-open .icon--chevron { transform: rotate(180deg); }

.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-heading); color: #fff; padding: 10px 16px; font-weight: 600;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section__header { text-align: center; max-width: 780px; margin: 10px auto var(--space-header-below); }
.section__header--left { text-align: left; margin: 8px 0 12px; max-width: none; }
.section__header p { font-size: .9rem; color: var(--color-text-secondary); margin-bottom: 0; }
.section__header h2,
.section__header h3 { font-size: var(--fs-h2); margin-top: 0.2em; margin-bottom: 0.35em; color: var(--color-heading); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; font-family: var(--font-body); font-weight: 600; font-size: .94rem;
    border-radius: var(--radius); border: 2px solid transparent;
    transition: all var(--transition); cursor: pointer; text-decoration: none; line-height: 1.2;
}
.btn:hover, .btn:focus { text-decoration: none; }
.btn-primary { background: var(--color-btn-primary); color: #fff; border-color: var(--color-btn-primary); }
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--color-btn-primary-hover); border-color: var(--color-btn-primary-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary:focus-visible { outline: 2px solid var(--color-blue); outline-offset: 2px; }
.btn-teal { background: var(--color-blue-dark); color: #fff; border-color: var(--color-blue-dark); }
.btn-teal:hover { background: var(--color-teal-dark); border-color: var(--color-teal-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--color-blue-text); border-color: var(--color-blue-dark); }
.btn-outline:hover { background: var(--color-blue-dark); color: #fff; border-color: var(--color-blue-dark); }
.btn-outline.btn-teal { color: var(--color-blue-text); border-color: var(--color-blue-dark); }
.btn-outline.btn-teal:hover { background: var(--color-blue-dark); color: #fff; border-color: var(--color-blue-dark); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; border-color: #fff; }
.btn-lg { padding: 13px 28px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }

/* Flag stripe */
.flag-stripe { display: flex; height: 5px; width: 100%; }
.flag-stripe span { flex: 1; }
.flag-stripe span:nth-child(1) { background: var(--flag-blue); }
.flag-stripe span:nth-child(2) { background: var(--flag-white); box-shadow: inset 0 1px 0 var(--flag-red), inset 0 -1px 0 var(--flag-red); }
.flag-stripe span:nth-child(3) { background: var(--flag-green); }
.flag-stripe--footer { height: 6px; }

/* Header */
.site-header { background: #fff; box-shadow: var(--shadow-sm); min-height: calc(var(--masthead-h) + 5px + var(--nav-h)); }
.masthead { background: linear-gradient(180deg, #fff 0%, var(--color-light) 100%); border-bottom: 1px solid var(--color-border); }
.masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--masthead-h); padding: 14px 22px; }
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--color-dark); text-decoration: none; min-width: 0; flex: 1 1 auto; }
.brand:hover { color: var(--color-link); text-decoration: none; }

/* eVisa wordmark — Uzbekistan flag gradient (blue · white · green) */
.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;
    user-select: none;
    transform-origin: left center;
    min-width: 148px;
    min-height: 58px;
    flex-shrink: 0;
}
.brand__wordmark-visa {
    background-image:
        linear-gradient(90deg,
            #0099B5 0 33.34%,
            #a8a7a7 13.34% 50.67%,
            #1EB53A 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(0, 80, 100, .18);
}
.brand__wordmark-e {
    font-family: 'Brush Script MT', 'Segoe Script', 'Apple Chancery', cursive;
    font-size: 66px;
    position: absolute;
    margin-left: -13px;
    margin-bottom: -10px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: normal;
    background-image:
        linear-gradient(160deg,
            #3dd65a 0%,
            #1EB53A 35%,
            #168F2E 65%,
            #0d6b22 100%),
        repeating-linear-gradient(135deg,
            rgba(255, 255, 255, .22) 0 6px,
            rgba(255, 255, 255, 0)   6px 12px);
    background-size: 100% 100%, 180% 180%;
    background-position: center;
    background-repeat: no-repeat;
    color: transparent;
    -webkit-background-clip: text;
            background-clip: text;
    text-shadow: 0 1px 2px rgba(22, 143, 46, .28);
}
.brand__wordmark-visa {
    font-size: 55px;
    font-weight: 700;
    margin-left: 4px;
    line-height: 1;
    letter-spacing: normal;
}

.brand__text {
    display: inline-grid;
    grid-template-columns: max-content;
    line-height: 1.25;
    min-width: 0;
}
.brand__title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.3vw, 1.75rem);
    font-weight: 600;
    color: var(--color-heading);
    line-height: 1.2;
    white-space: nowrap;
}
.brand__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(0.86rem, 1.08vw, 1.02rem);
    font-weight: 600;
    color: var(--color-muted);
    margin-top: 2px;
    line-height: 1.2;
    white-space: nowrap;
    width: 100%;
    letter-spacing: 0.2em;
}
.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;
    aspect-ratio: 200 / 65;
    max-width: 200px;
    object-fit: contain;
    content-visibility: auto;
}

/* Nav */
.main-nav { background: var(--color-blue); color: #fff; position: relative; }
.main-nav__inner { display: flex; align-items: center; min-height: var(--nav-h); }
.nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 7px 10px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}
.nav-toggle__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 20px;
}
.nav-toggle__icon span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle__text {
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
}
.nav-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-quicknav { display: none; }
.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: 15px 17px; font-weight: 600; font-size: .9rem;
    color: rgba(255,255,255,.95); text-decoration: none;
    border-bottom: 3px solid transparent; transition: background var(--transition), border-color var(--transition);
}
.primary-menu > li > a:hover, .primary-menu > li > a.is-active {
    color: #fff; background: var(--color-blue-dark); border-bottom-color: var(--color-green);
}
.primary-menu .has-children:hover .icon--chevron { transform: rotate(180deg); }
.sub-menu {
    position: absolute; left: 0; top: 100%; min-width: 230px; padding: 6px 0;
    background: #fff; border-top: 3px solid var(--color-green);
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition); z-index: 1050;
}
.primary-menu .has-children:hover .sub-menu,
.primary-menu .has-children:focus-within .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.sub-menu a { display: block; padding: 10px 18px; color: var(--color-text); font-size: .9rem; text-decoration: none; }
.sub-menu a:hover { background: var(--color-light); color: var(--color-link); }

/* Hero slider */
.hero-slider {
    position: relative; height: var(--hero-h); overflow: hidden;
    background: var(--color-blue-dark);
}
.hero-slider__track { position: relative; width: 100%; height: 100%; }
.hero-slide {
    position: absolute; inset: 0; display: flex; align-items: center;
    opacity: 0; visibility: hidden; transition: opacity 800ms ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide__picture {
    position: absolute; inset: 0;
    z-index: 0;
    display: block;
    width: 100%; height: 100%;
}
.hero-slide__picture::after {
    content: '';
    position: absolute; inset: 0;
    z-index: 1;
    background: linear-gradient(
        100deg,
        rgba(10, 31, 38, 0.68) 0%,
        rgba(10, 31, 38, 0.52) 38%,
        rgba(0, 70, 88, 0.32) 68%,
        rgba(0, 60, 75, 0.18) 100%
    );
    pointer-events: none;
}
.hero-slide__img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.88;
}
.hero-slide__inner {
    color: #fff; max-width: 720px; position: relative; z-index: 2;
    padding: 16px 20px 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 4px solid var(--color-green);
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.26) 0%,
        rgba(12, 28, 40, 0.32) 100%
    );
    backdrop-filter: blur(6px) saturate(1.1);
    -webkit-backdrop-filter: blur(6px) saturate(1.1);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}
.hero-slide__overline {
    color: #b8f5c8; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 14px; display: inline-flex; align-items: center; gap: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.hero-slide__subtitle {
    font-size: .95rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 10px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.hero-slide__title {
    font-family: var(--font-heading); font-size: var(--fs-hero-title); font-weight: 700; font-stretch: normal; letter-spacing: normal; line-height: 1.25; margin: 0 0 16px; color: #fff; text-wrap: balance;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-slide__desc {
    font-size: 1.05rem; max-width: 600px; margin: 0 0 28px; color: rgba(255,255,255,.97);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}
.hero-slide__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-slider__nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 44px; height: 44px; background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.4); color: #fff; border-radius: var(--radius);
    display: inline-flex; align-items: center; justify-content: center;
}
.hero-slider__nav:hover { background: var(--color-green-dark); border-color: var(--color-green-dark); }
.hero-slider__nav--prev { left: 24px; }
.hero-slider__nav--next { right: 24px; }
.hero-slider__dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-slider__dot {
    width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6);
    background: transparent; padding: 0;
}
.hero-slider__dot.is-active { background: var(--color-green); border-color: var(--color-green); }

/* News ticker */
.news-ticker { background: var(--color-dark); color: #fff; padding: 10px 0; overflow: hidden; }
.news-ticker__inner { display: flex; align-items: center; gap: 16px; }
.news-ticker__label {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--color-red); padding: 4px 12px; border-radius: var(--radius);
    font-size: .78rem; font-weight: 700; text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
    color: #fff;
}
.news-ticker__viewport { overflow: hidden; flex: 1; }
.news-ticker__items { display: flex; gap: 48px; animation: ticker var(--ticker-duration, 20s) linear infinite; white-space: nowrap; }
.news-ticker__item { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.95); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Welcome intro */
.welcome-intro { background: var(--color-cream); }
.welcome-intro__article {
    max-width: 920px;
    margin: 0 auto;
    container-type: inline-size;
    container-name: welcome;
}
.welcome-intro__head {
    text-align: center;
     margin: 0 auto var(--space-header-below);
}
.welcome-intro__flag { display: inline-block; margin-right: 0.15em; }
.welcome-intro__slogan {
    font-size: clamp(0.58rem, 3.35cqi, 1rem);
    color: var(--color-blue-text);
    font-weight: 600;
    margin-top: 0.35em;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
    line-height: 1.3;
}
.welcome-intro__head h1 {
    font-size: clamp(0.62rem, 3.85cqi, 1.75rem);
    margin-top: 0.35em;
    margin-bottom: 0.25em;
    text-align: center;
    white-space: nowrap;
    line-height: 1.25;
}
.welcome-intro__body { text-align: left; }
.welcome-intro__body p:last-child { margin-bottom: 0; }
.welcome-intro__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 4px;
}
.welcome-intro .btn { margin: 0; }

/* Shared compact section spacing */
.welcome-intro,
.content-section,
.visa-purpose-section,
.info-cards-section,
.entry-type-section,
.steps-section,
.fee-section,
.home-resource-section,
.status-cta-section {
    padding-top: var(--space-section-top);
    padding-bottom: var(--space-section-bottom);
}

/* Content sections */
.row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-grid); align-items: start; }
.row-2col--unequal { grid-template-columns: 1.15fr .85fr; }
.welcome-policy-section .row-2col--unequal {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
}
.row-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-grid); }
.col-stack { display: flex; flex-direction: column; gap: var(--space-stack); }

.content-box {
    background: #fff; border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); padding: var(--space-card);
    box-shadow: var(--shadow-sm);
}
.content-box h2,
.content-box h3 { font-size: var(--fs-h3); color: var(--color-heading); border-bottom: 2px solid var(--color-green); padding-bottom: 6px; margin-top: 0.35em; margin-bottom: 0.5em; }
.content-box > h2,
.content-section > h2,
.content-box > h3,
.content-section > h3 { font-size: var(--fs-h2); border-bottom-width: 0; padding-bottom: 0; margin-top: 0.25em; }
.content-box__cta { margin-top: 10px; }
.box-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    margin-top: 8px;
}
@media (min-width: 769px) {
    .welcome-policy-section--continued .row-2col--unequal { align-items: stretch; }
    /* Make both cards stretch to the same grid cell height */
    .welcome-policy-section--continued .row-2col--unequal > article { height: 100%; }
    .sample-visa-card { display: flex; flex-direction: column; height: 100%; }
    .sample-visa-media {
        flex: 1;
        min-height: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 8px;
    }
    .sample-visa-media picture {
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 100%;
        width: 100%;
    }
    .box-image--sample {
        /* Keep the sample proportional but avoid stretching the Visa Exempt card height */
        max-width: 37%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        margin-top: 0;
    }
}

/* Policy updates card */
.evisa-update-card {
    background: #fff; border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; min-height: 0;
}
.welcome-policy-section .evisa-update-card {
    height: 100%;
    min-height: 0;
}
.update-header {
    display: flex; align-items: center; gap: 8px;
    background: var(--color-blue); color: #fff; padding: 10px 14px;
    flex-shrink: 0;
}
.update-header h2,
.update-header h3 { color: #fff; margin: 0.15em 0 0; font-size: var(--fs-h3); line-height: 1.2; text-wrap: balance; }
.update-content { flex: 1; display: flex; flex-direction: column; padding: 0; min-height: 0; }
.policy-updates-scroll-wrapper { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.policy-updates-scroll-container { overflow-y: auto; padding: 10px 14px; flex: 1 1 auto; min-height: 0; }
.welcome-policy-section .policy-updates-scroll-container { max-height: none; }
.policy-updates-scroll-container::-webkit-scrollbar { width: 6px; }
.policy-updates-scroll-container::-webkit-scrollbar-track { background: var(--color-light); border-radius: 3px; }
.policy-updates-scroll-container::-webkit-scrollbar-thumb { background: var(--color-blue); border-radius: 3px; }
.policy-scroll-buttons { flex-shrink: 0; }
.policy-item { padding: 10px 0; border-bottom: 1px solid var(--color-border); }
.policy-item:last-child { border-bottom: 0; }
.policy-date { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--color-muted); margin-bottom: 4px; }
.policy-item h3,
.policy-item h4 { font-size: calc(var(--fs-h4) + .04rem); display: flex; align-items: flex-start; gap: 8px; margin-bottom: 4px; color: var(--color-heading); line-height: 1.25; text-wrap: balance; }
.policy-item p { font-size: .9rem; margin: 0; color: var(--color-text-secondary); }
.policy-item p a { color: var(--color-link); font-weight: 600; }
.policy-scroll-buttons { display: flex; gap: 6px; padding: 8px 14px; border-top: 1px solid var(--color-border); }
.policy-scroll-btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 8px; background: var(--color-light); border: 1px solid var(--color-border);
    border-radius: var(--radius); font-size: .85rem; font-weight: 600; color: var(--color-heading);
}
.policy-scroll-btn:hover:not(:disabled) { background: var(--color-blue-dark); color: #fff; border-color: var(--color-blue-dark); }
.policy-scroll-btn:disabled { opacity: .4; cursor: not-allowed; }

/* Purpose lists */
.purpose-simple { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 10px 0; }
.purpose-simple--duo { grid-template-columns: repeat(2, 1fr); }
.purpose-section-card { margin-top: var(--space-grid); }
.purpose-simple__list { font-size: .86rem; padding: 8px 10px; border-radius: var(--radius); }
.purpose-simple__list--tourist { background: #e8f7fa; border-left: 3px solid var(--color-blue); }
.purpose-simple__list--business { background: #e8f9ec; border-left: 3px solid var(--color-green); }
.purpose-simple__list--transit { background: var(--color-red-soft); border-left: 3px solid var(--color-red); }
.purpose-simple__list li { padding: 4px 0; font-size: .84rem; color: var(--color-text-secondary); }
.purpose-simple__list li::before { content: "• "; color: var(--color-blue-text); font-weight: 700; }

.country-list { font-size: .88rem; }
.country-list li { padding: 5px 0; border-bottom: 1px dashed var(--color-border); }
.country-list li:last-child { border-bottom: 0; }

/* Region country directories (eligible / visa-exempt pages) */
.eligible-countries-page .country-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
}
.eligible-countries-page .country-list li {
    position: relative;
    padding: 4px 0 4px 18px;
    font-size: .9rem;
    line-height: 1.4;
    color: var(--color-text-secondary);
    border-bottom: 0;
}
.eligible-countries-page .country-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--color-green-text);
    font-size: .75rem;
    font-weight: 700;
}
.eligible-countries-page .country-list li strong {
    color: var(--color-heading);
    font-weight: 600;
}
.eligible-countries-page .country-list--5col {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Entry type cards — Single / Double / Multiple */
.entry-type-section { background: #fff; }
.entry-type-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-grid);
    align-items: stretch;
}
.entry-type-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-blue);
    border-radius: var(--radius-lg);
    padding: var(--space-card);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition);
}
.entry-type-card--double { border-top-color: var(--color-green); }
.entry-type-card--multiple { border-top-color: var(--color-blue-dark); }
.entry-type-card:hover { box-shadow: var(--shadow-md); }
.entry-type-card__head { margin-bottom: 8px; }
.entry-type-card__label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 4px;
}
.entry-type-card h3,
.entry-type-card h4 {
    font-size: var(--fs-h3);
    color: var(--color-heading);
    margin: 0;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
}
.entry-type-card > p {
    font-size: .88rem;
    color: var(--color-text-secondary);
    margin: 10px 0;
    flex: 1;
}
.entry-type-card__meta {
    display: grid;
    gap: 0;
    margin: 0 0 12px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.entry-type-card__meta > div {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 8px;
    padding: 8px 10px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-light);
}
.entry-type-card__meta > div:nth-child(even) { background: #fff; }
.entry-type-card__meta > div:last-child { border-bottom: 0; }
.entry-type-card__meta dt {
    margin: 0;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--color-muted);
}
.entry-type-card__meta dd {
    margin: 0;
    font-size: .88rem;
    font-weight: 600;
    color: var(--color-heading);
}
.entry-type-card__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}
.entry-type-card__cta .btn { flex: 1 1 auto; justify-content: center; min-width: 120px; }

/* Visa type panels */
.visa-purpose-section { background: var(--color-light); }
.visa-type-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-grid); }
.visa-type-panel {
    background: #fff; border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.visa-type-panel__head { padding: 14px 16px; background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%); color: #fff; }
.visa-type-panel__head--business { background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%); }
.visa-type-panel__head--transit { background: linear-gradient(135deg, #5a3e8a 0%, #3d2a5c 100%); }
.visa-type-panel__head h3 { color: #fff; margin: 0.35em 0 4px; font-size: var(--fs-h3); line-height: 1.2; text-wrap: balance; }
.visa-type-panel__head p { font-size: .85rem; margin: 0; color: rgba(255,255,255,.95); }
.visa-type-panel__body { padding: 12px 16px; flex: 1; }
.visa-duration-options { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.visa-duration-option { background: var(--color-light); padding: 8px 10px; border-radius: var(--radius); border-left: 3px solid var(--color-blue); }
.visa-duration-option__days { display: block; font-weight: 700; font-size: .9rem; color: var(--color-heading); }
.visa-duration-option__meta { font-size: .8rem; color: var(--color-muted); }
.visa-type-panel__uses li { padding: 3px 0 3px 18px; font-size: .85rem; position: relative; }
.visa-type-panel__uses li::before { content: "✓"; position: absolute; left: 0; color: var(--color-green-text); font-weight: 700; }
.visa-type-panel__foot { padding: 10px 16px; border-top: 1px solid var(--color-border); }

/* Info cards */
.info-cards-section { background: #fff; }
.info-card {
    background: #fff; border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
}
.info-card__visual picture,
.info-card__visual img { display: block; width: 100%; }
.info-card__visual img { height: 140px; object-fit: cover; }
.info-card h3,
.info-card h4 { padding: 12px 14px 0; color: var(--color-heading); font-size: var(--fs-h3); line-height: 1.2; text-wrap: balance; margin: 0.35em 0 0; }
.info-card ol, .info-card ul { padding: 0 14px 0 30px; font-size: .88rem; margin: 8px 0; }
.info-card ol { list-style: decimal; }
.info-card ul { list-style: disc; }
.info-card li { margin-bottom: 4px; }
.info-card__note { font-size: .8rem; color: var(--color-muted); padding: 0 14px; font-style: italic; margin-bottom: 0; }
.info-card__cta { padding: 10px 14px; margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }

/* Nationality grid */
.nationality-section--compact { background: var(--color-cream); }
.nationality-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.nationality-grid--6col { grid-template-columns: repeat(6, 1fr); }
.nationality-card {
    display: flex; flex-direction: column; gap: 4px;
    background: #fff; border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); padding: 10px;
    text-decoration: none; color: var(--color-text);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.nationality-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-blue); color: var(--color-text); text-decoration: none; }
.nationality-card__head { display: flex; align-items: center; gap: 10px; }
.nationality-card__flag svg { width: 36px; height: 24px; border-radius: 2px; border: 1px solid var(--color-border); }
.nationality-card h3 { font-size: var(--fs-h4); margin: 0; color: var(--color-heading); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nationality-card p { font-size: .8rem; margin: 0; color: var(--color-muted); flex: 1; }
.nationality-card__link { font-size: .78rem; font-weight: 600; color: var(--color-link); }
.nationality-card:hover .nationality-card__link { color: var(--color-link-hover); }
.nationality-section__cta { text-align: center; margin-top: 18px; }

/* FAQ */
.faq-list { margin: 0; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 10px 0; background: none; border: 0; text-align: left;
    font-weight: 600; font-size: var(--fs-h4); color: var(--color-heading); line-height: 1.25;
}
.faq-question span { display: inline-flex; align-items: center; gap: 8px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.faq-item.is-open .faq-answer { max-height: 300px; padding-bottom: 10px; }
.faq-answer p { font-size: .9rem; color: var(--color-text-secondary); margin: 0; }
.faq-answer a { color: var(--color-link); font-weight: 600; }

/* Checklist & seasons */
.checklist li { padding: 4px 0 4px 20px; font-size: .86rem; position: relative; }
.checklist--warning li::before { content: "⚠"; position: absolute; left: 0; }
.seasons-list li { display: flex; flex-wrap: wrap; gap: 6px; align-items: baseline; padding: 7px 0; border-bottom: 1px dashed var(--color-border); font-size: .86rem; }
.seasons-list__badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; border-radius: 20px; font-size: .78rem; font-weight: 700;
}
.season-spring { background: #e8f9ec; color: var(--color-green-text); }
.season-summer { background: #fff8e1; color: #6d4207; }
.season-autumn { background: #fde8d8; color: #6b2d0a; }
.season-winter { background: #e3f4f8; color: var(--color-blue-text); }

/* Disclaimer */
.disclaimer-strip { background: #f5f5f5; border-top: 1px solid var(--color-border); padding: 12px 0; }
.disclaimer-strip small { font-size: .8rem; color: var(--color-text-secondary); line-height: 1.6; }
.disclaimer-strip a { color: var(--color-link); font-weight: 600; }

/* Footer */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,.85); }
.footer-top { padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-col { min-width: 0; }
.footer-col__title { color: #b8f5c8; font-size: var(--fs-h4); margin: 0 0 14px; font-family: var(--font-heading); font-weight: 600; line-height: 1.25; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.88); font-size: .88rem; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.82); }
.footer-bottom__links { display: flex; gap: 16px; }
.footer-bottom__links a { color: rgba(255,255,255,.82); font-size: .85rem; text-decoration: none; }
.footer-bottom__links a:hover { color: #fff; }

/* Back to top */
.back-to-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--color-blue-dark); color: #fff; border: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all var(--transition); box-shadow: var(--shadow-md);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-green-dark); }

/* Feedback tab shell (full panel styles load async) */
#page-feedback-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10040;
}
#page-feedback-widget .pfw-tab {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 12px 10px;
    border: 0;
    border-radius: 8px 0 0 8px;
    background: #0099B5;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: -2px 2px 10px rgba(0, 122, 145, 0.35);
}
#page-feedback-widget .pfw-panel[hidden] { display: none !important; }

/* FAQ section helpers */
.faq-section-foot { margin-top: 10px; color: var(--color-text-secondary); }
.rejection-note { font-size: .86rem; margin-bottom: 0; color: var(--color-text-secondary); }
.icon--inline { display: inline; vertical-align: -2px; }

/* Fade in animation */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* Homepage apply steps — compact Laos-style flow */
.apply-steps-section {
    padding-top: 16px;
    padding-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, var(--color-light) 100%);
}
.apply-steps-section .apply-steps__header {
    text-align: center;
    margin-bottom: 14px;
}
.apply-steps-section .apply-steps__header h2,
.apply-steps-section .apply-steps__header h3 {
    margin: 0 0 4px;
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    color: var(--color-heading);
}
.apply-steps-section .apply-steps__header p {
    margin: 0 0 8px;
    font-size: .86rem;
    color: var(--color-text-secondary);
}
.apply-steps-section .apply-steps__line {
    display: block;
    width: 64px;
    height: 3px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-green));
}
.apply-steps-section .apply-steps__flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    max-width: 920px;
    margin: 0 auto;
}
.apply-steps-section .apply-steps__item {
    position: relative;
    flex: 1;
    text-align: center;
    padding: 0 8px 4px;
    min-width: 0;
}
.apply-steps-section .apply-steps__badge {
    position: absolute;
    top: -2px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(22, 143, 46, .28);
}
.apply-steps-section .apply-steps__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 122, 145, .22);
    transition: transform var(--transition), box-shadow var(--transition);
}
.apply-steps-section .apply-steps__item:hover .apply-steps__icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 122, 145, .3);
}
.apply-steps-section .apply-steps__item h3 {
    margin: 0 0 4px;
    font-size: .92rem;
    color: var(--color-heading);
    line-height: 1.25;
}
.apply-steps-section .apply-steps__item p {
    margin: 0;
    font-size: .78rem;
    line-height: 1.35;
    color: var(--color-text-secondary);
}
.apply-steps-section .apply-steps__connector {
    flex: 0 0 36px;
    height: 2px;
    margin-top: 28px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-green));
    border-radius: 2px;
    opacity: .85;
}
.apply-steps-section .apply-steps__cta {
    text-align: center;
    margin-top: 14px;
}

@media (max-width: 768px) {
    .apply-steps-section .apply-steps__flow {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        max-width: 100%;
    }
    .apply-steps-section .apply-steps__connector { display: none; }
    .apply-steps-section .apply-steps__item { padding: 0 4px; }
    .apply-steps-section .apply-steps__badge {
        top: -4px;
        right: 4px;
        width: 22px;
        height: 22px;
        font-size: .72rem;
    }
    .apply-steps-section .apply-steps__icon {
        width: 46px;
        height: 46px;
        margin-bottom: 6px;
    }
    .apply-steps-section .apply-steps__icon .icon { width: 20px; height: 20px; }
    .apply-steps-section .apply-steps__item h3 { font-size: .82rem; }
    .apply-steps-section .apply-steps__item p { font-size: .72rem; }
}

@media (max-width: 520px) {
    .apply-steps-section .apply-steps__flow {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .apply-steps-section .apply-steps__item {
        display: grid;
        grid-template-columns: 46px 1fr;
        grid-template-rows: auto auto;
        column-gap: 10px;
        row-gap: 2px;
        text-align: left;
        align-items: center;
        padding: 8px 10px;
        background: #fff;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
    }
    .apply-steps-section .apply-steps__badge {
        top: 6px;
        right: 8px;
    }
    .apply-steps-section .apply-steps__icon {
        grid-row: 1 / span 2;
        margin: 0;
        width: 46px;
        height: 46px;
    }
    .apply-steps-section .apply-steps__item h3 { margin: 0; }
}

/* 3-step apply format (legacy cards) */
.steps-section { background: #fff; }
.steps-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-grid);
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: none;
}
.steps-trio__item {
    position: relative;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 16px 14px 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.steps-trio__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.steps-trio__item h3 {
    font-size: var(--fs-h3);
    color: var(--color-heading);
    margin-top: 0.25em;
    margin-bottom: 6px;
}
.steps-trio__item p {
    font-size: .86rem;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}
.steps-trio__item .btn { margin-top: 2px; }

/* Compact variant for homepage 3-step strip */
.steps-section--compact {
    padding-top: 14px;
    padding-bottom: 18px;
}
.section__header--compact {
    margin-bottom: 10px;
}
.section__header--compact h2 {
    margin-bottom: 4px;
}
.section__header--compact p {
    font-size: .84rem;
}
.steps-trio--compact {
    gap: 10px;
}
.steps-trio--compact .steps-trio__item {
    padding: 10px 10px 9px;
}
.steps-trio--compact .steps-trio__num {
    width: 30px;
    height: 30px;
    font-size: .9rem;
    margin-bottom: 5px;
}
.steps-trio--compact .steps-trio__item h3 {
    font-size: .95rem;
    margin-bottom: 4px;
}
.steps-trio--compact .steps-trio__item p {
    font-size: .8rem;
    margin-bottom: 7px;
    line-height: 1.35;
}
.steps-trio--compact .btn.btn-sm {
    padding: 6px 10px;
    font-size: .78rem;
}

/* Pre-approval letter */
.pre-approval-box h2,
.pre-approval-box h3 {
    font-size: var(--fs-h2);
    color: var(--color-heading);
    border-bottom: 2px solid var(--color-green);
    padding-bottom: 6px;
    margin-top: 0.2em;
    margin-bottom: 10px;
}
.pre-approval-box__grid { margin-top: 10px; align-items: start; }
.pre-approval-box .checklist li { font-size: .88rem; padding: 4px 0 4px 20px; position: relative; }
.pre-approval-box .checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--color-green-text); font-weight: 700; }

/* Fee and processing time */
.fee-section { background: var(--color-cream); }
.fee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-grid);
    margin-bottom: 12px;
}
.fee-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-card);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.fee-card h3 { font-size: var(--fs-h3); color: var(--color-heading); margin-top: 0.2em; margin-bottom: 6px; }
.fee-card__price { font-size: 1rem; color: var(--color-text); margin-bottom: 10px; }
.fee-card ul { text-align: left; font-size: .85rem; color: var(--color-text-secondary); margin-bottom: 0; }
.fee-card li { padding: 4px 0; border-bottom: 1px dashed var(--color-border); }
.fee-card li:last-child { border-bottom: 0; }
.fee-section__note { text-align: center; font-size: .85rem; color: var(--color-muted); margin-bottom: 10px; }
.fee-section__cta { text-align: center; }

/* Guidance & advisories grid */
.home-resource-section { background: #fff; }
.home-resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-grid);
}
.home-resource-grid .content-box h3,
.home-resource-grid .content-box h4 { margin-bottom: 8px; }
.home-resource-grid ul { font-size: .85rem; color: var(--color-text-secondary); list-style: disc; padding-left: 18px; margin-bottom: 0; }
.home-resource-grid ul li { padding: 2px 0; }

/* Status CTA strip */
.status-cta-section {
    padding-top: calc(var(--space-section-top) + 4px);
    padding-bottom: calc(var(--space-section-bottom) + 2px);
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
}
.status-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-grid);
}
.status-cta-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--radius-lg);
    padding: var(--space-card);
    color: #fff;
}
.status-cta-card__icon { flex-shrink: 0; color: #b8f5c8; margin-top: 2px; }
.status-cta-card h3 { color: #fff; font-size: var(--fs-h3); margin-top: 0.15em; margin-bottom: 6px; }
.status-cta-card p { font-size: .86rem; color: rgba(255, 255, 255, .92); margin-bottom: 10px; }
.status-cta-card .btn { margin-top: 2px; }

/* Holidays & embassies */
.holiday-list li,
.embassy-list li {
    padding: 5px 0;
    font-size: .88rem;
    border-bottom: 1px dashed var(--color-border);
}
.holiday-list li:last-child,
.embassy-list li:last-child { border-bottom: 0; }

@media (prefers-contrast: more) {
    :root {
        --color-text: #0a1a1f;
        --color-text-secondary: #1a2e35;
        --color-muted: #2f454d;
        --color-link: #003d4a;
        --color-link-hover: #5c0c18;
        --color-heading: #003d4a;
        --color-blue-text: #003d4a;
        --color-red: #7A101F;
        --color-red-dark: #5c0c18;
        --color-btn-primary: #7A101F;
        --color-btn-primary-hover: #5c0c18;
    }
    .btn-outline,
    .btn-outline.btn-teal {
        border-width: 3px;
    }
}
