* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: #fff;
    color: #111;
}

.page {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    background: #fff;
}


/* ================= HEADER ================= */

.topbar {
    padding: 24px 0;
    position: relative;
    z-index: 3;
    border-bottom: 1px solid rgba(17,17,17,.10);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(255,255,255,.12);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.brand h1 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 3px;
    color: #111;
}

.brand p {
    font-size: 11px;
    color: #666;
    margin: 0;
}


/* ================= HERO ================= */

.hero {
    padding: 55px 0 70px;
    position: relative;
    z-index: 2;
}

.hero-card {
    min-height: 550px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 25px;
    padding: 50px;
    border: 1px solid rgba(17,17,17,.12);
    border-radius: 32px;
    background: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 70px rgba(0,0,0,.35);
}

.hero-content {
    padding: 10px;
}

.badge-coming {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,134,11,.10);
    border: 1px solid rgba(184,134,11,.45);
    color: #b8860b;
    border-radius: 50px;
    padding: 9px 17px;
    font-size: 13px;
    font-weight: 700;
}

.hero h2 {
    font-size: clamp(42px,6vw,76px);
    line-height: 1.12;
    font-weight: 800;
    margin: 25px 0 18px;
    color: #111;
}

.hero h2 span {
    color: #b8860b;
    position: relative;
}

.hero h2 span::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: #b8860b;
    border-radius: 10px;
    margin-top: 10px;
}

.lead {
    color: #555;
    line-height: 2;
    font-size: 16px;
    max-width: 650px;
}


/* ================= COUNTDOWN ================= */

.countdown {
    display: flex;
    gap: 12px;
    margin: 30px 0;
}

.time-box {
    min-width: 88px;
    padding: 13px 10px;
    text-align: center;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(17,17,17,.15);
    transition: .3s;
}

.time-box:hover {
    background: rgba(184,134,11,.08);
    transform: translateY(-4px);
}

.time-box strong {
    display: block;
    font-size: 28px;
    color: #b8860b;
    font-weight: 800;
}

.time-box small {
    color: #666;
    font-size: 11px;
}


/* ================= BUTTONS ================= */

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    border-radius: 12px;
    padding: 11px 22px;
    font-weight: 700;
    transition: .3s;
}

.btn-main {
    background: #b8860b;
    color: #fff;
    border: 1px solid #b8860b;
}

.btn-main:hover {
    background: #9a7009;
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline-light {
    border-color: rgba(184,134,11,.55);
    color: #b8860b;
    background: #fff;
}

.btn-outline-light:hover {
    background: #b8860b;
    color: #fff;
    border-color: #b8860b;
    transform: translateY(-3px);
}


/* ================= HERO VISUAL ================= */

.hero-visual {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
}


/* ================= MAIN LOGO ================= */

.logo-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 7px solid rgba(184,134,11,.45);
    box-shadow:
        0 0 0 18px rgba(184,134,11,.08),
        0 25px 70px rgba(0,0,0,.18);
    z-index: 2;
    padding: 25px;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,.5));
}


/* ================= ORBITS ================= */

.orbit {
    position: absolute;
    border: 1px dashed rgba(184,134,11,.35);
    border-radius: 50%;
}

.orbit-one {
    width: 350px;
    height: 350px;
    transform: rotate(30deg);
}

.orbit-two {
    width: 440px;
    height: 220px;
    transform: rotate(-35deg);
}


/* ================= FLOATING CARDS ================= */

.floating-card {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(184,134,11,.40);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    color: #111;
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
    z-index: 3;
    backdrop-filter: blur(10px);
    animation: floating 4s ease-in-out infinite;
}

.floating-card i {
    color: #b8860b;
    margin-left: 6px;
}

.card-one {
    top: 65px;
    right: 12%;
}

.card-two {
    bottom: 72px;
    left: 5%;
    animation-delay: 1s;
}

.card-three {
    bottom: 45px;
    right: 12%;
    animation-delay: 2s;
}

@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* ================= PROGRAMS ================= */

