/* RESET */
html{
    scroll-behavior:smooth;
}
section{
    scroll-margin-top:120px;
}

footer{
    scroll-margin-top:120px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#ffffff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* HEADER */

.main-header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:#ffffff;
    box-shadow:0 2px 20px rgba(0,0,0,0.06);
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:14px 5%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.logo img{
    height:72px;
    width:auto;
    display:block;
}

/* NAVIGATION */

.nav-menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-menu a{
    color:#081B4B;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
    position:relative;
}

.nav-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#F5A623;
    transition:0.3s;
}

.nav-menu a:hover{
    color:#F5A623;
}

.nav-menu a:hover::after{
    width:100%;
}

/* BUTTON */

.desktop-btn,
.mobile-btn{
    border:none;
    outline:none;
    background:#F5A623;
    color:#ffffff;
    padding:14px 26px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    display:flex;
    align-items:center;
    gap:10px;
}

.desktop-btn:hover,
.mobile-btn:hover{
    background:#081B4B;
    transform:translateY(-2px);
}

/* HEADER RIGHT */

.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

/* HAMBURGER */

/* HAMBURGER */

.hamburger{
    width:32px;
    height:24px;
    display:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
    position:relative;
    z-index:1001;
}

.hamburger span{
    width:100%;
    height:3px;
    background:#081B4B;
    border-radius:10px;
    transition:all 0.4s ease;
    transform-origin:center;
}

/* ACTIVE ANIMATION */

.hamburger.active span:nth-child(1){
    transform:translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
    transform:scaleX(0);
}

.hamburger.active span:nth-child(3){
    transform:translateY(-10px) rotate(-45deg);
}

/* MOBILE BUTTON */

.mobile-btn{
    display:none;
}

/* HERO SECTION */

/* HERO SECTION */

.hero{
    width:100%;
    min-height:100vh;
    position:relative;
    background:url('images/Kaveri-city-centre-sample-studio.jpeg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:140px 5% 80px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.82) 20%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.45) 100%
    );
}

.hero-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:2;
}

/* LEFT */

.hero-left{
    flex:1;
    color:#ffffff;
}

.hero-tag{
    display:inline-block;
    padding:10px 18px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    border-radius:50px;
    font-size:14px;
    margin-bottom:24px;
}

.hero-left h1{
    font-size:72px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:24px;
    max-width:700px;
}

.hero-left h1 span{
    color:#F5A623;
}

