/* GURUGRAM BANNER CSS START */

.gurugram-banner{
    padding:60px 0 80px;
    min-height:100vh;
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    rgba(0,0,0,.88),
    rgba(20,20,20,.75)
    ),
    url("../images/2.webp");

    background-size:cover;
    background-position:center;
}

.gurugram-banner::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:#d8c371;
    border-radius:50%;
    top:-300px;
    right:-250px;
    opacity:.15;
    filter:blur(120px);
}

.gurugram-tag{
    display:inline-block;
    color:#d8c371;
    border:1px solid rgba(216,195,113,.3);
    padding:12px 25px;
    border-radius:50px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.gurugram-title{
    color:#fff;
    font-size:clamp(55px,8vw,110px);
    font-weight:900;
    line-height:1;
}

.gurugram-title span{
    color:#d8c371;
}

.gurugram-description{
    color:#ddd;
    font-size:20px;
    line-height:1.9;
    margin:30px 0;
}

.gurugram-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.gurugram-btn-main{
    background:#d8c371;
    color:#111;
    text-decoration:none;
    padding:18px 40px;
    border-radius:60px;
    font-weight:700;
}

.gurugram-btn-secondary{
    border:2px solid #d8c371;
    color:#d8c371;
    text-decoration:none;
    padding:18px 40px;
    border-radius:60px;
}

.gurugram-counter-wrap{
    display:flex;
    gap:50px;
    margin-top:50px;
}

.gurugram-counter h3{
    color:#d8c371;
    font-size:40px;
    font-weight:800;
}

.gurugram-counter span{
    color:#fff;
}

.gurugram-profile-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(20px);
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.4);
    animation:gurugramFloat 4s ease-in-out infinite;
}

.gurugram-profile-image{
    height:350px;
    background:url("../images/2.webp");
    background-size:cover;
    background-position:center;
}

.gurugram-profile-content{
    padding:35px;
}

.gurugram-profile-content h3{
    color:#d8c371;
    margin-bottom:25px;
    font-size:32px;
}

.gurugram-profile-content ul{
    list-style:none;
    padding:0;
}

.gurugram-profile-content li{
    color:#fff;
    margin-bottom:15px;
    font-size:18px;
}

.gurugram-trust-bar{
    margin-top:80px;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    padding:25px;
    border-radius:20px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(15px);
}

.gurugram-trust-bar div{
    color:#d8c371;
    font-weight:600;
}

@keyframes gurugramFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

@media(max-width:991px){

    .gurugram-banner{
        text-align:center;
    }

    .gurugram-counter-wrap{
        justify-content:center;
    }

    .gurugram-buttons{
        justify-content:center;
    }

    .gurugram-profile-card{
        margin-top:50px;
    }

}

@media(max-width:576px){

    .gurugram-counter-wrap{
        gap:25px;
    }

    .gurugram-btn-main,
    .gurugram-btn-secondary{
        width:100%;
        text-align:center;
    }

}

/* GURUGRAM BANNER CSS END */





/* GURUGRAM FEATURES CSS START */

.gurugram-features{
    padding:60px 0;
    background:#080808;
    position:relative;
    overflow:hidden;
}

.gurugram-features::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:#d8c371;
    top:-250px;
    right:-250px;
    opacity:.05;
    filter:blur(180px);
}

.gurugram-features-tag{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    color:#d8c371;
    border:1px solid rgba(216,195,113,.25);
    margin-bottom:25px;
}

.gurugram-features-title{
    color:#fff;
    font-size:clamp(40px,6vw,72px);
    font-weight:900;
    line-height:1.15;
}

.gurugram-features-title span{
    display:block;
    color:#d8c371;
}

.gurugram-features-text{
    max-width:850px;
    margin:25px auto 0;
    color:#cfcfcf;
    font-size:20px;
    line-height:1.9;
}

.gurugram-feature-box{
    height:100%;
    display:flex;
    gap:25px;
    align-items:flex-start;
    padding:35px;
    border-radius:30px;
    background:
    linear-gradient(
    135deg,
    rgba(216,195,113,.08),
    rgba(255,255,255,.03)
    );

    border:1px solid rgba(216,195,113,.15);

    transition:.4s;
}

.gurugram-feature-box:hover{
    transform:translateY(-8px);
    border-color:#d8c371;
    box-shadow:0 20px 50px rgba(216,195,113,.15);
}

.gurugram-feature-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:20px;
    background:#d8c371;
    color:#111;
    font-size:28px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gurugram-feature-box h3{
    color:#fff;
    font-size:28px;
    font-weight:800;
    margin-bottom:12px;
}

