/* Base Typography & Variables */
.careers-page {
    font-family: 'Outfit', sans-serif;
    color: #1a1a2e;
    overflow-x: hidden;
}

/* HERO SECTION */
.c-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('{{ asset("images/careers_hero_bg.png") }}') center center/cover no-repeat;
    text-align: center;
    overflow: hidden;
}
.c-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,46,0.7) 0%, rgba(26,26,46,0.9) 100%);
    z-index: 1;
}
.c-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}
.c-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.c-hero h1 span {
    color: #8B1A2B;
}
.c-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

/* VALUES SECTION */
.c-values {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}
.c-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.c-section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
}
.c-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}
.c-value-card {
    text-align: center;
}
.c-value-icon {
    width: 80px; height: 80px;
    margin: 0 auto 24px;
    background: #fff5f7;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: #8B1A2B;
    transition: transform 0.3s;
}
.c-value-card:hover .c-value-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139,26,43,0.1);
}
.c-value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.c-value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* LIFE AT LOCALFYND (SPLIT LAYOUT) */
.c-life {
    padding: 100px 0;
    background: #f9fafc;
}
.c-life-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.c-life-row:last-child {
    margin-bottom: 0;
}
.c-life-row.reverse {
    flex-direction: row-reverse;
}
.c-life-content {
    flex: 1;
}
.c-life-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.c-life-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}
.c-life-img {
    flex: 1;
    position: relative;
}

/* PERKS SECTION */
.c-perks {
    padding: 80px 0;
    background: #1a1a2e;
    color: #fff;
    text-align: center;
}
.c-perks .c-section-header h2 {
    color: #fff;
}
.c-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.c-perk-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px 20px;
}
.c-perk-item i {
    font-size: 1.8rem;
    color: #8B1A2B;
    margin-bottom: 16px;
}
.c-perk-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.c-perk-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}

/* FINAL MESSAGE */
.c-final {
    padding: 100px 0;
    text-align: center;
    background: #fff;
}
.c-final h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}
.c-final p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media(max-width: 991px){
    .c-life-row { flex-direction: column; text-align: center; gap: 40px; }
    .c-life-row.reverse { flex-direction: column; }
    .c-life-img { width: 100%; max-width: 500px; margin: 0 auto; }
}
