/* 3D Hero Background Styles */
.page-hero,
.recruit-hero,
.contact-hero {
    position: relative;
    overflow: hidden;
    height: 60vh !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #ffffff;
    padding-left: clamp(20px, 8vw, 100px);
    padding-right: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.page-hero h1 {
    font-size: 96px !important;
    font-weight: 900 !important;
    position: relative;
    z-index: 2;
    letter-spacing: 0.02em !important;
}

.page-hero p {
    font-size: 24px !important;
    position: relative;
    z-index: 2;
}

/* 3D Canvas Background */
#hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    display: block;
}

/* Recruit Hero Specific */
.recruit-hero-content {
    z-index: 2;
    position: relative;
    max-width: min(800px, 100%);
    width: 100%;
    box-sizing: border-box;
}

.recruit-hero h1 {
    font-size: clamp(36px, 6vw, 64px) !important;
    font-weight: 900 !important;
    color: #252525 !important;
    z-index: 2;
    position: relative;
    line-height: 1.3 !important;
    margin-bottom: 30px !important;
    text-align: left;
    max-width: 100%;
    word-wrap: break-word;
}

.recruit-hero p {
    font-size: 18px !important;
    color: #252525 !important;
    z-index: 2;
    position: relative;
    line-height: 1.8 !important;
    margin-bottom: 40px !important;
    opacity: 0.9;
    text-align: left;
}

.recruit-hero-cta {
    display: inline-block;
    z-index: 2;
    position: relative;
    padding: 18px 50px;
    background: transparent;
    color: #252525 !important;
    border: 2px solid #252525;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.recruit-hero-cta:hover {
    background: #252525;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Contact Hero Specific */
.contact-hero h1 {
    font-size: 96px !important;
}

.contact-hero p {
    font-size: 24px !important;
}

@media (max-width: 768px) {
    .page-hero,
    .recruit-hero,
    .contact-hero {
        padding-left: 20px;
        padding-right: 20px;
        align-items: center;
    }

    .recruit-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .page-hero h1,
    .recruit-hero h1,
    .contact-hero h1 {
        font-size: 36px !important;
        text-align: center;
        margin-bottom: 20px !important;
    }

    .page-hero p,
    .recruit-hero p,
    .contact-hero p {
        font-size: 15px !important;
        text-align: center;
        margin-bottom: 30px !important;
    }

    .recruit-hero-cta {
        padding: 15px 35px;
        font-size: 14px;
    }
}
