/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-green: #2d5016;
    --leaf-green: #4a7c2c;
    --light-green: #7fa84f;
    --cream: #f8f6f1;
    --dark-brown: #3d2817;
    --medium-brown: #6b4423;
    --light-gray: #e8e6e1;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: var(--cream);
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--forest-green);
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo h1 {
    font-size: 2rem;
    margin: 0;
}

.contact-info-header {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.phone-link, .email-link {
    color: var(--medium-brown);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.phone-link:hover, .email-link:hover {
    color: var(--leaf-green);
}

.cta-button-header {
    background-color: var(--leaf-green);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 10px var(--shadow);
}

.cta-button-header:hover {
    background-color: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--shadow);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--leaf-green) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 20;
    padding: 3rem 0;
}

.hero h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--forest-green);
    padding: 1.2rem 3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: var(--cream);
}

.service-area {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: var(--cream);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--light-green);
}

.service-card h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--medium-brown);
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    background-color: var(--leaf-green);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature h4 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--medium-brown);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: var(--medium-brown);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 0;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-method h4 {
    color: var(--forest-green);
    margin-bottom: 0.3rem;
}

.contact-name {
    color: var(--medium-brown);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-link {
    color: var(--leaf-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--forest-green);
}

.contact-method p {
    color: var(--medium-brown);
    font-size: 1.1rem;
}

.emergency-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.emergency-notice h4 {
    color: #d84315;
    margin-bottom: 0.5rem;
}

.emergency-notice p {
    color: var(--dark-brown);
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background-color: var(--cream);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--leaf-green);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.form-note {
    text-align: center;
    color: var(--medium-brown);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--forest-green);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-info p {
    margin: 0.3rem 0;
    opacity: 0.9;
}

.footer-tagline {
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .logo {
        width: 100%;
    }

    .contact-info-header {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }

    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}
