/* Contact Page CSS - Light Theme */
.page-contact {
    background: #f8fafc;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: white;
}

.contact-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-hero .hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-hero .hero-image {
    margin-top: 40px;
}

.contact-hero .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.contact-hero .hero-image img:hover {
    transform: scale(1.02);
}

/* Breadcrumb */
.page-contact .breadcrumb-section {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.page-contact .breadcrumb-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-contact .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-contact .breadcrumb a {
    color: #4a5568;
    text-decoration: none;
}

.page-contact .breadcrumb a:hover {
    color: #667eea;
}

.page-contact .breadcrumb .active {
    color: #667eea;
    font-weight: 600;
}

/* Stats Section */
.page-contact .stats-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.page-contact .stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-contact .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.page-contact .stat-card {
    text-align: center;
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.page-contact .stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-contact .stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    margin-top: 5px;
}

/* Section Headers */
.page-contact .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-contact .section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-contact .section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
}

.page-contact .section-subtitle {
    font-size: 17px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Info Section */
.page-contact .info-section {
    padding: 80px 0;
    background: #f8fafc;
}

.page-contact .info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-contact .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-contact .info-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.page-contact .info-card.editorial-card {
    border: 2px solid rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #fff 0%, #f5f7ff 100%);
}

.page-contact .info-card.publisher-card {
    border: 2px solid rgba(245, 87, 108, 0.3);
    background: linear-gradient(135deg, #fff 0%, #fff5f6 100%);
}

.page-contact .info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.page-contact .info-icon.publisher {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.page-contact .info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.page-contact .card-badge {
    display: inline-block;
    font-size: 11px;
    background: rgba(102, 126, 234, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    color: #667eea;
    margin-left: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-contact .card-badge.legal {
    background: rgba(245, 87, 108, 0.15);
    color: #f5576c;
}

.page-contact .info-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.page-contact .info-card .chief-editor {
    color: #667eea;
    font-weight: 600;
}

.page-contact .info-card .address {
    margin-top: 12px;
}

.page-contact .info-card .hours {
    font-size: 13px;
    color: #94a3b8;
}

.page-contact .info-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.page-contact .info-card a:hover {
    text-decoration: underline;
}

.page-contact .action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
}

.page-contact .action-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.page-contact .action-link.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c45 100%);
}

/* Form Section */
.page-contact .form-section {
    padding: 80px 0;
    background: white;
}

.page-contact .form-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-contact .form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f8fafc;
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid #e2e8f0;
}

.page-contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.page-contact .form-group {
    margin-bottom: 20px;
}

.page-contact .form-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.page-contact .form-label .required {
    color: #ef4444;
    margin-left: 4px;
}

.page-contact .form-input,
.page-contact .form-select,
.page-contact .form-textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a202c;
    background: white;
    transition: all 0.3s ease;
}

.page-contact .form-input:focus,
.page-contact .form-select:focus,
.page-contact .form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.page-contact .form-textarea {
    min-height: 150px;
    resize: vertical;
}

.page-contact .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23667eea' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

.page-contact .submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-contact .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.page-contact .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.page-contact .form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.page-contact .form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
    display: block;
}

.page-contact .form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
    display: block;
}

/* Map Section */
.page-contact .map-section {
    padding: 80px 0;
    background: #f8fafc;
}

.page-contact .map-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-contact .map-container {
    max-width: 900px;
    margin: 50px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-contact .map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FAQ Section */
.page-contact .faq-section {
    padding: 80px 0;
    background: white;
}

.page-contact .faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-contact .faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.page-contact .faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.page-contact .faq-item:hover {
    border-color: #667eea;
}

.page-contact .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.page-contact .faq-question:hover {
    background: #eef0ff;
}

.page-contact .faq-question.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.page-contact .faq-question h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.page-contact .faq-question.active h4 {
    color: white;
}

.page-contact .faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-contact .faq-question.active .faq-toggle {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg);
}

.page-contact .faq-toggle i {
    color: #667eea;
    font-size: 14px;
}

.page-contact .faq-question.active .faq-toggle i {
    color: white;
}

.page-contact .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.page-contact .faq-answer.active {
    max-height: 500px;
}

.page-contact .faq-answer-content {
    padding: 24px;
    border-top: 1px solid #e2e8f0;
    color: #4a5568;
    line-height: 1.8;
}

.page-contact .faq-answer-content p {
    margin: 0;
}

.page-contact .faq-answer-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.page-contact .faq-answer-content a:hover {
    text-decoration: underline;
}

/* Quick Links Section */
.page-contact .quick-links-section {
    padding: 60px 0;
    background: #f8fafc;
}

.page-contact .quick-links-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-contact .quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0;
}

.page-contact .quick-link-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-contact .quick-link-card:hover {
    border-color: #667eea;
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.1);
}

.page-contact .quick-link-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 20px;
}

.page-contact .quick-link-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.page-contact .quick-link-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Final CTA */
.page-contact .final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.page-contact .final-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-contact .final-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-contact .final-cta p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

main.page-contact .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #667eea;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

main.page-contact .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 70px 0 60px;
    }

    .page-contact .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-contact .form-row {
        grid-template-columns: 1fr;
    }

    .page-contact .form-container {
        padding: 30px 20px;
    }

    .page-contact .info-card h3 {
        font-size: 18px;
    }

    .page-contact .card-badge {
        display: block;
        margin: 8px auto 0;
    }
}