/* Common Elements */
.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FEE603, #ffa726);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

/* Page Hero */
.page-hero-recruit {
    background: linear-gradient(135deg, #FEE603 0%, #ffa726 100%);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-recruit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    pointer-events: none;
}

.page-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #000;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    margin: 10px 0 0;
    line-height: 1.6;
    text-align: center;
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.philosophy-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-yellow {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #FEE603, #ffa726);
    top: -200px;
    right: -200px;
}

.shape-orange {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ffa726, #ff6b6b);
    bottom: -150px;
    left: -150px;
}

.philosophy-visual-wrapper {
    position: relative;
    z-index: 1;
}

.philosophy-headline-box {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.philosophy-headline {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FEE603, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 0.05em;
    display: inline-block;
}

.headline-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FEE603, #ffa726);
    margin: 20px auto 0;
    border-radius: 2px;
}

.philosophy-content-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 230, 3, 0.1), rgba(255, 167, 38, 0.1));
}

.philosophy-text-box {
    padding: 20px 0;
}

.philosophy-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #333;
    margin: 0 0 25px;
}

.philosophy-quote {
    background: linear-gradient(135deg, #FEE603, #ffa726);
    padding: 30px 40px;
    border-radius: 15px;
    position: relative;
    margin-top: 40px;
}

.quote-mark {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.philosophy-quote p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #fff;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 230, 3, 0.05), rgba(255, 167, 38, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: #FEE603;
    box-shadow: 0 20px 60px rgba(254, 230, 3, 0.15);
}

.value-item:hover::before {
    opacity: 1;
}

.value-icon {
    margin-bottom: 30px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FEE603, #ffa726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(254, 230, 3, 0.3);
    position: relative;
    z-index: 1;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
}

.value-subtitle {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.value-description {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
    margin: 0;
    position: relative;
    z-index: 1;
}

.value-decoration {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FEE603, #ffa726);
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Business Section */
.business-section {
    padding: 120px 0;
    background: #fff;
}

.business-intro-box {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.intro-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.business-intro {
    font-size: 1.2rem;
    line-height: 2;
    color: #333;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

.business-service-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.service-header-visual {
    text-align: center;
    margin-bottom: 50px;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FEE603, #ffa726);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.service-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin: 0;
    letter-spacing: 0.05em;
}

.service-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-visual-area {
    position: relative;
}

.service-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.frame-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FEE603, #ffa726);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.service-text-area {
    padding: 20px;
}

.service-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #666;
    margin: 0 0 40px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px;
    text-align: left;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.service-logo-display {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.service-logo-display img {
    max-width: 250px;
    height: auto;
}

.service-logo-display .logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

/* Company Overview */
.company-overview {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.company-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23FEE603" fill-opacity="0.02"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    pointer-events: none;
}

.company-wrapper {
    position: relative;
    z-index: 1;
}

.company-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.card-icon {
    font-size: 2rem;
}

.card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .page-hero-recruit {
        padding: 150px 0 80px;
    }

    .page-title {
        font-size: 4rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    .philosophy-section,
    .values-section,
    .business-section,
    .company-overview {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .philosophy-headline {
        font-size: 2.5rem;
    }

    .philosophy-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-text h5 {
        text-align: left;
    }

    .feature-text p {
        text-align: left;
    }

    .company-info-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .page-hero-recruit {
        padding: 120px 20px 60px;
    }

    .page-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .philosophy-section,
    .values-section,
    .business-section,
    .company-overview {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.85rem;
    }

    .philosophy-headline {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .philosophy-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .philosophy-image {
        max-width: 100%;
    }

    .philosophy-text-box {
        padding: 0;
    }

    .philosophy-text {
        font-size: 0.95rem;
        line-height: 1.9;
        margin-bottom: 20px;
    }

    .philosophy-quote {
        padding: 25px 30px;
    }

    .quote-mark {
        font-size: 2rem;
    }

    .philosophy-quote p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-item {
        padding: 35px 25px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .value-number {
        font-size: 2rem;
    }

    .value-title {
        font-size: 1.2rem;
    }

    .value-description {
        font-size: 0.9rem;
    }

    .business-intro-box {
        padding: 40px 30px;
    }

    .intro-icon {
        font-size: 3rem;
    }

    .business-intro {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .service-main-title {
        font-size: 1.8rem;
    }

    .service-content-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-text-area {
        padding: 0;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.9;
        margin-bottom: 30px;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-text h5 {
        font-size: 1rem;
        text-align: left;
    }

    .feature-text p {
        font-size: 0.85rem;
        text-align: left;
    }

    .service-logo-display {
        padding: 20px;
    }

    .service-logo-display img {
        max-width: 200px;
    }

    .company-info-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        padding: 30px 25px;
    }

    .card-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .card-header h4 {
        font-size: 1.1rem;
    }

    .detail-label {
        font-size: 0.75rem;
    }

    .detail-value {
        font-size: 0.9rem;
    }
}