/**
 * PSKOV State University - Red, Maroon & Yellow Theme V2
 * Yellow Buttons + Gradient Effects Throughout
 * Matte & Glossy Mix Design
 */

:root {
    /* Primary Color Palette - Reference Image Match */
    --color-primary: #E31E24;
    /* Vibrant Red */
    --color-primary-light: #FF4D4D;
    /* Light Red */
    --color-primary-dark: #B9121B;
    /* Deep Red */

    --color-secondary: #0B0F19;
    /* Deep Navy/Black (Footer/Stats) */
    --color-secondary-light: #1F2937;
    --color-secondary-dark: #000000;

    --color-accent: #E31E24;
    /* Matching Red */
    --color-accent-light: #FFEBEC;
    /* Very Light Pink/Red for backgrounds */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E31E24 0%, #B9121B 100%);
    --gradient-hero: linear-gradient(135deg, #E31E24 0%, #B9121B 100%);

    /* Neutrals - Clean & Sharp */
    --color-white: #FFFFFF;
    --color-black: #0B0F19;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ========================================
   BODY - CLEAN BACKGROUND
   ======================================== */
body {
    background: #FFFFFF !important;
    color: var(--color-gray-800) !important;
    font-family: 'Inter', sans-serif;
    /* Assuming Inter or similar for that clean look */
    line-height: 1.6;
}

/* Navbar Update for Theme */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid var(--color-gray-200) !important;
    box-shadow: var(--shadow-sm) !important;
}

.navbar .nav-link {
    color: var(--color-gray-700) !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: var(--color-primary) !important;
}

.navbar .btn-primary {
    background: var(--color-primary) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
}

/* Subtle gradient overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    display: none !important;
}

/* ========================================
   CARDS - GRADIENT ACCENTS
   ======================================== */
.card {
    background: var(--color-white) !important;
    border: 1px solid var(--color-gray-200) !important;
    box-shadow:
        0 4px 12px -2px rgba(139, 0, 0, 0.08),
        0 2px 4px -1px rgba(139, 0, 0, 0.04) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    position: relative;
    overflow: hidden;
}

.card::before {
    display: none !important;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.card:hover {
    box-shadow:
        0 12px 24px -4px rgba(139, 0, 0, 0.15),
        0 4px 8px -2px rgba(139, 0, 0, 0.08) !important;
    border-color: var(--color-primary-light) !important;
}

.card:hover::after {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
}

.card-title {
    color: var(--color-primary) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}

/* ========================================
   NAVIGATION - GRADIENT BORDER
   ======================================== */
.navbar {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%) !important;
    border-bottom: 3px solid transparent !important;
    border-image: var(--gradient-warm) 1 !important;
    box-shadow: 0 4px 16px -4px rgba(139, 0, 0, 0.12) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.navbar-link {
    color: var(--color-gray-700) !important;
    position: relative;
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--color-primary) !important;
}

.navbar-link::after {
    background: var(--gradient-warm) !important;
}

.navbar-toggle span {
    background: var(--color-primary) !important;
}

/* ========================================
   BUTTONS - YELLOW TEXT & BORDERS
   ======================================== */
.btn {
    position: relative !important;
    overflow: hidden !important;
}

.btn-primary {
    background: var(--gradient-primary) !important;
    border: 2px solid var(--color-secondary) !important;
    color: var(--color-secondary) !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    box-shadow:
        0 4px 12px 0 rgba(139, 0, 0, 0.3),
        0 2px 4px 0 rgba(139, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
        inset 0 0 0 1px rgba(255, 215, 0, 0.3) !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn-primary:hover::after {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #660000 0%, #8B0000 100%) !important;
    border-color: var(--color-secondary-light) !important;
    color: var(--color-secondary-light) !important;
    box-shadow:
        0 6px 20px 0 rgba(139, 0, 0, 0.4),
        0 3px 6px 0 rgba(139, 0, 0, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.25),
        0 0 20px rgba(255, 215, 0, 0.4) !important;
    transform: translateY(-2px) !important;
}

.btn-secondary {
    background: var(--gradient-secondary) !important;
    border: 2px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;
    box-shadow:
        0 4px 12px 0 rgba(255, 215, 0, 0.4),
        0 2px 4px 0 rgba(255, 215, 0, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
        inset 0 0 0 1px rgba(139, 0, 0, 0.2) !important;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FFA000 0%, #FFD700 100%) !important;
    border-color: var(--color-primary-light) !important;
    box-shadow:
        0 6px 20px 0 rgba(255, 215, 0, 0.5),
        0 3px 6px 0 rgba(255, 215, 0, 0.35),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
        0 0 25px rgba(255, 215, 0, 0.6) !important;
    transform: translateY(-2px) !important;
}

.btn-outline {
    background: transparent !important;
    border: 2px solid var(--color-secondary) !important;
    color: var(--color-secondary) !important;
    font-weight: 700 !important;
    backdrop-filter: none !important;
    border-image: none !important;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    background: transparent !important;
    color: var(--color-secondary-light) !important;
    border-color: var(--color-secondary-light) !important;
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.4),
        inset 0 0 20px rgba(255, 215, 0, 0.2) !important;
}

/* ========================================
   HERO SECTION - GLASS & IMAGE
   ======================================== */
.hero {
    /* Image as the main background */
    background: url('../images/hero-background.png') center center / cover no-repeat !important;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* No blend mode needed for clear image */
}

/* Minute Red Tint / Glass Effect Overlay */
/* Visible Red Tint / Glass Effect Overlay */
/* Visible Red Gradient from Bottom */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Red gradient starting from bottom, fading to clear at top */
    background: linear-gradient(to top,
            rgba(139, 0, 0, 0.9) 0%,
            /* Dark Red at bottom */
            rgba(139, 0, 0, 0.5) 40%,
            /* Semi-transparent red in lower-middle */
            rgba(139, 0, 0, 0) 100%
            /* Transparent at top */
        );
    /* Glass effect blur */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 1;
}

/* Bottom fade for smooth transition */
/* Bottom fade removed */
.hero::after {
    display: none !important;
}

/* Vertical Text on Left */
.hero-vertical-text {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.3);
    z-index: 2;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

/* Hero Content - Left Aligned */
.hero-content-left {
    max-width: 650px;
    padding: 0;
    text-align: left;
    position: relative;
    z-index: 2;
    margin-left: 80px;
}

/* Admission Badge - Enhanced Glassmorphism */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    text-transform: uppercase;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.hero-badge i {
    font-size: 16px;
}

/* Hero Title - Premium Typography */
.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 24px;
    text-align: left !important;
    font-family: var(--font-heading);
    text-shadow:
        0 4px 24px rgba(0, 0, 0, 0.6),
        0 2px 12px rgba(0, 0, 0, 0.4),
        0 8px 48px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: -0.02em;
}

/* Hero Subtitle - Refined */
.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: left !important;
    font-weight: 400;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5) !important;
    max-width: 580px;
}