.gurugram-feature-box p{
    color:#cfcfcf;
    font-size:17px;
    line-height:1.8;
    margin:0;
}

@media(max-width:576px){

    .gurugram-features{
        padding:70px 0;
    }

    .gurugram-feature-box{
        padding:25px;
        gap:18px;
    }

    .gurugram-feature-icon{
        width:55px;
        height:55px;
        min-width:55px;
        font-size:22px;
    }

    .gurugram-feature-box h3{
        font-size:22px;
    }

    .gurugram-features-title{
        font-size:34px;
    }

}

/* GURUGRAM FEATURES CSS END */




/* GURUGRAM ABOUT CSS START */

.gurugram-about{
    padding:60px 0;
    background:#050505;
    position:relative;
    overflow:hidden;
}

.gurugram-about::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:#d8c371;
    left:-250px;
    top:-250px;
    opacity:.05;
    filter:blur(180px);
}

.gurugram-about-image-wrap{
    position:relative;
}

.gurugram-about-image-wrap img{
    width:100%;
    border-radius:35px;
    height:700px;
    object-fit:cover;
    border:2px solid rgba(216,195,113,.15);
}

.gurugram-about-badge{
    position:absolute;
    right:-20px;
    bottom:30px;
    background:#d8c371;
    color:#111;
    padding:25px 30px;
    border-radius:25px;
    text-align:center;
}

.gurugram-about-badge h3{
    font-size:42px;
    font-weight:900;
    margin:0;
}

.gurugram-about-badge span{
    font-size:15px;
    font-weight:600;
}

.gurugram-about-tag{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    border:1px solid rgba(216,195,113,.25);
    color:#d8c371;
    margin-bottom:25px;
}

.gurugram-about-title{
    color:#fff;
    font-size:clamp(40px,6vw,72px);
    font-weight:900;
    line-height:1.15;
    margin-bottom:25px;
}

.gurugram-about-title span{
    display:block;
    color:#d8c371;
}

.gurugram-about-text{
    color:#cfcfcf;
    font-size:19px;
    line-height:1.9;
    margin-bottom:20px;
}

.gurugram-about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:35px 0;
}

.gurugram-about-item{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(216,195,113,.15);
    padding:16px 20px;
    border-radius:15px;
    color:#fff;
    font-weight:600;
}

