/* ==========================================================
   ASD NAVBAR — Complete Responsive Stylesheet
   ========================================================== */

/* ── Reset ───────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8fafc;
}

/* ── Navbar Base ─────────────────────────────────────────── */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #0f172a;
    padding: 0 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.4s ease;
}

/* ── Logo Groups ─────────────────────────────────────────── */
.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 8px 0;
}

/* ── Hamburger (hidden on desktop) ──────────────────────── */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2000;
    padding: 6px;
    flex-shrink: 0;
}

/* Hidden on desktop — shown only inside mobile drawer via media query */
.drawer-close {
    display: none;
}
.drawer-header {
    display: none;
}

/* ── Logo Sizing ─────────────────────────────────────────── */
.logo {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 255, 255, 0.2);
}

/* ── Nav Center ──────────────────────────────────────────── */
.nav-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    min-width: 0;
}

/* ── Nav Links List ──────────────────────────────────────── */
.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

/* Each nav item */
.nav-links > li {
    position: relative;
    display: flex;
    align-items: center;
}

/* ── Nav Link Anchor ─────────────────────────────────────── */
.nav-links > li > a {
    color: #f1f5f9;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pill hover effect */
.nav-links > li > a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-links > li > a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-links > li > a:hover::before {
    transform: scale(1);
    opacity: 1;
}

/* Rightmost items (sit on white bg side) get dark text */
.nav-links > li:nth-last-child(-n+2) > a {
    color: #0f172a;
}
.nav-links > li:nth-last-child(-n+2) > a:hover {
    color: #f97316;
}
.nav-links > li:nth-last-child(-n+2) > a::before {
    background: rgba(15, 23, 42, 0.08);
}

/* ══ Dropdown Premium Chevron ══════════════════════════════ */
.dropdown > a .chevron-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 6px;
    transition: background 0.3s ease, border-color 0.3s ease,
                box-shadow 0.3s ease, transform 0.1s ease;
    flex-shrink: 0;
}

.dropdown > a .chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    stroke-width: 3;
}

/* Hover: glow + rotate */
.dropdown:hover > a .chevron-wrap {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.dropdown:hover > a .chevron {
    transform: rotate(180deg);
}

/* Dark-side nav items (right of divider) — keep chevron-wrap visible */
.nav-links > li:nth-last-child(-n+2) .dropdown > a .chevron-wrap {
    display: inline-flex;
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.2);
}
.nav-links > li:nth-last-child(-n+2) .dropdown:hover > a .chevron-wrap {
    background: rgba(15, 23, 42, 0.15);
    border-color: rgba(15, 23, 42, 0.35);
    box-shadow: 0 0 10px rgba(15, 23, 42, 0.1);
}

/* JS-toggled open state (mobile) */
.dropdown.open > a .chevron-wrap {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.dropdown.open > a .chevron {
    transform: rotate(180deg);
}
/* ══════════════════════════════════════════════════════════ */

/* ══ DROPDOWN MENU ══════════════════════════════════════════ */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    list-style: none;
    min-width: 220px;
    border-radius: 10px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 500;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

/* Right-align dropdown for items near the right edge */
.nav-links > li:nth-last-child(-n+2) .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu > li {
    width: 100%;
}

.dropdown-menu > li > a {
    display: block;
    padding: 11px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1px;
    color: #334155;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu > li > a:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    padding-left: 26px;
}

/* Divider between dropdown items (subtle) */
.dropdown-menu > li + li {
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}
/* ════════════════════════════════════════════════════════════ */

/* ── Badge ───────────────────────────────────────────────── */
.badge {
    background: #f97316;
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.4);
    animation: pulse-soft 2s infinite;
}

.nav-links > li > a:hover .badge {
    animation: none;
}

@keyframes pulse-soft {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(249,115,22,0.4); }
    70%  { transform: scale(1.05); box-shadow: 0 0 0 4px rgba(249,115,22,0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(249,115,22,0); }
}