.hero-left p{
    font-size:18px;
    line-height:1.8;
    max-width:650px;
    color:#dddddd;
    margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.primary-btn,
.secondary-btn{
    padding:16px 32px;
    border-radius:60px;
    font-size:15px;
    font-weight:600;
    transition:0.35s;
}

.primary-btn{
    background:#F5A623;
    color:#ffffff;
}

.primary-btn:hover{
    background:#ffffff;
    color:#081B4B;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.3);
    color:#ffffff;
    backdrop-filter:blur(10px);
}

.secondary-btn:hover{
    background:#ffffff;
    color:#081B4B;
}

/* TRUST SECTION */

.hero-trust{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.trust-item h3{
    font-size:28px;
    color:#F5A623;
    margin-bottom:6px;
}

.trust-item p{
    font-size:14px;
    color:#cccccc;
    margin:0;
}

/* FORM BOX */

.hero-form-box{
    width:420px;
    background:#ffffffb2;
    padding:40px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,0.2);
}

.hero-form-box h2{
    font-size:32px;
    color:#081B4B;
    margin-bottom:10px;
}

.hero-form-box p{
    color:#666666;
    font-size:15px;
    margin-bottom:30px;
}

.hero-form-box form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.hero-form-box input{
    width:100%;
    height:58px;
    border:1px solid #dddddd;
    border-radius:14px;
    padding:0 18px;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.hero-form-box input:focus{
    border-color:#F5A623;
}

.hero-form-box button{
    height:58px;
    border:none;
    border-radius:14px;
    background:#081B4B;
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.hero-form-box button:hover{
    background:#F5A623;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    /* HERO */

    .hero-container{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-form-box{
        width:100%;
        max-width:500px;
    }

    .hero-left h1{
        font-size:56px;
    }
}


/* =========================================
   TABLET & MOBILE
========================================= */

@media(max-width:992px){

    /* HEADER */

    .hamburger{
        display:flex;
    }

    .header-right{
        gap:14px;
    }

    /* KEEP CTA BUTTON VISIBLE */

    .desktop-btn{
        display:block;
        padding:12px 18px;
        font-size:13px;
    }

    /* MOBILE MENU */

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#ffffff;

        flex-direction:column;
        align-items:flex-start;

        padding:35px 5%;
        gap:24px;

        opacity:0;
        visibility:hidden;

        transform:translateY(-10px);

        transition:0.4s;
    }

    .nav-menu.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    /* REMOVE MOBILE MENU BUTTON */

    .mobile-btn{
        display:none;
    }

    /* LOGO */

    .logo img{
        height:60px;
    }

    /* HERO */

    .hero{
        padding:130px 5% 70px;
    }

    .hero-left h1{
        font-size:42px;
    }

    .hero-left p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
    }

    .hero-form-box{
        padding:30px 24px;
    }

    .hero-form-box h2{
        font-size:26px;
    }

    .hero-trust{
        gap:30px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    /* HEADER */

    .container{
        padding:12px 5%;
    }

    .logo img{
        height:52px;
    }

    .desktop-btn{
        padding:10px 14px;
        font-size:12px;
    }

    /* HERO */

    .hero-left h1{
        font-size:34px;
    }

    .hero-left p{
        font-size:15px;
    }

    .hero-tag{
        font-size:12px;
    }

    .hero-form-box{
        border-radius:18px;
    }
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-section{
    width:100%;
    padding:110px 5%;
    background:#f8f9fc;
}

.about-container{
    width:100%;
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* LEFT SIDE */

.about-images{
    flex:1;
    position:relative;
}

.main-image{
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.main-image img{
    width:100%;
    display:block;
    height:650px;
    object-fit:cover;
}

/* FLOATING CARD */

.floating-card{
    position:absolute;
    bottom:40px;
    left:-30px;

    background:#ffffff;
    padding:28px;
    width:300px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.floating-card h3{
    font-size:24px;
    color:#081B4B;
    margin-bottom:12px;
}

.floating-card p{
    font-size:15px;
    line-height:1.7;
    color:#666666;
}

/* RIGHT SIDE */

.about-content{
    flex:1;
}

.section-tag{
    display:inline-block;

    padding:10px 18px;

    background:#fff3dd;
    color:#d88a00;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:24px;
}

.about-content h2{
    font-size:56px;
    line-height:1.15;
    color:#081B4B;

    margin-bottom:28px;
}

.about-content h2 span{
    color:#F5A623;
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:#555555;

    margin-bottom:22px;
}

/* HIGHLIGHTS */

.about-highlights{
    display:flex;
    flex-direction:column;
    gap:20px;

    margin-top:40px;
}

.highlight-box{
    display:flex;
    align-items:flex-start;
    gap:18px;

    background:#ffffff;

    padding:22px;

    border-radius:20px;

    transition:0.3s;
}

.highlight-box:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.highlight-box i{
    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#081B4B;
    color:#ffffff;

    border-radius:16px;

    font-size:20px;

    flex-shrink:0;
}

.highlight-box h4{
    font-size:19px;
    color:#081B4B;

    margin-bottom:6px;
}

.highlight-box p{
    margin:0;
    font-size:15px;
    color:#666666;
}

/* BUTTON */

.about-btn{
    margin-top:42px;

    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#081B4B;
    color:#ffffff;

    padding:16px 30px;

    border-radius:60px;

    font-size:15px;
    font-weight:600;

    transition:0.3s;
}

.about-btn:hover{
    background:#F5A623;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    .about-container{
        flex-direction:column;
    }

    .about-content h2{
        font-size:46px;
    }

    .main-image img{
        height:550px;
    }
}

@media(max-width:768px){

    .about-section{
        padding:80px 5%;
    }

    .about-content h2{
        font-size:36px;
    }

    .floating-card{
        position:relative;
        left:0;
        bottom:0;

        width:100%;
        margin-top:20px;
    }

    .main-image img{
        height:420px;
    }
}

@media(max-width:576px){

    .about-content h2{
        font-size:30px;
    }

    .about-content p{
        font-size:15px;
    }

    .highlight-box{
        flex-direction:column;
    }

    .main-image img{
        height:340px;
    }
}

/* =========================================
   RETAIL & STUDIO SECTION
========================================= */

.property-section{
    width:100%;
    padding:110px 5%;
    background:#ffffff;
}

.property-container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

/* SECTION HEADING */

.section-heading{
    text-align:center;
    max-width:850px;
    margin:auto auto 70px;
}

.section-heading .section-tag{
    display:inline-block;

    padding:10px 18px;

    background:#fff3dd;
    color:#d88a00;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:22px;
}

.section-heading h2{
    font-size:58px;
    line-height:1.15;
    color:#081B4B;

    margin-bottom:22px;
}

.section-heading h2 span{
    color:#F5A623;
}

.section-heading p{
    font-size:17px;
    line-height:1.9;
    color:#666666;
}

/* GRID */

.property-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:35px;
}

/* CARD */

.property-card{
    background:#ffffff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,0.08);

    transition:0.4s;
}

.property-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,0.14);
}

/* IMAGE */

.property-image{
    position:relative;
    overflow:hidden;
}

.property-image img{
    width:100%;
    height:420px;
    object-fit:cover;

    transition:0.5s;
}

.property-card:hover .property-image img{
    transform:scale(1.08);
}

.property-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.15)
    );
}