/* Hero Buttons - Enhanced */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%) !important;
    border: none !important;
    color: #660000 !important;
    font-weight: 700 !important;
    padding: 16px 32px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    box-shadow:
        0 8px 24px 0 rgba(255, 215, 0, 0.4),
        0 4px 12px 0 rgba(255, 215, 0, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow:
        0 12px 32px 0 rgba(255, 215, 0, 0.5),
        0 6px 16px 0 rgba(255, 215, 0, 0.4),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.4) !important;
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 215, 0, 0.6) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 16px 32px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 215, 0, 0.15) !important;
    border-color: rgba(255, 215, 0, 0.8) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3) !important;
}

/* Hero Contact/Phone - Premium Glass Effect */
.hero-contact {
    display: flex;
    align-items: center;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 16px 0 rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

.hero-phone:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}

.hero-phone i {
    font-size: 18px;
}

/* ========================================
   FORMS - YELLOW FOCUS
   ======================================== */
.form-control {
    background: var(--color-white) !important;
    border: 2px solid var(--color-gray-300) !important;
    color: var(--color-gray-800) !important;
    backdrop-filter: none !important;
}

.form-control:focus {
    border-color: var(--color-secondary) !important;
    box-shadow:
        0 0 0 4px rgba(255, 215, 0, 0.15),
        0 2px 8px 0 rgba(255, 215, 0, 0.2) !important;
}