.gurugram-about-stats{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.gurugram-about-stat{
    flex:1;
    text-align:center;
    padding:20px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(216,195,113,.12);
}

.gurugram-about-stat h3{
    color:#d8c371;
    font-size:34px;
    font-weight:900;
    margin-bottom:8px;
}

.gurugram-about-stat span{
    color:#fff;
    font-size:15px;
}

.gurugram-about-btn{
    display:inline-block;
    padding:18px 40px;
    background:#d8c371;
    color:#111;
    text-decoration:none;
    border-radius:60px;
    font-weight:800;
    transition:.3s;
}

.gurugram-about-btn:hover{
    color:#111;
    transform:translateY(-4px);
}

@media(max-width:991px){

    .gurugram-about-image-wrap img{
        height:auto;
    }

    .gurugram-about-badge{
        right:20px;
        bottom:20px;
    }

    .gurugram-about-stats{
        flex-wrap:wrap;
    }

}

@media(max-width:576px){

    .gurugram-about{
        padding:70px 0;
    }

    .gurugram-about-title{
        font-size:34px;
    }

    .gurugram-about-features{
        grid-template-columns:1fr;
    }

    .gurugram-about-stats{
        flex-direction:column;
    }

    .gurugram-about-btn{
        width:100%;
        text-align:center;
    }

    .gurugram-about-badge{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:15px;
    }

}

/* GURUGRAM ABOUT CSS END */





/* SECTOR29 VIP CSS START */

.sector29-vip-section{
padding:60px 0;
background:#050505;
}

.sector29-heading{
margin-bottom:20px;
}

.sector29-tag{
display:inline-block;
padding:10px 25px;
border-radius:50px;
border:1px solid rgba(216,195,113,.25);
color:#d8c371;
margin-bottom:20px;
}

.sector29-title{
color:#fff;
font-size:clamp(38px,6vw,70px);
font-weight:900;
}

.sector29-subtitle{
color:#cfcfcf;
font-size:18px;
}

.sector29-card{
background:linear-gradient(
180deg,
#151515,
#090909
);
border:1px solid rgba(216,195,113,.15);
border-radius:30px;
overflow:hidden;
transition:.4s;
height:100%;
}

.sector29-card:hover{
transform:translateY(-10px);
border-color:#d8c371;
box-shadow:0 25px 60px rgba(216,195,113,.18);
}

.sector29-image{
position:relative;
}

.sector29-image img{
width:100%;
height:380px;
object-fit:cover;
transition:.5s;
}

.sector29-card:hover img{
transform:scale(1.08);
}

.sector29-badge{
position:absolute;
top:15px;
left:15px;
background:#d8c371;
color:#111;
padding:8px 18px;
border-radius:50px;
font-weight:700;
}

.sector29-content{
padding:25px;
text-align:center;
}

.sector29-content h3{
color:#fff;
font-size:32px;
font-weight:800;
}

.sector29-rating{
color:#d8c371;
margin:10px 0;
}

.sector29-rating span{
color:#bdbdbd;
}

.sector29-content p{
color:#d8c371;
}

.sector29-info{
display:flex;
justify-content:center;
gap:10px;
flex-wrap:wrap;
margin:20px 0;
}

.sector29-info span{
background:rgba(216,195,113,.12);
color:#fff;
padding:8px 14px;
border-radius:10px;
}

.sector29-buttons{
display:flex;
gap:10px;
}

.sector29-call,
.sector29-whatsapp{
flex:1;
text-decoration:none;
text-align:center;
padding:13px;
border-radius:12px;
font-weight:700;
}

.sector29-call{
background:#d8c371;
color:#111;
}

.sector29-whatsapp{
background:#25D366;
color:#fff;
}

@media(max-width:576px){

.sector29-buttons{
    flex-direction:column;
}

.sector29-image img{
    height:320px;
}

}

/* SECTOR29 VIP CSS END */








/* SECTOR29 LUXURY SERVICE CSS START */

.sector29-luxury-service{
padding:100px 0;
background:#050505;
position:relative;
overflow:hidden;
}

.sector29-luxury-service::before{
content:"";
position:absolute;
width:600px;
height:600px;
background:#d8c371;
border-radius:50%;
right:-250px;
top:-250px;
opacity:.05;
filter:blur(180px);
}

.sector29-luxury-tag{
display:inline-block;
padding:10px 24px;
border-radius:50px;
border:1px solid rgba(216,195,113,.25);
color:#d8c371;
margin-bottom:20px;
}

.sector29-luxury-title{
color:#fff;
font-size:clamp(42px,6vw,75px);
font-weight:900;
line-height:1.15;
margin-bottom:25px;
}

.sector29-luxury-title span{
display:block;
color:#d8c371;
}

.sector29-luxury-text{
color:#cfcfcf;
font-size:18px;
line-height:1.9;
margin-bottom:20px;
}

.sector29-luxury-stats{
display:flex;
gap:15px;
flex-wrap:wrap;
margin:35px 0;
}

.sector29-stat-box{
flex:1;
min-width:120px;
text-align:center;
padding:20px;
border-radius:20px;
background:rgba(216,195,113,.06);
border:1px solid rgba(216,195,113,.12);
}

.sector29-stat-box h3{
color:#d8c371;
font-size:34px;
font-weight:900;
margin-bottom:5px;
}

.sector29-stat-box span{
color:#fff;
}

.sector29-luxury-btn{
display:inline-block;
padding:16px 38px;
border-radius:60px;
background:#d8c371;
color:#111;
text-decoration:none;
font-weight:800;
}

.sector29-service-box{
height:100%;
padding:30px;
border-radius:25px;
background:
linear-gradient(
135deg,
rgba(216,195,113,.08),
rgba(255,255,255,.03)
);
border:1px solid rgba(216,195,113,.15);
transition:.4s;
}

.sector29-service-box:hover{
transform:translateY(-8px);
border-color:#d8c371;
box-shadow:0 20px 50px rgba(216,195,113,.15);
}

.sector29-service-icon{
width:65px;
height:65px;
border-radius:18px;
background:#d8c371;
color:#111;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
font-weight:900;
margin-bottom:20px;
}

.sector29-service-box h4{
color:#fff;
font-size:24px;
font-weight:800;
margin-bottom:12px;
}

.sector29-service-box p{
color:#cfcfcf;
margin:0;
line-height:1.8;
}

@media(max-width:576px){


.sector29-luxury-service{
    padding:70px 0;
}

.sector29-luxury-title{
    font-size:34px;
}

.sector29-stat-box{
    width:100%;
}


}

/* SECTOR29 LUXURY SERVICE CSS END */




/* SECTOR29 SHOWCASE CSS START */

.sector29-showcase-section{
    padding:60px 0;
    background:#050505;
    position:relative;
    overflow:hidden;
}

.sector29-showcase-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:#d8c371;
    border-radius:50%;
    left:-250px;
    top:-250px;
    opacity:.05;
    filter:blur(180px);
}

