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

/* Color Variables */
:root {
    --sage-green: #7a8471;
    --sage-green-light: #8f9584;
    --sage-green-pale: #f5f6f4;
    --maroon: #8b4a4a;
    --maroon-light: #a05c5c;
    --maroon-pale: #f7f2f2;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #666;
    --border-light: #e5e5e5;
    --background-light: #f8f9fa;
}

/* Typography and Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(122, 132, 113, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--sage-green);
    letter-spacing: -0.5px;
}

.logo span {
    font-size: 14px;
    color: var(--maroon);
    font-weight: 500;
}

.contact-quick span {
    font-size: 18px;
    font-weight: 600;
    color: var(--maroon);
    letter-spacing: 0.5px;
}

/* Hero Banner */
.hero-banner {
    height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/bg1.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 20px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--sage-green-pale);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--sage-green);
    letter-spacing: -0.5px;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.info-grid > div {
    padding: 32px 0;
}

.info-grid h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--maroon);
    letter-spacing: -0.3px;
}

.address p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--sage-green-pale);
    font-size: 16px;
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row span:first-child {
    color: var(--text-secondary);
}

.hour-row span:last-child {
    font-weight: 600;
    color: var(--sage-green);
}

.contact-info p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-info strong {
    color: var(--maroon);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--maroon-pale);
}

.services-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--maroon);
    letter-spacing: -0.5px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.2s ease;
    border-left: 4px solid var(--sage-green-pale);
}

.service-item:hover {
    border-left-color: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 132, 113, 0.15);
}

.service-content {
    flex: 1;
    margin-right: 32px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--sage-green);
    letter-spacing: -0.3px;
}

.service-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-link {
    color: var(--maroon);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: var(--maroon-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 70px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .contact-quick span {
        font-size: 16px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .intro-section,
    .info-section,
    .services-section {
        padding: 60px 0;
    }
    
    .intro-content h2,
    .services-section h2 {
        font-size: 28px;
    }
    
    .intro-content p {
        font-size: 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .info-grid > div {
        padding: 24px 0;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
    }
    
    .service-content {
        margin-right: 0;
    }
    
    .service-link {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 400px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .intro-section,
    .info-section,
    .services-section {
        padding: 40px 0;
    }
    
    .intro-content h2,
    .services-section h2 {
        font-size: 24px;
    }
    
    .service-item {
        padding: 20px;
    }
}