:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #C9A96E;
    --dark-bg: #0F0F0F;
    --light-bg: #F8F5F0;
    --text-dark: #2C2C2C;
    --text-light: #777777;
    --accent-color: #8B0000;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.cursive-font {
    font-family: 'Dancing Script', cursive;
}

/* Header & Navigation */
.navbar {
    background-color: rgba(15, 15, 15, 0.95);
    padding: 20px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar-scrolled {
    padding: 12px 0;
    background-color: rgba(15, 15, 15, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-gold) !important;
    letter-spacing: 1px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

    .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--primary-gold);
        left: 0;
        bottom: 0;
        transition: width 0.3s;
    }

    .nav-link:hover:after, .nav-link.active:after {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--primary-gold) !important;
    }

.navbar-toggler {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Dancing Script', cursive;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.9);
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-gold:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
        transition: all 0.5s ease;
        z-index: -1;
    }

    .btn-gold:hover:before {
        left: 0;
    }

    .btn-gold:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    }

.btn-outline-gold {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    padding: 13px 40px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-outline-gold:hover {
        background: var(--primary-gold);
        color: var(--dark-bg);
        transform: translateY(-5px);
    }

/* Section Styling */
.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

    .section-title:after {
        content: '';
        position: absolute;
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    margin-bottom: 30px;
}

    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.service-img {
    height: 250px;
    overflow: hidden;
}

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-icon {
    font-size: 2.5rem;
    display: inline-block;
    color: var(--primary-gold);
    margin-bottom: 20px;
}
.service-title {
    font-size: 1.8rem;
    display: contents;
    margin-bottom: 15px;
    margin-left: 15px;
    color: var(--text-dark);
    line-height: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: white;
}

    .gallery-section .section-title {
        color: white;
    }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 350px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.9)), url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') no-repeat center center/cover;
    padding: 100px 0;
    color: white;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-text {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
}

    .testimonial-card:before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 30px;
        font-size: 5rem;
        color: var(--primary-gold);
        opacity: 0.2;
        font-family: 'Playfair Display', serif;
    }

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    margin-right: 20px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.5rem;
}

.form-control {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

    .form-control:focus {
        border-color: var(--primary-gold);
        box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    }

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 80px 0 30px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgb(203 170 100);
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

    .social-icons a:hover {
        background: var(--primary-gold);
        transform: translateY(-5px);
    }

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

    .footer-heading:after {
        content: '';
        position: absolute;
        width: 50px;
        height: 2px;
        background: var(--primary-gold);
        bottom: 0;
        left: 0;
    }

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .footer-links a:hover {
        color: var(--primary-gold);
        padding-left: 5px;
    }

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Swiper Customization */
.swiper {
    width: 100%;
    padding: 50px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-gold);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .gallery-item {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

.page-header {
    height: 35vh;
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.8)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    margin-top: 76px;
}
.page-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 30px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-gold);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.9)), url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.9);
}

.btn-outline-gold {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    padding: 13px 40px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-outline-gold:hover {
        background: var(--primary-gold);
        color: var(--dark-bg);
        transform: translateY(-5px);
    }