/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

@keyframes pageReveal {
    0% {
        opacity: 0;
        transform: translateY(-40px);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}



html,
body {
    overflow-x: hidden;
    color: #020617;
    background: #ffffff;
}

body {
    animation: pageReveal 1.2s cubic-bezier(.22, .61, .36, 1) forwards;
}

/* CONTAINER */
.container {
    max-width: 95%;
    margin: auto;
    padding: 0 24px;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.brand h1 {
    font-size: 24px;
    font-weight: 700;
}

.brand span {
    font-size: 13px;
    color: #64748b;
}

nav a {
    margin-left: 28px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
}

nav a:hover {
    color: #2563eb;
}

/* HERO */
.hero-banner {
    position: relative;
    width: 100vw;
    height: 100svh;
    overflow: hidden;
    cursor: pointer;
}

.hero-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.85));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 80px;
    color: white;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
}

.hero-content p {
    font-size: 18px;
    max-width: 520px;
    margin: 16px 0 28px;
    color: #e5e7eb;
}

.hero-content button {
    width: fit-content;
    padding: 16px 30px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    cursor: pointer;
}

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 80px 0;
}

.stat {
    background: #f8fafc;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
}

.stat h3 {
    font-size: 32px;
    font-weight: 700;
}

.stat p {
    margin-top: 6px;
    color: #64748b;
}

/* WHY US */
.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 36px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
}

.why-card i {
    font-size: 26px;
    color: #2563eb;
    margin-bottom: 14px;
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    color: #475569;
    font-size: 15px;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* CARDS */
#cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 80px;
}

.card {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px;
}

.card h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.discount {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 18px;
}

.card button {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: #2563eb;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* FOOTER */
footer {
    border-top: 1px solid #e5e7eb;
    padding: 24px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 34px;
    }

    .hero-content {
        padding-bottom: 50px;
    }

}

/* =====================
   MOBILE ENHANCEMENTS
===================== */
/* =========================
   MOBILE 3-OPTION MENU
========================= *//* =========================
   MOBILE 3-OPTION MENU (FIXED)
========================= */
/* =========================
   MOBILE SIDEBAR MENU
========================= */
.hamburger,
.mobile-sidebar,
.sidebar-overlay {
    display: none;
}

@media (max-width: 768px) {

    /* Hide desktop nav */
    .site-header nav {
        display: none;
    }

    /* Hamburger button */
    .hamburger {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 28px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 10001;
    }

    .hamburger span {
        height: 3px;
        width: 100%;
        background: #020617;
        border-radius: 3px;
        transition: 0.3s ease;
    }

    /* Sidebar */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        background: #ffffff;
        padding: 90px 24px;
        display: flex;
        flex-direction: column;
        gap: 22px;

        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.12);
        transition: right 0.35s cubic-bezier(.22,.61,.36,1);
        z-index: 10000;
    }

    .mobile-sidebar a {
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 16px;
        font-weight: 500;
        color: #020617;
    }

    .mobile-sidebar i {
        font-size: 18px;
        color: #2563eb;
    }

    /* Overlay */
    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(2px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 9999;
    }

    /* ACTIVE STATES */
    .mobile-sidebar.active {
        right: 0;
    }

    .sidebar-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Animate hamburger to X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}
