/* =========================
   HEADER
========================= */
html,
body{

    margin:0;
    padding:0;

    background:#0a0a0a;
}
.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(10,10,10,.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-header::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(183,110,121,.45),
        transparent
    );
}

.container{
    max-width:1300px;
    margin:auto;
    padding:0 25px;

    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

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

.logo{
    text-decoration:none;

    font-family:'Playfair Display', serif;
    font-size:32px;
    font-weight:700;
    letter-spacing:2px;

    background:linear-gradient(
        90deg,
        #ffffff,
        #e7c3a1,
        #b76e79
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    transition:.3s;
}

.logo:hover{
    filter:drop-shadow(
        0 0 12px rgba(183,110,121,.35)
    );
}

/* =========================
   MENU
========================= */

.main-menu{
    display:flex;
    gap:35px;
}

.main-menu a{
    position:relative;

    text-decoration:none;
    color:#fff;

    font-size:14px;
    font-weight:500;

    text-transform:uppercase;
    letter-spacing:1px;

    transition:.3s;
}

.main-menu a:hover{
    color:#d9b38c;
}

.main-menu a::after{
    content:'';
    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:1px;

    background:#b76e79;

    transition:.3s;
}

.main-menu a:hover::after{
    width:100%;
}

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

.header-icons{
    display:flex;
    gap:12px;
}

.icon-btn{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    text-decoration:none;
    color:#fff;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    transition:.3s;
}

.icon-btn i{
    font-size:17px;
}

.icon-btn:hover{
    transform:translateY(-2px);

    color:#e7c3a1;

    box-shadow:
    0 0 20px rgba(122,31,61,.45);
}
/* =========================
   HEADER CALL & WHATSAPP
========================= */

.header-icons .call-link{

    background:
    linear-gradient(
        135deg,
        #9d002f,
        #c0003a
    );

    border:none;

    color:#fff;
}

.header-icons .wa-link{

    background:
    linear-gradient(
        135deg,
        #1db954,
        #25D366
    );

    border:none;

    color:#fff;
}

.header-icons .call-link:hover,
.header-icons .wa-link:hover{

    color:#fff;

    transform:translateY(-2px);

    box-shadow:
    0 10px 25px rgba(0,0,0,.25);
}
/* =========================
   MOBILE TOGGLE
========================= */

.mobile-toggle{
    display:none;
    cursor:pointer;

    flex-direction:column;
    gap:6px;
}

.mobile-toggle span{
    width:28px;
    height:2px;

    background:#fff;

    transition:.3s;
}

/* X Animation */

.mobile-toggle.active span:nth-child(1){
    transform:
    rotate(45deg)
    translate(6px,6px);
}

.mobile-toggle.active span:nth-child(2){
    opacity:0;
}

.mobile-toggle.active span:nth-child(3){
    transform:
    rotate(-45deg)
    translate(5px,-5px);
}

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

@media(max-width:991px){

    .container{
        height:70px;
        padding:0 20px;
    }

    .logo{
        font-size:26px;
    }

    .mobile-toggle{
        display:flex;
    }

    .header-icons{
        display:none;
    }

.main-menu{
        position:fixed;

        top:70px;
        right:-100%;

        width:280px;
        height:auto;

        background:rgba(10,10,10,.98);

        backdrop-filter:blur(20px);
        -webkit-backdrop-filter:blur(20px);

        display:flex;
        flex-direction:column;

        gap:0;

        padding:20px 25px 25px;

        transition:.4s ease;

        border-radius:0 0 0 20px;

        box-shadow:
        -10px 10px 30px rgba(0,0,0,.45);

        z-index:9999;
    }

    .main-menu.active{
        right:0;
    }

    .main-menu a{
        display:block;

        padding:18px 0;

        border-bottom:
        1px solid rgba(255,255,255,.08);

        font-size:15px;

        color:#fff;

        text-decoration:none;
    }

    .main-menu a:last-child{
        border-bottom:none;
    }

    .main-menu a::after{
        display:none;
    }
}

/* ====================
   PREMIUM BANNER
==================== */

.premium-banner{
    position:relative;
    min-height:100vh;
    overflow:hidden;
}

/* Images */

.banner-desktop,
.banner-mobile{
    position:absolute;
    inset:0;
}

.banner-desktop img,
.banner-mobile img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.banner-mobile{
    display:none;
}

/* Overlay */

.banner-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.25) 100%
    );
}

