/* ============================================
   Contact page-specific styles
   ============================================ */

.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    color: #fff;
}

.contact-content h1 .highlight {
    color: #60a5fa;
    -webkit-text-fill-color: #60a5fa;
}

.contact-content .subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

/* Contact methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 420px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(96, 165, 250, 0.12);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(96, 165, 250, 0.08);
    border-color: rgba(96, 165, 250, 0.25);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: #60a5fa;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-details { text-align: left; }

.contact-details h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.15rem;
}

.contact-details span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

/* Back link */
.back-link { margin-top: 3rem; }

.back-link a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: var(--transition);
}

.back-link a:hover { color: #60a5fa; }

/* Responsive — contact */
@media (max-width: 768px) {
    .contact-content { padding: 0 1rem; }
    .contact-method { padding: 1rem 1.25rem; }
}
