.contact-section {
    background: #f8f9fa;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0a7954;
}

.contact-header p {
    font-size: 18px;
    color: #555;
}

.underline {
    width: 60px;
    height: 4px;
    background: #0dd39f;
    margin: 10px auto 0;
    border-radius: 4px;
}

.contact-container {
    max-width: 1600px;
    margin: 0 auto; 
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.contact-left, .contact-right {
    flex: 1;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-box i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.info-box.phone {
    background: #0066ff;
}

.info-box.email {
    background: #00b05a;
}

.info-box.chat {
    background: #8b00d1;
}

.info-box.office,
.info-box.hours {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.contact-form {
    flex: 2;
    min-width: 320px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.contact-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    padding: 20px 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contact-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.contact-form h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.contact-form p {
    font-size: 14px;
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
    margin-top: 15px;
}

.contact-form button {
    background: #009e6d;
    color: white;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #007a52;
}
.contact-box i {
    font-size: 22px;
    margin-right: 10px;
    color: #007b7f;
}

form {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

form h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #007b7f;
}

form input, form select, form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: inherit;
}

form textarea {
    resize: vertical;
    height: 120px;
}

form button {
    display: block;
    width: 100%;
    padding: 14px;
    background: #007b7f;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #005f61;
}
/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }


}
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    form, .contact-box {
        padding: 20px;
    }

    form button {
        font-size: 16px;
    }
}