/* Maroon Glow */

.premium-banner::before{
    content:'';

    position:absolute;
    top:-150px;
    right:-150px;

    width:500px;
    height:500px;

    background:
    radial-gradient(
        circle,
        rgba(122,31,61,.45),
        transparent 70%
    );

    z-index:1;
}

/* Content */

.banner-content{
    position:relative;
    z-index:2;

    max-width:650px;

    padding-top:180px;
    padding-left:8%;
}

.sub-title{
    display:inline-block;

    color:#d9b38c;

    letter-spacing:3px;
    text-transform:uppercase;
    font-size:14px;
}

.banner-content h1{
    margin:20px 0;

    color:#fff;

    font-size:55px;
    line-height:1.05;

    font-family:'Playfair Display', serif;
}

.banner-content p{
    color:#ddd;

    font-size:18px;
    line-height:1.8;

    max-width:550px;
}

/* Buttons */

.banner-buttons{
    display:flex;
    gap:15px;

    margin-top:35px;
}

.primary-btn,
.secondary-btn{
    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    backdrop-filter:blur(15px);

    transition:.3s;
}

.primary-btn{
    color:#fff;

    background:
    linear-gradient(
        135deg,
        #7A1F3D,
        #B76E79
    );
}

.secondary-btn{
    color:#fff;

    border:
    1px solid rgba(255,255,255,.2);

    background:
    rgba(255,255,255,.05);
}

.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-2px);

    box-shadow:
    0 0 25px rgba(122,31,61,.45);
}

@media(max-width:991px){

    .banner-desktop{
        display:none;
    }

    .banner-mobile{
        display:block;
    }

    .premium-banner{
        min-height:90vh;
    }

    .banner-content{
        padding:
        250px 25px 40px;
    }

    .banner-content h1{
        font-size:35px;
    }

    .banner-content p{
        font-size:15px;
    }

    .banner-buttons{
        display:flex;
    gap:12px;
    flex-wrap:nowrap;
	margin-top:30px;
    }
	
	.banner-buttons a{
    flex:1;
    padding:14px 10px;
    text-align:center;
}
	

    .primary-btn,
.secondary-btn{
    width:120px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0 18px;

    border-radius:50px;

    font-size:15px;
    font-weight:500;
}
}
.about-section{
    padding:100px 0;
    background:#0a0a0a;
}

.about-container{
    max-width:1300px;
    margin:auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:60% 40%;
    gap:50px;
    align-items:center;
}

.section-tag{
    color:#d9b38c;
    letter-spacing:2px;
    font-size:14px;
    text-transform:uppercase;
}

.about-content h2{
    color:#fff;
    font-size:48px;
    margin:15px 0 25px;
    font-family:'Playfair Display', serif;
}

.about-content p{
     color:#cfcfcf;
    font-size:18px;
    line-height:1.9;
    margin-bottom:18px;
    font-weight:400;
}

.about-content a{
    color:#d9b38c;
    text-decoration:none;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:15px;

    width:180px;
    height:50px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #7A1F3D,
        #B76E79
    );

    color:#fff !important;
}

.about-image{
    position:relative;
}

.about-image img{
    width:80%;
    max-width:500px;	
    height:auto;
    display:block;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);
}

.about-image::before{
    content:'';
    position:absolute;

    width:250px;
    height:250px;

    right:-40px;
    bottom:-40px;

    background:rgba(122,31,61,.25);

    filter:blur(90px);

    z-index:-1;
}

