

        .navbar {
            background: #fff
        }

        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
                url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1600&auto=format&fit=crop') center/cover;
            display: flex;
            align-items: center;
            color: #fff
        }

        .btn-gold {
            background: #b58b5b;
            color: #fff;
            border: none
        }

        .btn-gold:hover {
            background: #9f774a;
            color: #fff
        }

        .section-pad {
            padding: 80px 0
        }

        .card-custom {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
        }

        .gallery img {
            height: 280px;
            object-fit: cover;
            border-radius: 15px
        }

        .stats {
            background: #2d2a26;
            color: #fff
        }

        .contact-box {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
        }

        footer {
            background: #2d2a26;
            color: #fff;
            padding: 30px 0
        }
        /* =========================
   GOOGLE FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* =========================
   ROOT VARIABLES
========================= */

:root{
    --primary:#c8a97e;
    --primary-dark:#b89264;
    --secondary:#faf6f0;
    --dark:#2b2520;
    --gold:#d8b27a;
    --white:#ffffff;
    --text:#5e5e5e;
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --transition:.4s ease;
}

/* =========================
   GLOBAL
========================= */

body{
    font-family:'Poppins',sans-serif;
    background:var(--secondary);
    color:var(--text);
    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Cormorant Garamond',serif;
    color:var(--dark);
    font-weight:700;
}

.section-pad{
    padding:120px 0;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

img{
    max-width:100%;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);
    box-shadow:0 3px 25px rgba(0,0,0,.05);
    padding:18px 0;
}

.navbar-brand{
    font-size:34px;
    font-weight:700;
    color:var(--dark)!important;
}

.nav-link{
    color:var(--dark)!important;
    font-weight:500;
    margin-left:20px;
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    left:0;
    bottom:-5px;
    background:var(--gold);
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    min-height: 670px;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.45)
    ),
    url('slide1.webp');

    background-size:cover;
    background-position:center;
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(200,169,126,.15);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(50px);
}

.hero h1{
    font-size:82px;
    line-height:1;
    color:#fff;
    margin-bottom:25px;
}

.hero p{
    color:rgba(255,255,255,.9);
    font-size:20px;
    margin-bottom:35px;
    max-width:650px;
}

.hero-badge{
    display:inline-block;
    padding:12px 24px;
    border:1px solid rgba(255,255,255,.3);
    color:#fff;
    border-radius:50px;
    margin-bottom:30px;
    backdrop-filter:blur(10px);
}

/* =========================
   BUTTONS
========================= */

.btn-gold{
    background:linear-gradient(
    135deg,
    #d8b27a,
    #b89264
    );

    color:#fff;
    border:none;
    border-radius:50px;
    padding:16px 35px;
    font-weight:600;
    transition:.4s;
}

.btn-gold:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:
    0 15px 30px rgba(200,169,126,.35);
}

/* =========================
   FORM BOX
========================= */

.contact-box{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:40px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.contact-box h3{
    margin-bottom:25px;
}

.form-control,
.form-select{
    height:58px;
    border-radius:12px;
    border:1px solid #e8dfd2;
    box-shadow:none!important;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--gold);
}

/* =========================
   SERVICES
========================= */

.card-custom{
    background:#fff;
    border:none;
    border-radius:25px;
    padding:40px;
    transition:.4s;
    box-shadow:var(--shadow);
    overflow:hidden;
    position:relative;
}

.card-custom::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
    90deg,
    #d8b27a,
    #b89264
    );
}

.card-custom:hover{
    transform:translateY(-12px);
    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.card-custom h4{
    margin-bottom:15px;
    font-size:34px;
}

/* =========================
   GALLERY
========================= */

.gallery img{
    border-radius:25px;
    transition:.5s;
    width:100%;
    object-fit:cover;
    box-shadow:var(--shadow);
}

.gallery img:hover{
    transform:scale(1.05);
}

/* =========================
   STATS
========================= */

.stats{
    background:
    linear-gradient(
    135deg,
    #2b2520,
    #1d1814
    );
    color:#fff;
}

.stats h2{
    color:var(--gold);
    font-size:60px;
    font-weight:700;
}

.stats p{
    color:#d7d7d7;
    font-size:18px;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    box-shadow:var(--shadow);
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-stars{
    color:#d8b27a;
    font-size:20px;
    margin-bottom:15px;
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)
    ),
    url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?q=80&w=1800');

    background-size:cover;
    background-position:center;

    border-radius:30px;
    padding:100px 60px;
    text-align:center;
    color:#fff;
}

.cta-section h2{
    color:#fff;
    font-size:60px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#1d1814;
    color:#fff;
    padding:60px 0;
}

footer a{
    color:#d8b27a;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    z-index:9999;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.hero{
    text-align:center;
    padding:120px 0;
}

.hero h1{
    font-size:55px;
}

.contact-box{
    margin-top:40px;
}

.section-pad{
    padding:80px 0;
}

}

@media(max-width:767px){

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:16px;
}

.stats h2{
    font-size:42px;
}

.cta-section{
    padding:60px 25px;
}

.cta-section h2{
    font-size:36px;
}

}