:root {
    --blush: #f8e7e7;
    --rosegold: #d4a5a5;
    --gold: #c9a87c;
    --beige: #f5efe6;
    --dark: #2b2b2b;
    --white: #ffffff;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #3d3d3d;
    background: var(--white);
    scroll-behavior: smooth;
}

.gold-btn,
.btn-gold {
    background: var(--gold);
    border: none;
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(201, 168, 124, 0.3);
}

.gold-btn:hover,
.btn-gold:hover {
    background: #b8946a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(201, 168, 124, 0.4);
}

.gold-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    transition: 0.3s;
}

.gold-outline:hover {
    background: var(--gold);
    color: #fff;
}

.top-header {
    background: #faf3ed;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid #f0e0d8;
}

.top-header a {
    color: #5a4a40;
    text-decoration: none;
    margin-right: 18px;
    transition: 0.2s;
}

.top-header a:hover {
    color: var(--gold);
}

.navbar {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
}

.navbar-brand {
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #3d2c24 !important;
}

.navbar-brand span {
    color: var(--gold);
}

.nav-link {
    font-weight: 500;
    color: #3d2c24 !important;
    margin: 0 10px;
    letter-spacing: 0.3px;
    transition: 0.2s;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 20, 20, 0.3);
    backdrop-filter: brightness(0.7);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
section{
    overflow: hidden;
}
.section-title {
    font-size: 2.6rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #2c1f1a;
}

.section-title span {
    color: var(--gold);
    font-weight: 600;
}

.card-service {
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: 0.35s;
    background: var(--white);
    padding: 1.5rem 0.5rem;
    text-align: center;
}

.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(201, 168, 124, 0.12);
}

.card-service i {
    font-size: 3rem;
    color: var(--gold);
}

.bg-blush {
    background: var(--blush);
}

.bg-beige {
    background: var(--beige);
}

.process-step {
    background: white;
    border-radius: 30px;
    padding: 1.8rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border-left: 4px solid var(--gold);
}

.gallery-img {
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.gallery-img img {
    transition: 0.5s;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-img:hover img {
    transform: scale(1.08);
}

.gallery-section {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    animation: zoomIn .4s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    transition: .3s;
}

.close-btn:hover {
    color: #ffc107;
}

@keyframes zoomIn {
    from {
        transform: scale(.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */

@media(max-width:768px) {

    .gallery-item img {
        height: 220px;
    }

    .close-btn {
        font-size: 35px;
        right: 20px;
    }

    #lightbox img {
        max-width: 95%;
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 5px;
}

.faq-accordion .accordion-button {
    background: #fcf8f5;
    color: #2c1f1a;
    font-weight: 500;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.footer-dark {
    background: #1e1613;
    color: #d6cdc5;
}

.footer-dark a {
    color: #d6cdc5;
    text-decoration: none;
}

.footer-dark a:hover {
    color: var(--gold);
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    z-index: 999;
    border-radius: 60px;
    padding: 12px 20px;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    transition: 0.2s;
    border: none;
}

.floating-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn {
    left: 24px;
    background: #25D366;
    color: white;
}

.call-btn {
    right: 24px;
    background: var(--gold);
    color: white;
}

.back-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    background: #2c1f1a;
    color: white;
    border-radius: 60px;
    padding: 8px 16px;
    border: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.4rem;
    }

    .top-header .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-header .ms-auto {
        margin-left: 0 !important;
    }
}