@media(max-width:991px){
	 html,
    body{
        overflow-x:hidden;
    }

    .about-container{
        grid-template-columns:1fr;
        display:flex;
        flex-direction:column;
        padding:0 20px;
        gap:30px;
    }
  .about-image{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .about-image img{
        width:100%;
        max-width:350px;

        height:auto;

        display:block;

        margin:0 auto;

        border-radius:20px;
    }
    .about-content h2{
        font-size:34px;
    }
 .about-content p{
        font-size:17px;
        line-height:1.8;
    }
    .about-section{
        padding:70px 0;
    }
}

.booking-process{
    padding:100px 0;
    background:#0a0a0a;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-header h2{
    color:#fff;
    font-size:48px;
    margin:15px 0;
    font-family:'Playfair Display', serif;
}

.section-header p{
    color:#cfcfcf;
    font-size:16px;
    line-height:1.8;
}

.booking-grid{
    max-width:1300px;
    margin:auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.booking-card{
    position:relative;

    padding:35px 25px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    transition:.3s;
}

.booking-card:hover{
    transform:translateY(-6px);

    border-color:rgba(183,110,121,.35);

    box-shadow:
    0 15px 40px rgba(122,31,61,.18);
}

.step-no{
    font-size:48px;
    font-weight:700;

    color:rgba(183,110,121,.25);

    margin-bottom:20px;

    font-family:'Playfair Display', serif;
}

.booking-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:22px;
}

.booking-card p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:15px;
}
.booking-card::before{
    content:'';
    position:absolute;

    top:-40px;
    right:-40px;

    width:120px;
    height:120px;

    background:rgba(122,31,61,.15);

    filter:blur(40px);
}
/*==========================
   BOOKING PROCESS MOBILE
==========================*/

@media (max-width:991px){

    .booking-process{

        padding:70px 0;
    }

    .booking-grid{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:15px;

        padding:0 20px;
    }

    .booking-card{

        padding:25px 18px;

        border-radius:18px;

        min-height:210px;

        display:flex;

        flex-direction:column;

        justify-content:flex-start;
    }

    .step-no{

        width:52px;

        height:52px;

        font-size:18px;

        margin-bottom:18px;
    }

    .booking-card h3{

        font-size:18px;

        line-height:1.4;

        margin-bottom:12px;
    }

    .booking-card p{

        font-size:14px;

        line-height:1.7;
    }

}

@media (max-width:575px){

    .booking-grid{

        gap:12px;

        padding:0 15px;
    }

    .booking-card{

        padding:20px 15px;

        min-height:190px;
    }

    .step-no{

        width:45px;

        height:45px;

        font-size:16px;
    }

    .booking-card h3{

        font-size:16px;
    }

    .booking-card p{

        font-size:13px;

        line-height:1.6;
    }

}
/* profile grid */
.featured-profiles{
    background:#0a0a0a;
    padding:100px 0;
}
.profile-grid{
    max-width:1300px;
    margin:auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.profile-card{
    overflow:hidden;
    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.profile-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 15px 40px rgba(122,31,61,.18);
}

.profile-card img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
    display:block;
}

.profile-info{
    padding:18px;
    text-align:center;
}

.profile-info h3{
    color:#fff;
    font-size:18px;
    margin:0 0 5px;
}

.profile-info span{
    color:#d9b38c;
    font-size:14px;
}

.profile-info a{
    display:block;
    margin-top:12px;

    color:#fff;
    text-decoration:none;
}
.view-all{
    display:flex;
    justify-content:center;
    margin-top:50px;
	  text-decoration:none;
}
.about-btn,
.about-btn:link,
.about-btn:visited,
.about-btn:hover,
.about-btn:active{
    text-decoration:none !important;
}
@media(max-width:991px){

    .profile-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        padding:0 20px;
    }

    .profile-info{
        padding:12px;
    }

    .profile-info h3{
        font-size:16px;
    }

    .profile-info span{
        font-size:13px;
    }
}
/* why choose  */
.why-choose{
    padding:100px 0;
    background:#0a0a0a;
}

