/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(14, 119, 98, 0.1) 0%, rgba(2, 36, 29, 0.1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(14, 119, 98, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 119, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FDCB5A 0%, #f4c430 100%);
    color: #01100D;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(253, 203, 90, 0.3);
}

.contact-hero .hero-title {
    font-family: 'Cardo', serif;
    font-size: 3.5rem;
    color: #FDCB5A;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0E7762 0%, #02241D 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(253, 203, 90, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(253, 203, 90, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.contact-header h2 {
    font-family: 'Cardo', serif;
    color: #FDCB5A;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(14, 119, 98, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FDCB5A 0%, #f4c430 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(253, 203, 90, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
}

.email-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.phone-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.location-icon {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-content h3 {
    color: #FDCB5A;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.card-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.whatsapp-link svg {
    flex-shrink: 0;
}


.contact-faq {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-family: 'Cardo', serif;
    color: #FDCB5A;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
}

.contact-faq .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(14, 119, 98, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-faq .faq-item:hover {
    border-color: rgba(14, 119, 98, 0.4);
    box-shadow: 0 10px 30px rgba(14, 119, 98, 0.1);
}

.contact-faq .faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-faq .faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-faq .faq-question h3 {
    color: #FDCB5A;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.contact-faq .faq-icon {
    color: #FDCB5A;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.contact-faq .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.contact-faq .faq-answer {
    padding: 0 25px 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    display: none;
}

.contact-faq .faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .contact-hero .hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .contact-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .card-content p {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .card-note {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .whatsapp-link {
        padding: 8px 14px;
        font-size: 0.85rem;
        margin-top: 10px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-hero .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 15px;
    }
    
    .contact-hero .hero-description {
        font-size: 0.95rem;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .contact-header h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .contact-header p {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    .contact-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .contact-card {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .card-content p {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .card-note {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .whatsapp-link {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-top: 8px;
    }
    
    .whatsapp-link svg {
        width: 16px;
        height: 16px;
    }
    
    .contact-faq {
        padding: 40px 0;
    }
    
    .faq-header {
        padding: 0 15px;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-header p {
        font-size: 0.9rem;
    }
    
    .faq-grid {
        padding: 0 15px;
    }
    
    .contact-faq .faq-question {
        padding: 20px 15px;
    }
    
    .contact-faq .faq-question h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .contact-faq .faq-answer {
        padding: 0 15px 20px;
        font-size: 0.9rem;
    }
}
