/* Contact Page Styles */
.contact_section {
    padding: 80px 0;
    background: #fafafa;
}

.contact_section .cntnt {
    max-width: 900px;
    margin: 0 auto;
}

.contact_section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #192125;
}

.contact_section > .contain > .cntnt > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

/* Contact Info */
.contact_info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
    gap: 40px;
}

.contact_method {
    flex: 1;
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact_method h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #192125;
}

.phone_numbers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone_item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.phone_item a,
.whatsapp_number a {
    color: #00B7E2;
    text-decoration: none;
    font-weight: 500;
}

.phone_item a:hover,
.whatsapp_number a:hover {
    text-decoration: underline;
}

.whatsapp_number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
}

.whatsapp_number i {
    font-size: 24px;
    color: #25D366;
}

/* Contact Form */
.contact_form_wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact_form_wrapper h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #192125;
}

.contact_form {
    max-width: 600px;
    margin: 0 auto;
}

.form_group {
    margin-bottom: 25px;
}

.form_group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #192125;
    font-size: 16px;
}

.form_group input,
.form_group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form_group input:focus,
.form_group textarea:focus {
    outline: none;
    border-color: #00B7E2;
}

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

.contact_form button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto 0;
    padding: 15px 40px;
    font-size: 16px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 16px;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact_info {
        flex-direction: column;
    }

    .contact_section h2 {
        font-size: 28px;
    }

    .contact_form_wrapper {
        padding: 25px 20px;
    }

    .contact_method {
        padding: 20px;
    }
}
