/*=========================================
          GOOGLE FONTS
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');


/*=========================================
            CSS VARIABLES
=========================================*/

:root{

    --primary:#ff7a1a;
    --primary-light:#ff9b49;

    --white:#ffffff;

    --text:#d9d9d9;

    --bg:#0d0d0d;

    --card:#161616;

    --glass:rgba(255,255,255,.08);

    --border:rgba(255,255,255,.12);

    --shadow:0 20px 60px rgba(0,0,0,.35);

    --transition:.4s ease;

    --radius:22px;

    --container:1400px;

}


/*=========================================
              RESET
=========================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    background:var(--bg);

    color:var(--white);

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    border:none;

    cursor:pointer;

    font-family:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,var(--container));

    margin:auto;

}


/*=========================================
          CUSTOM SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0d0d0d;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}


/*=========================================
              HEADER
=========================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    padding:22px 0;

}

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

}


/*=========================================
                LOGO
=========================================*/

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo-icon{

    width:42px;

    height:42px;

    border-radius:50%;

    background:var(--primary);

    display:grid;

    place-items:center;

    font-size:18px;

    color:#fff;

}

.logo-text{

    font-size:1.25rem;

    letter-spacing:2px;

    font-weight:700;

}


/*=========================================
            NAV LINKS
=========================================*/

.nav-links{

    display:flex;

    gap:45px;

}

.nav-links a{

    color:white;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.4s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-links a:hover{

    color:var(--primary);

}


/*=========================================
            NAV RIGHT
=========================================*/

.nav-right{

    display:flex;

    align-items:center;

    gap:18px;

}


/*=========================================
          PREMIUM BUTTONS
=========================================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 35px rgba(255,122,26,.35);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.2);

    color:#fff;

    backdrop-filter:blur(20px);

    transition:var(--transition);

}

.btn-secondary:hover{

    background:white;

    color:black;

}

.btn-outline{

    padding:14px 28px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.2);

    color:white;

    transition:.4s;

}

.btn-outline:hover{

    background:var(--primary);

    border-color:var(--primary);

}


/*=========================================
          MENU BUTTON
=========================================*/

.menu-btn{

    display:none;

    font-size:30px;

    color:white;

    background:none;

}


/*=========================================
                HERO
=========================================*/

.hero{

    position:relative;

    width:100%;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-bg{

    position:absolute;

    inset:0;

    z-index:-2;

}

.hero-bg img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    z-index:-1;

    background:
    linear-gradient(
        90deg,
        rgba(10,10,10,.92) 5%,
        rgba(10,10,10,.55) 45%,
        rgba(10,10,10,.15) 100%
    );

}

.hero-wrapper{

    display:flex;

    align-items:center;

    min-height:100vh;

}

.hero-left{

    max-width:700px;

}


/*=========================================
            HERO LEFT
=========================================*/

.hero-left{

    max-width:680px;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    color:var(--primary);

    margin-bottom:28px;

    font-size:.95rem;

}

.hero-left h1{

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(3rem,7vw,6.5rem);

    line-height:.95;

    margin-bottom:30px;

    font-weight:700;

}

.hero-left p{

    color:#d8d8d8;

    font-size:1.08rem;

    line-height:1.8;

    max-width:560px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;




}


/*=========================================
            HERO RIGHT
=========================================*/

.hero-right{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:flex-end;

    gap:30px;

}

.info-card{

    width:260px;

    padding:35px;

    border-radius:26px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.1);

    box-shadow:var(--shadow);

}

.info-card .number{

    display:block;

    font-size:3rem;

    font-weight:700;

    color:var(--primary);

    margin-bottom:10px;

}

.info-card p{

    color:#ddd;

    line-height:1.7;

}

.play-card{

    width:95px;

    height:95px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    display:grid;

    place-items:center;

    border:1px solid rgba(255,255,255,.1);

}

.play-card button{

    width:68px;

    height:68px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:28px;

    transition:.35s;

}

.play-card button:hover{

    transform:scale(1.12);

}



/*=========================================
            HERO STATS
=========================================*/

.hero-bottom{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:45px;

    width:min(92%,1200px);

    padding:28px;

    display:flex;

    justify-content:space-around;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(30px);

    border-radius:24px;

    border:1px solid rgba(255,255,255,.1);

}

.stat{

    text-align:center;

}

.stat h2{

    font-size:2.5rem;

    color:var(--primary);

    margin-bottom:8px;

}

.stat p{

    color:#ddd;

}




/*=========================================
            MOBILE
=========================================*/

