/* Contact page - Logo theme (Black, Red, Yellow) */
body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    color: var(--text-primary);
    min-height: 100vh;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* Hero section - Logo theme */
.contact-hero {
    background: linear-gradient(155deg, #0f0f0f 0%, #1a1a1a 40%, #262626 70%, #0f0f0f 100%);
    padding: 80px 24px 70px;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #c41e3a 30%, #eab308 50%, #c41e3a 70%, transparent 100%);
    z-index: 1;
}

.contact-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto;
}

/* Contact cards grid */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: #c41e3a;
}

.contact-card h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #c41e3a;
    margin-bottom: 12px;
}

.contact-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-card a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: #c41e3a;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 20px 50px;
    }

    .contact-cards {
        margin-top: -24px;
    }

    .contact-card {
        padding: 24px;
    }
}
