﻿/* =====================================================
   RESUME TARGET - CAREERS PAGE CSS
   /asset/css/templates/careers.css
   Matches service-pages.css color scheme
   v1.0 - 2026-02-03
   ===================================================== */

/* =====================================================
   HERO SECTION - Light Blue Gradient
   ===================================================== */
.careers-hero {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #e0f2fe 100%);
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0.05) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.careers-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.careers-hero .hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0369a1;
    margin-bottom: 16px;
    background: rgba(3, 105, 161, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
}

.careers-hero .hero-headline {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    color: #1f295e;
    margin: 0 0 24px;
}

.careers-hero .hero-headline em {
    font-style: normal;
    color: #0284c7;
}

.careers-hero .hero-lead {
    font-size: 20px;
    color: #475569;
    margin: 0 0 8px;
    line-height: 1.6;
}

.careers-hero .hero-subtext {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* =====================================================
   JOBS SECTION
   ===================================================== */
.careers-jobs {
    padding: 80px 20px;
    background: #fff;
}

.careers-jobs-inner {
    max-width: 1000px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f295e;
    margin: 0 0 12px;
}

.section-header p {
    font-size: 17px;
    color: #64748b;
    margin: 0;
}

.jobs-widget-container {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */
.careers-benefits {
    padding: 80px 20px;
    background: #f8fafc;
}

.careers-benefits-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
    border-color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: #0284c7;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f295e;
    margin: 0 0 8px;
}

.benefit-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.careers-testimonials {
    padding: 80px 20px;
    background: #fff;
}

.careers-testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.testimonial-card blockquote {
    margin: 0 0 20px;
    flex-grow: 1;
}

.testimonial-card blockquote p {
    font-size: 15px;
    color: #475569;
    font-style: italic;
    margin: 0;
    line-height: 1.7;
}

.testimonial-author {
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.author-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1f295e;
}

.author-role {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

/* =====================================================
   CTA SECTION - Navy Gradient
   ===================================================== */
.careers-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1f295e 0%, #2a3a7d 100%);
    text-align: center;
}

.careers-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.careers-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.careers-cta .cta-tagline {
    font-size: 20px;
    color: #02c153;
    font-weight: 600;
    margin: 0 0 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #02c153;
    color: #fff;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: #01a347;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1f295e;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #1f295e;
    transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background: #1f295e;
    color: #fff;
}

.cta-note {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   RESPONSIVE - TABLET
   ===================================================== */
@media (max-width: 1024px) {
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   RESPONSIVE - MOBILE
   ===================================================== */
@media (max-width: 768px) {
    .careers-hero {
        padding: 60px 20px 80px;
    }
    
    .careers-hero .hero-headline {
        font-size: 32px;
    }
    
    .careers-hero .hero-lead {
        font-size: 18px;
    }
    
    .careers-jobs,
    .careers-benefits,
    .careers-testimonials,
    .careers-cta {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .careers-cta h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}