.sector29-showcase-tag{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    border:1px solid rgba(216,195,113,.25);
    color:#d8c371;
    margin-bottom:20px;
}

.sector29-showcase-title{
    color:#fff;
    font-size:clamp(42px,6vw,75px);
    font-weight:900;
    line-height:1.15;
    margin-bottom:20px;
}

.sector29-showcase-title span{
    display:block;
    color:#d8c371;
}

.sector29-showcase-subtitle{
    color:#cfcfcf;
    font-size:18px;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}

.sector29-showcase-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    border:1px solid rgba(216,195,113,.15);
}

.sector29-showcase-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;
}

.sector29-showcase-large img{
    height:664px;
}

.sector29-showcase-card:hover img{
    transform:scale(1.08);
}

.sector29-showcase-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.92)
    );
}

.sector29-showcase-overlay span{
    color:#d8c371;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.sector29-showcase-overlay h3{
    color:#fff;
    font-size:30px;
    font-weight:800;
    margin-top:10px;
    margin-bottom:0;
}

.sector29-showcase-card:hover{
    border-color:#d8c371;
    box-shadow:0 20px 60px rgba(216,195,113,.15);
}

.sector29-showcase-btn{
    display:inline-block;
    padding:16px 40px;
    background:#d8c371;
    color:#111;
    text-decoration:none;
    border-radius:60px;
    font-weight:800;
    transition:.3s;
}

.sector29-showcase-btn:hover{
    color:#111;
    transform:translateY(-3px);
}

@media(max-width:991px){

    .sector29-showcase-large img{
        height:320px;
    }

}

@media(max-width:576px){

    .sector29-showcase-section{
        padding:70px 0;
    }

    .sector29-showcase-title{
        font-size:34px;
    }

    .sector29-showcase-card img,
    .sector29-showcase-large img{
        height:280px;
    }

    .sector29-showcase-overlay h3{
        font-size:24px;
    }

}

/* SECTOR29 SHOWCASE CSS END */




/* SECTOR29 COVERAGE CSS START */

.sector29-coverage-section{
    padding:60px 0;
    background:#050505;
    position:relative;
    overflow:hidden;
}

.sector29-coverage-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:#d8c371;
    border-radius:50%;
    right:-250px;
    bottom:-250px;
    opacity:.05;
    filter:blur(180px);
}

.sector29-coverage-tag{
    display:inline-block;
    padding:10px 25px;
    border-radius:50px;
    border:1px solid rgba(216,195,113,.25);
    color:#d8c371;
    margin-bottom:20px;
}

.sector29-coverage-title{
    color:#fff;
    font-size:clamp(42px,6vw,72px);
    font-weight:900;
    margin-bottom:20px;
}

.sector29-coverage-title span{
    display:block;
    color:#d8c371;
}

