/* VRCORE Careers - Main Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Roboto:wght@500;700&display=swap');

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--space-8);
}

.hero__title {
    font-size: var(--text-6xl);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, #ffffff 0%, #b3d4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: var(--text-subtle);
    max-width: 700px;
    margin: 0 auto var(--space-10);
    line-height: 1.6;
}

.hero__ctas {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__subtitle {
        font-size: var(--text-lg);
    }
}

/* ===== CREDIBILITY SECTION ===== */
.credibility {
    padding: var(--space-20) 0;
}

.credibility__logos {
    margin-bottom: var(--space-10);
}

.credibility__text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: var(--text-lg);
    line-height: 1.7;
}

.section--light .credibility__text {
    color: var(--accent-slate);
}

/* ===== POSITIONING SECTION ===== */
.positioning {
    padding: var(--space-24) 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: var(--space-24) 0;
}

/* ===== EXPERIENCES SECTION ===== */
.experiences {
    background: var(--bg-darker);
    padding: var(--space-24) 0;
}

.experiences__featured {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.experiences__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

@media (max-width: 992px) {
    .experiences__featured {
        grid-template-columns: 1fr;
    }

    .experiences__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .experiences__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== WHY PARTNERS SECTION ===== */
.why-partners {
    padding: var(--space-24) 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-24) 0;
    text-align: center;
}

.cta-section__title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
}

.cta-section__text {
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto var(--space-10);
}

.section--light .cta-section__title {
    color: var(--text-primary);
}

.section--light .cta-section__text {
    color: var(--accent-slate);
}

/* ===== EXPERIENCES GRID ===== */
.card--experience.featured {
    grid-column: span 1;
}

.card--experience.featured .card--experience__image {
    height: 250px;
}

/* ===== PAGE CONTENT (for sub-pages) ===== */
.page-hero {
    padding: calc(80px + var(--space-20)) 0 var(--space-16);
    background: var(--gradient-dark);
    text-align: center;
}

.page-hero__title {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-4);
}

.page-hero__subtitle {
    font-size: var(--text-xl);
    color: var(--text-subtle);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: var(--font-medium);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cta-primary);
}

/* Fix dropdown options visibility */
option {
    color: #333;
    background: #fff;
}

/* Light Section Form Styles */
.section--light .form-group label {
    color: var(--text-primary);
}

.section--light .form-group input,
.section--light .form-group textarea,
.section--light .form-group select {
    background: var(--bg-light);
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
}

.section--light .form-group input:focus,
.section--light .form-group textarea:focus,
.section--light .form-group select:focus {
    background: var(--bg-white);
    border-color: var(--cta-primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* Utility for Partners Page */
.header-large-center {
    text-align: center;
}

.header-large-center .section-header__title {
    font-size: var(--text-5xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-large-center .section-header__eyebrow {
    justify-content: center;
    font-size: var(--text-lg);
}

@media (max-width: 768px) {
    .header-large-center .section-header__title {
        font-size: var(--text-3xl);
    }
}