/* ============================================
   SECTION STYLES
   ============================================ */

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    color: #6C757D;
    font-size: 1.15rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 120px;
    height: 2px;
    background: rgba(201, 168, 106, 0.3);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Stats Section */
.stats-section {
    background: var(--gradient-navy);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(201, 168, 106, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(201, 168, 106, 0.06) 0%, transparent 60%);
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 106, 0.2);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 32px rgba(201, 168, 106, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Jobs Section */
.jobs-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.jobs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23C9A86A" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

/* Contact Section */
.contact-section {
    background: var(--dark-navy);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 168, 106, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 168, 106, 0.08) 0%, transparent 50%);
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(201, 168, 106, 0.25);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(201, 168, 106, 0.15);
    border-color: var(--primary-gold);
    box-shadow: 0 16px 40px rgba(201, 168, 106, 0.25);
}

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

.contact-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--dark-navy);
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(10deg);
}

.contact-card h4 {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
}