.sector29-coverage-subtitle{
    color:#cfcfcf;
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

.sector29-coverage-card{
    display:block;
    text-decoration:none;

    padding:35px 25px;
    height:100%;

    border-radius:25px;

    background:
    linear-gradient(
        135deg,
        rgba(216,195,113,.08),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(216,195,113,.15);

    transition:.4s;
}

.sector29-coverage-card:hover{
    transform:translateY(-8px);
    border-color:#d8c371;
    box-shadow:0 20px 50px rgba(216,195,113,.15);
    text-decoration:none;
}

.sector29-city-icon{
    width:70px;
    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#d8c371;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
}

.sector29-coverage-card h3{
    color:#fff;
    text-align:center;
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
}

.sector29-coverage-card p{
    color:#cfcfcf;
    text-align:center;
    margin-bottom:15px;
}

.sector29-city-link{
    display:block;
    text-align:center;
    color:#d8c371;
    font-weight:700;
}

@media(max-width:576px){

    .sector29-coverage-section{
        padding:70px 0;
    }

    .sector29-coverage-title{
        font-size:34px;
    }

    .sector29-coverage-card{
        padding:25px 20px;
    }

}

/* SECTOR29 COVERAGE CSS END */





/* SECTOR29 CONTENT CSS START */

.sector29-content-section{
    padding:60px 0;
    background:#050505;
    position:relative;
    overflow:hidden;
}

.sector29-content-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:#d8c371;
    border-radius:50%;
    left:-250px;
    top:-250px;
    opacity:.05;
    filter:blur(180px);
}

.sector29-content-tag{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    border:1px solid rgba(216,195,113,.25);
    color:#d8c371;
    margin-bottom:20px;
}

.sector29-content-title{
    color:#fff;
    font-size:clamp(42px,6vw,75px);
    font-weight:900;
    margin-bottom:50px;
}

.sector29-content-title span{
    display:block;
    color:#d8c371;
}

.sector29-content-box{
    max-width:1200px;
    margin:auto;
    padding:50px;
    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        rgba(216,195,113,.08),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(216,195,113,.15);
}

.sector29-content-box p{
    color:#cfcfcf;
    font-size:18px;
    line-height:2;
    margin-bottom:25px;
}

.sector29-content-box p:last-child{
    margin-bottom:0;
}

@media(max-width:576px){

    .sector29-content-section{
        padding:70px 0;
    }

    .sector29-content-title{
        font-size:34px;
    }

    .sector29-content-box{
        padding:25px;
    }

    .sector29-content-box p{
        font-size:16px;
        line-height:1.9;
    }

}

/* SECTOR29 CONTENT CSS END */





/* SECTOR29 PRICING CSS START */

.sector29-pricing-section{
    padding:100px 0;
    background:#050505;
}

.sector29-pricing-tag{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    color:#d8c371;
    border:1px solid rgba(216,195,113,.25);
    margin-bottom:20px;
}

.sector29-pricing-title{
    color:#fff;
    font-size:clamp(42px,6vw,75px);
    font-weight:900;
}

.sector29-pricing-title span{
    display:block;
    color:#d8c371;
}

.sector29-pricing-subtitle{
    color:#cfcfcf;
    max-width:700px;
    margin:auto;
    font-size:18px;
}

.sector29-price-card{
    height:100%;
    padding:40px 30px;
    border-radius:30px;
    text-align:center;
    background:linear-gradient(
        135deg,
        rgba(216,195,113,.08),
        rgba(255,255,255,.03)
    );
    border:1px solid rgba(216,195,113,.15);
    transition:.4s;
    position:relative;
}

.sector29-price-card:hover{
    transform:translateY(-10px);
    border-color:#d8c371;
    box-shadow:0 20px 60px rgba(216,195,113,.15);
}

.sector29-featured-card{
    border:2px solid #d8c371;
}

.sector29-popular-badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#d8c371;
    color:#111;
    padding:8px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:800;
}

.sector29-plan-icon{
    font-size:55px;
    margin-bottom:15px;
}

.sector29-plan-title{
    color:#fff;
    font-size:32px;
    font-weight:800;
}

.sector29-plan-price{
    color:#d8c371;
    font-size:55px;
    font-weight:900;
    margin:20px 0;
}

.sector29-plan-text{
    color:#cfcfcf;
    margin-bottom:25px;
}