.why-grid{
    max-width:1300px;
    margin:auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

    margin-top:50px;
}

.why-card{
    padding:30px 25px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.why-card:hover{
    transform:translateY(-6px);

    border-color:rgba(183,110,121,.35);

    box-shadow:
    0 15px 40px rgba(122,31,61,.18);
}

.why-icon{
    font-size:42px;
    font-weight:700;

    color:rgba(183,110,121,.35);

    margin-bottom:20px;

    font-family:'Playfair Display', serif;
}

.why-card h3{
    color:#fff;
    font-size:22px;
    margin-bottom:15px;
}

.why-card p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:15px;
}

.why-content{
    max-width:950px;
    margin:60px auto 0;

    text-align:center;
    padding:0 25px;
}

.why-content p{
    color:#d6d6d6;
    font-size:17px;
    line-height:2;
    margin-bottom:20px;
}
@media(max-width:991px){

    .why-choose{
        padding:70px 0;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        padding:0 20px;
    }

    .why-card{
        padding:22px 18px;
    }

    .why-icon{
        font-size:32px;
        margin-bottom:15px;
    }

    .why-card h3{
        font-size:18px;
    }

    .why-card p{
        font-size:14px;
        line-height:1.7;
    }

    .why-content{
        margin-top:40px;
        padding:0 20px;
    }

    .why-content p{
        font-size:16px;
        line-height:1.9;
        text-align:left;
    }
}
.experience-section{
    padding:100px 0;
    background:#0a0a0a;
}

.experience-container{
    max-width:1300px;
    margin:auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:55% 45%;
    gap:80px;
    align-items:center;
}

.experience-content h2{
    color:#fff;
    font-size:48px;
    margin:15px 0 25px;
    font-family:'Playfair Display', serif;
}

.experience-content p{
    color:#d6d6d6;
    font-size:18px;
    line-height:2;
    margin-bottom:18px;
}

.experience-image{
    display:flex;
    justify-content:center;
}

.experience-image img{
    width:85%;
    max-width:500px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

    display:block;
}
@media(max-width:991px){

    .experience-container{
        grid-template-columns:1fr;
        gap:35px;
        padding:0 20px;
    }

    .experience-content h2{
        font-size:34px;
    }

    .experience-content p{
        font-size:16px;
        line-height:1.9;
    }

    .experience-image img{
        width:100%;
        max-width:350px;
        margin:auto;
    }
}

/* ========================= MASSAGE SECTION ========================= */
.massage-section{ 
padding:100px 0;
 background:#0a0a0a;
 }
.massage-container{
    max-width:1200px;
    margin:auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:40% 60%;
    gap:80px;
    align-items:center;
}

.massage-image{
    display:flex;
    justify-content:center;
}

.massage-image img{
    width:100%;
    max-width:450px;
    border-radius:24px;
    display:block;
}
.massage-content h2{ 
color:#fff;
 font-size:48px;
 margin:15px 0 25px;
 font-family:'Playfair Display', serif;
 }
.massage-content p{ 
color:#d6d6d6;
 font-size:18px;
 line-height:2; 
 margin-bottom:18px; }
@media(max-width:991px){

    .massage-container{
        grid-template-columns:1fr;
        gap:35px;
        padding:0 20px;
    }

    .massage-image{
        order:1;
    }

    .massage-content{
        order:2;
    }

    .massage-image img{
        max-width:350px;
        margin:auto;
    }
}
/* =========================
   CATEGORY SECTION
========================= */

.category-section{
    padding:100px 0;
    background:#0a0a0a;
}

.category-grid{
    max-width:1300px;
    margin:auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

    margin-top:50px;
}

