html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/*=====================================
  INTRO SECTION
=====================================*/

.intro{

    background:#F7F4EF;

    padding:120px 0;

}

.intro .container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.intro-text{

    max-width:760px;

}

.section-tag{

    display:inline-block;

    color:#AEB69A;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.intro h2{

    font-family:'Cormorant Garamond',serif;

    color:#2E241C;

    font-size:60px;

    line-height:1.15;

    margin-bottom:30px;

}

.intro p{

    color:#6B625A;

    font-size:20px;

    line-height:1.9;

}

body{

font-family:'Inter',sans-serif;
background:#ffffff;
color:rgb(250, 249, 249);

}
nav{

position:absolute;

top:0;
left:0;

width:100%;

padding:35px 80px;

display:flex;

justify-content:space-between;

align-items:center;

z-index:100;

padding:35px 60px;

}

.footer-nav{
    position:static !important;
    width:auto !important;
    padding:0 !important;
    z-index:auto !important;
    display:flex;
    justify-content:center;
    gap:70px;
    margin:35px 0;
}

#navbar{
    transition:
        background-color .4s ease,
        backdrop-filter .4s ease,
        box-shadow .4s ease,
        padding .4s ease;
}

#navbar.scrolled{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:rgba(248,245,239,.50);

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(170,150,120,.18);

    box-shadow:
        0 8px 30px rgba(0,0,0,.08),
        0 2px 8px rgba(0,0,0,.04);

    padding:6px 20px;

    z-index:1000;
}

#navbar.scrolled ul li a{
    color:#3B3028;
    font-weight:500;
}

#navbar.scrolled ul li a:hover{
    color:#B69257;
}

.logo{
    margin-top:15px;
    display:flex;
    align-items:center;
}

.logo img{

    height: 150px;
    width:auto;
    display:block;

}

#navbar .logo img{
    transition: height .4s ease;
}

#navbar.scrolled .logo img{
    height: px;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:2rem;
    cursor:pointer;
    z-index:1100;
    transition:.3s ease;
}

.menu-toggle:hover{
    color:#d4b483;
}

nav ul{

    display:flex;

    align-items:center;

    justify-content:center;

    list-style:none;

    margin:0;

    padding:0;

}

nav ul li{

    margin:0 28px;

}

nav a{
    position:relative;
    text-decoration:none;
    color:white;
    font-size:17px;
    transition:
    color .3s ease,
    transform .3s ease;
}

#navbar.scrolled ul li a{
    transform: translateY(-1px);
}

.logo{
    transition: transform .4s ease;
}

#navbar.scrolled .logo{
    transform: scale(.82);
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#d4b483;
    transition:width .3s ease;
}

nav a:hover{
    color:#d4b483;
}

nav a:hover::after{
    width:100%;
}
.book-btn{

    padding:18px 38px;

    background:#3B332D;

    color:white;

    text-decoration:none;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    transition:all .35s ease;

}

.book-btn:hover{

    background:#4B413A;

    transform:translateY(-3px);

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

}

.hero{

min-height:100vh;

background:url("../images/hero/hero-main.png") center center/cover;

position:relative;

display:flex;

align-items:center;

padding-left:8%;

}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:linear-gradient(
        rgba(0,0,0,.38),
        rgba(0,0,0,.12)
    );

    z-index:1;
    pointer-events:none;
}

.overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.35);

}

.hero-content{

position:relative;

max-width:700px;

z-index:2;

margin-top:-25px;

}

.hero h1{

font-family:'Cormorant Garamond',serif;

font-size:84px;

font-weight:600;

line-height:.95;

margin-bottom:35px;

}

.hero p{

font-size:24px;

line-height:1.8;

margin-bottom:35px;

max-width:600px;

}

.hero-service-area{
    letter-spacing:3px;
    font-size:18px;
    text-transform:uppercase;
    margin-bottom:50px;
}

