* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #e5f0ff;
}

a {
    color: #0b6efd;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

a:hover {
    color: #084298;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ================= HEADER ================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    margin-bottom: 24px;
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* ================= LOGO ================= */

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 40px;
    width: auto;
    max-height: 48px;
    object-fit: contain;
    display: block;
}

@media (min-width: 1200px) {
    .site-logo {
        height: 44px;
    }
}

@media (max-width: 768px) {
    .site-logo {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        height: 32px;
    }
}

/* ================= NAV ================= */

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
}

/* underline for normal links ONLY */
.main-nav > ul > li:not(.nav-dropdown) > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #0b6efd;
    transition: width 0.15s ease-in-out;
}

.main-nav > ul > li:not(.nav-dropdown) > a:hover::after {
    width: 100%;
}

/* ================= DROPDOWN ================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 4px;
}

/* arrow only — NO underline */
.nav-dropdown > a::after {
    content: "";
    border-width: 4px 4px 0 4px;
    border-style: solid;
    border-color: #6b7280 transparent transparent transparent;
    margin-top: 2px;
}

/* ================= MEGA MENU ================= */

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #c7d2fe;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    padding: 16px 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 999;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-width: 420px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.dropdown-menu a {
    padding: 6px 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #111827;
    border-radius: 6px;
}

.dropdown-menu a:hover {
    background-color: #eef2ff;
    color: #0b6efd;
}

/* ================= MAIN ================= */

.site-main {
    min-height: 70vh;
    padding-bottom: 32px;
}

/* ================= HERO ================= */

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 60%, #eef2ff 100%);
    padding: 32px 24px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.hero p {
    margin-bottom: 24px;
    max-width: 760px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

/* ================= CARDS ================= */

.card {
    background: #f9fbff;
    border: 1px solid #c7d2fe;
    padding: 16px 18px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
}

.visa-card-title {
    font-size: 1rem;
    margin-bottom: 4px;
}

.visa-card-sub {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ================= INFO ================= */

.info-section {
    background: #f9fbff;
    padding: 22px 24px;
    margin-bottom: 32px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

/* ================= FOOTER ================= */

.site-footer {
    background: #0b172a;
    color: #e5edff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    color: #e5edff;
}

.footer-copy {
    font-size: 0.8rem;
    color: #aaaaaa;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .nav-dropdown .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin-top: 8px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 12px;
    }
}
.flight-card {
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
}

.flight-card-image-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.flight-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flight-card-body {
    padding: 14px 16px 16px;
}
/* ===============================
   VISA REQUIREMENTS PAGE
   =============================== */

.visa-article {
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    line-height: 1.75;
    max-width: 900px;
}

/* Headings */
.visa-article h2 {
    font-size: 1.4rem;
    margin: 28px 0 14px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e5edff;
    color: #0b6efd;
}

.visa-article h3 {
    font-size: 1.05rem;
    margin-top: 20px;
    margin-bottom: 6px;
    color: #111827;
}

/* Paragraphs */
.visa-article p {
    margin-bottom: 12px;
    color: #374151;
}

/* Lists */
.visa-article ul {
    margin: 12px 0 18px 20px;
}

.visa-article li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 4px;
}

/* Highlight: Documents Required */
.visa-article ul:first-of-type {
    background: #f9fbff;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #dbe3ff;
}

/* Notes / Tips */
.visa-article p strong {
    color: #0f172a;
}

.visa-article p em {
    font-style: normal;
    background: #fef3c7;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Divider */
.visa-article hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 28px 0;
}

/* ===============================
   FAQ (Atlys-style)
   =============================== */

.visa-article details {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding:

