/* =========================================================
   CAREER PAGE — SASVAT STUDIO LUXURY DESIGN
   career-design.css | v1.0
   ========================================================= */

/* ---- 1. HERO ---- */
.career-hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0c0b09;
}

.career-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.28;
    transform: scale(1.06);
    transition: transform 10s ease;
}

.career-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(12,11,9,0.96) 0%, rgba(18,14,10,0.78) 60%, rgba(12,11,9,0.96) 100%);
}

.career-hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.18;
}

.career-hero-grid-lines svg {
    width: 100%;
    height: 100%;
}

.career-hero-grid-lines .ch-line {
    stroke: rgba(206,158,81,0.4);
    stroke-width: 0.5;
    fill: none;
}

.career-hero-glow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(206,158,81,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.career-hero-inner {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 860px;
    padding: 120px 24px 80px;
}

.career-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #CE9E51;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: chFadeUp 0.9s cubic-bezier(0.25,1,0.5,1) 0.2s forwards;
}

.career-hero-eyebrow::before,
.career-hero-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(206,158,81,0.6);
}

.career-hero-eyebrow i {
    font-size: 0.55rem;
}

.career-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 6.5vw, 6rem);
    font-weight: 300;
    line-height: 1.08;
    color: #FAF7F0;
    margin: 0 0 28px;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(24px);
    animation: chFadeUp 1.1s cubic-bezier(0.25,1,0.5,1) 0.4s forwards;
}

.career-hero-title em {
    font-style: italic;
    color: #CE9E51;
}

.career-hero-divider {
    width: 0;
    height: 1px;
    background: rgba(206,158,81,0.5);
    margin: 0 auto 28px;
    opacity: 0;
    animation: chDrawLine 1s cubic-bezier(0.25,1,0.5,1) 0.75s forwards;
}

.career-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(250,247,240,0.65);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 48px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(16px);
    animation: chFadeUp 1s cubic-bezier(0.25,1,0.5,1) 0.95s forwards;
}

.career-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid rgba(206,158,81,0.7);
    color: #CE9E51;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    opacity: 0;
    animation: chFadeUp 1s cubic-bezier(0.25,1,0.5,1) 1.1s forwards;
}

.career-hero-cta:hover {
    background: #CE9E51;
    color: #0c0b09;
    border-color: #CE9E51;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(206,158,81,0.3);
}

.career-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    opacity: 0;
    animation: chFadeUp 1s ease 1.4s forwards;
}

.career-scroll-hint span {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(206,158,81,0.6);
}

.career-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1px solid rgba(206,158,81,0.4);
    border-radius: 12px;
    position: relative;
}

.career-scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: #CE9E51;
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes chFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes chDrawLine {
    to { width: 60px; opacity: 1; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50%       { transform: translateX(-50%) translateY(10px); opacity: 0.4; }
}

/* ---- 2. BREADCRUMB ---- */
.career-bc {
    background: #faf9f7;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 14px 0;
}

.career-bc ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 0.83rem;
    color: #888;
    gap: 8px;
}

.career-bc a {
    color: #CE9E51;
    text-decoration: none;
    font-weight: 500;
}

.career-bc a:hover {
    color: #0c0b09;
}

.career-bc-sep {
    font-size: 0.55rem;
    color: #ccc;
}

/* ---- 3. STATS BAR ---- */
.career-stats-bar {
    background: #0c0b09;
    padding: 48px 0;
}

.career-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.career-stat {
    text-align: center;
    padding: 24px 20px;
    border-right: 1px solid rgba(206,158,81,0.15);
}

.career-stat:last-child {
    border-right: none;
}

.career-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 300;
    color: #CE9E51;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.career-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,247,240,0.5);
    font-weight: 500;
}

/* ---- 4. SHARED SECTION HEADERS ---- */
.career-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.career-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #CE9E51;
    margin-bottom: 20px;
}

.career-eyebrow::before,
.career-eyebrow::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: rgba(206,158,81,0.5);
}

.career-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    color: #1C1410;
    line-height: 1.15;
    margin: 0 0 20px;
}

.career-section-title em {
    font-style: italic;
    color: #CE9E51;
}

.career-section-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
}

/* Dark variant overrides */
.career-section-title--light {
    color: #FAF7F0;
}

.career-section-desc--light {
    color: rgba(250,247,240,0.55);
}

/* ---- 5. WHY JOIN US ---- */
.career-why {
    padding: 110px 0;
    background: #fff;
}

.career-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.career-why-card {
    background: #faf9f7;
    border: 1px solid rgba(206,158,81,0.12);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.25,1,0.5,1);
}

.career-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #CE9E51, #E8D5A3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.career-why-card:hover {
    background: #fff;
    border-color: rgba(206,158,81,0.35);
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(206,158,81,0.1);
}

.career-why-card:hover::before {
    transform: scaleX(1);
}

.career-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(206,158,81,0.1);
    border: 1px solid rgba(206,158,81,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #CE9E51;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.career-why-card:hover .career-why-icon {
    background: #CE9E51;
    color: #fff;
    border-color: #CE9E51;
    transform: rotate(8deg) scale(1.08);
}

.career-why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1C1410;
    margin-bottom: 14px;
    line-height: 1.25;
}

.career-why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ---- 6. LIFE AT SASVAT / CULTURE ---- */
.career-culture {
    padding: 110px 0;
    background: #0c0b09;
    position: relative;
    overflow: hidden;
}

.career-culture-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(206,158,81,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.career-culture-container {
    position: relative;
    z-index: 2;
}

.career-culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.culture-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(206,158,81,0.12);
    border-radius: 12px;
    padding: 36px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.4s ease;
}