.form-label {
    color: var(--color-gray-800) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}

/* ========================================
   FOOTER - GRADIENT BACKGROUND
   ======================================== */
.footer {
    background: var(--gradient-hero) !important;
    color: var(--color-gray-300) !important;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.footer-title {
    color: var(--color-secondary) !important;
}

.footer-link {
    color: var(--color-gray-400) !important;
}

.footer-link:hover {
    color: var(--color-secondary) !important;
}

/* ========================================
   SECTION BACKGROUNDS - GRADIENT VARIANTS
   ======================================== */
.section {
    background: var(--color-white);
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(180deg, #FAF9F7 0%, #F5F3F0 100%);
}

.section-glossy {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

/* Gradient section variant */
.section-gradient {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
}

/* ========================================
   STAT CARDS - GRADIENT BACKGROUNDS
   ======================================== */
.stat-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%) !important;
    border: 2px solid transparent !important;
    border-image: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%) 1 !important;
    box-shadow: 0 4px 12px -2px rgba(139, 0, 0, 0.08) !important;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stat-number {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(139, 0, 0, 0.2));
}

/* ========================================
   SECTION TITLES - GRADIENT UNDERLINE
   ======================================== */
.section-title {
    position: relative;
}

.section-title::after {
    background: var(--gradient-warm) !important;
    box-shadow: 0 2px 8px 0 rgba(139, 0, 0, 0.3);
    height: 4px !important;
}

/* ========================================
   LINKS & TEXT
   ======================================== */
a {
    color: var(--color-primary) !important;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark) !important;
    text-shadow: 0 0 8px rgba(139, 0, 0, 0.3);
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   GLOSSY HIGHLIGHTS
   ======================================== */
.glossy {
    position: relative;
    overflow: hidden;
}

.glossy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

/* ========================================
   ACCENT COLORS & GRADIENTS
   ======================================== */
.bg-primary {
    background: var(--color-primary) !important;
}

.bg-secondary {
    background: var(--color-secondary) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-secondary {
    background: var(--gradient-secondary) !important;
}

.bg-gradient-warm {
    background: var(--gradient-warm) !important;
}

.bg-gradient-hero {
    background: var(--gradient-hero) !important;
}

/* ========================================
   SHADOWS - RED & GOLD TINTED
   ======================================== */
.shadow {
    box-shadow: 0 4px 12px -2px rgba(139, 0, 0, 0.1) !important;
}

.shadow-lg {
    box-shadow: 0 10px 30px -5px rgba(139, 0, 0, 0.15) !important;
}

.shadow-xl {
    box-shadow: 0 20px 40px -10px rgba(139, 0, 0, 0.25) !important;
}

.shadow-gold {
    box-shadow: 0 8px 20px -4px rgba(255, 215, 0, 0.3) !important;
}

/* ========================================
   GLOW EFFECTS
   ======================================== */
.glow-primary {
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5), 0 0 40px rgba(139, 0, 0, 0.3) !important;
}

.glow-secondary {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4) !important;
}

.glow-gold {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7), 0 0 50px rgba(255, 165, 0, 0.5) !important;
}

/* ========================================
   BORDER GRADIENTS
   ======================================== */
.border-gradient {
    border: 2px solid transparent !important;
    border-image: var(--gradient-warm) 1 !important;
}


/* ========================================
   CLEAN & MODERN COMPONENT STYLES - RED/DARK THEME OVERRIDES
   ======================================== */

/* Cards - White, Clean, Soft Shadow */
.card {
    background: #FFFFFF !important;
    border: 1px solid var(--color-gray-100) !important;
    border-radius: 12px !important;
    box-shadow: var(--shadow-sm) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
    border-color: transparent !important;
}

/* Remove old glassmorphism/gradient overlays from cards */
.card::before,
.card::after {
    display: none !important;
}