/* ── Scrolled State ──────────────────────────────────────── */
.navbar.scrolled {
    background: #ffffff; /* JS will set the split gradient dynamically */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* On scrolled, left side links now sit on white */
.navbar.scrolled .nav-links > li > a {
    color: #0f172a;
}
.navbar.scrolled .nav-links > li > a::before {
    background: rgba(15, 23, 42, 0.08);
}
.navbar.scrolled .nav-links > li > a:hover {
    color: #f97316;
}

/* On scrolled, rightmost links now sit on navy */
.navbar.scrolled .nav-links > li:nth-last-child(-n+2) > a {
    color: #f1f5f9;
}
.navbar.scrolled .nav-links > li:nth-last-child(-n+2) > a:hover {
    color: #ffffff;
}
.navbar.scrolled .nav-links > li:nth-last-child(-n+2) > a::before {
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .hamburger svg {
    stroke: #0f172a;
}

/* ── Medium Large Screens (< 1400px) ─────────────────────── */
@media (max-width: 1400px) {
    .logo {
        height: 90px;
        width: 90px;
    }
    .nav-links > li > a {
        font-size: 13px;
        padding: 8px 12px;
    }
    .nav-links {
        gap: 2px;
    }
    .nav-links > li:nth-child(4) {
        margin-left: 40px;
    }
}

/* ── Tablet / Small Laptop (< 1250px) → Switch to Drawer ─── */
@media (max-width: 1250px) {
    .hamburger {
        display: block;
    }

    .logo {
        height: 80px;
        width: 80px;
    }

    /* ── Blurred dim overlay behind drawer ─── */
    .navbar::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 1400;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    .navbar.menu-open::before {
        opacity: 1;
        visibility: visible;
    }

    /* ── Drawer Panel ─── */
    .nav-center {
        position: fixed;
        top: 0;
        right: -110%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: linear-gradient(160deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        box-shadow: -8px 0 50px rgba(0, 0, 0, 0.7);
        transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
        overflow: hidden;
        display: flex;
    }

    .navbar.menu-open .nav-center {
        right: 0;
    }

    /* ── Branded Drawer Header ─── */
    .drawer-header {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 20px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
        flex-shrink: 0;
    }
    .drawer-header-logo {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 14px rgba(99, 179, 237, 0.25);
        flex-shrink: 0;
    }
    .drawer-header-text {
        flex: 1;
        min-width: 0;
    }
    .drawer-header-text h3 {
        font-size: 13.5px;
        font-weight: 800;
        color: #ffffff;
        letter-spacing: 0.5px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .drawer-header-text p {
        font-size: 10.5px;
        color: #94a3b8;
        margin-top: 2px;
        letter-spacing: 0.8px;
        font-weight: 500;
    }

    /* ── Links inside drawer ─── */
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        padding: 0 0 60px 0;
        overflow-y: auto;
    }

    .nav-links > li {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links > li:nth-child(4) {
        margin-left: 0;
    }

    /* All top-level links: white, left-aligned */
    .nav-links > li > a,
    .navbar.scrolled .nav-links > li > a,
    .nav-links > li:nth-last-child(-n+2) > a,
    .navbar.scrolled .nav-links > li:nth-last-child(-n+2) > a {
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.4px;
        width: 100%;
        padding: 16px 24px;
        border-radius: 0;
        transform: none;
        box-shadow: none;
        white-space: normal;
        text-align: left;
        justify-content: flex-start;
    }

    .nav-links > li > a:hover,
    .navbar.scrolled .nav-links > li > a:hover,
    .nav-links > li:nth-last-child(-n+2) > a:hover,
    .navbar.scrolled .nav-links > li:nth-last-child(-n+2) > a:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.07);
        transform: none;
        box-shadow: none;
    }

    .nav-links > li > a::before {
        display: none; /* No pill in drawer */
    }

    /* Chevron inside drawer */
    .dropdown > a::after {
        margin-left: auto;
    }

    /* ── Drawer Close Button ─── */
    .drawer-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255,255,255,0.08);
        border: none;
        cursor: pointer;
        border-radius: 8px;
        padding: 6px;
        transition: background 0.2s ease;
    }
    .drawer-close:hover {
        background: rgba(255,255,255,0.15);
    }

    /* ── Mobile Dropdown (static, expanding) ─── */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.2);
        min-width: 100%;
        border-radius: 0;
        border: none;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.35s ease, opacity 0.3s ease;
    }

    .dropdown-menu > li > a::before {
        content: '›';
        font-size: 18px;
        line-height: 1;
        color: #a0aec0;
        flex-shrink: 0;
        transition: color 0.2s ease, transform 0.2s ease;
        display: inline-block;
        margin-right: 10px;
    }

    /* Touch toggle via JS .open class */
    .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        transform: none;
    }
    .dropdown.open > a .chevron {
        transform: rotate(180deg);
        opacity: 1;
    }

    .dropdown-menu > li > a {
        color: #cbd5e1;
        padding: 11px 24px 11px 32px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.3px;
        white-space: normal;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        display: flex;
        align-items: center;
    }

    .dropdown-menu > li > a:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 44px;
    }

    /* No divider lines inside dropdown on mobile */
    .dropdown-menu > li + li {
        border-top: none;
    }
}

