/* Contact Page Styles - Solo elementos específicos de Contact */

/* Contact Banner */
.contact-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d3a 100%);
    color: var(--light-color);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(176, 136, 64, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(110, 37, 55, 0.1) 0%, transparent 50%);
}

.contact-banner .container {
    position: relative;
    z-index: 1;
}

.contact-banner h1 {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.contact-banner p {
    font-size: 20px;
    color: rgba(245, 243, 235, 0.9);
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.contact-info > p {
    margin-bottom: 40px;
    color: #666;
    line-height: 1.7;
    font-size: 18px;
    font-weight: 300;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-item {
    margin-bottom: 35px;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(13, 51, 39, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-item h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-links {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(13, 51, 39, 0.08);
}

.social-links h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d3a 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 51, 39, 0.2);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #7e2a3e 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(110, 37, 55, 0.3);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    color: var(--light-color);
}

/* Contact Form */
.contact-form-container {
    background-color: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(13, 51, 39, 0.08);
}

.contact-form-container h2 {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

#contact-form .form-group {
    margin-bottom: 25px;
}

#contact-form .form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

#contact-form .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

#contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#contact-form .form-control {
    width: 100%;
    padding: 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: var(--body-font);
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

#contact-form .form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(176, 136, 64, 0.1);
}

#contact-form .form-control:hover {
    border-color: var(--secondary-color);
    background-color: white;
}

#contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

#contact-form .checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 15px 0;
}

#contact-form .checkbox-container input {
    margin-right: 12px;
    transform: scale(1.2);
}

#contact-form .form-footer {
    margin-top: 35px;
}

#contact-form .btn-primary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 100px 0;
}

.faq-section h2 {
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item {
    background-color: var(--light-bg);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(13, 51, 39, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(176, 136, 64, 0.2);
}

.faq-item h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 500;
    border: 2px solid;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        padding: 60px 0;
    }
    
    .contact-banner h1 {
        font-size: 36px;
    }
    
    .contact-banner p {
        font-size: 18px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-form-container h2 {
        font-size: 26px;
    }
    
    #contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .faq-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        padding: 40px 0;
    }
    
    .contact-banner h1 {
        font-size: 28px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .social-links {
        padding: 20px;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
}