:root {
    --bg-color: #0d0d0d;
    --card-bg: #1a1a1a;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --gold: #d4af37;
    --gold-hover: #f1c40f;
    --container-width: 1000px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--gold);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
}

.owner-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.professional-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

.appointment-notice {
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: var(--gold);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: #121212;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.review-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.stars {
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: right;
}

.secondary-button {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--gold);
    color: #000;
}

.center-content {
    text-align: center;
}

/* Location Section */
.location {
    padding: 80px 0;
}

.location-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.address-info {
    flex: 1;
    min-width: 300px;
}

.address {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.address i {
    margin-right: 10px;
}

.entry-box {
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px dashed var(--gold);
    padding: 20px;
    border-radius: 5px;
}

.entry-instructions {
    color: var(--text-primary);
}

.appointment-info {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 700;
}

.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .owner-name {
        font-size: 2.2rem;
    }
    
    .professional-title {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }

    .location-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .address-info {
        min-width: 100%;
    }
    
    .map-container {
        width: 100%;
    }
}
