/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: #2563eb;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.title-gradient {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.info-card:hover {
    transform: translateX(8px);
    border-color: #bfdbfe;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scale(1.05);
}

.info-icon i {
    font-size: 1.5rem;
    color: #2563eb;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon i {
    color: white;
}

.info-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.info-details p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Social Media Box */
.social-media-box {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.social-media-box h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.twitter {
    background: #1da1f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link.youtube {
    background: #ff0000;
    color: white;
}

.social-link.whatsapp {
    background: #25d366;
    color: white;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Form Side */
.form-container {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}

.form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.form-container p {
    color: #64748b;
    margin-bottom: 25px;
}

.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.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.form-group label i {
    margin-right: 6px;
    color: #2563eb;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #fafcff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    gap: 15px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Map Container */
.map-container {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}

.map-header {
    padding: 25px 30px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.map-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.map-header h3 i {
    color: #2563eb;
    margin-right: 10px;
}

.map-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.map-wrapper {
    width: 100%;
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.1) contrast(1.05);
    transition: filter 0.3s ease;
}

.map-wrapper iframe:hover {
    filter: grayscale(0) contrast(1);
}

.map-buttons {
    display: flex;
    gap: 20px;
    padding: 20px 30px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: white;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.map-btn:hover {
    background: #2563eb;
    color: white;
    gap: 12px;
    border-color: #2563eb;
}

/* Quick Contact Options */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 24px;
    border: 1px solid #eef2ff;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.quick-icon {
    width: 50px;
    height: 50px;
    background: #eef2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-icon i {
    font-size: 1.3rem;
    color: #2563eb;
}

.quick-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f172a;
}

.quick-content p {
    font-size: 0.8rem;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quick-contact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .map-buttons {
        flex-direction: column;
    }
    
    .map-btn {
        justify-content: center;
    }
    
    .quick-contact {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .social-links-contact {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}