/* CSS Variables - Color Palette */
:root {
    --amber-earth: #e68600ff;
    --muted-teal: #739e82ff;
    --dark-spruce: #2c5530ff;
    --ghost-white: #fffaffff;
    --mauve-bark: #6b4b3eff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-spruce);
    background-color: var(--ghost-white);
}

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

/* Header */
header {
    background-color: var(--dark-spruce);
    color: var(--ghost-white);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ghost-white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--amber-earth);
}

.phone-icon {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--muted-teal) 0%, var(--dark-spruce) 100%);
    color: var(--ghost-white);
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-credentials {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--amber-earth);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    background-color: var(--amber-earth);
    color: var(--ghost-white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #cc7700;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

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

.services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--dark-spruce);
}

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--amber-earth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--dark-spruce);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--mauve-bark);
    line-height: 1.6;
}

/* Service Area Section */
.service-area {
    background-color: var(--muted-teal);
    color: var(--ghost-white);
    padding: 3rem 0;
    text-align: center;
}

.service-area h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-area p {
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--ghost-white);
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-spruce);
}

.contact-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--mauve-bark);
}

/* Footer */
footer {
    background-color: var(--mauve-bark);
    color: var(--ghost-white);
    padding: 2rem 0;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.4rem;
    }

    .phone-link {
        font-size: 1.1rem;
    }

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

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

    .hero-credentials {
        font-size: 1rem;
    }

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

    .cta-button {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 2.5rem 0;
    }

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

    .services h2,
    .contact h2 {
        font-size: 1.8rem;
    }
}