@media(max-width:991px){

    .nav-links{

        display:none;

    }

    .btn-outline{

        display:none;

    }

    .menu-btn{

        display:block;

    }

    .hero-wrapper{

        grid-template-columns:1fr;

        gap:50px;

        padding-top:140px;

    }

    .hero-right{

        align-items:flex-start;

    }

    .hero-bottom{

        position:relative;

        bottom:auto;

        left:auto;

        transform:none;

        margin:50px auto;

        flex-direction:column;

        gap:30px;

    }

}


/*=========================================
        PREMIUM GLASS NAVBAR
=========================================*/

.header{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:min(94%,1450px);

    z-index:1000;

    transition:.4s ease;

}

.header.scrolled{

    top:10px;

}

.navbar{

    height:82px;

    padding:0 35px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:rgba(15,15,15,.55);

    backdrop-filter:blur(28px);

    -webkit-backdrop-filter:blur(28px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    box-shadow:
    0 15px 45px rgba(0,0,0,.25);

}



.btn-primary{

    position:relative;

    overflow:hidden;

}

.btn-primary::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:100%;

    height:100%;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.4),

    transparent

    );

    transition:.8s;

}

.btn-primary:hover::before{

    left:120%;

}

.btn-primary:hover{

    transform:translateY(-6px);

}



.info-card{

    animation:floatCard 4s ease-in-out infinite;

}

.play-card{

    animation:floatPlay 5s ease-in-out infinite;

}

@keyframes floatCard{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

@keyframes floatPlay{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(15px);

    }

}


.scroll-down{

    position:absolute;

    left:50%;

    bottom:180px;

    transform:translateX(-50%);

}

.scroll-down span{

    display:block;

    width:30px;

    height:52px;

    border:2px solid rgba(255,255,255,.5);

    border-radius:30px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:6px;

    height:10px;

    background:white;

    left:50%;

    transform:translateX(-50%);

    border-radius:20px;

    top:8px;

    animation:scrollMouse 2s infinite;

}

@keyframes scrollMouse{

    0%{

        opacity:1;

        top:8px;

    }

    100%{

        opacity:0;

        top:28px;

    }

}



.info-card:hover{

    transform:translateY(-12px);

    transition:.4s;

}

.play-card:hover{

    transform:scale(1.08);

}



@media(max-width:768px){

.hero{

    min-height:100svh;

}

.hero-left{

    text-align:left;

}

.hero-left h1{

    font-size:3.3rem;

    line-height:1;

}

.hero-left p{

    font-size:15px;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary,

.btn-secondary{

    width:100%;

    justify-content:center;

}

.hero-right{

    display:none;

}

.hero-bottom{

    border-radius:18px;

}




}


/*=========================================
            ABOUT SECTION
=========================================*/

.about{

    padding:120px 0;

    background:#101010;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    margin-bottom:18px;

    font-weight:600;

    letter-spacing:1px;

}

.about-content h2{

    font-family:"Cormorant Garamond",serif;

    font-size:3.6rem;

    line-height:1;

    margin-bottom:30px;

}

.about-content p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:20px;

}