/* BADGE */

.property-badge{
    position:absolute;
    top:24px;
    left:24px;

    background:#F5A623;
    color:#ffffff;

    padding:10px 18px;

    border-radius:50px;

    font-size:13px;
    font-weight:600;
}

/* CONTENT */

.property-content{
    padding:38px;
}

.property-content h3{
    font-size:34px;
    color:#081B4B;

    margin-bottom:18px;
}

.property-content p{
    font-size:16px;
    line-height:1.9;
    color:#666666;

    margin-bottom:28px;
}

/* FEATURES */

.property-features{
    display:flex;
    flex-wrap:wrap;
    gap:14px;

    margin-bottom:35px;
}

.property-features span{
    display:flex;
    align-items:center;
    gap:10px;

    background:#f5f7fb;

    padding:12px 18px;

    border-radius:50px;

    font-size:14px;
    font-weight:500;

    color:#081B4B;
}

.property-features i{
    color:#F5A623;
}

/* BUTTON */

.property-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#081B4B;
    color:#ffffff;

    padding:15px 28px;

    border-radius:60px;

    font-size:14px;
    font-weight:600;

    transition:0.3s;
}

.property-btn:hover{
    background:#F5A623;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    .property-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .property-section{
        padding:80px 5%;
    }

    .section-heading h2{
        font-size:40px;
    }

    .property-image img{
        height:320px;
    }

    .property-content{
        padding:30px;
    }

    .property-content h3{
        font-size:28px;
    }
}

@media(max-width:576px){

    .section-heading h2{
        font-size:32px;
    }

    .section-heading p{
        font-size:15px;
    }

    .property-image img{
        height:260px;
    }

    .property-content{
        padding:24px;
    }

    .property-features{
        flex-direction:column;
        align-items:flex-start;
    }

    .property-btn{
        width:100%;
        justify-content:center;
    }
}

/* =========================================
   AMENITIES SECTION
========================================= */

