.navbar {
    background: var(--primary-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.contact-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.contact-content-section {
    padding: 5rem 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--light-cream);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.contact-info-text h3 {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.contact-form-section {
    background: var(--light-cream);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-form-section>p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(30, 77, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 77, 63, 0.3);
}

.quick-contact-section {
    background: var(--accent-yellow);
    padding: 4rem 0;
    text-align: center;
}

.quick-contact-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.quick-contact-section p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.quick-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.map-section {
    padding: 5rem 0;
    background: var(--light-cream);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: var(--light-cream);
    border-radius: 16px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.3;
}

.map-placeholder p {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
}

.business-hours-section {
    padding: 5rem 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    background: var(--light-cream);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.hours-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.hours-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hours-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0.5rem 0;
    font-weight: 600;
}

.hours-card .note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 640px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-info-section h2 {
        font-size: 2rem;
    }

    .contact-info-section p {
        font-size: 1rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-info-text h3 {
        font-size: 1.1rem;
    }

    .contact-info-text p {
        font-size: 1rem;
    }

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

    .contact-form-section h3 {
        font-size: 1.75rem;
    }

    .quick-contact-section h2 {
        font-size: 2rem;
    }

    .quick-contact-section p {
        font-size: 1rem;
    }

    .quick-contact-buttons {
        flex-direction: column;
    }

    .quick-contact-buttons .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .hours-card i {
        font-size: 2.5rem;
    }

    .hours-card h3 {
        font-size: 1.25rem;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-placeholder i {
        font-size: 3rem;
    }

    .map-placeholder p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .contact-hero {
        padding: 5rem 0 2.5rem;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
    }

    .contact-content-section {
        padding: 3rem 0;
    }

    .contact-info-section h2 {
        font-size: 1.75rem;
    }

    .contact-info-section p {
        font-size: 0.95rem;
    }

    .contact-info-card {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-info-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .contact-info-text h3 {
        font-size: 1rem;
    }

    .contact-info-text p {
        font-size: 0.95rem;
    }

    .contact-form-section {
        padding: 1.5rem 1rem;
    }

    .contact-form-section h3 {
        font-size: 1.5rem;
    }

    .contact-form-section>p {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.85rem;
        font-size: 0.95rem;
    }

    .form-submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .quick-contact-section {
        padding: 3rem 0;
    }

    .quick-contact-section h2 {
        font-size: 1.75rem;
    }

    .quick-contact-section p {
        font-size: 0.95rem;
    }

    .quick-contact-buttons .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .business-hours-section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .hours-card {
        padding: 1.5rem 1rem;
    }

    .hours-card i {
        font-size: 2rem;
    }

    .hours-card h3 {
        font-size: 1.15rem;
    }

    .hours-card p {
        font-size: 1rem;
    }

    .hours-card .note {
        font-size: 0.85rem;
    }

    .map-section {
        padding: 3rem 0;
    }

    .map-container {
        padding: 1rem;
    }

    .map-placeholder {
        height: 250px;
    }

    .map-placeholder i {
        font-size: 2.5rem;
    }

    .map-placeholder p {
        font-size: 1rem;
    }
}