.about-gallery{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.about-gallery img{

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;

}

.about-gallery img:first-child{

    grid-column:span 2;

    height:320px;

}

.about-gallery img:hover{

    transform:translateY(-10px);

}



@media(max-width:768px){

.about{

    padding:80px 0;

}

.about-grid{

    grid-template-columns:1fr;

    gap:50px;

}

.about-content h2{

    font-size:2.6rem;

}

.about-gallery{

    grid-template-columns:1fr;

}

.about-gallery img:first-child{

    grid-column:auto;

}

.about-gallery img{

    height:240px;

}

}


/*=========================================
        ABOUT FEATURES
=========================================*/

.about-features{

    margin-top:45px;

    display:flex;

    flex-direction:column;

    gap:22px;

}

.feature{

    display:flex;

    align-items:center;

    gap:18px;

}

.feature i{

    width:60px;

    height:60px;

    display:grid;

    place-items:center;

    border-radius:18px;

    background:#1a1a1a;

    color:var(--primary);

    font-size:26px;

    transition:.4s;

}

.feature:hover i{

    background:var(--primary);

    color:#fff;

    transform:rotate(-8deg);

}

.feature h4{

    font-size:1.15rem;

    margin-bottom:5px;

}

.feature p{

    margin:0;

    color:#9b9b9b;

}


.about-gallery{

    position:relative;

}

.experience-card{

    position:absolute;

    right:-25px;

    bottom:30px;

    width:170px;

    padding:30px;

    border-radius:22px;

    background:rgba(18,18,18,.72);

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.experience-card h2{

    color:var(--primary);

    font-size:3rem;

}

.experience-card span{

    color:#d2d2d2;

    font-size:.9rem;

}


.about-gallery img{

    transition:.55s;

}

.about-gallery img:hover{

    transform:scale(1.06);

    filter:brightness(1.08);

}


@media(max-width:768px){

.experience-card{

    position:relative;

    right:auto;

    bottom:auto;

    width:100%;

    margin-top:20px;

}

.feature{

    align-items:flex-start;

}

}


/*=========================================
        PROJECT SECTION
=========================================*/

.projects{

    padding:120px 0;

    background:#0b0b0b;

}

.section-heading{

    text-align:center;

    max-width:700px;

    margin:auto auto 70px;

}

.section-heading h2{

    font-family:"Cormorant Garamond",serif;

    font-size:3.5rem;

    margin:20px 0;

}

.section-heading p{

    color:#bdbdbd;

    line-height:1.8;

}

.project-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.project-card{

    background:#171717;

    border-radius:24px;

    overflow:hidden;

    transition:.45s;

    border:1px solid rgba(255,255,255,.06);

}

.project-card:hover{

    transform:translateY(-15px);

}

.project-card img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.6s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-content{

    padding:30px;

}

.project-content span{

    color:var(--primary);

    font-size:.9rem;

}

.project-content h3{

    font-size:2rem;

    margin:15px 0;

}

.project-info{

    display:flex;

    justify-content:space-between;

    color:#bdbdbd;

    margin:20px 0;

}

.project-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

}




@media(max-width:991px){

.project-grid{

    grid-template-columns:1fr;

}

.section-heading h2{

    font-size:2.6rem;

}

.project-card img{

    height:240px;

}

}




/*=========================================
            WHY US
=========================================*/

.why-us{

    padding:120px 0;

    background:#111;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    padding:40px 30px;

    border-radius:24px;

    background:#181818;

    border:1px solid rgba(255,255,255,.06);

    transition:.4s;

}

.why-card:hover{

    transform:translateY(-15px);

    border-color:var(--primary);

}

.why-card i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:18px;

    font-size:1.5rem;

}

.why-card p{

    color:#bdbdbd;

    line-height:1.8;

}




@media(max-width:991px){

.why-grid{

    grid-template-columns:1fr;

}

}




/*=========================================
            MOBILE MENU
=========================================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    max-width:85%;

    height:100vh;

    padding:120px 35px;

    display:flex;

    flex-direction:column;

    gap:30px;

    background:rgba(15,15,15,.92);

    backdrop-filter:blur(35px);

    -webkit-backdrop-filter:blur(35px);

    transition:.45s ease;

    z-index:2000;

    border-left:1px solid rgba(255,255,255,.08);

}

.mobile-menu.active{

    right:0;

}

.mobile-menu a{

    font-size:1.15rem;

    font-weight:500;

    transition:.3s;

}

.mobile-menu a:hover{

    color:var(--primary);

    transform:translateX(10px);

}

.mobile-btn{

    margin-top:30px;

    text-align:center;

    padding:15px;

    border-radius:50px;

    background:var(--primary);

}

.close-menu{

    position:absolute;

    top:30px;

    right:25px;

    font-size:32px;

    color:#fff;

    background:none;

}



.hero-left h1 span{

    color:var(--primary);

}


/*==================================
            STATS
==================================*/

.stats{

    padding:120px 0;

    background:#0d0d0d;

}

.stats-wrapper{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    padding:50px 30px;

    border-radius:24px;

    text-align:center;

    background:#171717;

    border:1px solid rgba(255,255,255,.06);

    transition:.4s;

}

.stat-box:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

}

.stat-box h2{

    font-size:3.8rem;

    color:var(--primary);

    margin-bottom:15px;

}

.stat-box p{

    color:#bdbdbd;

}


@media(max-width:900px){

.stats-wrapper{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.stats-wrapper{

grid-template-columns:1fr;

}

}



.stats{

position:relative;

overflow:hidden;

}

.stats::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(255,122,26,.06);

filter:blur(120px);

top:-150px;

right:-150px;

border-radius:50%;

}

.stats::after{

content:"";

position:absolute;

width:400px;

height:400px;

background:rgba(255,255,255,.03);

filter:blur(120px);

bottom:-150px;

left:-150px;

border-radius:50%;

}



/*=========================================
        FEATURED PROPERTY
=========================================*/

.featured-property{

    padding:140px 0;

    background:#101010;

}

.featured-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.featured-image{

    position:relative;

    overflow:hidden;

    border-radius:30px;

}

.featured-image img{

    width:100%;

    height:700px;

    object-fit:cover;

    transition:.8s;

}

.featured-image:hover img{

    transform:scale(1.08);

}