.hero-btn{

display:inline-block;

padding:16px 38px;

background:#aeb69a;

color:white;

text-decoration:none;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.hero-btn:hover{

transform:translateY(-3px);

background:#aeb89a;

box-shadow:0 12px 30px rgba(0,0,0,0.20);

}

/* ===================================
   FEATURES
=================================== */

.features{

    display:grid;
    grid-template-columns:repeat(3,minmax(260px,1fr));
    gap:30px;
    margin-top:70px;

}

.feature-card{

    background:white;

    padding:50px;

    min-height:440px;

    border-radius:24px;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

    transition:.35s ease;

    text-align:left;

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.feature-icon{

    width:70px;
    height:70px;

    background:#EEF1E7;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#AEB69A;

    margin-bottom:30px;

}


.feature-card h3{

    font-family:'Cormorant Garamond',serif;

    color:#2E241C;

    font-size:34px;

    margin-bottom:15px;

}

.feature-card p{

    color:#6B625A;

    font-size:18px;

    line-height:1.8;

}
/* ===========================
   WHY FUNZEE KIDS
=========================== */

.why-us{
    padding:120px 8%;
    background:#f9f6ef;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.why-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 30px 70px rgba(0,0,0,.08);
}

.why-content h2{
    font-family:'Cormorant Garamond', serif;
    font-size:60px;
    color:#2e2522;
    line-height:1.1;
    margin:20px 0;
}

.why-content p{
    font-size:20px;
    color:#6b6662;
    line-height:1.8;
    margin-bottom:50px;
}

.why-items{
    display:grid;
    gap:30px;
}

.why-item{
    display:flex;
    gap:25px;
    align-items:flex-start;
}

.why-item i{
    width:65px;
    height:65px;
    background:#d7dec8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#55644f;
    flex-shrink:0;
}

.why-item h4{
    font-family:'Cormorant Garamond', serif;
    font-size:34px;
    color:#2e2522;
    margin-bottom:8px;
}

.why-item p{
    margin:0;
    font-size:18px;
    line-height:1.7;
}

@media(max-width:991px){

.why-grid{
    grid-template-columns:1fr;
}

.why-content{
    margin-top:50px;
}

.why-content h2{
    font-size:48px;
}

}
/* ==========================================
   SIGNATURE EXPERIENCES
========================================== */

.packages{
    padding:150px 3%;
    background:#F8F5EF;
}

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

.section-subtitle{
    letter-spacing:3px;
    text-transform:uppercase;
    color:#9BA88D;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.section-header h2{
    font-size:54px;
    line-height:1.2;
    margin-bottom:20px;
    color:#2F2F2F;
}

.section-description{
    color:#777;
    font-size:18px;
    line-height:1.8;
}

.package-container{

    display:grid;
    grid-template-columns:repeat(3,minmax(380px,1fr));
    gap:40px;
    margin:70px auto 0;

}

.package-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;

}

.package-card:hover{
    transform:translateY(-15px) scale(1.02);
    box-shadow:0 40px 80px rgba(0,0,0,.14);

}
.package-image{
    height:380px;
    overflow:hidden;

}

.package-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:18px 18px 0 0;
    transition:transform .5s ease;
    transition: transform .9s ease;
    transform: scale(1);

}

.package-card:hover .package-image img{
    transform: scale(1.08);
}

.package-card:hover img{
    transform:scale(1.07);

}

.package-content{
    padding:45px 40px 50px;

}

.package-content h3{
    font-size: 30px;
    color: #222;
    text-align: center;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 5;
}

.package-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:18px;
}

.package-content strong{
    color:#222;
    font-weight:700;
}

/* Package Details */

.package-details{
    border-top:1px solid #ece7df;
    margin:30px 0;
    padding-top:25px;
}

.detail-item{
    margin-bottom:22px;
}

.detail-title{
    display:block;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:700;
    color:#C6A15B;
    margin-bottom:8px;
}

.detail-item p{
    margin:0;
    color:#2F2F2F;
    font-size:18px;
    font-weight:600;
}

.package-tagline{
    color:#94a187;
    font-style:italic;
    margin-bottom:28px;
    font-size:20px;

}

.package-content ul{
    list-style:none;
    padding:0;
    margin-bottom:35px;

}

.package-content li {
    color: #000;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 500;
}

.package-price{
    color:#C6A15B;
    font-weight:600;
    letter-spacing:1px;
}

.price-title{
    display:block;
    font-size:16px;
    font-weight:600;
    color:#C6A15B;
    letter-spacing:0.5px;
    text-transform:none;
    margin-bottom:10px;
}

.price-amount{
    display:block;
    font-size:52px;
    font-weight:700;
    color:#2F2F2F;
    line-height:1;
    margin-bottom:20px;
}

