:root {
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --charcoal: #4a4a4a;
    --cream: #f8f6f0;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --soft-gray: #6b6b6b;
    --accent-blue: #2c5f89;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    padding: 120px 0px 100px 0px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    overflow-x: hidden;
}

.navbar {
    background: rgba(74, 74, 74, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold) !important;
    text-decoration: none;
}

.logo-image {
    max-width: "300px";
    height: "auto";
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

.dropdown-menu {
    background: var(--soft-gray);
    border: 1px solid var(--gold);
    border-radius: 0;
}

.dropdown-item {
    color: var(--white) !important;
    font-weight: 400;
    padding: 12px 20px;
}

.dropdown-item:hover {
    background: var(--gold);
    color: var(--charcoal) !important;
}

.hero-services {
    height: 30vh;
    background: linear-gradient(
        135deg,
        var(--charcoal) 0%,
        var(--soft-gray) 100%
    );
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23d4af37" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23d4af37" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23d4af37" opacity="0.1"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-category {
    margin-bottom: 120px;
}

.category-header {
    text-align: center;
    margin-bottom: 80px;
}

.category-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 50px 40px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.service-title {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--charcoal);
    text-align: center;
}

.service-description {
    text-align: center;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.buyers-section {
    background: var(--cream);
}

.sellers-section {
    background: var(--white);
}

.premium-services {
    background: linear-gradient(
        135deg,
        var(--accent-blue) 0%,
        var(--charcoal) 100%
    );
    color: var(--white);
}

.premium-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.premium-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.premium-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.premium-title {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section {
    background: var(--gold);
    color: var(--charcoal);
    text-align: center;
}

.btn-luxury {
    background: var(--charcoal);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-size: 14px;
}

.btn-luxury:hover {
    background: var(--soft-gray);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-gold {
    background: var(--gold);
    color: var(--charcoal);
    border: 2px solid var(--gold);
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.stats-section {
    background: var(--soft-gray);
    color: var(--white);
}

.stats-banner {
    background: var(--soft-gray);
    color: var(--white);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.footer {
    background: var(--soft-gray);
    color: var(--white);
    padding: 0px 0 40px;
}

.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-tagline {
    color: #ccc;
    font-style: italic;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .category-title {
        font-size: 2rem;
    }
    .service-card {
        padding: 40px 30px;
    }

    .stats-section {
        background: var(--soft-gray);
        color: var(--white);
    }

    .stat-item {
        text-align: center;
        padding: 0px 20px;
    }

    .stat-number {
        font-family: "Playfair Display", serif;
        font-size: 3.5rem;
        font-weight: 600;
        color: var(--gold);
        display: block;
    }

    .stat-label {
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-top: 10px;
    }

    .footer {
        background: var(--soft-gray);
        color: var(--white);
        padding: 0px 0 40px;
    }

    .footer-logo {
        font-family: "Playfair Display", serif;
        font-size: 2rem;
        color: var(--gold);
        margin-bottom: 20px;
    }

    .footer-tagline {
        color: #ccc;
        font-style: italic;
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 25px;
        color: var(--gold);
    }

    .footer-link {
        color: #ccc;
        text-decoration: none;
        display: block;
        margin-bottom: 12px;
        transition: color 0.3s ease;
    }

    .footer-link:hover {
        color: var(--gold);
    }
}
