/* ==========================================================================
   Riyadh Air - Light theme with purple accents
   ========================================================================== */
:root {
    --purple-900: #1e0a3c;
    --purple-800: #2d1b69;
    --purple-700: #3b1f8e;
    --purple-600: #5b21b6;
    --purple-500: #7c3aed;
    --purple-400: #a78bfa;
    --purple-100: #ede9fe;
    --purple-50: #f5f3ff;

    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-h: 64px;
    --max-w: 1240px;
    --pad: 20px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --tr: 0.25s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); font-size: 15px; line-height: 1.6; color: var(--gray-900); background: #F4F3F6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 58px; }

/* ========== HEADER ========== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: linear-gradient(to right, #250954, #7C6C97);
}
.header-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
    height: var(--header-h); display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }
.logo-img.logo-white { height: 28px; }
.footer-logo { display: inline-block; }

/* Nav */
.main-nav { display: none; flex: 1; }
@media(min-width:1024px) { .main-nav { display: flex; } }
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
    display: flex; align-items: center;
    padding: 8px 16px; font-size: 14px; font-weight: 500;
    color: #fff; transition: var(--tr); white-space: nowrap;
}
.nav-link:hover, .nav-link.active-link { color: #fff; opacity: .85; }
.nav-item.has-mega:hover > .nav-link { text-decoration: underline; text-underline-offset: 4px; opacity: 1; }

/* Mega Dropdown */
.nav-item.has-mega { position: static; }
.mega-dropdown {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 99;
    background: linear-gradient(to right, #250954, #7C6C97);
    opacity: 0; visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.nav-item.has-mega:hover > .mega-dropdown {
    opacity: 1; visibility: visible;
}
.mega-wrap {
    max-width: var(--max-w); margin: 0 auto; padding: 40px 58px 48px;
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px;
    color: #fff;
}
.mega-intro h2 { font-size: 28px; font-weight: 400; margin-bottom: 16px; color: #fff; }
.mega-intro p { font-size: 14px; line-height: 1.7; color: #fff; max-width: 280px; }
.mega-content h3 { font-size: 14px; font-weight: 400; margin-bottom: 20px; color: #fff; }
.mega-links { display: flex; gap: 48px; }
.mega-col { display: flex; flex-direction: column; gap: 14px; }
.mega-link { font-size: 14px; color: #fff; transition: opacity var(--tr); }
.mega-link:hover { opacity: .7; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
.header-icon-btn {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; transition: var(--tr);
}
.header-icon-btn:hover { opacity: .85; }

/* Account + hamburger grouped with shared background */
.header-actions-group {
    display: flex; align-items: center; gap: 2px;
    background: #1A063B; border-radius: 999px;
    padding: 4px 8px;
}
.header-actions-group .header-icon-btn { width: 32px; height: 32px; }
.header-actions-group:hover { background: #24094d; }

/* Hamburger menu */
.header-menu-btn {
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
}
.hamburger { display: flex; flex-direction: column; gap: 4px; width: 16px; }
.hamburger span { display: block; width: 100%; height: 1.5px; background: #fff; border-radius: 2px; transition: all var(--tr); transform-origin: center; }

/* Login Modal */
.login-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 300;
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.login-overlay.open { opacity: 1; visibility: visible; }
.login-modal {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.95);
    z-index: 301; display: flex; width: 960px; max-width: 94vw; height: 560px; max-height: 90vh;
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.3);
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.login-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.login-left {
    width: 420px; flex-shrink: 0; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #250954, #5a2d82);
}
.login-left-logo { position: absolute; top: 24px; left: 24px; height: 32px; z-index: 2; }
.login-left-img { width: 100%; height: 100%; object-fit: cover; }
.login-right {
    flex: 1; display: flex; flex-direction: column; padding: 32px 40px;
}
.login-right-header {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 20px; margin-bottom: 24px; border-bottom: 1px solid var(--gray-200);
}
.login-tabs { display: flex; align-items: center; gap: 10px; font-size: 20px; }
.login-tab { color: var(--gray-900); font-weight: 400; }
.login-tab.active { font-weight: 500; }
.login-tab-sep { color: var(--gray-400); }
.login-close { color: var(--gray-500); padding: 4px; border-radius: 8px; transition: var(--tr); }
.login-close:hover { background: var(--gray-100); color: var(--gray-900); }
.login-body { flex: 1; }
.login-body h2 { font-size: 22px; font-weight: 500; color: var(--gray-900); margin-bottom: 8px; }
.login-body > p { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
.login-method { margin-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.login-method-active {
    display: inline-block; font-size: 14px; color: var(--purple-600); font-weight: 500;
    padding-bottom: 12px; border-bottom: 2px solid var(--purple-600); margin-bottom: -1px;
}
.login-label { display: block; font-size: 13px; color: var(--gray-600); margin-bottom: 8px; }
.login-input {
    width: 100%; padding: 14px 16px; font-size: 15px; font-family: var(--font);
    border: 1px solid var(--gray-300); border-radius: 10px; outline: none;
    color: var(--gray-900); transition: border-color var(--tr);
}
.login-input::placeholder { color: var(--gray-400); }
.login-input:focus { border-color: var(--purple-600); }
.login-remember {
    display: flex; align-items: center; gap: 8px; margin-top: 16px;
    font-size: 13px; color: var(--gray-700); cursor: pointer;
}
.login-remember input { accent-color: var(--purple-600); }
.login-mobile-img-wrap { display: none; }
.login-panel { display: flex; flex-direction: column; flex: 1; overflow: hidden; }
.login-body-scroll { overflow-y: auto; flex: 1; }
.login-back { color: var(--gray-500); padding: 4px; border-radius: 8px; transition: var(--tr); flex-shrink: 0; }
.login-back:hover { background: var(--gray-100); color: var(--gray-900); }
.login-select-wrap { position: relative; margin-bottom: 16px; }
.login-select {
    width: 100%; padding: 14px 16px; font-size: 15px; font-family: var(--font);
    color: var(--gray-900); background: #fff; border: 1px solid var(--gray-300);
    border-radius: 10px; appearance: none; outline: none; cursor: pointer;
    transition: border-color var(--tr);
}
.login-select:focus { border-color: var(--purple-600); }
.login-select-chevron {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    color: var(--gray-400); pointer-events: none;
}
.join-form .login-input { margin-bottom: 16px; }
.login-phone-row { display: flex; gap: 10px; margin-bottom: 4px; }
.login-phone-code { width: 100px; flex-shrink: 0; margin-bottom: 0; }
.login-phone-code .login-select { padding: 14px 10px; font-size: 14px; }
.login-phone-row .login-input { margin-bottom: 0; flex: 1; }
.login-hint {
    display: flex; gap: 8px; align-items: flex-start; font-size: 12px;
    color: var(--gray-500); line-height: 1.5; margin-bottom: 16px; margin-top: 8px;
}
.login-date-wrap { margin-bottom: 16px; }
.login-date { color-scheme: light; }
.login-upload-wrap { margin-bottom: 16px; }
.login-upload-input { display: none; }
.login-upload-label {
    display: flex; flex-direction: column; gap: 4px;
    padding: 12px 16px; border: 1px dashed var(--gray-300); border-radius: 8px;
    cursor: pointer; transition: border-color .2s, background .2s;
}
.login-upload-label:hover { border-color: var(--purple-900); background: rgba(37,9,84,.03); }
.login-upload-text { font-size: 13px; color: var(--gray-500); }
.login-upload-filename { font-size: 12px; color: var(--gray-700); word-break: break-all; }
.login-footer { display: flex; justify-content: center; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.login-next-btn {
    padding: 12px 0; width: 380px; border-radius: 999px; font-size: 14px; font-weight: 500; text-align: center;
    font-family: var(--font); background: var(--gray-200); color: var(--gray-400);
    border: none; cursor: not-allowed; transition: var(--tr); pointer-events: none;
}
.login-next-btn.active {
    background: #250854; color: #fff; cursor: pointer; pointer-events: auto;
}
.login-next-btn.active:hover { opacity: .85; }
@media(max-width:768px) {
    .container { padding: 0 16px; }
    .login-overlay { display: none; }
    .login-modal {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        width: 100%; height: 100%; max-width: none; max-height: none;
        border-radius: 0; flex-direction: column; box-shadow: none;
        transform: translateY(100%); opacity: 1;
        transition: transform .35s cubic-bezier(.4,0,.2,1), visibility .35s ease;
    }
    .login-modal.open { transform: translateY(0); visibility: visible; }
    .login-left { display: none; }
    .login-right { flex: 1; overflow-y: auto; }
    .login-mobile-img-wrap { display: block; position: relative; margin-bottom: 20px; }
    .login-mobile-img { display: block; width: 100%; height: 200px; object-fit: cover; object-position: center 30%; border-radius: 16px; }
    .login-mobile-logo { display: block; position: absolute; top: 12px; left: 12px; height: 28px; z-index: 2; }
    .login-left-logo { top: 12px; left: 16px; height: 24px; }
    .login-right { padding: 20px; flex: 1; overflow-y: auto; }
    .login-right-header { margin-bottom: 12px; }
    .login-body h2 { font-size: 18px; }
    .login-body > p { font-size: 13px; margin-bottom: 20px; }
    .login-footer { margin-top: auto; padding-top: 20px; }
}

/* Preferences & Sfeer Popups */
.pref-modal {
    position: absolute; top: calc(var(--header-h) + 4px); right: 48px;
    z-index: 201; background: #fff; border-radius: 16px; padding: 32px;
    width: 420px; max-width: 90vw; box-shadow: 0 8px 32px rgba(0,0,0,.15);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

/* WhatsApp floating button */
.whatsapp-float{
    position: fixed;
    right: 44px;
    bottom: 44px;
    z-index: 300;
    width: 68px;
    height: 68px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    opacity: 0;
    pointer-events: none;
}
.whatsapp-float-img{
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 14px;
}
.whatsapp-float.is-ready{
    opacity: 1;
    pointer-events: auto;
}
.whatsapp-float:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
@media(max-width:768px){
    .whatsapp-float{ right: 24px; bottom: 24px; width: 60px; height: 60px; }
}
.pref-modal.open { opacity: 1; visibility: visible; transform: translateY(0); }
.pref-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.pref-header h2 { font-size: 22px; font-weight: 400; color: var(--gray-900); }
.pref-close { color: var(--gray-600); padding: 4px; border-radius: 8px; transition: var(--tr); }
.pref-close:hover { background: var(--gray-100); color: var(--gray-900); }
.pref-label { display: block; font-size: 13px; font-weight: 400; color: var(--gray-900); margin-bottom: 8px; }
.pref-select-wrap {
    position: relative; margin-bottom: 20px;
}
.pref-select {
    width: 100%; padding: 14px 16px; font-size: 15px; font-family: var(--font);
    color: var(--gray-900); background: #fff; border: 1px solid var(--gray-300);
    border-radius: 12px; appearance: none; outline: none; cursor: pointer;
    transition: border-color var(--tr);
}
.pref-select:focus { border-color: var(--purple-600); }
.pref-chevron {
    position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
    color: var(--gray-500); pointer-events: none;
}

/* Sfeer Popup */
.sfeer-panel {
    position: absolute; top: calc(var(--header-h) + 4px); right: 48px;
    z-index: 201; width: 420px; max-width: 90vw;
    background: linear-gradient(160deg, #250954 0%, #5a2d82 40%, #a0506e 70%, #7C6C97 100%);
    border-radius: 14px; padding: 12px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.sfeer-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.sfeer-panel-card {
    background: rgba(255,255,255,.12); backdrop-filter: blur(16px);
    border-radius: 12px; padding: 14px 18px; color: #fff;
}
.sfeer-panel-card h2 { font-size: 15px; font-weight: 400; line-height: 1.3; margin-bottom: 4px; }
.sfeer-panel-card p { font-size: 12px; line-height: 1.4; color: rgba(255,255,255,.8); margin-bottom: 10px; }
.sfeer-panel-btns { display: flex; gap: 10px; }
.sfeer-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 20px; border-radius: 999px; font-size: 12px; font-weight: 500;
    transition: opacity var(--tr); white-space: nowrap;
}
.sfeer-btn:hover { opacity: .85; }
.sfeer-btn-white { background: #fff; color: var(--gray-900); }
.sfeer-btn-dark { background: rgba(255,255,255,.15); color: #fff; backdrop-filter: blur(8px); }

/* Mobile nav */
.mobile-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%;
    background: linear-gradient(160deg, #250954 0%, #5a2d82 40%, #a0506e 70%, #7C6C97 100%);
    z-index: 300; display: flex; flex-direction: column;
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
    overflow-y: auto;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-close {
    position: absolute; top: 16px; right: 16px; color: #fff; z-index: 2;
    padding: 4px; border-radius: 8px; transition: var(--tr);
}
.mobile-nav-close:hover { background: rgba(255,255,255,.15); }
.mobile-nav-inner { flex: 1; padding: 52px 20px 20px; }
.mobile-sfeer-card {
    background: rgba(255,255,255,.12); backdrop-filter: blur(16px);
    border-radius: 12px; padding: 16px; color: #fff; margin-bottom: 28px;
}
.mobile-sfeer-card h2 { font-size: 15px; font-weight: 400; line-height: 1.3; margin-bottom: 6px; }
.mobile-sfeer-card p { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.8); margin-bottom: 12px; }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-link {
    display: block; padding: 14px 0; font-size: 15px; font-weight: 500;
    color: #fff; transition: opacity var(--tr);
}
.mobile-nav-link:hover { opacity: .7; }
.mobile-nav-bottom {
    padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.15);
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; background: #250854; color: var(--white);
    font-size: 14px; font-weight: 600; border-radius: 999px; transition: all var(--tr);
}
.btn-primary:hover { background: #1a063b; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,8,84,.3); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; background: #250854; color: var(--white);
    font-size: 14px; font-weight: 600; border-radius: 999px;
    border: none; transition: all var(--tr);
}
.btn-outline:hover { background: #1a063b; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,8,84,.3); }
.btn-light {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; background: var(--white); color: var(--purple-900);
    font-size: 14px; font-weight: 600; border-radius: 999px; transition: all var(--tr);
}
.btn-light:hover { background: var(--gray-100); transform: translateY(-1px); }

/* ========== HERO BANNER ========== */
.hero-banner {
    background: #F4F3F6;
    color: var(--gray-900);
    padding: 32px 0 24px;
}
.hero-banner-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
.hero-eyebrow { font-size: 11px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-900); margin-bottom: 8px; }
.hero-eyebrow span { color: #6866E1; }
.hero-heading { font-size: 32px; font-weight: 400; line-height: 1.2; color: var(--gray-900); }
.hero-route { font-size: 14px; color: var(--gray-900); margin-top: 4px; }
.hero-banner .btn-primary { background: var(--purple-900); color: var(--white); flex-shrink: 0; }
.hero-banner .btn-primary:hover { background: #1a0a3c; }

/* ========== HERO PROMO CARD ========== */
.hero-promo { padding: 0 0 0; }
.promo-card {
    position: relative; border-radius: var(--radius-xl); overflow: hidden;
    min-height: 280px; display: flex; align-items: flex-end; padding: 40px;
}
.promo-card-bg-img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.promo-card-content { position: relative; z-index: 2; max-width: 400px; }
.promo-title {
    font-size: 30px; font-weight: 800; line-height: 1.15; color: var(--white);
}
.promo-title span { color: var(--purple-400); }
.promo-play-btn {
    position: absolute; bottom: 24px; right: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.15); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px); transition: var(--tr);
}
.promo-play-btn:hover { background: rgba(255,255,255,.25); }

/* ========== SECTION COMMON ========== */
.section-head { margin-bottom: 32px; }
.section-title { font-size: 26px; font-weight: 400; color: var(--gray-900); line-height: 1.25; margin-bottom: 8px; }
.section-desc { font-size: 15px; color: var(--gray-900); max-width: 560px; }

/* ========== ELEVATING SECTION ========== */
.section-elevating { padding: 56px 0 40px; }

/* Feature Cards Grid */
.feature-grid-wrap { position: relative; }
.feature-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media(max-width:767px) {
    .feature-grid-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -16px; padding: 0 16px; scrollbar-width: none; }
    .feature-grid-wrap::-webkit-scrollbar { display: none; }
    .feature-grid { display: flex; gap: 16px; }
    .feature-card { flex: 0 0 75vw; min-width: 0; }
}
@media(min-width:768px) and (max-width:1023px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

.feature-card {
    background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform var(--tr), box-shadow var(--tr);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.07); }
.feature-card-img {
    height: 120px; overflow: hidden; margin: 16px 16px 0; border-radius: var(--radius-lg);
}
.feature-card-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card-body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.feature-card-title {
    font-size: 18px; font-weight: 400; color: var(--gray-900); margin-bottom: 12px; line-height: 1.3;
}
.feature-card-bottom {
    display: flex; gap: 16px; align-items: flex-end; margin-top: auto;
}
.feature-card-desc { font-size: 13px; color: var(--gray-500); line-height: 1.55; flex: 1; }
.feature-card-arrow {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
    background: #190538; color: #fff; border: none;
    display: flex; align-items: center; justify-content: center; transition: var(--tr);
}
.feature-card-arrow:hover { background: #24094d; }


/* ========== ABOUT SECTION ========== */
.section-about { padding: 56px 0; }
.about-row { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media(min-width:768px) { .about-row { grid-template-columns: 1fr 1fr; } }
.about-image { order: 1; }
@media(min-width:768px) { .about-image { order: 0; } }
.about-img {
    width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-xl);
    object-fit: cover;
}
.about-text h2 { font-size: 26px; font-weight: 400; line-height: 1.25; margin-bottom: 14px; }
.about-text p { font-size: 15px; color: var(--gray-900); line-height: 1.7; margin-bottom: 24px; }

/* ========== PARTNERSHIP SECTION ========== */
.section-partnership { padding: 40px 0; }
.partnership-banner {
    border-radius: var(--radius-xl); color: var(--white);
    position: relative; overflow: hidden;
    display: flex; align-items: stretch; min-height: 300px;
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.partnership-content {
    position: relative; z-index: 2;
    padding: 44px 40px; max-width: 440px; display: flex; flex-direction: column; justify-content: center;
}
.partnership-badge {
    display: inline-block; padding: 4px 12px; font-size: 10px; font-weight: 500;
    background: rgba(255,255,255,.18); border-radius: 999px; letter-spacing: .04em;
    margin-bottom: 20px; width: fit-content;
}
.partnership-heading {
    font-size: 32px; font-weight: 300; line-height: 1.2; margin-bottom: 16px;
}
.partnership-desc { font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.65; }
.partnership-right {
    position: relative; z-index: 2; margin-left: auto;
    display: flex; flex-direction: column; justify-content: flex-end;
    align-items: flex-end; padding: 32px 40px;
}
.partnership-logos {
    display: flex; align-items: center; gap: 12px; color: var(--white);
}
.partner-label-text { font-size: 18px; font-weight: 700; line-height: 1.2; }
.partner-label-text small { font-size: 10px; font-weight: 400; letter-spacing: .1em; }
.partner-divider { font-size: 28px; font-weight: 200; opacity: .5; }
.btn-partner {
    display: inline-flex; align-items: center; padding: 12px 28px;
    background: rgba(255,255,255,.15); color: var(--white); font-size: 14px; font-weight: 600;
    border-radius: 999px; border: none; transition: all var(--tr);
    backdrop-filter: blur(6px);
}
.btn-partner:hover { background: rgba(255,255,255,.25); }

@media(max-width:767px) {
    .partnership-banner { flex-direction: column; }
    .partnership-right { align-items: flex-start; padding: 0 40px 32px; flex-direction: row; width: 100%; }
    .partnership-heading { font-size: 26px; }
}

/* ========== INFO CARDS ========== */
.section-info-cards { padding: 40px 0; }
.info-grid-wrap { position: relative; }
.info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media(max-width:767px) {
    .info-grid-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -16px; padding: 0 16px; scrollbar-width: none; }
    .info-grid-wrap::-webkit-scrollbar { display: none; }
    .info-grid { display: flex; gap: 16px; }
    .info-card { flex: 0 0 70vw; min-width: 0; }
}
@media(min-width:768px) and (max-width:1023px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }

.info-card {
    background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform var(--tr), box-shadow var(--tr);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.info-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.07); }
.info-card-img {
    max-height: 220px; overflow: hidden; width: 100%;
}
.info-card-img img { width: 100%; display: block; }
.info-card-body {
    padding: 20px 20px 24px; background: var(--white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-top: -16px; position: relative; z-index: 1;
}
.info-card-body h3 { font-size: 18px; font-weight: 400; color: var(--gray-900); margin-bottom: 6px; line-height: 1.3; }
.info-card-body p { font-size: 13px; color: var(--gray-900); line-height: 1.5; }

/* ========== DISCOVER SECTION ========== */
.section-discover { padding: 56px 0; }
.discover-row { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media(min-width:768px) { .discover-row { grid-template-columns: 1fr 1fr; } }
.discover-text h2 { font-size: 26px; font-weight: 400; line-height: 1.25; margin-bottom: 14px; }
.discover-text p { font-size: 15px; color: var(--gray-900); line-height: 1.7; margin-bottom: 24px; }
.discover-img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-xl);
}

/* ========== VISA SECTION ========== */
.section-visa { padding: 40px 0 64px; }
.visa-row { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media(min-width:768px) { .visa-row { grid-template-columns: 1fr 1fr; } }
.visa-img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-xl);
}
.visa-text h2 { font-size: 24px; font-weight: 400; line-height: 1.25; margin-bottom: 14px; }
.visa-text p { font-size: 15px; color: var(--gray-900); line-height: 1.7; margin-bottom: 24px; }

/* ========== FOOTER ========== */
.site-footer { background: linear-gradient(to right, #250954, #7C6C97); color: var(--white); }

/* Footer logo */
.footer-logo-wrap { padding: 48px 0 32px; }
.footer-logo-img { height: 48px; }

/* Footer main row */
.footer-main-row { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.15); }
@media(min-width:768px) { .footer-main-row { grid-template-columns: 1fr 1.2fr; } }

/* Newsletter */
.footer-newsletter h3 { font-size: 20px; font-weight: 400; line-height: 1.4; margin-bottom: 20px; max-width: 380px; }
.newsletter-label { font-size: 13px; color: var(--white); display: block; margin-bottom: 8px; }
.newsletter-form { margin-bottom: 16px; }
.newsletter-input-wrap {
    display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.3);
    padding-bottom: 8px; max-width: 360px;
}
.newsletter-input-wrap input {
    flex: 1; background: transparent; border: none; color: var(--white);
    font-size: 14px; outline: none; font-family: var(--font); padding: 6px 0;
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-submit {
    background: none; border: none; color: var(--white); cursor: pointer;
    padding: 4px; transition: color var(--tr);
}
.newsletter-submit:hover { color: var(--white); }
.newsletter-consent { margin-bottom: 12px; }
.consent-check { display: flex; gap: 10px; font-size: 12px; color: var(--white); line-height: 1.5; cursor: pointer; }
.consent-check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--purple-400); }
.newsletter-legal { font-size: 12px; color: var(--white); line-height: 1.5; }
.newsletter-legal a { color: var(--white); text-decoration: underline; }
.newsletter-legal a:hover { color: var(--white); }

/* Footer links */
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:767px) { .footer-links { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-size: 14px; font-weight: 400; margin-bottom: 16px; color: var(--white); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: var(--white); transition: color var(--tr); }
.footer-col a:hover { color: var(--white); }

/* Footer bottom */
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom-left { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.copyright { font-size: 12px; color: var(--white); white-space: nowrap; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a { font-size: 12px; color: var(--white); text-decoration: underline; transition: color var(--tr); }
.footer-legal a:hover { color: var(--white); }
.footer-bottom-right { display: flex; align-items: center; gap: 20px; }
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-social a { color: var(--white); transition: color var(--tr); display: flex; }
.footer-social a:hover { color: var(--white); }
.pif-badge {
    display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 400;
    letter-spacing: .05em; color: var(--white);
    border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 6px 14px;
}
@media(max-width:767px) {
    .footer-bottom-left, .footer-bottom-right { width: 100%; }
    .footer-bottom-right { justify-content: space-between; }
}

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: all .6s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media(max-width:767px) {
    .promo-card { min-height: 220px; padding: 32px 24px; }
    .promo-title { font-size: 26px; }
    .promo-card-image { display: none; }
    .partnership-banner { padding: 32px 24px; }
    .partnership-heading { font-size: 24px; }
    .section-title { font-size: 22px; }
    .about-text h2, .discover-text h2 { font-size: 22px; }
    .newsletter-input-wrap { max-width: 100%; }
}
@media(min-width:1024px) {
    .content-card { flex: 0 0 260px; }
    .info-card { flex: 0 0 240px; }
}