.package-btn{
    display:inline-block;
    padding:16px 36px;
    border-radius:50px;
    background:#A8B39A;
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.package-btn:hover{
    background:#8D9B82;

}

.popular-badge{
    position:absolute;
    top:25px;
    left:25px;
    background:#A8B39A;
    color:white;
    padding:10px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:600;
    z-index:100;

}

.featured{
    border:2px solid #C8A96A;

}

/* ==========================================
   ENHANCEMENTS SECTION
========================================== */

.enhancements{

    padding:120px 8%;

    background:#FAF8F4;

}

.enhancements .section-header{

    max-width:750px;

    margin:0 auto 90px;

    text-align:center;

}

.enhancements .section-subtitle{

    display:inline-block;

    color:#C6A15B;

    font-size:12px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.enhancements h2{

    font-size:48px;

    color:#2F2F2F;

    margin-bottom:20px;

}

.enhancements p{

    font-size:20px;

    color:#666;

    line-height:1.8;

}

/* ==========================================
   ABOUT
========================================== */

.about{

    padding:100px 6%;

    background:#F8F5EF;

}

.about-container{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:80px;

    align-items:center;

    max-width:1600px;

    margin:auto;

}

.about-image{

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.about-image img{

    width:100%;

    height:550px;

    object-fit:cover;

    display:block;


}

.about-image:hover img{

    transform:scale(1.05);

}

.about-content h2{

    font-size:54px;

    line-height:1.2;

    margin:20px 0 30px;

    color:#2F2F2F;

}

.about-text{

    font-size:18px;

    line-height:1.9;

    color:#6F6B67;

    margin-bottom:45px;

}

.about-features{

    display:grid;

    gap:28px;

    margin-bottom:50px;

}

.feature{
    display:flex;
    gap:20px;
    align-items:flex-start;

    background:#ffffff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;
}

.feature-icon{

    width:58px;

    height:58px;

    background:#EEF2E6;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    color:#8E9D84;

    flex-shrink:0;

}

.feature h4{
    font-size:28px;
    margin-bottom:8px;
    color:#2E2E2E;
    font-weight:700;
}

.feature p{

    color:#6F6B67;

    line-height:1.8;

}

@media(max-width:992px){

.about-container{

    grid-template-columns:1fr;

}

.about-content{

    margin-top:40px;

}

.about-content h2{

    font-size:42px;

}

}

/*==================================
        GALLERY
===================================*/

.gallery{

    padding:120px 6%;
    background:#F8F5EF;

}

.gallery-header{

    text-align:center;
    max-width:800px;
    margin:0 auto 70px;

}

.gallery-subtitle{

    color:#AAB596;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;

}

.gallery-header h2{

    font-size:54px;
    color:#2F2F2F;
    margin:20px 0;

}

.gallery-description{

    color:#6F6B67;
    line-height:1.8;
    font-size:18px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    grid-auto-rows:220px;

    gap:28px;

}

.gallery-item{

    overflow:hidden;

    border-radius:28px;

    position:relative;

    cursor:pointer;

    transition:.35s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.gallery-item.large{

    grid-column:span 2;
    grid-row:span 2;

}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item.large img{

    min-height:650px;

}

.gallery-item:not(.large) img{

    min-height:310px;

}

.gallery-item{

    transition:.35s ease;

}

.gallery-item:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item.large{

    grid-column:span 2;

    grid-row:span 2;

}

.gallery-item.tall{

    grid-row:span 2;

}

.gallery-item.wide{

    grid-column:span 2;

}

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.lightbox.active{

    opacity:1;

    visibility:visible;

}

.lightbox-img{

    max-width:90%;

    max-height:88%;

    border-radius:18px;

    box-shadow:0 25px 70px rgba(0,0,0,.5);

    opacity:0;

    transform:scale(.96);

    transition:
        opacity .35s ease,
        transform .35s ease;

}

.lightbox.active .lightbox-img{

    opacity:1;

    transform:scale(1);

}

.lightbox-close{

    position:absolute;

    top:25px;

    right:40px;

    color:white;

    font-size:55px;

    cursor:pointer;

    transition:.3s;

}

.lightbox-close:hover{

    transform:scale(1.2);

}

.lightbox-prev,
.lightbox-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:70px;

    height:70px;

    border:none;

    border-radius:50%;

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

    backdrop-filter:blur(10px);

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

    color:#f9f7f7;

    font-size:34px;

    cursor:pointer;

    transition:all .3s ease;

}

.lightbox-img{
    position:relative;
    z-index:1;
}

.lightbox-close{
    z-index:10002;
}

.lightbox-prev,
.lightbox-next{
    z-index:10001;
}

.lightbox-prev{
    left:30px;
}

.lightbox-next{
    right:30px;
}

.lightbox-prev:hover,
.lightbox-next:hover{

    background:white;

    color:#333;

    transform:translateY(-50%) scale(1.08);

}

/*==================================
    WHY CHOOSE US
===================================*/

.why-choose{

    padding:120px 6%;

    background:#ffffff;

}

.why-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 90px;
}

.why-card{

    background:#fff;

    padding:60px 40px;

    border-radius:28px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s ease;

}

.why-card:hover{

    transform:translateY(-10px) scale(1.02);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.why-icon{

    font-size:48px;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:18px;

    color:#2F2F2F;

}

.why-card p{

    color:#6F6B67;

    line-height:1.8;

}

/*==================================
    SECTION TITLE
===================================*/

.section-title{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title span{
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B89C6D;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title h2{
    font-size: 48px;
    color: #2F2F2F;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-title p{
    font-size: 18px;
    color: #6F6B67;
    line-height: 1.8;
}

/*==================================
    SERVICE AREA
===================================*/

.service-area{

    padding:140px 6%;

    background:#F8F5F1;

}

.cities{

    margin-top:70px;

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

}

.cities span{

    padding:16px 32px;

    background:#ffffff;

    border-radius:50px;

    font-size:16px;

    color:#4A4A4A;

    font-weight:500;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    transition:.35s ease;

}

.cities span:hover{

    transform:translateY(-5px) scale(1.03);

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

/*==================================
    BOOKING CTA
===================================*/

.booking-cta{

    padding:140px 6%;

    background:#ffffff;

}

.booking-content{

    max-width:850px;

    margin:0 auto;

    text-align:center;

}

.booking-content span{

    display:inline-block;

    margin-bottom:18px;

    color:#B89C6D;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:600;

    font-size:14px;

}

.booking-content h2{

    font-size:58px;

    line-height:1.2;

    color:#2F2F2F;

    margin-bottom:30px;

}

.booking-content p{

    font-size:20px;

    line-height:1.9;

    color:#6F6B67;

    margin-bottom:50px;

}

.booking-btn{

    display:inline-block;

    padding:18px 42px;

    background:#A8B7A0;

    color:#ffffff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s ease;

}

.booking-btn:hover{

    background:#93A58B;

    transform:translateY(-4px);

}

.booking-features{

    margin-top:90px;

    display:grid;

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

    gap:30px;

}

.booking-feature{

    background:#F8F5F1;

    padding:40px;

    border-radius:28px;

    text-align:center;

    transition:.35s ease;

}

.booking-feature:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.booking-feature h3{

    margin-bottom:18px;

    color:#2F2F2F;

}

.booking-feature p{

    color:#6F6B67;

    line-height:1.8;

}

/*==========================================
        ENHANCEMENTS (DESKTOP)
==========================================*/

.enhancement-item{
    max-width:1100px;
    margin:0 auto 120px;
}

.enhancement-text{
    width:100%;
}

.enhancement-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#C79B43;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.enhancement-text h3{
    font-size:54px;
    margin:20px 0;
    color:#2F2F2F;
}

.enhancement-text p{
    font-size:20px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
}

.enhancement-image{
    margin:40px 0;
}

.enhancement-image{

    max-width:700px;
    margin:40px auto;

}

.enhancement-image img{

    width:100%;
    display:block;
    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.4s;

}

.enhancement-image img:hover{
    transform:scale(1.02);
}

.enhancement-text ul{
    margin:35px 0;
    padding-left:25px;
}

.enhancement-text li{
    margin-bottom:18px;
    font-size:19px;
    line-height:1.8;
}

.enhancement-btn{
    display:inline-flex;
    margin-top:25px;
    padding:18px 42px;
    border:2px solid #C79B43;
    border-radius:50px;
    color:#C79B43;
    font-weight:600;
    text-decoration:none;
    transition:.35s ease;
}

.enhancement-btn:hover{
    background:#C79B43;
    color:#fff;
}

/*==========================================
        ENHANCEMENT SHOWCASE
==========================================*/

.enhancement-item{
    max-width:1200px;
    margin:0 auto 120px;
}

.enhancement-text{
    width:100%;
}

.enhancement-tag{
    display:inline-block;
    color:#C79B43;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.enhancement-text h3{
    font-size:56px;
    color:#2F2F2F;
    margin:20px 0;
    line-height:1.2;
}

.enhancement-text p{
    font-size:20px;
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

.enhancement-image{
    margin:40px 0;
}

.enhancement-image img{
    width:100%;
    display:block;
    border-radius:26px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.35s ease;
}

.enhancement-image img:hover{
    transform:scale(1.02);
}

.enhancement-text ul{
    margin:40px 0;
    padding-left:28px;
}

.enhancement-text li{
    margin-bottom:18px;
    font-size:19px;
    line-height:1.8;
    color:#555;
}

.enhancement-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:20px;
    padding:18px 42px;
    border:2px solid #C79B43;
    border-radius:50px;
    color:#C79B43;
    font-weight:600;
    text-decoration:none;
    transition:.35s ease;
}

.enhancement-btn:hover{
    background:#C79B43;
    color:#fff;
}

/* ==========================
   FAQ SECTION
========================== */

.faq{
    padding:120px 8%;
    background:#f8f5f1;
}

.faq .section-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.faq .section-subtitle{
    display:block;
    letter-spacing:4px;
    font-size:.85rem;
    font-weight:600;
    color:#b9955b;
    margin-bottom:18px;
}

.faq h2{
    font-family:"Cormorant Garamond",serif;
    font-size:3.2rem;
    line-height:1.1;
    color:#32281f;
    margin-bottom:20px;
}

.faq .section-header p{
    color:#6d675f;
    line-height:1.8;
    font-size:1.05rem;
}

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

.faq details{
    background:#ffffff;
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    transition:.3s;
}

.faq details:hover{
    transform:translateY(-2px);
}

.faq summary{
    list-style:none;
    cursor:pointer;
    padding:24px 30px;
    font-size:1.1rem;
    font-weight:600;
    color:#32281f;
    position:relative;
}
.faq summary{
    display:flex;
    align-items:center;

    Justify-content:space-between;
    gap:20px;
    padding: 32px 75px 32px 40px;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 600;
}

.faq summary::-webkit-details-marker{
    margin-left:20px

}


.faq summary::-webkit-details-marker{
    display:none;
}

.faq summary::after{

    content:"›";

    position:absolute;

    right:20px;

    top:50%;

    transform:translateY(-50%) rotate(90deg);

    font-size:2.2rem;

    font-weight:300;

    color:#b9955b;

    transition:transform .35s ease;

}

.faq details[open] summary::after{

    transform:translateY(-50%) rotate(270deg);

}

.faq details p{
    padding:8px 30px 32px;
    color:#666;
    line-height:1.8;
    font-size:1rem;
}

.faq summary:hover{
    color:#b9955b;
}

/*==================================
      FINAL CTA
===================================*/

.final-cta{

    padding:110px 8%;

    background:linear-gradient(
        135deg,
        #F8F5EF,
        #FFFDF9
    );

    text-align:center;

}

.final-cta-content{

    max-width:760px;

    margin:auto;

}

.final-cta h2{

    font-size:54px;

    color:#2F2F2F;

    margin:20px 0;

    line-height:1.2;

}

.final-cta p{

    color:#6F6B67;

    line-height:1.9;

    font-size:18px;

    margin-bottom:45px;

}

.final-cta .cta-button{

    display:inline-block;

    padding:18px 42px;

    background:#C79B43;

    color:white;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    letter-spacing:.5px;

    transition:.35s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.final-cta .cta-button:hover{

    transform:translateY(-4px);

    background:#B98B35;

    box-shadow:0 22px 50px rgba(0,0,0,.18);

}

/*==================================
    CONTACT
===================================*/

.contact{

    padding:140px 6%;

    background:#F8F5F1;

}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
}

@media (max-width:768px){

    .contact-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .contact-form{
        width:100%;
        padding:30px;
    }

}

.contact-info span{

    display:inline-block;

    margin-bottom:18px;

    color:#B89C6D;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;

    font-weight:600;

}

.contact-info h2{

    font-size:52px;

    line-height:1.2;

    margin-bottom:30px;

    color:#2F2F2F;

}

.contact-info p{
    font-size:18px;
    line-height:1.8;
    max-width:500px;
    margin:0 auto;
    color:#555;
}

.contact-item h3{
    color:#2F2F2F;
}

.contact-item p{
    color:#555;
}

.contact-info h2{
    color:#2F2F2F;
}

.contact-info span{
    color:#C6A15B;
}

.contact-details{

    margin-top:50px;

}

.contact-item{

    margin-bottom:30px;

}

.contact-item h3{

    margin-bottom:8px;

    color:#2F2F2F;

}

.contact-form{

    background:#ffffff;

    padding:50px;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    padding:18px;

    border:1px solid #ddd;

    border-radius:14px;

    font-size:16px;

    outline:none;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:#A8B7A0;

}

.contact-form button{

    padding:18px;

    background:#A8B7A0;

    color:#fff;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.contact-form button:hover{

    background:#92A387;

}

/*=========================
        FOOTER
=========================*/

/*=========================
        FOOTER
=========================*/

.footer{
    background:#1f1f1f;
    color:#f8f5ef;
    text-align:center;
    padding:110px 10% 70px;
}

.footer-logo img{
    width:340px;
    max-width:90%;
    display:block;
    margin:25px auto 40px;
}

.footer-tagline{
    max-width:700px;
    margin:0 auto 25px;
    color:#f8f5ef;
    font-size:1.2rem;
    line-height:1.8;
}

.footer-divider{
    color:#d4b483;
    font-size:24px;
    margin:25px auto 30px;
    position:relative;
}

.footer-divider::before,
.footer-divider::after{
    content:"";
    position:absolute;
    top:50%;
    width:120px;
    height:1px;
    background:#d4b483;
}

.footer-divider::before{
    right:55%;
}

.footer-divider::after{
    left:55%;
}

.footer-nav{
    display:flex;
    justify-content:center;
    gap:70px;
    flex-wrap:wrap;

    margin-top:5px;
    margin-bottom:15px;
}

.footer-line{
    width:100%;
    max-width:1400px;
    height:1px;
    background:#d4b483;

    margin:20px auto 55px;
    opacity:.75;
}

.footer-nav a{
    color:#f8f5ef;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:.9rem;
    font-weight:500;
    transition:.3s;
}

.footer-nav a:hover{
    color:#d4b483;
    transform:translateY(-2px);
}

.footer-contact{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:80px;
    max-width:1200px;
    margin:40px auto;
    text-align:center;
}

.footer-item{
    position:relative;
    padding:0 40px;
}

.footer-item:not(:last-child)::after{
    content:"";
    position:absolute;
    top:10px;
    right:0;
    width:1px;
    height:90px;
    background:#d4b483;
    opacity:.7;
}

.footer-item span{
    display:block;
    font-size:1.25rem;
    line-height:1.7;
    color:#f8f5ef;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:70px;
    margin:60px 0;
}

.footer-social a{
    display:flex;
    align-items:center;
    gap:14px;
    color:#f8f5ef;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:1rem;
    transition:.3s;
}

.footer-social a:hover{
    color:#d4b483;
}

.footer-social a{
    display:flex;
    align-items:center;
    gap:14px;
    color:#f8f5ef;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:1rem;
    transition:.3s;
}

.footer-item i{
    display:block;
    font-size:34px;
    color:#d4b483;
    margin-bottom:20px;
}

.footer-social i{
    font-size:28px;
    color:#d4b483;
}

.footer-copy{
    border-top:1px solid rgba(212,180,131,.35);
    margin-top:40px;
    padding-top:30px;
    color:#bfb8ae;
}

/*=========================
    HERO INTRO ANIMATION
=========================*/

.hero-content{
    animation:heroFade 1.2s ease forwards;
}

@keyframes heroFade{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:opacity .8s ease, transform .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/*=========================
   PACKAGE REVEAL
=========================*/

.package-card{
    opacity:0;
    transform:translateY(70px);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

.packages.active .package-card{
    opacity:1;
    transform:translateY(0);
}

.packages.active .package-card:nth-child(1){
    transition-delay:.15s;
}

.packages.active .package-card:nth-child(2){
    transition-delay:.35s;
}

.packages.active .package-card:nth-child(3){
    transition-delay:.55s;
}


/*=========================================
          AREAS WE SERVE
=========================================*/

.areas-serve{
    padding:90px 8%;
    background:#ffffff;
    text-align:center;
}

.areas-serve .section-header{
    max-width:800px;
    margin:0 auto 50px;
}

.areas-serve h2{
    font-family:"Cormorant Garamond", serif;
    font-size:3rem;
    color:#32281f;
    margin-bottom:20px;
}

.areas-serve p{
    font-size:1.1rem;
    color:#666;
    line-height:1.8;
}

.city-links{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:22px;
    margin-top:50px;

}

.city-links a{

    text-decoration:none;

    padding:14px 28px;

    background:#f7f4ef;

    color:#32281f;

    border-radius:50px;

    font-weight:600;

    transition:.3s ease;

    border:2px solid transparent;

}

.city-links a:hover{

    background:#C6A15B;

    color:white;

    transform:translateY(-3px);

    border-color:#C6A15B;

}

.city-links span{

    display:inline-block;

    padding:14px 28px;

    background:#C6A15B;

    color:#ffffff;

    border-radius:50px;

    font-weight:600;

    cursor:default;

    border:2px solid #C6A15B;

}

/*====================================
        RESPONSIVE DESIGN
====================================*/


/*========================
      TABLETS
========================*/

@media (max-width: 992px){

}


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

@media (max-width: 768px){

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

#navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(31,31,31,.95);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    z-index:1000;
}

.logo img{
    height:85px;
    transition:.3s ease;
}

.logo::after{
    display:none !important;
}

.menu-toggle{
    display:block;
    background:none;
    border:none;
    color:#fff;
    font-size:2rem;
    cursor:pointer;
    z-index:1002;
    transition:.3s ease;
}

.menu-toggle:hover{
    color:#d4b483;
}

.nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#1f1f1f;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:22px;
    padding:0;
    max-height:0;
    overflow:hidden;
    transition:
        max-height .4s ease,
        padding .4s ease;
}

.nav-link{

    transition:.3s ease;

}

.nav-link.active{

    color:#d4af37;

}

.nav-link:hover{

    color:#d4af37;

}

.nav-links.active{
    max-height:500px;
    padding:30px 0;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    color:#fff;
    font-size:18px;
    text-decoration:none;
}

.book-btn{
    display:none;
}


.hero{
    min-height:120vh;
    padding-top:110px;
}

.hero-content{
    max-width:100%;
    margin-top:60px;
    text-align:center;
    padding:0 20px;
}

.hero h1{
    font-size: 3rem;
    line-height: 1.15;
}

.hero p{
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
}

.menu-toggle{
    display:block;
}

#navbar{
    padding:15px 20px;
}

.book-btn{
    display:none;
}

.about-features{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    width:100%;
}

.feature{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:12px;
    width:100%;
}

.feature-icon{
    margin-bottom:10px;
}

.feature-content{
    text-align:center;
}

.package-btn{
    display:block;
    width:100%;
    max-width:300px;
    margin:35px auto 0;
    text-align:center;
    padding:16px 30px;
}

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

.about{
    padding:40px 20px;
}

.about-container{
    display:grid;
    grid-template-columns:1fr !important;
    gap:40px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.about-image{
    order:-1;
}

.about-image img{
    height:auto;
}

.about-content{
    text-align:center;
}

.feature-content{
    width:100%;
    text-align:center;
}

.feature h4{
    font-size:26px;
}

.feature p{
    font-size:16px;
}

.about-features{
    width:100%;
}

.feature{
    width:100%;
    box-sizing:border-box;
}

.feature h4{
    font-size:20px;
}

.feature p{
    font-size:14px;
    line-height:1.6;
}

.hero h1{
    font-size:2.5rem;
    line-height:1.15;
}

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

.packages{
    padding:80px 20px;
}

.section-header{
    max-width:100%;
    margin:0 auto 50px;
    text-align:center;
}

.section-header h2{
    font-size:2.3rem;
    line-height:1.2;
}

.section-description{
    font-size:16px;
}

.package-container{
    display:grid;
    grid-template-columns:1fr;
    gap:35px;
    width:100%;
}

.package-card{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.package-image{
    height:260px;
}

.package-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.package-content{
    padding:30px 25px;
}

.package-content h3{
    font-size:32px;
    text-align:center;
}

.package-tagline{
    text-align:center;
    font-size:18px;
}

.package-content li{
    font-size:16px;
}

.package-price{
    text-align:center;
}

.package-price span{
    font-size:44px;
}

.package-btn{
    display:block;
    width:100%;
    max-width:260px;
    margin:30px auto 0;
    text-align:center;
}

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

.intro{
    padding:80px 20px;
}

.intro .container{
    width:100%;
    max-width:100%;
    padding:0;
}

.intro-text{
    max-width:100%;
    text-align:center;
}

.intro h2{
    font-size:2.3rem;
    line-height:1.2;
}

.intro p{
    font-size:16px;
    line-height:1.8;
}

.features{
    display:grid;
    grid-template-columns:1fr;
    gap:25px;
    margin-top:40px;
}

.feature-card{
    width:100%;
    min-height:auto;
    padding:35px 25px;
}

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

.gallery{
    padding:80px 20px;
}

.gallery-header{
    width:100%;
    max-width:100%;
    margin:0 auto 50px;
    text-align:center;
}

.gallery-header h2{
    font-size:2.3rem;
    line-height:1.2;
    margin-bottom:20px;
}

.gallery-description{
    font-size:16px;
    line-height:1.8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.gallery-item,
.gallery-item.large,
.gallery-item.wide,
.gallery-item.tall{
    grid-column:auto;
    grid-row:auto;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:20px;
}

/* ===================================
   MOBILE WHY CHOOSE US
=================================== */

.why-choose{
    padding:80px 20px;
}

.why-choose .section-title{
    max-width:100%;
    margin:0 auto 50px;
    text-align:center;
}

.why-choose .section-title h2{
    font-size:2.3rem;
    line-height:1.2;
    margin-bottom:20px;
}

.why-choose .section-title p{
    font-size:16px;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:25px;
}

.why-card{
    width:100%;
    padding:35px 25px;
}

.why-card h3{
    font-size:1.7rem;
}

.why-card p{
    font-size:16px;
    line-height:1.8;
}

/* ===================================
   MOBILE BOOK YOUR DATE
=================================== */

.booking-cta{
    padding:80px 20px;
    display:block;
}

.booking-content,
.booking-features{
    width:100%;
    max-width:100%;
}

.booking-content{
    text-align:center;
    margin-bottom:40px;
}

.booking-content h2{
    font-size:2.3rem;
    line-height:1.2;
    margin:20px 0;
}

.booking-content p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:35px;
}

.booking-btn{
    display:inline-block;
    width:100%;
    max-width:300px;
}

.booking-features{
    display:grid;
    grid-template-columns:1fr;
    gap:25px;
}

.booking-feature{
    padding:30px 25px;
}

/* FINAL CTA */

.final-cta{

    padding:80px 6%;

}

.final-cta h2{

    font-size:36px;

}

.final-cta p{

    font-size:16px;

}

.final-cta .cta-button{

    width:100%;

    text-align:center;

}

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

.contact{
    padding:80px 20px;
}

.contact-container{
    display:block;
}

.contact-info,
.contact-form{
    width:100%;
    max-width:100%;
    margin:0 auto;
}

.contact-info{
    padding:35px 25px;
    border-radius:25px;
}

.contact-form{
    padding:35px 25px;
    border-radius:25px;
}

.contact-info{
    text-align:center;
    margin-bottom:45px;
}

.contact-info h2{
    font-size:2.3rem;
    line-height:1.2;
    margin:20px 0;
}

.contact-info p{
    color:#222;
}

.contact-details{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    margin-top:35px;
}

.contact-item{
    text-align:center;
    padding:20px;
}

.contact-form form{
    width:100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    font-size:16px;
    margin-bottom:18px;
}

.contact-form button{
    width:100%;
    padding:18px;
    font-size:17px;
}

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

.footer{
    padding:80px 20px 40px;
    text-align:center;
}

.footer-logo img{
    width:220px;
    margin:0 auto 30px;
}

.footer-tagline{
    max-width:100%;
    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;
}

.footer-divider{
    margin:20px auto;
}

.footer-divider::before,
.footer-divider::after{
    width:60px;
}

.footer-nav{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin:35px 0;
}

.footer-line{
    margin:35px auto;
}

.footer-contact{
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
    margin:35px auto;
}

.footer-item{
    padding:0;
}

.footer-item:not(:last-child)::after{
    display:none;
}

.footer-item span{
    font-size:16px;
}

.footer-social{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin:40px 0;
}

.footer-social a{
    justify-content:center;
}

.footer-copy{
    margin-top:30px;
    font-size:14px;
    line-height:1.6;
}

.footer-social a{
    transition:color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover{
    color:#d4af37;
    transform:translateY(-2px);
}

/* Keep mobile menu text white even when navbar is scrolled */
#navbar.scrolled .nav-links.active a{
    color: #ffffff;
}

#navbar.scrolled .nav-links.active a:hover{
    color: #d4af37;
}



@media (max-width:768px){

    .lightbox-prev,
    .lightbox-next{
        display:none;
    }

}

@media (max-width:768px){

    .lightbox-img{
        max-width:96%;
        max-height:92%;
    }

}


@media (max-width:768px){

.text-us-btn{

    bottom:18px;

    right:18px;

    padding:14px 18px;

    font-size:15px;

}

.text-us-btn i{

    font-size:18px;

}

}

.city-links span{

    width:100%;

    text-align:center;

}

/*========================
     SMALL PHONES
========================*/

@media (max-width: 480px){

}

html,
body{
    overflow-x:hidden;
}

body.menu-open {
    overflow: hidden;
}

}

/*==========================================
BOOKING PROCESS
==========================================*/

.booking-process{

margin-top:40px;
padding-top:35px;
border-top:1px solid #ece7df;

}

.booking-process h3{

font-size:1.35rem;
font-family:'Cormorant Garamond',serif;
font-weight:700;
color:#222;
margin-bottom:25px;
text-align:center;

}

.process-item{

display:flex;
align-items:flex-start;
gap:18px;
margin-bottom:22px;

}

.process-item span{

width:38px;
height:38px;

border-radius:50%;

background:#c9a86a;

color:#fff;

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

font-weight:700;

font-size:1rem;

flex-shrink:0;

}

.process-item p{

margin:0;
font-size:0.98rem;
line-height:1.7;
color:#666;

}

.selected-package-message{
    background:#f8f6f1;
    border:1px solid #e6dfd2;
    border-radius:18px;
    padding:25px;
    margin:35px 0;
    text-align:center;
}

.selected-package-message h3{
    font-family:'Cormorant Garamond', serif;
    font-size:1.7rem;
    color:#222;
    margin-bottom:12px;
}

.selected-package-message p{
    color:#666;
    line-height:1.7;
    margin:0;
}

/*======================================
  Success Message
======================================*/

.success-message{
    display:none;
    text-align:center;
    padding:50px 35px;
    margin-top:35px;
    background:#fdfbf7;
    border:1px solid #e8e1d7;
    border-radius:18px;
    animation:fadeIn .6s ease;
}

.success-icon{
    font-size:4rem;
    margin-bottom:15px;
}

.success-message h2{
    font-family:'Cormorant Garamond', serif;
    font-size:2.3rem;
    color:#6C5A3B;
    margin-bottom:18px;
}

.success-message p{
    font-size:1.05rem;
    line-height:1.8;
    color:#555;
    margin-bottom:15px;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.success-links{
    margin-top:30px;
    padding-top:25px;
    border-top:1px solid #e7dfd4;
}

.success-links h3{
    color:#6C5A3B;
    font-size:1.5rem;
    margin-bottom:15px;
    font-family:'Cormorant Garamond', serif;
}

.success-links p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

.success-links a{
    display:block;
    margin:12px 0;
    color:#6C5A3B;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.success-links a:hover{
    color:#C6A15B;
    transform:translateY(-2px);
}

.success-links h3{
    margin-bottom:18px;
}

.success-links p{
    margin:0 auto 20px;
}

.success-links a{
    display:block;
    margin:10px 0;
}

.success-links{
    text-align:center;
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid #e7dfd4;
}

.success-subtitle{
    max-width:620px;
    margin:18px auto 30px;
    color:#666;
    line-height:1.8;
    font-size:1rem;
}

.success-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.success-buttons a{
    display:inline-block;
    color:#6C5A3B;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.success-buttons a:hover{
    color:#C6A15B;
}

.social-button{
display:inline-block;
margin:12px auto;
padding:14px 26px;
border:1px solid #d8c6a3;
border-radius:40px;
background:#fff;
color:#6C5A3B;
font-weight:600;
text-decoration:none;
transition:.3s;
min-width:280px;
}

.social-button:hover{
background:#6C5A3B;
color:#fff;
transform:translateY(-2px);
box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.wait-message{
    max-width:650px;
    margin:0 auto 28px;
    color:#666;
    font-size:1.05rem;
    line-height:1.8;
}

/* =====================================
   Floating Text Button
===================================== */

.text-us-btn{
    position:fixed;
    bottom:25px;
    right:25px;

    display:flex;
    align-items:center;
    gap:10px;

    background:#bfc7a9;
    color:#ffffff;

    padding:16px 22px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    font-size:16px;

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

    z-index:9999;

    transition:.3s;
}

.text-us-btn:hover{

    transform:translateY(-3px);

    background:#aeb896;

}

.text-us-btn i{

    font-size:20px;

}

@keyframes gentlePulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.05);
}

100%{
transform:scale(1);
}

}

.text-us-btn{

animation:gentlePulse 2.8s infinite;

}


/* ===========================
   CITY SEO SECTION
=========================== */

.city-intro{
    padding:90px 8%;
    background:#f8f5f1;
    text-align:center;
}

.city-intro .section-header{
    max-width:800px;
    margin:0 auto 50px;
}

.city-intro h2{
    font-family:"Cormorant Garamond", serif;
    font-size:3rem;
    color:#32281f;
    margin-bottom:20px;
}

.city-intro p{
    font-size:1.1rem;
    color:#666;
    line-height:1.8;
}

.city-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    max-width:1100px;
    margin:0 auto;
}

.city-features .feature{
    background:#fff;
    padding:25px;
    border-radius:18px;
    font-weight:600;
    color:#32281f;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    transition:.3s;
}

.city-features .feature:hover{
    transform:translateY(-6px);
}