/* ── Very Small Phones (< 550px) ─────────────────────────── */
@media (max-width: 550px) {
    .navbar {
        padding: 8px 10px;
    }
    .logo {
        height: 65px;
        width: 65px;
    }
    .nav-left, .nav-right {
        gap: 6px;
    }
}

/* ── Hero Slider Section ─────────────────────────────────── */
.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    background: #000;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: calc(100vh - 116px);
    min-height: 400px;
}

/* ── Hero Slider Layout ──────────────────────────────────── */
.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.banner-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Slider Nav Buttons */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.banner-nav:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.banner-nav.prev { left: 30px; }
.banner-nav.next { right: 30px; }

.banner-nav svg {
    width: 26px;
    height: 26px;
}

/* Pagination Dots */
.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.banner-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dots .dot:hover { background: rgba(255, 255, 255, 0.8); }

.banner-dots .dot.active {
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ═══════════════════════════════════════════════════════════ */
/* ── Top Offer Banner — Ultra Premium Compact Design ──────── */
/* ═══════════════════════════════════════════════════════════ */
.top-offer-banner {
    background: #06153A;
    color: #ffffff;
    padding: 0 50px 0 16px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    border-bottom: 1px solid rgba(99, 179, 237, 0.12);
}

/* Particle canvas layer */
.banner-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Glowing orbs */
.banner-orb {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}
.banner-orb-left {
    width: 140px;
    height: 60px;
    left: -20px;
    background: radial-gradient(ellipse, rgba(99, 179, 237, 0.22) 0%, transparent 70%);
    animation: orbPulse 4s ease-in-out infinite;
}
.banner-orb-right {
    width: 140px;
    height: 60px;
    right: -20px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
    animation: orbPulse 4s ease-in-out infinite 2s;
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
    50%       { opacity: 1;   transform: translateY(-50%) scale(1.15); }
}

/* Content row */
.offer-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
}

/* Pulsing live indicator dot */
.offer-live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: livePulse 1.8s ease-out infinite;
    flex-shrink: 0;
}
@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.6); }
    70%  { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0); }
}

/* Offer text */
.offer-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.1px;
}
.offer-text strong {
    color: #ffffff;
    font-weight: 700;
}
.offer-sep-dot {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
}

/* Coupon pill — glowing, clickable */
.offer-coupon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #FF8A00;
    color: #ffffff;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 1px 8px;
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 1.8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    animation: couponGlow 2.5s ease-in-out infinite;
    position: relative;
}
.offer-coupon:hover {
    background: #e67e00;
    box-shadow: 0 0 16px rgba(255, 138, 0, 0.6);
    border-style: solid;
}
@keyframes couponGlow {
    0%, 100% { box-shadow: 0 0 6px rgba(255, 138, 0, 0.3); }
    50%       { box-shadow: 0 0 14px rgba(255, 138, 0, 0.6), 0 0 4px rgba(255, 138, 0, 0.3) inset; }
}

