/* ============================================
   CONTACT PAGE STYLES
============================================ */

/* ============================================
   HERO
============================================ */
.contact-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.contact-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.contact-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.2) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation: orb-drift 20s ease-in-out infinite;
}

.contact-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    bottom: 10%;
    right: -5%;
    animation: orb-drift 24s ease-in-out infinite reverse;
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25px, -25px); }
}

.contact-hero-content {
    text-align: center;
    z-index: 1;
}

.contact-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.eyebrow-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: white;
}

.contact-hero-title .title-accent {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CONTACT CTA
============================================ */
.contact-cta {
    background: var(--color-bg);
    padding: 0 5rem 6rem;
}

.cta-content {
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-message {
    margin-bottom: 3rem;
}

.cta-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.cta-subtext {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--color-text);
    color: white;
    border-radius: 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-button:hover {
    background: var(--gradient-main);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(159, 71, 219, 0.3);
}

.cta-email {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
}

/* ============================================
   LOCATIONS
============================================ */
.contact-locations {
    background: #0f0f0f;
    padding: 0 5rem 6rem;
}

.contact-locations .platform-header-bar {
    border-color: rgba(255, 255, 255, 0.15);
}

.contact-locations .section-tag,
.contact-locations .section-divider,
.contact-locations .section-name,
.contact-locations .header-progress {
    color: rgba(255, 255, 255, 0.5);
}

.locations-content {
    padding-top: 4rem;
}

.locations-header {
    margin-bottom: 3rem;
}

.locations-label {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.location-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.location-marker {
    margin-bottom: 1.5rem;
    width: 32px;
    height: 32px;
}

.location-marker svg {
    width: 32px;
    height: 32px;
}

.location-city {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.location-type {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .contact-cta,
    .contact-locations {
        padding: 0 3rem 5rem;
    }

    .contact-hero {
        min-height: 60vh;
    }

    .contact-hero-orb-1 {
        width: 400px;
        height: 400px;
    }

    .contact-hero-orb-2 {
        width: 300px;
        height: 300px;
    }

    .cta-content,
    .locations-content {
        padding-top: 3rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding: 0 1.5rem;
    }

    .contact-hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .contact-hero-eyebrow {
        font-size: 0.65rem;
        gap: 1rem;
    }

    .eyebrow-line {
        width: 40px;
    }

    .contact-hero-orb-1 {
        width: 280px;
        height: 280px;
    }

    .contact-hero-orb-2 {
        width: 220px;
        height: 220px;
    }

    .contact-cta,
    .contact-locations {
        padding: 0 1.5rem 4rem;
    }

    .cta-content,
    .locations-content {
        padding-top: 2.5rem;
    }

    .cta-text {
        font-size: 1.35rem;
    }

    .cta-subtext {
        font-size: 1rem;
    }

    .contact-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 2rem;
    }

    .location-city {
        font-size: 1.25rem;
    }

    .locations-header {
        margin-bottom: 2rem;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
============================================ */
@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .cta-text {
        font-size: 1.25rem;
    }

    .location-card {
        padding: 1.5rem;
    }
}