.amenities-section{
    width:100%;
    padding:120px 5%;
    background:#081B4B;
    position:relative;
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.amenities-bg{
    position:absolute;
    width:700px;
    height:700px;

    background:rgba(245,166,35,0.08);

    border-radius:50%;

    top:-250px;
    right:-250px;

    filter:blur(20px);
}

/* CONTAINER */

.amenities-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* HEADING */

.amenities-heading{
    text-align:center;
    max-width:850px;
    margin:auto auto 80px;
}

.amenities-heading .section-tag{
    display:inline-block;

    padding:10px 18px;

    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);

    color:#F5A623;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:24px;
}

.amenities-heading h2{
    font-size:58px;
    line-height:1.15;

    color:#ffffff;

    margin-bottom:24px;
}

.amenities-heading h2 span{
    color:#F5A623;
}

.amenities-heading p{
    font-size:17px;
    line-height:1.9;

    color:#d6d6d6;
}

/* GRID */

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

/* CARD */

.amenity-card{
    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border-radius:30px;

    padding:40px 34px;

    transition:0.4s;
}

.amenity-card:hover{
    transform:translateY(-10px);

    background:rgba(255,255,255,0.09);

    border-color:rgba(245,166,35,0.25);
}

/* ICON */

.amenity-icon{
    width:75px;
    height:75px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#F5A623;

    border-radius:22px;

    margin-bottom:28px;
}

.amenity-icon i{
    font-size:30px;
    color:#ffffff;
}

/* TEXT */

.amenity-card h3{
    font-size:28px;
    color:#ffffff;

    margin-bottom:16px;
}

.amenity-card p{
    font-size:16px;
    line-height:1.9;

    color:#d7d7d7;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    .amenities-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:768px){

    .amenities-section{
        padding:90px 5%;
    }

    .amenities-heading h2{
        font-size:42px;
    }

    .amenity-card{
        padding:32px 26px;
    }

    .amenity-card h3{
        font-size:24px;
    }
}

@media(max-width:576px){

    .amenities-grid{
        grid-template-columns:1fr;
    }

    .amenities-heading h2{
        font-size:32px;
    }

    .amenities-heading p{
        font-size:15px;
    }

    .amenity-card h3{
        font-size:22px;
    }

    .amenity-card p{
        font-size:15px;
    }
}

/* =========================================
   GALLERY SECTION
========================================= */

.gallery-section{
    width:100%;
    padding:120px 5%;
    background:#f8f9fc;
}

.gallery-container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

/* HEADING */

.gallery-heading{
    text-align:center;
    max-width:850px;
    margin:auto auto 80px;
}

.gallery-heading .section-tag{
    display:inline-block;

    padding:10px 18px;

    background:#fff3dd;
    color:#d88a00;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:22px;
}

.gallery-heading h2{
    font-size:58px;
    line-height:1.15;

    color:#081B4B;

    margin-bottom:24px;
}

.gallery-heading h2 span{
    color:#F5A623;
}

.gallery-heading p{
    font-size:17px;
    line-height:1.9;

    color:#666666;
}

/* GRID */

.gallery-grid{
    display:grid;

    grid-template-columns:repeat(4, 1fr);
    grid-auto-rows:280px;

    gap:24px;
}

/* ITEMS */

.gallery-item{
    position:relative;

    overflow:hidden;

    border-radius:28px;

    cursor:pointer;
}

.gallery-item.large{
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-item.wide{
    grid-column:span 2;
}

/* IMAGE */

.gallery-item img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s ease;
}

/* OVERLAY */

.gallery-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.15)
    );

    display:flex;
    align-items:flex-end;

    padding:30px;

    opacity:0;

    transition:0.4s ease;
}

/* CONTENT */

.gallery-content{
    transform:translateY(30px);
    transition:0.5s ease;
}

.gallery-content h3{
    font-size:28px;
    color:#ffffff;

    margin-bottom:8px;
}

