/* Estilos adicionales para páginas específicas */

/* About Page Styles */
.about-hero,
.contact-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rounded-20 {
    border-radius: 20px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-coral);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-coral), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    color: var(--navy);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--sage);
    line-height: 1.8;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-photo {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-info {
    padding: 30px 25px;
}

.team-info h4 {
    color: var(--navy);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-coral);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.team-info p {
    color: var(--sage);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--mint);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary-coral);
    color: white;
    transform: translateY(-3px);
}

/* Comparison Cards */
.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-card.aniruddha {
    border-left: 5px solid var(--primary-coral);
}

.comparison-card.traditional {
    border-left: 5px solid #ccc;
}

.comparison-header {
    text-align: center;
    margin-bottom: 25px;
}

.comparison-header h3 {
    color: var(--navy);
    font-size: 1.3rem;
}

.comparison-header i {
    color: var(--primary-coral);
    margin-right: 8px;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list i {
    margin-right: 15px;
    font-size: 1.1rem;
}

.comparison-card.aniruddha .fas.fa-check {
    color: var(--sage);
}

.comparison-card.traditional .fas.fa-times {
    color: #dc3545;
}

/* Statistics Cards */
.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-coral);
    font-family: 'Amiri', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
    margin-top: 10px;
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-coral), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.contact-info-card h4 {
    color: var(--navy);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--sage);
    margin-bottom: 20px;
}

.contact-link {
    color: var(--primary-coral);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--sage);
    text-decoration: underline;
}

.contact-address {
    font-style: normal;
    color: var(--primary-coral);
    font-weight: 500;
    line-height: 1.6;
}

/* Enhanced Contact Form */
.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-coral), var(--sage), var(--mint));
    border-radius: 25px 25px 0 0;
}

.enhanced-contact-form .form-label {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.enhanced-contact-form .form-control,
.enhanced-contact-form select {
    border: 2px solid #e8ecef;
    border-radius: 12px;
    padding: 15px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.enhanced-contact-form .form-control:focus,
.enhanced-contact-form select:focus {
    border-color: var(--primary-coral);
    box-shadow: 0 0 0 0.25rem rgba(249, 180, 171, 0.15);
    background: white;
}

.enhanced-contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-note {
    font-size: 0.9rem;
    color: var(--sage);
    font-style: italic;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--sage);
}

.form-check-label a {
    color: var(--primary-coral);
}

/* Schedule and Social Media */
.schedule-list {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item.emergency {
    background: linear-gradient(135deg, var(--primary-coral), var(--sage));
    color: white;
    margin: 15px -30px -30px;
    padding: 20px 30px;
    border-radius: 0 0 15px 15px;
    border-bottom: none;
}

.schedule-day {
    font-weight: 600;
    color: var(--navy);
}

.schedule-time {
    color: var(--sage);
    font-weight: 500;
}

.schedule-item.emergency .schedule-day,
.schedule-item.emergency .schedule-time {
    color: white;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
}

.social-card.facebook {
    border-left-color: #1877f2;
}

.social-card.instagram {
    border-left-color: #e4405f;
}

.social-card.twitter {
    border-left-color: #1da1f2;
}

.social-card.linkedin {
    border-left-color: #0077b5;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.social-card i {
    font-size: 1.8rem;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.social-card.facebook i {
    color: #1877f2;
}

.social-card.instagram i {
    color: #e4405f;
}

.social-card.twitter i {
    color: #1da1f2;
}

.social-card.linkedin i {
    color: #0077b5;
}

.social-card div strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 2px;
}

.social-card div span {
    color: var(--sage);
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    z-index: 10;
}

.map-info h4 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.map-info p {
    color: var(--sage);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* FAQ Cards */
.faq-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.faq-card h5 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-card h5 i {
    color: var(--primary-coral);
}

.faq-card p {
    color: var(--sage);
    line-height: 1.7;
    margin: 0;
}

.faq-card a {
    color: var(--primary-coral);
}

/* Legal Pages Styles */
.legal-page {
    padding-top: 120px;
    min-height: 100vh;
}

.legal-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.legal-content h1 {
    color: var(--navy);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.legal-content h2 {
    color: var(--navy);
    margin: 40px 0 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--primary-coral);
    padding-bottom: 10px;
}

.legal-content h3 {
    color: var(--sage);
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.legal-content p {
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-coral);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    background: var(--mint);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--navy);
}

.contact-info-legal {
    background: var(--cream);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.contact-info-legal h3 {
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-info-legal p {
    margin-bottom: 10px;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 25px;
    }
    
    .value-card,
    .team-info {
        padding: 30px 20px;
    }
    
    .comparison-card {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .social-media-grid {
        grid-template-columns: 1fr;
    }
    
    .map-overlay {
        position: static;
        margin: 20px;
        max-width: none;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .value-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .team-photo {
        height: 200px;
    }
    
    .social-card {
        padding: 15px;
    }
    
    .social-card i {
        font-size: 1.5rem;
        margin-right: 12px;
    }
}