.category-card{
    position:relative;

    display:block;

    padding:30px 25px;

    text-decoration:none;

    border-radius:22px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    overflow:hidden;

    transition:.35s ease;
}

.category-card::before{

    content:'';

    position:absolute;

    top:-50px;
    right:-50px;

    width:130px;
    height:130px;

    background:
    rgba(122,31,61,.15);

    filter:blur(45px);

    opacity:0;

    transition:.35s;
}

.category-card:hover{

    transform:translateY(-6px);

    border-color:
    rgba(183,110,121,.35);

    box-shadow:
    0 15px 35px rgba(122,31,61,.20);
}

.category-card:hover::before{
    opacity:1;
}

.category-number{

    display:block;

    font-size:42px;
    font-weight:700;

    color:
    rgba(183,110,121,.30);

    margin-bottom:15px;

    font-family:'Playfair Display', serif;
}

.category-card h3{

    color:#fff;

    font-size:22px;
    line-height:1.3;

    margin-bottom:12px;
}

.category-card p{

    color:#cfcfcf;

    font-size:15px;
    line-height:1.8;

    margin:0;
}

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

@media(max-width:991px){

    .category-section{
        padding:70px 0;
    }

    .category-grid{

        grid-template-columns:repeat(2,1fr);

        gap:15px;

        padding:0 20px;

        margin-top:35px;
    }

    .category-card{

        padding:22px 18px;

        border-radius:18px;
    }

    .category-number{

        font-size:32px;

        margin-bottom:10px;
    }

    .category-card h3{

        font-size:17px;

        margin-bottom:8px;
    }

    .category-card p{

        font-size:13px;

        line-height:1.6;
    }
}
/* =========================
   SERVICES CONTENT
========================= */

.services-content{
    padding:100px 0;
    background:#0a0a0a;
}

.services-wrapper{
    max-width:900px;
    margin:auto;
    padding:0 25px;
}

.services-wrapper h2{
    color:#fff;
    font-size:48px;
    margin:15px 0 25px;
    font-family:'Playfair Display', serif;
}

.services-wrapper p{
    color:#d6d6d6;
    font-size:18px;
    line-height:2;
    margin-bottom:20px;
}

.service-list{
    margin-top:30px;
    padding-left:20px;
}

.service-list li{
    color:#cfcfcf;
    font-size:17px;
    line-height:1.9;
    margin-bottom:16px;
}
.service-list li strong{
    color:#d9b38c;
    font-weight:600;
}
@media(max-width:991px){

    .services-content{
        padding:70px 0;
    }

    .services-wrapper{
        padding:0 20px;
    }

    .services-wrapper h2{
        font-size:34px;
    }

    .services-wrapper p{
        font-size:16px;
        line-height:1.9;
    }

    .service-list li{
        font-size:15px;
    }
}

/* =========================
   LOCATION SECTION
========================= */

.location-section{
    padding:100px 0;
    background:#0a0a0a;
}

.location-grid{
    max-width:1300px;
    margin:auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

    margin-top:50px;
}

.location-card{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:90px;

    text-align:center;
    text-decoration:none;

    color:#fff;

    font-size:20px;
    font-weight:600;

    border-radius:18px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    overflow:hidden;

    transition:.35s ease;
}

.location-card::before{
    content:'';

    position:absolute;

    top:-40px;
    right:-40px;

    width:120px;
    height:120px;

    background:
    rgba(122,31,61,.15);

    filter:blur(40px);

    opacity:0;

    transition:.35s ease;
}

.location-card:hover{

    transform:translateY(-5px);

    color:#d9b38c;

    border-color:
    rgba(183,110,121,.35);

    box-shadow:
    0 15px 35px rgba(122,31,61,.20);
}

.location-card:hover::before{
    opacity:1;
}

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