/* Separator pipe */
.offer-separator {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* Countdown pill */
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 1px;
    background: #102A5C;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255,255,255,0.04);
    animation: timerGlow 3s ease-in-out infinite;
}
@keyframes timerGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
    50%       { box-shadow: 0 0 16px rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.5); }
}

.time-box {
    display: flex;
    align-items: baseline;
    gap: 1px;
}
.time-box span {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    font-size: 13px;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
    min-width: 18px;
    text-align: center;
}
.time-box small {
    font-size: 8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    letter-spacing: 0.3px;
}
.timer-colon {
    color: #ffffff;
    font-weight: 800;
    font-size: 11px;
    padding: 0 1px;
    animation: colonBlink 1s step-end infinite;
}
@keyframes colonBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

/* Close button */
.close-offer {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}
.close-offer:hover {
    background: rgba(239, 68, 68, 0.65);
    border-color: rgba(239, 68, 68, 0.8);
    color: #ffffff;
    transform: translateY(-50%) rotate(90deg);
    box-shadow: 0 0 10px rgba(239,68,68,0.3);
}

/* Copied tooltip */
.copy-toast {
    position: fixed;
    top: 44px;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #1e293b;
    color: #22c55e;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(34,197,94,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 9999;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}
.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 700px) {
    .top-offer-banner { height: auto; padding: 7px 40px 7px 12px; }
    .offer-content { flex-wrap: wrap; gap: 6px; justify-content: center; }
    .offer-separator { display: none; }
    .offer-text { font-size: 10.5px; flex-wrap: wrap; justify-content: center; }
    .offer-live-dot { display: none; }
}

/* ── Academy Section — Premium Design ──────── */
.academy-section {
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    padding-bottom: 80px;
    font-family: 'Montserrat', sans-serif;
}
.academy-banner-top {
    background: linear-gradient(135deg, #0b1a38 0%, #142E54 100%);
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.academy-banner-top h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.academy-banner-bottom {
    background: #0d224b;
    padding: 10px 20px;
    text-align: center;
    box-shadow: inset 0 4px 6px -4px rgba(0,0,0,0.3);
}
.academy-banner-bottom p {
    color: #cbd5e1;
    font-size: 14.5px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.3px;
}
.academy-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1350px;
    margin: 30px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}
.academy-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(20,46,84,0.04);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02), 0 10px 40px rgba(0,0,0,0.02);
    padding: 35px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.academy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(20, 46, 84, 0.08), 0 20px 50px rgba(20, 46, 84, 0.05);
    border-color: rgba(20,46,84,0.12);
}
.card-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-icon svg {
    width: 34px;
    height: 34px;
    stroke: #142E54;
    transition: stroke 0.3s ease, transform 0.3s ease;
}
.academy-card:hover .card-icon svg {
    stroke: #FF8A00;
    transform: scale(1.08);
}
.card-text {
    color: #1e293b;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.65;
    margin: 0;
}

/* Responsive Grid for Academy Section */
@media (max-width: 1024px) {
    .academy-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 650px) {
    .academy-cards-container {
        grid-template-columns: 1fr;
    }
}

/* Programs Section */
.programs-section {
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    padding: 70px 20px;
    font-family: 'Montserrat', sans-serif;
}
.programs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1150px;
    margin: 0 auto;
}
.program-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.program-icon-wrapper {
    margin-bottom: 25px;
}
.program-icon-ring {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 8px solid var(--icon-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}
.program-icon-ring svg {
    width: 34px;
    height: 34px;
    stroke: var(--icon-color);
}
.program-card h3 {
    color: #0b1a38;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
}
.program-card p {
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 35px 0;
    flex-grow: 1;
}
.program-btn {
    display: inline-block;
    width: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
.program-btn:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .programs-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}
