/* Contact Page Styles - Light Theme */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--bg-page);
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)),
        url('../../images/banner.png') center center / cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 2px;
    margin-bottom: 32px;
    font-weight: 600;
    border-left: 3px solid var(--primary);
    color: var(--primary-light);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.page-hero h1 span:last-child {
    display: block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

.hero-label.revealed,
.page-hero h1.revealed,
.hero-subtitle.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section */
.contact-section {
    background: var(--bg-surface);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-title);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 32px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(59, 130, 246, 0.03);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-text h3 {
    color: var(--text-title);
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.info-text p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    width: 90%;
    margin: auto;
}

.contact-cta p {
    color: var(--text-body);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
}

.cta-btn.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

/* Map Section */
.map-section {
    height: 600px;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease;
    padding: 0;
}

.map-section.revealed {
    opacity: 1;
}

section iframe {
    filter: none;
}

.map-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(59, 130, 246, 0.03);
    pointer-events: none;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 70px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-background {
        background:
            linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)),
            url('../../images/banner-mobile.png') center center / cover no-repeat;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .info-cards { grid-template-columns: 1fr; }
}
