:root {
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --gold-gradient: linear-gradient(135deg, #b8860b, #d4af37, #f5d98f);
    --black: #0b0b0b;
    --charcoal: #1a1a1a;
    --white: #ffffff;
    --off-white: #faf7f2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
    color: #222;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
.brand-font {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.gold-text {
    color: var(--gold);
}

.gold-bg {
    background: var(--gold-gradient);
}

.bg-black {
    background: var(--black);
}

.bg-charcoal {
    background: var(--charcoal);
}

.btn-gold {
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(212, 168, 83, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.5);
    color: #000;
    background: #f5d98f;
}

.btn-outline-gold {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
    transform: scale(1.02);
}

/* top bar */
.top-bar {
    background: var(--gold-gradient);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
    transition: 0.2s;
}

.top-bar a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.social-icons i {
    font-size: 1rem;
    margin: 0 5px;
}

/* navbar */
.navbar {
    background: rgb(0 0 0) !important;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
    padding: 10px 0;
}

.navbar .nav-link {
    color: #eee !important;
    font-weight: 500;
    margin: 0 8px;
    transition: 0.2s;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold) !important;
}

.navbar-brand img {
    height: 48px;
    width: auto;
}

.navbar-brand span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.navbar-brand span small {
    color: var(--gold);
    font-size: 0.8rem;
    display: block;
}

/* hero carousel */
.carousel-item {
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    z-index: 2;
    bottom: 30%;
    text-align: left;
    padding: 0 15%;
}

.carousel-caption h1 {
    font-size: 3.8rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
    font-size: 1.3rem;
    font-weight: 300;
}

/* sections */
section {
    padding: 80px 0;
    overflow: hidden;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 10px;
}

.service-card,
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.service-card:hover,
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--gold);
}

.service-card i,
.feature-card i {
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.process-step {
    position: relative;
    text-align: center;
}

.process-step .step-num {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
}

.process-line {
    height: 3px;
    background: var(--gold);
    width: 80%;
    margin: 0 auto;
    opacity: 0.3;
}

.testimonial-card {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    border-left: 6px solid var(--gold);
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.gallery-item img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-item: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%;
    }
}

/* gallery */

.contact-info-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.contact-info-card i {
    color: var(--gold);
    width: 32px;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.2s;
}

footer a:hover {
    color: var(--gold);
}

.footer-logo {
    height: 45px;
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    left: 30px;
    background: #25d366;
}

.call-btn {
    right: 30px;
    background: var(--gold-gradient);
    color: #000;
}

@media (max-width: 768px) {
    .carousel-caption {
        bottom: 20%;
        padding: 0 5%;
    }

    .carousel-caption h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .top-bar .social-icons {
        display: none;
    }
}