.programs {
    padding: 15px 0 70px;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title span,
.section-mini {
    color: #b8860b;
    font-size: 12px;
    font-weight: 800;
    opacity: .75;
}

.section-title h3,
.contact-box h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 6px 0;
    color: #111;
}

.section-title p,
.contact-box p {
    color: #666;
    font-size: 13px;
}


/* ================= PROGRAM CARDS ================= */

.program {
    height: 120px;
    border: 1px solid rgba(184,134,11,.25);
    border-radius: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.program:hover {
    transform: translateY(-5px);
    background: rgba(184,134,11,.08);
    border-color: rgba(184,134,11,.55);
}

.program i {
    font-size: 27px;
    color: #b8860b;
    margin-bottom: 9px;
}

.program h4 {
    font-size: 14px;
    margin: 0;
    color: #111;
}


/* ================= CONTACT ================= */

.contact {
    padding: 0 0 55px;
    position: relative;
    z-index: 2;
}

.contact-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(184,134,11,.25);
}

.contact-box h3 {
    margin: 3px 0;
    color: #111;
}

.contact-box p {
    margin: 0;
}


/* ================= SOCIAL ICONS ================= */

.contact-icons {
    display: flex;
    gap: 10px;
}

.contact-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8860b;
    background: #fff;
    border: 1px solid rgba(184,134,11,.35);
    text-decoration: none;
    transition: .25s;
}

.contact-icons a:hover {
    background: #b8860b;
    color: #fff;
    transform: translateY(-3px);
}


/* ================= FOOTER ================= */

footer {
    border-top: 1px solid rgba(17,17,17,.12);
    padding: 22px 0;
    text-align: center;
    color: #888;
    font-size: 11px;
    position: relative;
    z-index: 2;
}

footer p {
    margin-bottom: 5px;
}

.dev {
    margin-top: 5px;
    opacity: .7;
}


/* ================= BACKGROUND GLOW ================= */

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .10;
    pointer-events: none;
}

.glow-one {
    width: 350px;
    height: 350px;
    background: #fff;
    top: 20%;
    right: -150px;
}

.glow-two {
    width: 280px;
    height: 280px;
    background: #fff;
    bottom: 10%;
    left: -130px;
}


/* ================= TABLET ================= */

@media(max-width:991px) {

    .hero-card {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .hero-visual {
        height: 360px;
        order: -1;
    }

    .hero-content {
        text-align: center;
    }

    .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .countdown,
    .actions {
        justify-content: center;
    }

    .hero h2 span::after {
        margin-left: auto;
        margin-right: auto;
    }
}


/* ================= MOBILE ================= */

@media(max-width:575px) {

    .topbar {
        padding: 18px 0;
    }

    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 52px;
        height: 52px;
        padding: 4px;
    }

    .brand h1 {
        font-size: 14px;
    }

    .brand p {
        font-size: 9px;
    }

    .hero {
        padding: 28px 0 50px;
    }

    .hero-card {
        padding: 24px 17px;
        border-radius: 24px;
    }

    .hero h2 {
        font-size: 43px;
    }

    .lead {
        font-size: 13px;
    }

    .countdown {
        gap: 6px;
    }

    .time-box {
        min-width: 64px;
        padding: 9px 5px;
    }

    .time-box strong {
        font-size: 21px;
    }

    .hero-visual {
        height: 300px;
    }

    .logo-circle {
        width: 185px;
        height: 185px;
        padding: 18px;
    }

    .orbit-one {
        width: 280px;
        height: 280px;
    }

    .orbit-two {
        width: 320px;
        height: 170px;
    }

    .floating-card {
        font-size: 10px;
        padding: 7px 9px;
    }

    .card-one {
        top: 22px;
    }

    .card-two {
        bottom: 28px;
    }

    .card-three {
        bottom: 12px;
    }

    .program {
        height: 105px;
    }

    .program h4 {
        font-size: 12px;
    }

    .contact-box {
        flex-direction: column;
        text-align: center;
    }
}