@media(max-width:991px){

    .location-section{
        padding:70px 0;
    }

    .location-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;

        padding:0 20px;

        margin-top:35px;
    }

    .location-card{

        min-height:70px;

        font-size:15px;
        font-weight:600;

        border-radius:14px;

        padding:0 10px;
    }

}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{
    padding:100px 0;
    background:#0a0a0a;
}

.testimonial-grid{
    max-width:1300px;
    margin:auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

    margin-top:50px;
}

.testimonial-card{
    padding:30px 25px;

    border-radius:22px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-5px);

    border-color:
    rgba(183,110,121,.35);

    box-shadow:
    0 15px 35px rgba(122,31,61,.18);
}

.stars{
    color:#d9b38c;
    font-size:18px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.9;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#fff;
    margin:0;
    font-size:16px;
}
@media(max-width:991px){

    .testimonial-section{
        padding:70px 0;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
        gap:15px;
        padding:0 20px;
        margin-top:35px;
    }

    .testimonial-card{
        padding:22px;
    }
}
/* =========================
   FAQ SECTION
========================= */

.faq-section{
    padding:100px 0;
    background:#0a0a0a;
}

.faq-container{
    max-width:900px;
    margin:50px auto 0;
    padding:0 25px;
}

.faq-item{
    margin-bottom:15px;

    border-radius:18px;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);
}

.faq-question{
    position:relative;

    width:100%;

    padding:22px 60px 22px 25px;

    background:none;
    border:none;

    color:#fff;

    font-size:18px;
    font-weight:600;

    text-align:left;

    cursor:pointer;
}
/* Plus Icon */

.faq-question::after{

    content:'+';

    position:absolute;

    right:25px;
    top:50%;

    transform:translateY(-50%);

    font-size:28px;
    font-weight:300;

    color:#d9b38c;

    transition:.3s;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;
}

.faq-answer p{

    color:#cfcfcf;

    line-height:1.9;

    padding:0 25px 22px;

    margin:0;
}
@media(max-width:991px){

    .faq-section{
        padding:70px 0;
    }

    .faq-container{
        padding:0 20px;
        margin-top:35px;
    }

    .faq-question{
        font-size:16px;
        padding:18px;
    }

    .faq-answer p{
        padding:0 18px 18px;
        font-size:15px;
    }

}
/* =========================
   BLOG SECTION
========================= */

.blog-section{
    padding:100px 0;
    background:#0a0a0a;
}

.blog-grid{
    max-width:1300px;
    margin:auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

    margin-top:50px;
}

.blog-card{

    overflow:hidden;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    transition:.35s ease;
}

.blog-card:hover{

    transform:translateY(-6px);

    border-color:
    rgba(183,110,121,.35);

    box-shadow:
    0 15px 35px rgba(122,31,61,.18);
}

.blog-card img{

    width:100%;
    height:240px;

    object-fit:cover;

    display:block;
}

.blog-content{
    padding:25px;
}

.blog-date{

    display:block;

    color:#d9b38c;

    font-size:13px;

    margin-bottom:12px;

    letter-spacing:1px;
}

.blog-content h3{

    color:#fff;

    font-size:22px;

    line-height:1.5;

    margin-bottom:20px;
}

.blog-content a{

    color:#d9b38c;

    text-decoration:none;

    font-weight:500;
}

.blog-content a:hover{
    color:#fff;
}
/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .blog-section{
        padding:70px 0;
    }

    .blog-grid{

        grid-template-columns:1fr;

        gap:18px;

        padding:0 20px;

        margin-top:35px;
    }

    .blog-card img{
        height:220px;
    }

    .blog-content{
        padding:20px;
    }

    .blog-content h3{
        font-size:18px;
    }
}
/* =========================
   FOOTER
========================= */

.site-footer{
    background:#070707;
    border-top:1px solid rgba(255,255,255,.08);
}

/* Top */

.footer-container{

    max-width:1300px;
    margin:auto;

    padding:80px 25px 50px;

    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;

    gap:50px;
}

