:root {
    --gold: #D4AF37;
    --gold-dark: #B28B1E;
    --charcoal: #1E1E1E;
    --charcoal-light: #2C2C2C;
    --ivory: #FEF9E6;
    --cream: #FFFBF0;
    --gray-mist: #F5F5F2;
    --primary: #1E2F3F;
    --accent: #D4AF37;
}

.bg-gold {
    background-color: var(--gold);
}

.bg-charcoal {
    background-color: var(--charcoal);
}

.bg-ivory {
    background-color: var(--ivory);
}

.text-gold {
    color: var(--gold);
}

.text-charcoal {
    color: var(--charcoal);
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--charcoal);
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 50px !important;
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 50px !important;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* Hero Section */
.hero-careers {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%), url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center 35%;
    padding: 90px 0 90px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .hero-careers {
        padding: 70px 0 70px;
    }
}

.hero-badge {
    background: var(--gold);
    display: inline-block;
    padding: 8px 24px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border-radius: 40px;
    color: var(--charcoal);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
}

.gold-line {
    width: 100px;
    height: 4px;
    background: var(--gold);
    border-radius: 4px;
    margin: 1.5rem 0;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

/* Section Titles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 4px;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Job Card */
.job-card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.job-badge {
    background: var(--ivory);
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
}

.job-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* No Vacancy Card */
.no-vacancy-card {
    background: white;
    border-radius: 48px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    transition: 0.3s;
}

.no-vacancy-icon {
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.alert-badge {
    background: var(--ivory);
    padding: 8px 20px;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
}

/* Culture Pillars */
.culture-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.culture-card:hover {
    border-bottom-color: var(--gold);
    background: var(--ivory);
}

/* Modal Custom */
.modal-content {
    border-radius: 32px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: var(--charcoal);
    color: white;
    border-bottom: 2px solid var(--gold);
    padding: 1.5rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }
}