/*==================================================
            ROOT
==================================================*/

:root{

    --primary:#0f172a;
    --secondary:#1e293b;

    --gold:#d4af37;
    --gold-light:#f5d77a;

    --white:#ffffff;

    --text:#e5e7eb;
    --text2:#94a3b8;

    --bg:#050816;

    --card:#111827;

    --border:rgba(255,255,255,.08);

    --shadow:0 15px 45px rgba(0,0,0,.35);

    --radius:18px;

    --transition:.35s;

}


/*==================================================
            RESET
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Cairo',sans-serif;

    background:linear-gradient(180deg,#050816,#0b1220,#050816);

    color:var(--white);

    overflow-x:hidden;

}

a{

    text-decoration:none;
    color:inherit;

}

img{

    display:block;
    max-width:100%;

}

button{

    font-family:'Cairo',sans-serif;
    cursor:pointer;
    border:none;

}

ul{

    list-style:none;

}


/*==================================================
            SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0b1120;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);
    border-radius:30px;

}


/*==================================================
            CONTAINER
==================================================*/

.container{

    width:min(1180px,92%);
    margin:auto;

}


/*==================================================
            HEADER
==================================================*/

header{

    position:fixed;

    top:0;
    right:0;
    left:0;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(8,13,27,.72);

    border-bottom:1px solid rgba(255,255,255,.05);

}

header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:82px;

}

.logo{

    font-size:30px;

    font-weight:800;

    color:var(--gold);

    letter-spacing:.5px;

}


/*==================================================
            NAVBAR
==================================================*/

nav ul{

    display:flex;

    align-items:center;

    gap:30px;

}

nav a{

    color:#d7dce5;

    font-weight:700;

    transition:.3s;

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    right:0;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

nav a:hover{

    color:var(--gold);

}

nav a:hover::after{

    width:100%;

}

.signup-btn{

    background:linear-gradient(135deg,#d4af37,#f6d47b);

    color:#111;

    padding:12px 22px;

    border-radius:30px;

    font-weight:800;

    box-shadow:0 8px 25px rgba(212,175,55,.25);

}

.signup-btn:hover{

    transform:translateY(-2px);

    color:#111;

}

.signup-btn::after{

    display:none;

}

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

}


/*==================================================
            HERO
==================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding-top:120px;

}

.hero::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    background:#d4af37;

    filter:blur(220px);

    opacity:.12;

    top:-120px;

    left:-120px;

}

.hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:#305cff;

    filter:blur(220px);

    opacity:.10;

    bottom:-150px;

    right:-120px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

    position:relative;

    z-index:5;

}

.badge{

    display:inline-block;

    background:rgba(212,175,55,.12);

    color:var(--gold);

    border:1px solid rgba(212,175,55,.35);

    padding:8px 18px;

    border-radius:40px;

    margin-bottom:25px;

    font-weight:700;

}

.hero h1{

    font-size:58px;

    line-height:1.25;

    margin-bottom:22px;

}

.hero p{

    color:var(--text2);

    font-size:20px;

    line-height:2;

    max-width:560px;

}


/*==================================================
            HERO BUTTONS
==================================================*/

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.primary-btn{

    background:linear-gradient(135deg,#d4af37,#f6d47b);

    color:#111;

    padding:15px 38px;

    border-radius:50px;

    font-weight:800;

    transition:.35s;

    box-shadow:0 15px 35px rgba(212,175,55,.25);

}

.primary-btn:hover{

    transform:translateY(-4px);

}

.secondary-btn{

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    padding:15px 34px;

    border-radius:50px;

    transition:.35s;

    background:rgba(255,255,255,.04);

}

.secondary-btn:hover{

    background:rgba(255,255,255,.08);

    border-color:var(--gold);

}


/*==================================================
            PHONE CARD
==================================================*/

.hero-image{

    display:flex;

    justify-content:center;

}

.phone-card{

    width:340px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

    overflow:hidden;

    box-shadow:var(--shadow);

    animation:float 4s ease-in-out infinite;

}

.phone-card img{

    width:100%;

    height:430px;

    object-fit:cover;

}

.online{

    display:flex;

    align-items:center;

    gap:10px;

    padding:18px 25px;

    color:#8ef18e;

    font-weight:700;

}

.online span{

    width:12px;

    height:12px;

    background:#00ff6a;

    border-radius:50%;

    box-shadow:0 0 12px #00ff6a;

}

.phone-card h3{

    padding:0 25px;

    font-size:28px;

}

.phone-card p{

    padding:10px 25px 25px;

    color:var(--text2);

}

.phone-card button{

    margin:0 25px 25px;

    width:calc(100% - 50px);

    padding:15px;

    border-radius:14px;

    background:linear-gradient(135deg,#d4af37,#f6d47b);

    color:#111;

    font-size:17px;

    font-weight:800;

    transition:.3s;

}

.phone-card button:hover{

    transform:scale(1.03);

}


/*==================================================
            ANIMATION
==================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-14px);

    }

    100%{

        transform:translateY(0);

    }
}

/*==================================================
                FEATURES
==================================================*/

.features{

    padding:120px 0;

    position:relative;

}

.features h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

    font-weight:800;

}

.cards{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.card{

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    backdrop-filter:blur(15px);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.card::before{

    content:"";

    position:absolute;

    top:0;

    right:-100%;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,var(--gold),transparent);

    transition:.5s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.4);

    box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.card:hover::before{

    right:0;

}

.card i{

    font-size:48px;

    color:var(--gold);

    margin-bottom:25px;

}

.card h3{

    font-size:24px;

    margin-bottom:15px;

}

.card p{

    color:var(--text2);

    line-height:1.9;

}



/*==================================================
                MEMBERS
==================================================*/

.members{

    padding:120px 0;

}

.members h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.member-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.member{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    box-shadow:var(--shadow);

}

.member:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.4);

}

.member img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.4s;

}

