/* Contact Us Page Styles */

.contact-section {
    background: #D5EBE4;
    padding: 60px 20px;
    min-height: 70vh;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 15px;
}

.contact-title .highlight {
    color: #28732C;
}

.contact-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert i {
    font-size: 18px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #28732C;
    box-shadow: 0 0 0 3px rgba(40, 115, 44, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #28732C;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #1f5c24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 115, 44, 0.3);
}

/* Contact Information */
.contact-info-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #D5EBE4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: #28732C;
}

.info-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: #28732C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #1f5c24;
    text-decoration: underline;
}

.social-media {
    margin-top: 10px;
}

.social-media h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.social-links-contact {
    display: flex;
    gap: 12px;
}

.social-link-contact {
    width: 40px;
    height: 40px;
    background: #D5EBE4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28732C;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-contact:hover {
    background: #28732C;
    color: white;
    transform: translateY(-3px);
}

.social-link-contact i {
    font-size: 16px;
}

/* Map Section */
.map-section {
    margin-top: 50px;
}

.map-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-title,
    .info-title {
        font-size: 20px;
    }
}