/* --------------------------------------------------
   🎨 Root Variables & Base Styles
-------------------------------------------------- */
:root {
    --primary-color: #C4161D !important;
    --secondary-color: #6c757d;
    --accent-color: #0dcaf0;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #C4161D 0%, #7A1FA2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 3px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: #fafbfc;
}

/* --------------------------------------------------
   🏔️ Hero Banner
-------------------------------------------------- */
.hero-banner {
    position: relative;
    height: 520px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-position: center top;
    filter: brightness(85%) contrast(1.05);
    transition: transform 1s ease;
}

.hero-banner:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 70%;
    transform: translate(-50%, 0);
    z-index: 2;
    text-align: left;
    width: 60%;
    max-width: 650px;
    color: #fff;
    padding: 0 20px;
}

/* Large screens */
@media (min-width: 1400px) {
    .hero-content {
        left: 50%;
        width: 50%;
        max-width: 703px;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        left: 70%;
        width: 60%;
        max-width: 703px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-content {
        bottom: 15%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
        padding: 0 15px;
    }
    .hero-subtitle {
        color: #e3e9f0 !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        left: 0;
        transform: none;
        width: 100%;
        padding: 25px 15px;
        text-align: center;
    }
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }
    .hero-subtitle {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px 12px;
    }
    .hero-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.4;
    }
}

@media (max-width: 360px) {
    .hero-content {
        padding: 15px 10px;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.hero-subtitle {
    color: rgb(255 255 255);
    font-size: 1.6rem;
    font-weight: 500;
}

.hero-subtitle .divider {
    color: rgb(255 255 255);
    opacity: 0.7;
    margin: 0 0.5rem;
}

/* --------------------------------------------------
   🔢 Counter Bar
-------------------------------------------------- */
.counter-bar {
    background: #fff;
    border-top: 5px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    padding: 1.5rem 0;
    position: relative;
    z-index: 3;
    margin-top: -60px;
    border-radius: 20px 20px 0 0;
}

.counter-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.counter-label {
    font-size: 1rem;
    color: #444;
    font-weight: 600;
}

/* --------------------------------------------------
   🧭 Breadcrumb
-------------------------------------------------- */
.breadcrumb-hero {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 2;
}

.breadcrumb-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}