/* ========================================
   ENHANCED DESIGN IMPROVEMENTS
   Focus: Layout, Spacing, Effects (NO ANIMATIONS)
   ======================================== */

/* ========== HERO SECTION ENHANCEMENTS ========== */
.hero-section {
    padding: 0 !important;
    margin-top: 0 !important;
}

.hero-video {
    filter: brightness(0.5) contrast(1.2) saturate(1.1);
}

.hero-overlay {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%),
        radial-gradient(circle at 30% 50%, rgba(184, 134, 11, 0.15), transparent 70%);
}

/* Hero Content Improvements */
.hero-section h1 {
    font-size: 4.5rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-section h2 {
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Enhanced Search Bar */
.search-wrapper-modern {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-wrapper-modern:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.search-wrapper-modern input {
    font-size: 1.1rem !important;
    padding: 1.5rem !important;
}

.search-wrapper-modern button {
    transition: all 0.3s ease;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

.search-wrapper-modern button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(176, 138, 69, 0.5);
}

/* ========== CARDS ENHANCEMENTS ========== */
.content-card-compact {
    border-radius: 25px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-card-compact:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.content-card-header {
    height: 200px !important;
    position: relative;
    overflow: hidden;
}

.content-card-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: opacity 0.3s ease;
}

.content-card-compact:hover .content-card-header::after {
    opacity: 0.5;
}

.content-header-icon {
    font-size: 4rem !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card-compact:hover .content-header-icon {
    transform: scale(1.2) rotate(10deg);
}

.content-type-badge {
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    font-weight: 800 !important;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.8rem !important;
}

.content-card-body {
    padding: 2rem !important;
}

.content-title {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    line-height: 1.3;
    margin-bottom: 1.2rem !important;
}

/* ========== ROLE CARDS ENHANCEMENTS ========== */
.role-card {
    border-radius: 25px !important;
    padding: 2.5rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.role-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--light-gold));
}

.role-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 2rem !important;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.role-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.icon-wrapper i {
    font-size: 2.5rem !important;
}

.role-title {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.2rem !important;
}

.role-description {
    font-size: 1.05rem !important;
    line-height: 1.7;
    margin-bottom: 1.8rem !important;
}

.role-badge {
    padding: 0.5rem 1.2rem !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    margin: 0.3rem !important;
}

.stat-number {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
}

.stat-label {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
}

/* ========== FEATURE CARDS ENHANCEMENTS ========== */
.feature-card-modern {
    border-radius: 25px !important;
    padding: 3rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.feature-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 90px !important;
    height: 90px !important;
    border-radius: 30px !important;
    font-size: 2.5rem !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-icon {
    transform: scale(1.2) rotate(-5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-title {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.2rem !important;
    margin-top: 2rem !important;
}

.feature-description {
    font-size: 1.05rem !important;
    line-height: 1.7;
    margin-bottom: 2rem !important;
}

.benefit-tag {
    padding: 0.5rem 1.2rem !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    margin: 0.3rem !important;
}

/* ========== SECTION HEADERS ENHANCEMENTS ========== */
.section-badge {
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.section-title-modern {
    font-size: 4rem !important;
    font-weight: 900 !important;
    margin-bottom: 2rem !important;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle-modern {
    font-size: 1.4rem !important;
    line-height: 1.7;
    font-weight: 400 !important;
    max-width: 800px;
}

/* ========== BUTTONS ENHANCEMENTS ========== */
.btn {
    border-radius: 50px !important;
    padding: 1rem 2.5rem !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.btn-lg {
    padding: 1.3rem 3.5rem !important;
    font-size: 1.15rem !important;
}

.btn-hero-primary {
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.3);
}

.btn-hero-primary:hover {
    box-shadow: 0 20px 50px rgba(184, 134, 11, 0.4);
}

/* ========== SPACING IMPROVEMENTS ========== */
.section-padding {
    padding: 6rem 0 !important;
}

.mb-5 {
    margin-bottom: 4rem !important;
}

.mb-6 {
    margin-bottom: 5rem !important;
}

.mt-5 {
    margin-top: 4rem !important;
}

.mt-6 {
    margin-top: 5rem !important;
}

/* ========== RESPONSIVE ENHANCEMENTS ========== */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 3.8rem !important;
    }
    
    .section-title-modern {
        font-size: 3.5rem !important;
    }
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3.2rem !important;
    }
    
    .hero-section h2 {
        font-size: 1.3rem !important;
    }
    
    .section-title-modern {
        font-size: 3rem !important;
    }
    
    .content-card-header {
        height: 160px !important;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-section h2 {
        font-size: 1.1rem !important;
    }
    
    .search-wrapper-modern {
        height: auto !important;
        padding: 1rem !important;
    }
    
    .search-wrapper-modern button {
        width: 100%;
        margin-top: 1rem;
        height: auto !important;
        padding: 1rem !important;
    }
    
    .section-title-modern {
        font-size: 2.5rem !important;
    }
    
    .section-subtitle-modern {
        font-size: 1.2rem !important;
    }
    
    .role-card,
    .feature-card-modern {
        padding: 2rem !important;
    }
    
    .content-card-header {
        height: 140px !important;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .hero-section h2 {
        font-size: 1rem !important;
    }
    
    .section-title-modern {
        font-size: 2rem !important;
    }
    
    .section-padding {
        padding: 4rem 0 !important;
    }
    
    .btn-lg {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
}

/* ========== SMOOTH SCROLLING ========== */
html {
    scroll-behavior: smooth;
}

/* ========== IMPROVED SHADOWS ========== */
.shadow-sm {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

.shadow-lg {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

/* ========== HOVER EFFECTS ========== */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ========== GRADIENT OVERLAYS ========== */
.gradient-overlay {
    position: relative;
}

.gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.gradient-overlay > * {
    position: relative;
    z-index: 2;
}
