/* FILE: assets/css/contact.css */

/* Contact Header */
.contact-header {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #1a3a5c;
    margin-bottom: 1rem;
    text-align: center;
}

.header-intro {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Quick Contact */
.quick-contact {
    padding: 3rem 0;
    background: #ffffff;
}

.contact-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.contact-action-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d14e23 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.contact-action-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1fb855 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-action-btn.whatsapp:hover {
    background: linear-gradient(135deg, #1fb855 0%, #1a9d4a 100%);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.trust-line {
    text-align: center;
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 1.85rem;
    color: #1a3a5c;
    margin-bottom: 0.75rem;
}

.form-intro {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-sidebar h3 {
    font-size: 1.5rem;
    color: #1a3a5c;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.6;
}

.benefits-list svg {
    color: #ff6b35;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.sidebar-cta {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.sidebar-cta p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.sidebar-phone {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-phone:hover {
    color: #e55a2b;
}

/* Office Addresses */
.office-addresses {
    padding: 4rem 0;
    background: #ffffff;
}

.office-addresses h2 {
    font-size: 2rem;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 3rem;
}

.address-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.address-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.address-icon {
    margin-bottom: 1.25rem;
}

.address-icon svg {
    color: #ff6b35;
}

.address-card h3 {
    font-size: 1.35rem;
    color: #1a3a5c;
    margin-bottom: 1rem;
}

.address-card address {
    font-style: normal;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.address-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.address-contact strong {
    color: #1a3a5c;
    font-weight: 700;
}

.address-contact a {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-contact a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-section h2 {
    font-size: 2rem;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 2rem;
}

.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%;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2438 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 3rem 0 2rem;
    }
    
    .contact-header h1 {
        font-size: 1.85rem;
    }
    
    .header-intro {
        font-size: 1rem;
    }
    
    .quick-contact {
        padding: 2.5rem 0;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-action-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .contact-form-section,
    .office-addresses,
    .map-section,
    .final-cta {
        padding: 3rem 0;
    }
    
    .form-wrapper,
    .contact-info-sidebar {
        padding: 2rem 1.5rem;
    }
    
    .address-card {
        padding: 1.75rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .contact-header h1 {
        font-size: 1.6rem;
    }
    
    .form-wrapper h2,
    .contact-info-sidebar h3,
    .office-addresses h2,
    .map-section h2,
    .final-cta h2 {
        font-size: 1.5rem;
    }
    
    .form-wrapper,
    .contact-info-sidebar {
        padding: 1.75rem 1.25rem;
    }
    
    .contact-action-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .sidebar-phone {
        font-size: 1.25rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}