/*==========================
HEADER
==========================*/

.header-area{

background:#111;

padding:18px 0;

}

.logo{

font-size:32px;

font-weight:700;

font-family:'Playfair Display',serif;

color:#fff;

}

.logo span{

color:#C8A45D;

}

.navbar-nav{

gap:15px;

}

.nav-link{

color:#fff;

font-weight:500;

transition:.3s;

}

.nav-link:hover{

color:#C8A45D;

}

.btn-book{

background:#C8A45D;

color:#fff;

padding:12px 28px;

border-radius:40px;

font-weight:600;

margin-left:25px;

transition:.3s;

}

.btn-book:hover{

background:#fff;

color:#111;

}

.navbar-toggler{

border:none;

color:#fff;

font-size:28px;

}
.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #d4af37;
}
/* ==========================
   HERO SECTION
========================== */
/*==========================
HERO
==========================*/

.hero{

    background:#111;

    color:#fff;

    padding:10px 0;

}

.hero-image{

    text-align:center;

}

.hero-image img{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.hero h1{

    font-size:58px;

    font-weight:700;

    line-height:1.2;

    margin:20px 0;

}

.hero p{

    font-size:18px;

    line-height:1.9;

    color:#ddd;

    margin-bottom:35px;

}

.hero-btn,
.hero-outline{

    display:inline-block;

    padding:14px 32px;

    border-radius:40px;

    text-decoration:none;

    margin-right:15px;

}

.hero-btn{

    background:#C8A45D;

    color:#fff;

}

.hero-outline{

    border:2px solid #C8A45D;

    color:#fff;

}

/*==========================
POPULAR LOCATIONS
==========================*/


.locations{

    padding:40px 0;

    background:#f8f8f8;

}

.location-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.location-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.location-card:hover{

    transform:translateY(-8px);

}

.location-card img{

    width:100%;

    height:180px;

    object-fit:cover;

}

.location-card h4{

    margin:18px 0 10px;

    font-size:22px;

}

.location-card a{

    display:inline-block;

    margin-bottom:20px;

    padding:10px 25px;

    background:#C8A45D;

    color:#fff;

    border-radius:30px;

    text-decoration:none;

    transition:.3s;

}

.location-card a:hover{

    background:#111;

}

/* Laptop */

@media(max-width:1200px){

.location-grid{

grid-template-columns:repeat(4,1fr);

}

}

/* Tablet */

@media(max-width:992px){

.location-grid{

grid-template-columns:repeat(3,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.location-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Small Mobile */

@media(max-width:480px){

.location-grid{

grid-template-columns:1fr;

}

}
/*==========================
WELLNESS CONTENT
==========================*/

.wellness-content{

    padding:40px 0;

    background:#ffffff;

}

.wellness-content .content-text{

    margin-top:30px;

}

.wellness-content .content-text p{

    font-size:18px;

    line-height:1.9;

    color:#666;

    margin-bottom:25px;

    text-align:justify;

}
/*==========================
CATEGORIES
==========================*/
/*==========================
CATEGORIES
==========================*/

.categories{

    padding:40px 0;

    background:#f8f8f8;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.category-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.category-card:hover{

    transform:translateY(-8px);

}

.category-card img{

    width:100%;

    height:280px;

    object-fit:cover;

}

.category-card h4{

    font-size:22px;

    margin:20px 0 10px;

}

.category-card a{

    display:inline-block;

    margin-bottom:20px;

    padding:10px 25px;

    background:#C8A45D;

    color:#fff;

    text-decoration:none;

    border-radius:30px;

    transition:.3s;

}

.category-card a:hover{

    background:#111;

}

/* Laptop */

@media(max-width:1200px){

.category-grid{

grid-template-columns:repeat(4,1fr);

}

}

/* Tablet */

@media(max-width:992px){

.category-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:576px){

.category-grid{

grid-template-columns:1fr;

}

}
/*==========================
FAQ
==========================*/

.faq{

    padding:40px 0;

    background:#f8f9fa;

}

.accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:15px !important;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.accordion-button{

    padding:22px;

    font-weight:600;

    font-size:18px;

    background:#fff;

}

.accordion-button:not(.collapsed){

    background:#C8A45D;

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:25px;

    color:#666;

    line-height:1.8;

}
/*==========================
CALL TO ACTION
==========================*/

.cta{

    padding:40px 0;

    background:#111;

}

.cta-box{

    background:linear-gradient(135deg,#1a1a1a,#2d2d2d);

    padding:70px 50px;

    border-radius:25px;

    text-align:center;

    color:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.cta-box h2{

    font-size:42px;

    margin-bottom:20px;

}

.cta-box p{

    color:#ddd;

    font-size:18px;

    max-width:700px;

    margin:0 auto 35px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary-custom{

    background:#C8A45D;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    transition:.3s;

    font-weight:600;

}

.btn-primary-custom:hover{

    background:#fff;

    color:#111;

}

.btn-outline-custom{

    border:2px solid #C8A45D;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    transition:.3s;

    font-weight:600;

}

.btn-outline-custom:hover{

    background:#C8A45D;

    color:#fff;

}
/*==========================
FOOTER
==========================*/

.footer{

    background:#111;

    color:#ddd;

    padding:80px 0 30px;

}

.footer-logo{

    color:#fff;

    margin-bottom:20px;

}

.footer-logo span{

    color:#C8A45D;

}

.footer h4{

    color:#fff;

    margin-bottom:20px;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#bbb;

    transition:.3s;

}

.footer ul li a:hover{

    color:#C8A45D;

}

.social-icons{

    margin-top:25px;

}

.social-icons a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#222;

    color:#fff;

    margin-right:10px;

    transition:.3s;

}

.social-icons a:hover{

    background:#C8A45D;

}

.footer hr{

    border-color:#333;

    margin:40px 0 20px;

}

.footer-bottom{

    text-align:center;

}

/*==========================
BACK TO TOP
==========================*/

.back-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    background:#C8A45D;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:20px;

    transition:.3s;

    z-index:999;

}

.back-top:hover{

    background:#111;

    color:#fff;

}
/* ==========================
   WHY CHOOSE US
========================== */
.why-us{

    padding:50px 0;

    background:#f8f8f8;

}

.feature-card{

    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:15px;

    transition:.3s;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.feature-card i{

    font-size:50px;

    color:#C8A45D;

    margin-bottom:20px;

}

.feature-card h4{

    font-size:24px;

    margin-bottom:15px;

}

.feature-card p{

    color:#666;

    line-height:1.8;

}

.feature-card:hover{

    transform:translateY(-10px);

}
/*==========================
PREMIUM SERVICES
==========================*/

.services{
    padding:60px 0;
    background:#ffffff;
}

.service-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;
}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.service-icon{

    width:80px;

    height:80px;

    margin:auto;

    background:#C8A45D;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

}

.service-card h4{

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    margin-bottom:20px;

}

.read-more{

    color:#C8A45D;

    font-weight:600;

}

.read-more:hover{

    color:#111;

}
/*==========================
FEATURED PROFILES
==========================*/


.featured-profiles{

    padding:10px 0;

    background:#fff;

}

.profile-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.profile-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.profile-card:hover{

    transform:translateY(-8px);

}

.profile-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.profile-card h4{

    font-size:22px;

    margin-top:20px;

}

.profile-card span{

    display:block;

    color:#777;

    margin:10px 0;

}

.profile-card a{

    display:inline-block;

    margin:20px;

    padding:10px 25px;

    background:#C8A45D;

    color:#fff;

    border-radius:30px;

    text-decoration:none;

    transition:.3s;

}

.profile-card a:hover{

    background:#111;

}

/* Laptop */

@media(max-width:1200px){

.profile-grid{

grid-template-columns:repeat(4,1fr);

}

}

/* Tablet */

@media(max-width:992px){

.profile-grid{

grid-template-columns:repeat(3,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.profile-grid{

grid-template-columns:repeat(2,1fr);

}

.profile-card img{

height:220px;

}

}

/* Small Mobile */

@media(max-width:480px){

.profile-grid{

grid-template-columns:1fr;

}

}
/*==========================
STATISTICS
==========================*/

.stats{

    background:#111;

    padding:40px 0;

}

.stat-box{

    color:#fff;

    text-align:center;

}

.stat-box i{

    font-size:50px;

    color:#C8A45D;

    margin-bottom:20px;

}

.stat-box h2{

    font-size:48px;

    margin-bottom:10px;

}

.stat-box p{

    color:#ddd;

    font-size:18px;

}
/*==========================
ABOUT HOME
==========================*/

.about-home{

   /* padding: 60px 0; */

    background:#fff;

}

.about-home h2{

    font-size:40px;

    margin-bottom:25px;

    color:#111;

    font-weight:700;

}

.about-home .section-text{

    font-size:18px;

    line-height:1.9;

    color:#666;

    margin-bottom:25px;

}
/*==================================
WHY CHOOSE US
===================================*/

.choose-box{

    background:#fff;

    padding:35px 25px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

    transition:.3s;

}

.choose-box:hover{

    transform:translateY(-8px);

}

.choose-box i{

    font-size:42px;

    color:#C8A45D;

    margin-bottom:20px;

}

.choose-box h4{

    font-size:22px;

    margin-bottom:15px;

}

.choose-box p{

    margin:0;

    color:#666;

}
/*==================================
CALL TO ACTION
===================================*/

.cta-section{

    padding:90px 0;

    background:#111;

}

.cta-section .section-title{

    color:#fff;

}

.cta-section p{

    color:#ccc;

    max-width:700px;

    margin:20px auto 35px;

}
/*==========================
ABOUT COMPANY
===========================*/

.about-image{

    overflow:hidden;

    border-radius:20px;

}

.about-image img{

    border-radius:20px;

    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.05);

}

.about-feature{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.about-feature i{

    color:#C8A45D;

    font-size:18px;

}
/*==========================
GALLERY
===========================*/

.gallery-box{

    overflow:hidden;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

    transition:.4s;

}

.gallery-box img{

    width:100%;

    height:350px;

    object-fit:cover;

    transition:.4s;

}

.gallery-box:hover{

    transform:translateY(-8px);

}

.gallery-box:hover img{

    transform:scale(1.08);

}
/*==========================
PAGE BANNER
===========================*/

.page-banner{

    padding:120px 0 70px;

    background:#f8f8f8;

}

.page-banner h1{

    font-size:42px;

    font-weight:700;

    margin-bottom:15px;

}

.page-banner p{

    max-width:700px;

    margin:0 auto 20px;

    color:#666;

}

.breadcrumb{

    background:none;

    margin:0;

}

.breadcrumb a{

    color:#C8A45D;

    text-decoration:none;

}

.breadcrumb-item.active{

    color:#555;

}
/* =========================
   RATES & PRICING
========================= */

.rate-card {
    height: 100%;
    padding: 35px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.rate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rate-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.rate-card h3 {
    margin-bottom: 12px;
}

.rate-price {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}

.rate-price span {
    font-size: 18px;
}

.rate-duration {
    font-weight: 500;
    margin-bottom: 18px;
}

.rate-card p {
    line-height: 1.7;
}
.featured-rate {
    border: 2px solid #d0a85c;
    transform: translateY(-8px);
}

.featured-rate:hover {
    transform: translateY(-12px);
}
.info-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 12px;
}

.info-card p {
    line-height: 1.7;
    margin-bottom: 0;
}
/* Model Escorts Location Section */

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.location-card {
    display: block;
    padding: 28px 22px;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.location-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.location-card p {
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
}

.location-card:hover {
    transform: translateY(-5px);
}
/* Model Escorts Location Section */

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.location-card {
    display: block;
    padding: 28px 22px;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.location-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.location-card p {
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
}

.location-card:hover {
    transform: translateY(-5px);
}