/* Contact Page Styles - consistent with theme */
@import url('main.css');

.contact-hero {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.contact-section {
    padding: 4rem 2rem;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.header-line {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-phone {
    display: inline-block;
    margin-top: 0.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-phone:hover {
    background: rgba(255,255,255,0.1);
}

.contact-note {
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.map-embed iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-embed iframe {
        height: 360px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    .map-embed iframe {
        height: 300px;
    }
}
