/* ============================================
   PLACEMENT PAGE — Matches Contact Page Design
============================================ */

:root {
    --brand: #0174BB;
    --brand-dark: #015d96;
    --brand-light: #e8f4fd;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --border: #daeaf7;
    --text: #1a2535;
    --text2: #3d5166;
    --surface: #ffffff;
    --shadow: rgba(1, 116, 187, 0.12);
}

/* ---- HERO ---- */
.placement-hero {
    position: relative;
    padding: 120px 20px 80px;
    background: #011627 url('/image/placement-bg.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: white;
}

.placement-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(1, 116, 187, 0.85), rgba(8, 15, 28, 0.95));
    z-index: 1;
}

.placement-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.placement-hero .breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.placement-hero .breadcrumb a {
    color: white;
    text-decoration: none;
}

.placement-hero .breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
}

.placement-hero h1 {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.placement-hero h1 span {
    color: #4db8ff;
}

.placement-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- STRIP ---- */
.placement-strip {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding: 0 20px;
}

.placement-strip .strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--surface);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.placement-strip .strip-item {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 20px;
    border-right: 1px solid var(--border);
    transition: all 0.3s ease;
    color: inherit;
}

.placement-strip .strip-item:last-child {
    border-right: 0;
}

.placement-strip .strip-item i {
    font-size: 28px;
    color: var(--brand);
}

.placement-strip .strip-text span {
    display: block;
    font-size: 13px;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placement-strip .strip-text strong {
    font-size: 18px;
    color: var(--text);
    display: block;
    margin-top: 2px;
}

.placement-strip .strip-item:hover {
    background: var(--brand-light);
    transform: translateY(-5px);
}

/* ---- SHARED UTILITIES ---- */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 700;
    font-size: 12px;
    border-radius: 99px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-head h2 {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
}

.section-head h2 span {
    color: var(--brand);
}

.section-head p {
    font-size: 16px;
    color: var(--text2);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

/* ---- INTRO SECTION ---- */
.placement-intro {
    padding: 100px 20px;
    background: #f8fbff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-content h2 {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.intro-content h2 span {
    color: var(--brand);
}

.intro-content p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text2);
    font-weight: 500;
}

.check-item i {
    color: var(--brand);
    font-size: 16px;
    flex-shrink: 0;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
    box-shadow: 0 15px 35px var(--shadow);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
}

.stat-number {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text2);
    font-weight: 600;
}

/* ---- PLACEMENTS GRID ---- */
.placements-section {
    padding: 100px 20px;
    background: white;
}

.placements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.placement-card {
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.placement-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: 0 20px 40px var(--shadow);
    background: white;
}

.placement-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e8f4fd;
}

.placement-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.placement-card:hover .placement-img img {
    transform: scale(1.05);
}

.placement-info {
    padding: 18px 16px;
}

.placement-info h4 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.placement-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--brand);
    font-weight: 600;
    background: var(--brand-light);
    padding: 4px 12px;
    border-radius: 99px;
}

.placement-info span i {
    font-size: 11px;
}

/* ---- HOW WE WORK ---- */
.how-work-section {
    padding: 100px 20px;
    background: #f8fbff;
}

.how-work-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.how-work-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 30px 60px var(--shadow);
}

.how-work-content h2 {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.how-work-content h2 span {
    color: var(--brand);
}

.how-work-content>p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 16px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0 35px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-num {
    width: 38px;
    height: 38px;
    background: var(--brand);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.process-step p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}

/* ---- BUTTON ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--brand);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(1, 116, 187, 0.2);
}

/* ---- COMPANIES ---- */
.companies-section {
    padding: 100px 20px;
    background: white;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.company-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 14px;
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    transition: all 0.3s ease;
    text-align: center;
}

.company-badge i {
    color: var(--brand);
    font-size: 14px;
}

.company-badge:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px var(--shadow);
}

.company-badge:hover i {
    color: white;
}

/* ---- CTA ---- */
.cta-section {
    padding: 60px 20px 100px;
    background: #f8fbff;
}

.cta-box {
    background: linear-gradient(135deg, #011627 0%, #013d6e 100%);
    border-radius: 30px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: rgba(1, 116, 187, 0.2);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(77, 184, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: #4db8ff;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--brand);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #4db8ff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(1, 116, 187, 0.35);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .placements-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .companies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {

    .intro-grid,
    .how-work-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .placement-strip .strip-inner {
        grid-template-columns: 1fr;
    }

    .placement-strip .strip-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .placement-strip .strip-item:last-child {
        border-bottom: 0;
    }

    .intro-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .placement-hero h1 {
        font-size: 32px;
    }

    .section-head h2 {
        font-size: 28px;
    }

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

    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

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

@media (max-width: 500px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}