/* Contact Section Styles */

.contact {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.contact .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact .section-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    background: linear-gradient(135deg, #4a9eff, #00d9ff);
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a2942;
    margin: 0 0 6px 0;
}

.contact-value {
    font-size: 12px;
    color: #4a9eff;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #00d9ff;
}

.contact-note {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2942;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9eff;
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

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

.submit-button {
    background: linear-gradient(135deg, #4a9eff, #00d9ff);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.4);
}

.submit-button i {
    font-size: 14px;
}

/* Map Section */
.map-section {
    margin-top: 60px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 70px 0;
    }
    
    .contact-container {
        padding: 0 20px;
    }
    
    .contact .section-title {
        font-size: 36px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .contact .section-title {
        font-size: 28px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}