/* ============================================
   Contact Page Specific Styles
   ============================================ */

/* Hero Section con fondo animado */
.sherlock-contact-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Textura animada de fondo */
.sherlock-contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 30px 30px;
    animation: textureMove 20s linear infinite;
    opacity: 0.6;
}

/* Partículas flotantes */
.sherlock-contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 75px 75px, 120px 120px;
    animation: particlesFloat 25s linear infinite reverse;
    opacity: 0.4;
}

@keyframes textureMove {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 50px 50px, 80px 80px, 30px 30px;
    }
}

@keyframes particlesFloat {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, 150px 150px, 75px 75px, 120px 120px;
    }
}

/* Contenido del hero */
.sherlock-contact-hero .container {
    position: relative;
    z-index: 2;
}

.sherlock-contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.sherlock-contact-hero .lead {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Efectos de ondas para el fondo */
.wave-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 20%, transparent 21%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 20%, transparent 21%);
    background-size: 200px 200px;
    animation: waveMove 15s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes waveMove {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.1;
    }
}

/* Sección de información de contacto */
.contact-info {
    background: #f8f9fa;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    opacity: 0;
    transform: translateY(30px);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.contact-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.contact-card h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.contact-btn {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}



/* Sección FAQ */
.faq-section {
    background: white;
}

.accordion-item {
    border: none;
    border-radius: 15px !important;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.accordion-button {
    background: #f8f9fa;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sherlock-contact-hero {
        padding: 60px 0 40px;
        min-height: 50vh;
    }
    
    .sherlock-contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .sherlock-contact-hero .lead {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    

    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sherlock-contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    

} 