/* Stats Section / Dark Banners */
.bg-dark-theme,
.section-stats,
.bg-gray-50 {
    background: var(--color-secondary) !important;
    /* #0B0F19 */
    color: var(--color-white) !important;
}

/* Ensure text in dark sections is white */
.bg-dark-theme h2,
.bg-dark-theme p,
.section-stats h2,
.section-stats p,
.bg-gray-50 h2,
.bg-gray-50 p,
.bg-gray-50 .card-title,
.bg-gray-50 .card-text {
    color: var(--color-white) !important;
}

/* If cards are inside a dark section, keep them white text? No, image shows white cards on white bg usually. 
   But if 'Program Highlights' has bg-gray-50, we made it dark. Let's adjust cards inside dark sections if needed.
   Actually image shows white cards on white background. 
   Let's keep bg-gray-50 as light gray actually, only Stats should be dark. 
*/

.bg-gray-50 {
    background: #F9FAFB !important;
    /* Reset to light gray */
    color: var(--color-gray-800) !important;
}

.bg-gray-50 h2,
.bg-gray-50 h3,
.bg-gray-50 p,
.bg-gray-50 .card-title,
.bg-gray-50 .card-text {
    color: inherit !important;
    /* Reset color */
}

/* Stat Cards specifically - Glass Effect */
.stat-card {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.footer {
    background: var(--color-secondary) !important;
    /* Dark Navy */
    color: var(--color-gray-400) !important;
    border-top: none !important;
    position: relative;
    padding-top: 60px;
}

.footer::before {
    display: none !important;
}

.footer-title {
    color: var(--color-white) !important;
    margin-bottom: 20px;
    border: none !important;
}

.footer-title::after {
    display: none !important;
}

.footer-link {
    color: var(--color-gray-400) !important;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-white) !important;
    transform: translateX(3px);
}

/* Buttons */
.btn {
    border-radius: 50px;
    /* Pill shape matches reference */
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-primary) !important;
    /* Solid Red */
    box-shadow: 0 4px 6px rgba(227, 30, 36, 0.3) !important;
    border: none !important;
    color: white !important;
    text-shadow: none !important;
}

.btn-primary:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(227, 30, 36, 0.4) !important;
}

/* Remove gradient overlays from buttons */
.btn-primary::before,
.btn-primary::after {
    display: none !important;
}

.btn-secondary {
    /* Used for white/outline buttons on colored backgrounds */
    background: white !important;
    color: var(--color-primary) !important;
    border: 1px solid white !important;
    box-shadow: var(--shadow-md) !important;
}

.btn-secondary:hover {
    background: var(--color-gray-50) !important;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    background: transparent !important;
}

.btn-outline:hover {
    background: var(--color-primary) !important;
    color: white !important;
    box-shadow: none !important;
}

/* Navigation - Clean White */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid var(--color-gray-200) !important;
    box-shadow: var(--shadow-sm) !important;
}

.navbar .nav-link {
    color: var(--color-gray-700) !important;
}

.navbar .nav-link:hover {
    color: var(--color-primary) !important;
}

/* Icons - Vibrant Red */
.text-primary,
i.fas,
i.fab {
    color: var(--color-primary);
}

/* CTA Section specific override if it exists */

/* HERO GRADIENT UPDATE - NEW VIBRANT RED */
/* HERO OVERLAY - DARK GRADIENT FOR TEXT LEGIBILITY */
.hero::before {
    display: block !important;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Neutral dark gradient: darker at bottom for text, lighter at top */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.2) 100%) !important;
    pointer-events: none;
    z-index: 1;
}

/* HERO PADDING FIX FOR FIXED HEADER */
.hero {
    padding-top: 120px !important;
    align-items: center !important;
    /* Keep centering but with top padding */
}

/* Custom Yellow Button for CTA */
.btn-custom-yellow {
    background: white !important;
    color: #FFA000 !important;
    border: 2px solid #FFA000 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.btn-custom-yellow:hover {
    background: #FFF8E1 !important;
    /* Light yellow tint */
    transform: translateY(-2px) !important;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.6) !important;
    /* Gold Glow */
    color: #FF8F00 !important;
    /* Darker gold text on hover */
}