/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    color: #2563EB;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.company-suffix {
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 400;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #2563EB;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563EB;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563EB;
    font-weight: 500;
}

.contact-info i {
    font-size: 1.1rem;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1002;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #2563EB;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .company-suffix {
        display: none;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-info {
        display: none;
    }
    
    .hamburger-menu {
        display: flex !important;
        z-index: 1001;
    }
    
    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(96, 165, 250, 0.6));
    z-index: -1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.3rem;
    color: #60A5FA;
}

.btn-hero {
    background: white;
    color: #2563EB;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #F9FAFB;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    color: #374151;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    gap: 3rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.feature-card:nth-child(even) {
    direction: rtl;
}

.feature-card:nth-child(even) .feature-content {
    direction: ltr;
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1.1rem;
    color: #6B7280;
    line-height: 1.7;
}

/* Company Info Section */
.company-info {
    padding: 6rem 0;
    background: #F9FAFB;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.company-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 2rem;
}

.company-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: #374151;
    font-weight: 600;
    min-width: 100px;
}

.detail-item span {
    color: #6B7280;
    text-align: right;
    flex: 1;
}

.company-message {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-message h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.company-message p {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.signature p {
    color: #2563EB;
    font-weight: 600;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #F9FAFB;
    padding: 2.5rem;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
}

.btn-submit {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #60A5FA;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60A5FA;
}

.footer-contact p {
    color: #9CA3AF;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #60A5FA;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .header-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-card:nth-child(even) {
        direction: ltr;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Recruitment Section */
.recruitment {
    padding: 6rem 0;
    background: #F9FAFB;
}

.recruitment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.recruitment-main {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.job-overview h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 2rem;
    text-align: center;
}

.job-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #F8FAFC;
    border-radius: 15px;
    border-left: 4px solid #2563EB;
}

.highlight-item i {
    font-size: 2rem;
    color: #2563EB;
    min-width: 40px;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}

.job-details {
    margin-top: 2rem;
}

.detail-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-section h4::before {
    content: '▶';
    color: #60A5FA;
    font-size: 0.8rem;
}

.detail-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section li {
    color: #374151;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.detail-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Recruitment Form */
.recruitment-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.recruitment-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E5E7EB;
}

.recruitment-form .form-group {
    margin-bottom: 1.5rem;
}

.recruitment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
}

.recruitment-form input,
.recruitment-form select,
.recruitment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.recruitment-form input:focus,
.recruitment-form select:focus,
.recruitment-form textarea:focus {
    outline: none;
    border-color: #2563EB;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.recruitment-form select {
    cursor: pointer;
}

.recruitment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.recruitment-form .btn-submit {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    margin-top: 1rem;
}

.recruitment-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.recruitment-form .btn-submit:active {
    transform: translateY(0);
}

/* Responsive Design for Recruitment */
@media (max-width: 1024px) {
    .recruitment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .recruitment-form {
        position: static;
    }
}

@media (max-width: 768px) {
    .recruitment {
        padding: 4rem 0;
    }
    
    .recruitment-main {
        padding: 2rem;
    }
    
    .recruitment-form {
        padding: 2rem;
    }
    
    .job-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-item i {
        font-size: 1.5rem;
    }
    
    .job-overview h3 {
        font-size: 1.5rem;
    }
}

/* Animation for recruitment section */
.recruitment .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.recruitment .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* Mobile adjustments */
@media (max-width: 768px) {
    .header-content {
        padding: 0.5rem 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo span {
        font-size: 0.8rem;
    }

    .nav {
        display: none; /* Hide navigation on mobile, will be handled by a hamburger menu if needed */
    }

    .header-cta {
        gap: 0.5rem;
    }

    .phone {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}



/* Hamburger Menu */
.hamburger-menu {
    display: none; /* Hidden by default */
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header .logo {
        font-size: 1.8em;
        margin-right: 0;
    }

    .header .nav {
        display: none; /* Hide desktop nav */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .header .nav.active {
        display: flex;
    }

    .header .nav ul {
        flex-direction: column;
        width: 100%;
    }

    .header .nav ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .header .nav ul li a {
        padding: 15px 20px;
        display: block;
        width: 100%;
    }

    .header .contact-info,
    .header .btn-primary {
        display: none; /* Hide desktop contact info and button */
    }

    .hamburger-menu {
        display: flex; /* Show hamburger menu */
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-left {
        display: flex;
        align-items: center;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 20px; /* Space between hamburger and other elements if any */
    }

    .header .logo .company-suffix {
        display: none;
    }
}




/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 768px) {
    .header .container {
        padding: 10px 20px;
    }

    .header .contact-info,
    .header .btn-primary {
        display: none;
    }

    .header .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .header .nav.active {
        display: flex;
    }

    .header .nav ul {
        flex-direction: column;
        width: 100%;
    }

    .header .nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .header .nav ul li a {
        padding: 15px 20px;
        display: block;
        text-align: center;
    }

    .hamburger-menu {
        display: flex;
    }

    .header .logo .company-suffix {
        display: none;
    }
}




/* Mobile Navigation */
@media (max-width: 768px) {
    .header .container {
        justify-content: space-between;
    }

    .header .contact-info,
    .header .btn-primary {
        display: none;
    }

    .header .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: #fff; /* White background for menu */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .header .main-nav.active {
        display: flex;
    }

    .header .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .header .main-nav ul li {
        text-align: center;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .header .main-nav ul li:last-child {
        border-bottom: none;
    }

    .header .main-nav ul li a {
        padding: 15px 20px;
        display: block;
        color: #333;
    }

    .header .main-nav ul li a:hover {
        background-color: #f5f5f5;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1100;
    }

    .hamburger-menu span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #333;
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .header .logo .company-suffix {
        display: none;
    }
}



/* Recruitment Section */
.recruitment {
    padding: 80px 0;
    background: #f8f9fa;
}

.recruitment .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.recruitment .section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.recruitment .section-header p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.recruitment-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Mission & Vision Section - Simplified */
.mission-vision-section {
    margin-bottom: 60px;
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.mission-vision-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: fit-content;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-title, .vision-title {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mission-label, .vision-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3498db;
    opacity: 0.8;
}

.mission-title h4, .vision-title h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.mission-quote, .vision-quote {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-radius: 10px;
    border-left: 4px solid #3498db;
    position: relative;
}

.mission-quote::before, .vision-quote::before {
    content: '"';
    font-size: 40px;
    color: #3498db;
    position: absolute;
    top: 5px;
    left: 15px;
    opacity: 0.3;
}

.mission-description, .vision-description {
    line-height: 1.7;
}

.mission-description p, .vision-description p {
    margin-bottom: 10px;
    color: #5a6c7d;
    font-size: 15px;
}

/* Vision specific styling */
.vision-label {
    color: #9b59b6;
}

.vision-quote {
    border-left-color: #9b59b6;
}

.vision-quote::before {
    color: #9b59b6;
}

/* Job Overview Section */
.job-overview-section {
    margin-bottom: 40px;
}

.job-overview-section h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.job-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.job-highlights-grid .highlight-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.job-highlights-grid .highlight-item:hover {
    transform: translateY(-3px);
}

.job-highlights-grid .highlight-item i {
    font-size: 24px;
    color: #3498db;
    min-width: 30px;
}

.job-highlights-grid .highlight-item h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.job-highlights-grid .highlight-item p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.job-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detail-column {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-column h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

.detail-column ul {
    list-style: none;
    padding: 0;
}

.detail-column li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #5a6c7d;
    font-size: 14px;
}

.detail-column li:last-child {
    border-bottom: none;
}

/* Responsive Design for Mission & Vision */
@media (min-width: 1280px) {
    .mission-vision-grid {
        display: flex;
        flex-direction: column;
        gap: 50px;
        max-width: 1200px;
    }
    
    .mission-card, .vision-card {
        padding: 40px;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .mission-vision-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 900px;
    }
    
    .job-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .mission-vision-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .mission-card, .vision-card {
        padding: 20px;
    }
    
    .mission-title h4, .vision-title h4 {
        font-size: 20px;
    }
    
    .mission-quote, .vision-quote {
        font-size: 16px;
        padding: 15px;
    }
    
    .job-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .job-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Application Form Section */
.application-form-section {
    margin-top: 50px;
    padding: 40px 0;
    background: #f8f9fa;
    border-radius: 15px;
}

.application-form-section h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 16px;
}

.recruitment-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.btn-submit {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Responsive Design for Application Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .recruitment-form {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .application-form-section h3 {
        font-size: 24px;
    }
}

