.contact-header {
    background: linear-gradient(rgba(15, 61, 46, 0.85), rgba(43, 43, 43, 0.85)), 
                url('../images/contact.avif') center center/cover no-repeat;
    color: var(--mist-white);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--mist-white);
}

.contact-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(245, 247, 246, 0.9);
}

.contact-cta-btn {
    background: var(--muted-gold);
    color: var(--charcoal-grey) !important;
    border: 2px solid var(--muted-gold);
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 161, 77, 0.3);
    background: transparent;
    color: var(--muted-gold) !important;
}
.contact-section {
    padding: 80px 0;
    background: var(--mist-white);
}

.contact-info-item {
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--corporate-border);
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--corporate-shadow);
    border-color: var(--muted-gold);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--muted-gold);
    margin-bottom: 1.5rem;
}

.contact-info-item h4 {
    color: var(--charcoal-grey);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-text {
    color: var(--steel-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-text a {
    color: var(--deep-forest-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--muted-gold);
    text-decoration: underline;
}

.business-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--corporate-border);
}

.business-hours h5 {
    color: var(--charcoal-grey);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(43, 43, 43, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    color: var(--steel-grey);
}

.time {
    color: var(--charcoal-grey);
    font-weight: 500;
}

.contact-details {
    text-align: left;
    margin-bottom: 1.5rem;
}

.detail-group {
    margin-bottom: 1.2rem;
}

.detail-group strong {
    display: block;
    color: var(--charcoal-grey);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    color: var(--steel-grey);
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--muted-gold);
    width: 16px;
}

.social-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--corporate-border);
}

.social-contact a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mist-white);
    color: var(--charcoal-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--corporate-border);
}

.social-contact a:hover {
    background: var(--muted-gold);
    color: var(--pure-white);
    transform: translateY(-3px);
    border-color: var(--muted-gold);
}

.emergency-support {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--corporate-border);
}

.emergency-support h5 {
    color: var(--charcoal-grey);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.emergency-support .contact-text {
    color: var(--deep-forest-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.small-text {
    font-size: 0.85rem;
    color: var(--steel-grey);
    margin-top: 0.5rem;
}

.response-time {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--corporate-border);
}

.response-time h5 {
    color: var(--charcoal-grey);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}


.contact-form-wrapper {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--corporate-shadow);
    border: 1px solid var(--corporate-border);
}

.contact-form-wrapper h3 {
    color: var(--charcoal-grey);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-subtitle {
    color: var(--steel-grey);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-label {
    color: var(--charcoal-grey);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.required-field::after {
    content: "*";
    color: #dc3545;
    margin-left: 4px;
}

.form-control,
.form-select {
    border: 1px solid var(--corporate-border);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--charcoal-grey);
    background: var(--pure-white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--muted-gold);
    box-shadow: 0 0 0 0.25rem rgba(194, 161, 77, 0.25);
    outline: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.success-message {
    background: #d1e7dd;
    color: #0f5132;
    padding: 1rem;
    border-radius: 6px;
    display: none;
    align-items: center;
    margin-top: 1rem;
}

.success-message i {
    font-size: 1.2rem;
    color: #0f5132;
    margin-right: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--muted-gold);
    border-color: var(--muted-gold);
}

.form-check-label {
    color: var(--steel-grey);
    font-size: 0.9rem;
}

.map-container {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--corporate-shadow);
    border: 1px solid var(--corporate-border);
    height: 100%;
}

.map-container h3 {
    color: var(--charcoal-grey);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.map-frame {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--corporate-border);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-details {
    margin-top: 1.5rem;
}

.location-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: var(--mist-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-gold);
    flex-shrink: 0;
    border: 1px solid var(--corporate-border);
}

.location-item h5 {
    color: var(--charcoal-grey);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.location-item p {
    color: var(--steel-grey);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.faq-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--corporate-border);
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: var(--pure-white);
    border: 1px solid var(--corporate-border);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--muted-gold);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    color: var(--charcoal-grey);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--mist-white);
}

.faq-question i {
    color: var(--muted-gold);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--steel-grey);
    margin: 0;
    line-height: 1.6;
}

#printPageBtn {
    margin-top: 1rem;
    background: var(--deep-forest-green);
    color: var(--pure-white);
    border: 2px solid var(--deep-forest-green);
}

#printPageBtn:hover {
    background: transparent;
    color: var(--deep-forest-green);
}

.btn-submit {
    background: var(--deep-forest-green);
    color: var(--pure-white);
    border: 2px solid var(--deep-forest-green);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: transparent;
    color: var(--deep-forest-green);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: var(--steel-grey);
    border-color: var(--steel-grey);
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .contact-header {
        padding: 100px 0 60px;
    }
    
    .contact-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-form-wrapper,
    .map-container {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1.5rem;
    }
    
    .hours-list li {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .day, .time {
        width: 100%;
    }
    
    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .contact-details {
        text-align: center;
    }
    
    .detail-item {
        justify-content: center;
    }
    
    .social-contact a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-cta-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
}