.member:hover img{

    transform:scale(1.08);

}

.member h3{

    margin-top:20px;

    text-align:center;

    font-size:24px;

}

.member p{

    color:var(--text2);

    text-align:center;

    margin:12px 0 25px;

}

.member button{

    width:calc(100% - 40px);

    margin:0 20px 25px;

    padding:14px;

    border-radius:14px;

    background:linear-gradient(135deg,#d4af37,#f5d77a);

    color:#111;

    font-weight:800;

    transition:.35s;

}

.member button:hover{

    transform:scale(1.04);

}



/*==================================================
                FAQ
==================================================*/

.faq{

    padding:120px 0;

}

.faq h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.faq-item{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.3s;

}

.faq-item:hover{

    border-color:rgba(212,175,55,.35);

}

.faq-question{

    width:100%;

    background:none;

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 28px;

    font-size:20px;

    font-weight:700;

}

.faq-question i{

    transition:.35s;

    color:var(--gold);

}

.faq-item.active i{

    transform:rotate(180deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    color:var(--text2);

    line-height:2;

    padding:0 28px;

}

.faq-item.active .faq-answer{

    max-height:200px;

    padding:0 28px 25px;

}



/*==================================================
            SECTION TITLE EFFECT
==================================================*/

.features h2,
.members h2,
.faq h2{

    position:relative;

    display:inline-block;

    left:50%;

    transform:translateX(-50%);

}

.features h2::after,
.members h2::after,
.faq h2::after{

    content:"";

    position:absolute;

    bottom:-12px;

    left:50%;

    transform:translateX(-50%);

    width:80px;

    height:4px;

    border-radius:50px;

    background:linear-gradient(90deg,var(--gold),var(--gold-light));

}



/*==================================================
            HOVER GLOW
==================================================*/

.card,
.member{

    position:relative;

}

.card::after,
.member::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    background:radial-gradient(circle at top,
        rgba(212,175,55,.10),
        transparent 60%);

    opacity:0;

    transition:.35s;

    pointer-events:none;

}

.card:hover::after,
.member:hover::after{

    opacity:1;

}

/*==================================================
                FOOTER
==================================================*/

footer{

    padding:40px 0;

    border-top:1px solid rgba(255,255,255,.08);

    background:#040713;

}

footer .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

footer a{

    color:var(--text2);

    margin-left:20px;

    transition:.3s;

}

footer a:hover{

    color:var(--gold);

}

footer div:first-child{

    color:var(--text2);

}


/*==================================================
                MOBILE MENU
==================================================*/

@media(max-width:900px){

    .menu-btn{

        display:block;

    }

    nav{

        position:absolute;

        top:82px;

        right:0;

        width:100%;

        background:#08101f;

        border-top:1px solid rgba(255,255,255,.08);

        display:none;

        padding:20px;

    }

    nav.active{

        display:block;

    }

    nav ul{

        flex-direction:column;

        gap:20px;

        align-items:center;

    }

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .hero-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero p{

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .phone-card{

        margin-top:40px;

    }

    .cards{

        grid-template-columns:repeat(2,1fr);

    }

    .member-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


@media(max-width:768px){

    header .container{

        height:72px;

    }

    .logo{

        font-size:24px;

    }

    .hero{

        padding-top:120px;

    }

    .hero h1{

        font-size:38px;

        line-height:1.5;

    }

    .hero p{

        font-size:17px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .primary-btn,
    .secondary-btn{

        width:100%;

        max-width:280px;

        text-align:center;

    }

    .phone-card{

        width:100%;

        max-width:340px;

    }

    .features,
    .members,
    .faq{

        padding:80px 0;

    }

    .features h2,
    .members h2,
    .faq h2{

        font-size:32px;

    }

    .cards{

        grid-template-columns:1fr;

    }

    .member-grid{

        grid-template-columns:1fr;

    }

}


@media(max-width:480px){

    .container{

        width:94%;

    }

    .hero h1{

        font-size:30px;

    }

    .badge{

        font-size:14px;

    }

    .card{

        padding:30px 22px;

    }

    .member img{

        height:280px;

    }

    .faq-question{

        font-size:17px;

        padding:18px;

    }

    .faq-answer{

        font-size:15px;

    }

    footer .container{

        flex-direction:column;

        text-align:center;

    }

    footer a{

        margin:0 10px;

    }

}


/*==================================================
                FADE ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:1s;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}


/*==================================================
            SELECTION COLOR
==================================================*/

::selection{

    background:var(--gold);

    color:#111;

}


/*==================================================
                IMAGE EFFECTS
==================================================*/

.member img,
.phone-card img{

    user-select:none;

    -webkit-user-drag:none;

}


/*==================================================
                BUTTON EFFECT
==================================================*/

.primary-btn,
.member button,
.phone-card button{

    position:relative;

    overflow:hidden;

}

.primary-btn::before,
.member button::before,
.phone-card button::before{

    content:"";

    position:absolute;

    top:0;

    right:-120%;

    width:100%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transition:.7s;

}

.primary-btn:hover::before,
.member button:hover::before,
.phone-card button:hover::before{

    right:120%;

}


/*==================================================
                GLASS EFFECT
==================================================*/

.card,
.member,
.phone-card,
.faq-item{

    backdrop-filter:blur(18px);

}

/* Ripple Effect */

.primary-btn,
.secondary-btn,
.member button,
.phone-card button{

    overflow:hidden;
    position:relative;

}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    animation:ripple .6s linear;

    background:rgba(255,255,255,.5);

    pointer-events:none;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}


/* Active Menu */

nav a.active{

    color:var(--gold);

}

nav a.active::after{

    width:100%;

}


/*==================================================
                END
==================================================*/