* {
    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;
} */

.bg-custom-gradient {
    background: linear-gradient(
        135deg,
        var(--charcoal) 0%,
        var(--soft-gray) 100%
    );
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(74, 74, 74, 0.3), rgba(74, 74, 74, 0.3));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--cream);
}

.btn-luxury {
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-luxury:hover {
    background: var(--dark-gold);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.section-padding {
    padding: 50px 0;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: var(--charcoal);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-section {
    background: var(--cream);
}

.service-card {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.service-title {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.about-section {
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 500px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    position: relative;
}

.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);
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--gold);
    margin-right: 15px;
    width: 20px;
}

.copyright {
    border-top: 1px solid #888;
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    color: #ccc;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-content {
        flex-direction: column;
    }
    .about-image {
        height: 300px;
    }
}