.gallery-content p{
    font-size:15px;
    color:#dddddd;
}

/* HOVER EFFECT */

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-content{
    transform:translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    .gallery-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:768px){

    .gallery-section{
        padding:90px 5%;
    }

    .gallery-heading h2{
        font-size:42px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:260px;
    }

    .gallery-item.large,
    .gallery-item.wide{
        grid-column:span 1;
        grid-row:span 1;
    }

    .gallery-content h3{
        font-size:24px;
    }
}

@media(max-width:576px){

    .gallery-heading h2{
        font-size:32px;
    }

    .gallery-heading p{
        font-size:15px;
    }

    .gallery-overlay{
        opacity:1;
    }

    .gallery-content{
        transform:translateY(0);
    }

    .gallery-content h3{
        font-size:20px;
    }
}

/* =========================================
   LOCATION SECTION
========================================= */

.location-section{
    width:100%;
    min-height:100vh;

    position:relative;

    overflow:hidden;

    display:flex;
    align-items:center;

    padding:120px 5%;
}

/* PARALLAX BACKGROUND */

.location-bg{
    position:absolute;
    inset:0;

    background:url('images/Delta-1-metro-station.png');

    background-size:cover;
    background-position:center;

    background-attachment:fixed;

    transform:scale(1.1);
}

/* DARK OVERLAY */

.location-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.82) 15%,
        rgba(0,0,0,0.58) 55%,
        rgba(0,0,0,0.35) 100%
    );
}

/* CONTAINER */

.location-container{
    width:100%;
    max-width:1400px;

    margin:auto;

    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:80px;
}

/* LEFT */

.location-content{
    flex:1;
    color:#ffffff;
}

.location-content .section-tag{
    display:inline-block;

    padding:10px 18px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(12px);

    border-radius:50px;

    color:#F5A623;

    font-size:14px;
    font-weight:600;

    margin-bottom:24px;
}

.location-content h2{
    font-size:68px;
    line-height:1.08;

    margin-bottom:28px;

    max-width:760px;
}

.location-content h2 span{
    color:#F5A623;
}

.location-content p{
    font-size:18px;
    line-height:1.9;

    color:#dddddd;

    max-width:700px;

    margin-bottom:42px;
}

/* LOCATION POINTS */

