:root {
    --primary-color: #2A5D34;
    --secondary-color: #7AB730;
    --accent-color: #FFC845;
}

.contact-hero {
    padding: 8rem 0 4rem;
    background-color: #2A5D34;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.form-wrapper {
    background: white;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.map-section {
    border-top: 3px solid var(--primary-color);
}

.hours-card {
    background: white;
    border: 2px solid var(--primary-color);
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 2rem;
    }
    
    .form-wrapper {
        margin-top: 0;
    }
    
    .contact-card {
        margin-bottom: 2rem;
    }
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(42,93,52,0.25);
}