.culture-card:hover {
    background: rgba(206,158,81,0.05);
    border-color: rgba(206,158,81,0.3);
    transform: translateX(6px);
}

.culture-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(206,158,81,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #CE9E51;
}

.culture-card-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #FAF7F0;
    margin-bottom: 10px;
}

.culture-card-body p {
    font-size: 0.93rem;
    color: rgba(250,247,240,0.5);
    line-height: 1.7;
}

/* ---- 7. OPEN POSITIONS ---- */
.career-positions {
    padding: 110px 0;
    background: #f9f8f6;
}

.career-positions-list {
    max-width: 920px;
    margin: 0 auto;
}

.career-position-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

.career-position-item:hover {
    border-color: rgba(206,158,81,0.4);
    box-shadow: 0 12px 40px rgba(206,158,81,0.1);
}

.career-position-item.cp-active {
    border-color: #CE9E51;
    box-shadow: 0 16px 50px rgba(206,158,81,0.15);
}

.career-pos-header {
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 20px;
}

.career-pos-info {
    flex: 1;
}

.career-pos-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: #1C1410;
    margin: 0 0 12px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.career-position-item.cp-active .career-pos-title,
.career-position-item:hover .career-pos-title {
    color: #CE9E51;
}

.career-pos-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.career-pos-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #888;
    background: #f5f4f2;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.06);
}

.career-pos-tag i {
    color: #CE9E51;
    font-size: 0.7rem;
}

.career-pos-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(206,158,81,0.08);
    border: 1px solid rgba(206,158,81,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #CE9E51;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
}

.career-position-item.cp-active .career-pos-toggle {
    background: #CE9E51;
    color: #fff;
    border-color: #CE9E51;
    transform: rotate(180deg);
}

.career-pos-body {
    display: none;
    border-top: 1px solid rgba(206,158,81,0.12);
}

.career-pos-body-inner {
    padding: 36px;
}

.career-pos-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1C1410;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(206,158,81,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.career-pos-content h4::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #CE9E51;
    border-radius: 4px;
    flex-shrink: 0;
}

.career-pos-content h4 + h4,
.career-pos-content h4:not(:first-child) {
    margin-top: 32px;
}

.career-pos-content p,
.career-pos-content ul,
.career-pos-content li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

.career-pos-content ul {
    padding-left: 18px;
}

.career-pos-content li {
    margin-bottom: 8px;
}

.career-pos-apply {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #1C1410;
    color: #FAF7F0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 1px solid #1C1410;
}

.btn-apply:hover {
    background: #CE9E51;
    border-color: #CE9E51;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(206,158,81,0.3);
}

.btn-apply-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #888;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-apply-whatsapp:hover {
    border-color: rgba(206,158,81,0.4);
    color: #CE9E51;
}

/* ---- EMPTY STATE ---- */
.career-empty-state {
    text-align: center;
    padding: 80px 24px;
    background: #fff;
    border: 1px dashed rgba(206,158,81,0.3);
    border-radius: 16px;
}

.career-empty-icon {
    width: 72px;
    height: 72px;
    background: rgba(206,158,81,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #CE9E51;
    margin: 0 auto 24px;
}

.career-empty-state h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #1C1410;
    margin-bottom: 14px;
}

.career-empty-state p {
    font-size: 0.98rem;
    color: #888;
    max-width: 460px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ---- 8. CTA BAND ---- */
.career-cta {
    padding: 100px 0;
    background: #1C1410;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.career-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
}

.career-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.career-cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #FAF7F0;
    line-height: 1.2;
    margin-bottom: 20px;
}

.career-cta-inner h2 em {
    font-style: italic;
    color: #CE9E51;
}

.career-cta-inner p {
    font-size: 1.02rem;
    color: rgba(250,247,240,0.6);
    line-height: 1.75;
    margin-bottom: 44px;
}

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

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #CE9E51;
    color: #0c0b09;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.btn-cta-primary:hover {
    background: #E8D5A3;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(206,158,81,0.4);
    color: #0c0b09;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: rgba(250,247,240,0.8);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(250,247,240,0.2);
    transition: all 0.4s ease;
}

.btn-cta-outline:hover {
    border-color: rgba(206,158,81,0.6);
    color: #CE9E51;
}

/* ---- SCROLL REVEAL ANIMATION ---- */
.ch-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25,1,0.5,1);
}

.ch-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ch-reveal-delay-1 { transition-delay: 0.1s; }
.ch-reveal-delay-2 { transition-delay: 0.2s; }
.ch-reveal-delay-3 { transition-delay: 0.3s; }
.ch-reveal-delay-4 { transition-delay: 0.4s; }
.ch-reveal-delay-5 { transition-delay: 0.5s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .career-why-grid        { grid-template-columns: repeat(2, 1fr); }
    .career-culture-grid    { grid-template-columns: 1fr; }
    .career-stats-inner     { grid-template-columns: repeat(2, 1fr); }
    .career-stat:nth-child(2) { border-right: none; }
    .career-stat            { padding: 20px; }
    .career-pos-header      { padding: 22px 24px; }
    .career-pos-body-inner  { padding: 24px; }
    .career-pos-apply       { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .career-hero-inner      { padding: 110px 20px 70px; }
    .career-why-grid        { grid-template-columns: 1fr; }
    .career-stats-inner     { grid-template-columns: repeat(2, 1fr); }
    .career-stat-num        { font-size: 2.4rem; }
    .career-why,
    .career-culture,
    .career-positions,
    .career-cta             { padding: 70px 0; }
    .career-pos-tags        { gap: 8px; }
    .career-pos-title       { font-size: 1.5rem; }
    .career-cta-actions     { flex-direction: column; align-items: center; }
    .career-section-header  { margin-bottom: 48px; }
}