.location-points{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.location-point{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.location-point i{
    width:62px;
    height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#F5A623;
    color:#ffffff;

    border-radius:18px;

    font-size:24px;

    flex-shrink:0;
}

.location-point h4{
    font-size:22px;
    margin-bottom:8px;
}

.location-point p{
    margin:0;
    font-size:15px;
    color:#cccccc;
}

/* BUTTONS */

.location-buttons{
    display:flex;
    gap:20px;

    margin-top:45px;
}

.location-btn{
    padding:16px 30px;

    border-radius:60px;

    font-size:15px;
    font-weight:600;

    transition:0.35s;
}

.primary-location-btn{
    background:#F5A623;
    color:#ffffff;
}

.primary-location-btn:hover{
    background:#ffffff;
    color:#081B4B;
}

.secondary-location-btn{
    border:1px solid rgba(255,255,255,0.25);
    color:#ffffff;

    backdrop-filter:blur(10px);
}

.secondary-location-btn:hover{
    background:#ffffff;
    color:#081B4B;
}

/* FLOATING CARD */

.location-card{
    width:380px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(18px);

    padding:40px;

    border-radius:32px;

    color:#ffffff;

    box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.metro-distance h3{
    font-size:90px;
    line-height:1;

    color:#F5A623;

    margin-bottom:10px;
}

.metro-distance p{
    font-size:20px;
    color:#ffffff;
}

.location-line{
    width:100%;
    height:1px;

    background:rgba(255,255,255,0.15);

    margin:35px 0;
}

/* MINI POINTS */

.location-mini-points{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.location-mini-points div{
    display:flex;
    align-items:center;
    gap:14px;

    font-size:16px;
    color:#dddddd;
}

.location-mini-points i{
    color:#F5A623;
    font-size:18px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    .location-container{
        flex-direction:column;
        align-items:flex-start;
    }

    .location-content h2{
        font-size:52px;
    }

    .location-card{
        width:100%;
        max-width:500px;
    }
}

@media(max-width:768px){

    .location-section{
        padding:90px 5%;
    }

    .location-bg{
        background-attachment:scroll;
    }

    .location-content h2{
        font-size:40px;
    }

    .location-content p{
        font-size:16px;
    }

    .location-buttons{
        flex-direction:column;
        width:100%;
    }

    .location-btn{
        width:100%;
        text-align:center;
    }

    .metro-distance h3{
        font-size:70px;
    }
}

@media(max-width:576px){

    .location-content h2{
        font-size:32px;
    }

    .location-point{
        flex-direction:column;
    }

    .location-card{
        padding:30px 24px;
    }

    .metro-distance h3{
        font-size:58px;
    }
}

/* =========================================
   FOOTER
========================================= */

.footer-section{
    width:100%;
    background:#050f2d;
    padding:90px 5% 30px;
}

.footer-container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

/* TOP */

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr;
    gap:60px;

    padding-bottom:50px;

    border-bottom:1px solid rgba(255,255,255,0.08);
}

/* BRAND */

.footer-brand img{
    height:75px;
    margin-bottom:24px;
}

.footer-brand p{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.9;

    max-width:500px;

    margin-bottom:28px;
}

/* SOCIALS */

.footer-socials{
    display:flex;
    gap:14px;
}

.footer-socials a{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:14px;

    color:#ffffff;

    font-size:16px;

    transition:0.3s;
}

.footer-socials a:hover{
    background:#F5A623;
    transform:translateY(-4px);
}

/* LINKS */

.footer-links h3,
.footer-contact h3{
    color:#ffffff;
    font-size:24px;

    margin-bottom:28px;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:#cfcfcf;

    margin-bottom:16px;

    font-size:15px;

    transition:0.3s;
}

.footer-links a:hover{
    color:#F5A623;
    transform:translateX(5px);
}

/* CONTACT */

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:16px;

    margin-bottom:24px;
}

.contact-item i{
    color:#F5A623;
    font-size:18px;

    margin-top:4px;
}

.contact-item p{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.7;
}

/* BOTTOM */

.footer-bottom{
    padding-top:28px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    flex-wrap:wrap;
}

.footer-bottom p{
    color:#b8b8b8;
    font-size:14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .footer-top{
        grid-template-columns:1fr;
        gap:50px;
    }
}

@media(max-width:576px){

    .footer-section{
        padding:70px 5% 25px;
    }

    .footer-brand img{
        height:60px;
    }

    .footer-links h3,
    .footer-contact h3{
        font-size:22px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }
}

/* =========================================
   MOBILE STICKY FOOTER
========================================= */

.mobile-sticky-bar{
    position:fixed;

    bottom:0;
    left:0;

    width:100%;

    display:none;

    grid-template-columns:1fr 1fr;

    z-index:9999;

    background:#ffffff;

    box-shadow:0 -5px 25px rgba(0,0,0,0.12);
}

/* BUTTONS */

.sticky-btn{
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    font-size:15px;
    font-weight:600;

    color:#ffffff;

    transition:0.3s;
}

/* CALL */

.call-btn{
    background:#081B4B;
}

/* WHATSAPP */

.whatsapp-btn{
    background:#25D366;
}

/* ICON */

.sticky-btn i{
    font-size:18px;
}

/* HOVER */

.sticky-btn:hover{
    opacity:0.92;
}

/* MOBILE ONLY */

@media(max-width:768px){

    .mobile-sticky-bar{
        display:grid;
    }

    /* PREVENT CONTENT HIDING */

    body{
        padding-bottom:65px;
    }
}