.footer-logo{

    text-decoration:none;

    font-family:'Playfair Display', serif;

    font-size:32px;
    font-weight:700;

    letter-spacing:2px;

    background:
    linear-gradient(
        90deg,
        #ffffff,
        #e7c3a1,
        #b76e79
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.footer-about p{

    margin-top:20px;

    color:#bdbdbd;

    line-height:1.9;

    font-size:15px;
}

.footer-links h3{

    color:#fff;

    margin-bottom:20px;

    font-size:18px;
}

.footer-links a{

    display:block;

    color:#bdbdbd;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;
}

.footer-links a:hover{
    color:#d9b38c;
}

.footer-links i{

    width:22px;

    color:#d9b38c;
}

/* Bottom */

.footer-bottom{

    max-width:1300px;
    margin:auto;

    padding:20px 25px;

    border-top:
    1px solid rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;
}

.footer-bottom p{

    margin:0;

    color:#9a9a9a;

    font-size:14px;
}

.footer-policy{

    display:flex;
    align-items:center;
    gap:25px;
}

.footer-policy a{

    color:#9a9a9a;

    text-decoration:none;

    font-size:14px;

    transition:.3s;
}

.footer-policy a:hover{
    color:#d9b38c;
}

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

@media(max-width:991px){

    .footer-container{

        grid-template-columns:1fr;

        gap:35px;

        padding:60px 20px 40px;
    }

    .footer-logo{
        font-size:28px;
    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

        padding:20px;
    }

    .footer-policy{

        flex-wrap:wrap;

        justify-content:center;

        gap:15px;
    }

}
/* =========================
   FLOATING CONTACT
========================= */

.floating-contact{

    position:fixed;

    right:25px;
    bottom:25px;

    display:flex;
    flex-direction:column;

    gap:15px;

    z-index:9999;
}

.floating-contact a{

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#fff;

    box-shadow:
    0 8px 25px rgba(0,0,0,.35);

    transition:.3s ease;
}

.floating-contact .call-link{

    background:
    linear-gradient(
    135deg,
    #8B0029,
    #C0003A
    );
}

.floating-contact .wa-link{

    background:#25D366;
}

.floating-contact a:hover{

    transform:
    translateY(-3px)
    scale(1.05);
}

.floating-contact i{

    font-size:28px;
}
/* =========================
   MOBILE CONTACT BAR
========================= */

.mobile-contact-bar{
    display:none;
}

@media(max-width:991px){

    /* Footer buttons ke niche content hide na ho */

    body{
        padding-bottom:85px;
    }

    /* Desktop Floating Hide */

    .floating-contact{
        display:none;
    }

    /* Mobile Bar */

.mobile-contact-bar{

    position:fixed;

    left:0;
    bottom:0;

    width:100%;

    padding:10px 12px;

    box-sizing:border-box; /* ADD THIS */

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;

    z-index:99999;
}

    .mobile-contact-bar a{

        height:56px;

        display:flex;
        align-items:center;
        justify-content:center;

        gap:10px;

        border-radius:50px;

        text-decoration:none;

        color:#fff;

        font-size:17px;
        font-weight:600;

        letter-spacing:.3px;

        transition:.3s ease;
    }

    /* Call Button */

    .mobile-contact-bar .call-link{

        background:
        linear-gradient(
            135deg,
            #9d002f,
            #c0003a
        );

        box-shadow:
        0 8px 20px rgba(192,0,58,.25);
    }

    /* WhatsApp Button */

    .mobile-contact-bar .wa-link{

        background:
        linear-gradient(
            135deg,
            #1db954,
            #25D366
        );

        box-shadow:
        0 8px 20px rgba(37,211,102,.25);
    }

    .mobile-contact-bar a:active{

        transform:scale(.97);
    }

    .mobile-contact-bar i{

        font-size:20px;
    }
}