.sector29-plan-list{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.sector29-plan-list li{
    color:#fff;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.sector29-plan-buttons{
    display:flex;
    gap:10px;
}

.sector29-call-btn,
.sector29-wa-btn{
    flex:1;
    text-decoration:none;
    padding:14px;
    border-radius:12px;
    font-weight:700;
    text-align:center;
}

.sector29-call-btn{
    background:#d8c371;
    color:#111;
}

.sector29-wa-btn{
    background:#25D366;
    color:#fff;
}

@media(max-width:576px){

    .sector29-pricing-section{
        padding:70px 0;
    }

    .sector29-pricing-title{
        font-size:34px;
    }

    .sector29-plan-price{
        font-size:42px;
    }

    .sector29-plan-buttons{
        flex-direction:column;
    }

}

/* SECTOR29 PRICING CSS END */






/* SECTOR29 FAQ CSS START */

.sector29-faq-section{
    padding:100px 0;
    background:#050505;
}

.sector29-faq-tag{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    border:1px solid rgba(216,195,113,.25);
    color:#d8c371;
    margin-bottom:20px;
}

.sector29-faq-title{
    color:#fff;
    font-size:clamp(42px,6vw,72px);
    font-weight:900;
    line-height:1.15;
    margin-bottom:25px;
}

.sector29-faq-title span{
    display:block;
    color:#d8c371;
}

.sector29-faq-text{
    color:#cfcfcf;
    font-size:18px;
    line-height:1.9;
}

.sector29-faq-contact{
    margin-top:35px;
    padding:30px;
    border-radius:25px;
    background:linear-gradient(
        135deg,
        rgba(216,195,113,.08),
        rgba(255,255,255,.03)
    );
    border:1px solid rgba(216,195,113,.15);
}

.sector29-faq-contact h4{
    color:#fff;
    margin-bottom:10px;
}

.sector29-faq-contact p{
    color:#cfcfcf;
}

.sector29-faq-buttons{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.sector29-faq-call,
.sector29-faq-whatsapp{
    flex:1;
    text-align:center;
    text-decoration:none;
    padding:14px;
    border-radius:12px;
    font-weight:700;
}

.sector29-faq-call{
    background:#d8c371;
    color:#111;
}

.sector29-faq-whatsapp{
    background:#25D366;
    color:#fff;
}

.sector29-faq-accordion .accordion-item{
    background:#111;
    border:1px solid rgba(216,195,113,.15);
    border-radius:18px;
    margin-bottom:15px;
    overflow:hidden;
}

.sector29-faq-accordion .accordion-button{
    background:#111;
    color:#fff;
    font-weight:700;
    box-shadow:none;
}

.sector29-faq-accordion .accordion-button:not(.collapsed){
    color:#d8c371;
    background:#111;
}

.sector29-faq-accordion .accordion-body{
    color:#cfcfcf;
    line-height:1.8;
}

.accordion-button::after{
    filter:brightness(0) invert(1);
}

@media(max-width:576px){

    .sector29-faq-section{
        padding:70px 0;
    }

    .sector29-faq-title{
        font-size:34px;
    }

    .sector29-faq-buttons{
        flex-direction:column;
    }

}

/* SECTOR29 FAQ CSS END */




/* SECTOR29 LOCATIONS CSS START */

.sector29-locations-section{
    padding:60px 0;
    background:#050505;
}

.sector29-location-tag{
    display:inline-block;
    padding:10px 25px;
    border-radius:50px;
    border:1px solid rgba(216,195,113,.25);
    color:#d8c371;
    margin-bottom:20px;
}

.sector29-location-title{
    color:#fff;
    font-size:clamp(42px,6vw,72px);
    font-weight:900;
    margin-bottom:20px;
}

.sector29-location-title span{
    display:block;
    color:#d8c371;
}

.sector29-location-subtitle{
    color:#cfcfcf;
    max-width:750px;
    margin:auto;
    font-size:18px;
}

.sector29-location-card{
    display:block;
    height:100%;
    text-decoration:none;
    padding:35px 25px;
    border-radius:25px;

    background:
    linear-gradient(
    135deg,
    rgba(216,195,113,.08),
    rgba(255,255,255,.03)
    );

    border:1px solid rgba(216,195,113,.15);

    transition:.4s;
}

.sector29-location-card:hover{
    transform:translateY(-10px);
    border-color:#d8c371;
    box-shadow:0 20px 50px rgba(216,195,113,.15);
}

.sector29-location-number{
    font-size:48px;
    font-weight:900;
    color:#d8c371;
    opacity:.3;
    margin-bottom:15px;
}

.sector29-location-card h3{
    color:#fff;
    font-size:28px;
    font-weight:800;
    margin-bottom:10px;
}

.sector29-location-card p{
    color:#cfcfcf;
    margin-bottom:20px;
}

.sector29-location-card span{
    color:#d8c371;
    font-weight:700;
}

.sector29-location-bottom{
    margin-top:70px;
    text-align:center;
    padding:50px;
    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    rgba(216,195,113,.08),
    rgba(255,255,255,.03)
    );

    border:1px solid rgba(216,195,113,.15);
}

.sector29-location-bottom h3{
    color:#fff;
    font-size:38px;
    font-weight:900;
}

.sector29-location-bottom p{
    color:#cfcfcf;
    margin:20px 0 30px;
}

.sector29-location-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.sector29-location-call,
.sector29-location-whatsapp{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:800;
}

.sector29-location-call{
    background:#d8c371;
    color:#111;
}

.sector29-location-whatsapp{
    background:#25D366;
    color:#fff;
}

@media(max-width:576px){

    .sector29-locations-section{
        padding:70px 0;
    }

    .sector29-location-title{
        font-size:34px;
    }

    .sector29-location-bottom{
        padding:30px 20px;
    }

    .sector29-location-bottom h3{
        font-size:28px;
    }

    .sector29-location-buttons{
        flex-direction:column;
    }

}

/* SECTOR29 LOCATIONS CSS END */



