/* Contact Page Styles */
.contact-hero {
    padding: 80px 0 60px;
    text-align: center;
}

.contact-title {
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
}

.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 166, 81, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-info-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-hours {
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-hours h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-hours p {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.contact-form-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-form-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.contact-form-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    transition: border-color 0.3s ease;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a651;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #00884B;
    color: white;
    border: 2px solid #00BA67;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #f2f2f2;
    color: #00884B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* start override css style CF7 */
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output {
    border: none;
    color: #dc3545;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    color: #46b450
}

/* end override css style CF7 */

/* Responsive - mobile/tablet */
@media (max-width: 768px) {
    .contact-title {
        font-size: 36px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-form-card {
        padding: 25px;
    }

    .contact-grid {
        grid-template-columns: unset;
    }

    .contact-section {
        padding-top: 20px;
    }

    .contact-hero {
        padding-bottom: 20px
    }
}