.property-badge{

    position:absolute;

    top:30px;

    left:30px;

    padding:14px 22px;

    border-radius:50px;

    background:rgba(255,122,26,.95);

    color:#fff;

    font-weight:600;

}

.featured-content h2{

    font-size:4rem;

    font-family:"Cormorant Garamond",serif;

    margin:20px 0;

}

.featured-content p{

    color:#bfbfbf;

    line-height:1.9;

    margin-bottom:45px;

}

.property-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.property-features div{

    display:flex;

    align-items:center;

    gap:15px;

    padding:22px;

    border-radius:20px;

    background:#181818;

}

.property-features i{

    color:var(--primary);

    font-size:26px;

}

.featured-bottom{

    margin-top:45px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.featured-bottom h3{

    color:var(--primary);

    font-size:2.8rem;

}




@media(max-width:991px){

.featured-grid{

grid-template-columns:1fr;

gap:50px;

}

.featured-image img{

height:420px;

}

.featured-content h2{

font-size:2.8rem;

}

.property-features{

grid-template-columns:1fr;

}

.featured-bottom{

flex-direction:column;

align-items:flex-start;

gap:25px;

}

.featured-bottom .btn-primary{

width:100%;

justify-content:center;

}

}






.property-features div{

transition:.35s;

}

.property-features div:hover{

transform:translateY(-8px);

border:1px solid rgba(255,122,26,.35);

}




/*==================================
            CONTACT
===================================*/

.contact{

    padding:120px 0;

    background:#0d0d0d;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.contact-content h2{

    font-size:3.5rem;

    font-family:"Cormorant Garamond",serif;

    margin:20px 0;

}

.contact-content p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:40px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.contact-info div{

    display:flex;

    align-items:center;

    gap:18px;

}

.contact-info i{

    color:var(--primary);

    font-size:24px;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

    padding:40px;

    background:#171717;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.06);

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:18px 20px;

    border:none;

    border-radius:14px;

    background:#222;

    color:white;

    outline:none;

    font-size:15px;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    width:100%;

}




@media(max-width:991px){

.contact{

padding:80px 0;

}

.contact-wrapper{

grid-template-columns:1fr;

gap:50px;

}

.contact-content h2{

font-size:2.7rem;

}

.contact-form{

padding:25px;

}

}


/*==================================
            FOOTER
===================================*/

.footer{

    padding:30px 0;

    border-top:1px solid rgba(255,255,255,.08);

    background:#090909;

    text-align:center;

}

.footer p{

    color:#8b8b8b;

    font-size:15px;

}



/*==================================
      FLOATING ACTION BUTTONS
===================================*/

.floating-actions{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:16px;

    z-index:999;

}

.floating-btn{

    width:62px;

    height:62px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:28px;

    color:#fff;

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s ease;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

}

/* WhatsApp */

.whatsapp-btn{

    background:#25D366;

}

/* Email */

.email-btn{

    background:#ff7a1a;

}

.floating-btn:hover{

    transform:translateY(-8px) scale(1.08);

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.floating-btn:active{

    transform:scale(.95);

}



@media(max-width:768px){

.floating-actions{

right:18px;

bottom:18px;

gap:12px;

}

.floating-btn{

width:54px;

height:54px;

font-size:24px;

}

}



/*==================================
            FOOTER
===================================*/

.footer{

    background:#090909;

    padding:90px 0 30px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:70px;

    padding-bottom:60px;

}

.footer-brand h2{

    font-size:2rem;

    margin-bottom:20px;

    letter-spacing:2px;

    color:var(--primary);

}

.footer-brand p{

    color:#a9a9a9;

    line-height:1.9;

    max-width:420px;

}

.footer-links,

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-links h3,

.footer-contact h3{

    margin-bottom:10px;

    color:white;

}

.footer-links a{

    color:#bfbfbf;

    transition:.35s;

}

.footer-links a:hover{

    color:var(--primary);

    transform:translateX(8px);

}

.footer-contact p{

    color:#bfbfbf;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-bottom p{

    color:#8e8e8e;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#171717;

    color:white;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-6px);

}




@media(max-width:900px){

.footer-top{

grid-template-columns:1fr;

gap:45px;

}

.footer-bottom{

flex-direction:column;

gap:25px;

text-align:center;

}

}



.menu-btn{

    display:none;

    width:48px;

    height:48px;

    border:none;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:12px;

    color:#fff;

    font-size:28px;

    cursor:pointer;

    transition:.3s;

}

.menu-btn:hover{

    background:var(--primary);

}

@media(max-width:991px){

    .nav-links{

        display:none;

    }

    .btn-outline{

        display:none;

    }

    .menu-btn{

        display:flex;

        justify-content:center;

        align-items:center;

    }

}