/* ===================================
   RECRUTEMENT PAGE - STYLES COMPLETS FINAL
   =================================== */

:root {
    --primary-blue: #007cc2;
    --primary-orange: #ff9500;
    --dark-blue: #003d7a;
    --light-grey: #f5f5f5;
    --dark-grey: #333;
    --medium-grey: #666;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
}

/* ===================================
   HERO SECTION - FINAL
   =================================== */

.recruitment-hero {
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    /* NOTE: Replace with your header image background-image url */
}

.recruitment-hero::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -100px;
    width: 700px;
    height: 700px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 0.7fr 0.1fr 1.3fr;
    gap: 40px;
    align-items: center;
}

.hero-left-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 140px;
}

.hero-logo {
    max-width: 110px;
    height: auto;
    filter: brightness(0) invert(1);
}

.hero-separator {
    width: 10px;
    height: 220px;
    background: linear-gradient(180deg, rgba(255, 165, 0, 0.2) 0%, var(--primary-orange) 50%, rgba(255, 165, 0, 0.2) 100%);
    border-radius: 10px;
}

.hero-right-col {
    color: white;
}

.hero-title {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-white {
    background-color: white;
    color: #0066a1;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid white;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-white:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid white;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-white:hover {
    background-color: white;
    color: #0066a1;
    transform: translateY(-2px);
}

/* ===================================
   TITLE SECTION
   =================================== */

.title-section {
    background: white;
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-orange);
    margin: 0;
}

/* ===================================
   MISSION INTRO SECTION
   =================================== */

.mission-intro-section {
    padding: 70px 20px;
    background: white;
}

.row-layout-intro {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-img-col {
    display: flex;
    justify-content: center;
}

.intro-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-text-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.intro-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--medium-grey);
    text-align: justify;
}

.intro-text-mission {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--medium-grey);
    text-align: justify;
    font-weight: 600;
    padding-top: 10px;
    border-top: 2px solid var(--light-grey);
}

.intro-text-mission strong {
    color: var(--primary-orange);
    font-weight: 700;
}

/* ===================================
   COLLABORATION SECTION
   =================================== */

.collaboration-section {
    padding: 80px 20px;
    background: var(--light-grey);
}

.collaboration-box {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.collab-img-col {
    display: flex;
    justify-content: center;
}

.collab-circular-img {
    max-width: 100%;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.collab-content {
    text-align: left;
}

.collab-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.collab-subtitle {
    font-size: 0.95rem;
    color: var(--medium-grey);
    margin-bottom: 30px;
    line-height: 1.8;
}

.collab-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===================================
   DUAL SERVICE CARDS SECTION
   =================================== */

.dual-service-section {
    padding: 80px 20px;
}

.center-title {
    text-align: center !important;
    margin-bottom: 50px;
}

.dual-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

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

.card-header {
    padding: 25px 20px;
    text-align: center;
    font-weight: 700;
}

.candidates-header {
    background: linear-gradient(135deg, #e8f4ff 0%, #d4e9ff 100%);
}

.companies-header {
    background: linear-gradient(135deg, #ffe8d4 0%, #ffd4d4 100%);
}

.card-title {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
}

.card-body {
    padding: 0;
}

.card-img-wrapper {
    margin: 0;
    overflow: hidden;
    height: 250px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-img {
    transform: scale(1.08);
}

.card-content {
    padding: 30px;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--medium-grey);
    margin-bottom: 15px;
    text-align: justify;
}

.card-content p:last-of-type {
    margin-bottom: 25px;
}

/* ===================================
   APPROACH SECTION
   =================================== */

.approach-section {
    padding: 80px 20px;
    background: white;
}

.approach-section h2 {
    margin-bottom: 20px;
}

.approach-intro {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--medium-grey);
    margin-bottom: 40px;
    text-align: justify;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.approach-image-item {
    padding: 0;
    box-shadow: none;
    border: none;
}

.approach-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-content-item {
    background: white;
    padding: 0;
    border: none;
    box-shadow: none;
}

.approach-item h4 {
    font-size: 1.2rem;
    color: var(--primary-orange);
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orange-dot {
    color: var(--primary-orange);
    font-weight: 900;
    margin-right: 8px;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-list li {
    font-size: 0.9rem;
    line-height: 2.2;
    color: var(--medium-grey);
    padding-left: 0;
    position: relative;
}

.approach-list li:before {
    content: "▪";
    position: absolute;
    left: -15px;
    color: var(--primary-orange);
    font-weight: bold;
}

/* ===================================
   CTA TEXT SECTION
   =================================== */

.cta-text-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.cta-text-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ===================================
   CTA BANNER SECTION
   =================================== */

.cta-banner-section {
    padding: 0;
    background: white;
}

.cta-banner-split {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-logo-part {
    background: white;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-logo-box {
    text-align: center;
}

.cta-logo {
    max-width: 130px;
    height: auto;
}

.cta-blue-part {
    background: linear-gradient(135deg, #0066a1 0%, #004d7a 100%);
    color: white;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cta-blue-content {
    text-align: left;
}

.cta-blue-content h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-orange-small {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--primary-orange);
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-orange-small:hover {
    background-color: #ff8800;
    border-color: #ff8800;
    transform: translateY(-2px);
}

.btn-white-small {
    background-color: white;
    color: #0066a1;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid white;
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-white-small:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* ===================================
   BUTTON STYLES - UNIFIED
   =================================== */

.btn-orange-fill {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--primary-orange);
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-orange-fill:hover {
    background-color: #ff8800;
    border-color: #ff8800;
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 0.85rem !important;
    padding: 10px 24px !important;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.white-bg {
    background: white;
}

.grey-bg {
    background: var(--light-grey);
}

.orange-title {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.blue-subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.blue {
    color: var(--primary-blue);
}

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

.rounded-img {
    border-radius: 12px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-overlay {
        grid-template-columns: 0.6fr 0.1fr 1fr;
        gap: 30px;
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-separator {
        height: 180px;
    }

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

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

    .cta-banner-split {
        grid-template-columns: 1fr;
    }

    .cta-logo-part {
        padding: 30px;
    }

    .cta-blue-part {
        padding: 40px;
    }

    .cta-blue-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .hero-separator {
        display: none;
    }

    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-btn-group {
        flex-direction: column;
    }

    .btn-white,
    .btn-outline-white {
        width: 100%;
        text-align: center;
    }

    .row-layout-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .cta-btn-group {
        flex-direction: column;
    }

    .btn-orange-small,
    .btn-white-small {
        width: 100%;
        text-align: center;
    }

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

    .orange-title {
        font-size: 1.4rem;
    }

    .hero-logo-box {
        padding: 20px;
        min-width: 120px;
        min-height: 120px;
    }

    .hero-logo {
        max-width: 80px;
    }

    .approach-list li {
        line-height: 2;
    }

    .collab-buttons {
        flex-direction: column;
    }

    .collab-buttons a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .recruitment-hero {
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

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

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

    .collab-title {
        font-size: 1.3rem;
    }

    .cta-blue-content h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .service-card,
    .approach-item {
        padding: 20px;
    }

    .card-img {
        height: 180px;
    }

    .card-content {
        padding: 20px;
    }

    .approach-intro,
    .intro-text,
    .card-content p {
        font-size: 0.85rem;
    }

    .approach-list li:before {
        left: -12px;
    }

    .cta-text-title {
        font-size: 1rem;
    }
}