/* ============================================
   RHINO LIGHTS - DARK PREMIUM THEME
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES - DESIGN SYSTEM
   ============================================ */
:root {
    /* Primary Colors */
    --rhino-primary-orange: #c7782b;
    --rhino-primary-orange-hover: #b66a25;
    --rhino-primary-orange-light: rgba(199, 120, 43, 0.1);
    
    /* Secondary Accent - Neon Green (light glows only) */
    --rhino-neon-green: #39ff14;
    --rhino-neon-green-glow: rgba(57, 255, 20, 0.3);
    
    /* Background Colors */
    --rhino-dark-bg: #0a0a0a;
    --rhino-dark-bg-secondary: #101010;
    --rhino-dark-bg-tertiary: #1a1a1a;
    --rhino-card-bg: #141414;
    --rhino-card-bg-hover: #1d1d1d;
    
    /* Text Colors */
    --rhino-text-light: #f5f5f5;
    --rhino-text-grey: #a0a0a0;
    --rhino-text-muted: #6b6b6b;
    
    /* Border Colors */
    --rhino-border: #2a2a2a;
    --rhino-border-light: rgba(42, 42, 42, 0.5);
    
    /* Shadows */
    --rhino-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --rhino-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --rhino-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --rhino-shadow-orange: 0 4px 20px rgba(199, 120, 43, 0.3);
    
    /* Typography */
    --rhino-font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --rhino-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --rhino-section-padding: 100px 0;
    --rhino-section-padding-mobile: 60px 0;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
/* Only apply dark theme when explicitly enabled */
body.rhino-dark-theme,
html.rhino-dark-theme body {
    background-color: var(--rhino-dark-bg) !important;
    color: var(--rhino-text-light) !important;
    font-family: var(--rhino-font-body) !important;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Only apply dark theme colors when dark theme is active */
body.rhino-dark-theme h1,
body.rhino-dark-theme h2,
body.rhino-dark-theme h3,
body.rhino-dark-theme h4,
body.rhino-dark-theme h5,
body.rhino-dark-theme h6,
body.rhino-dark-theme .h1,
body.rhino-dark-theme .h2,
body.rhino-dark-theme .h3,
body.rhino-dark-theme .h4,
body.rhino-dark-theme .h5,
body.rhino-dark-theme .h6,
html.rhino-dark-theme body h1,
html.rhino-dark-theme body h2,
html.rhino-dark-theme body h3,
html.rhino-dark-theme body h4,
html.rhino-dark-theme body h5,
html.rhino-dark-theme body h6,
html.rhino-dark-theme body .h1,
html.rhino-dark-theme body .h2,
html.rhino-dark-theme body .h3,
html.rhino-dark-theme body .h4,
html.rhino-dark-theme body .h5,
html.rhino-dark-theme body .h6 {
    font-family: var(--rhino-font-heading) !important;
    font-weight: 700 !important;
    color: var(--rhino-text-light) !important;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1, .h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2, .h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4, .h4 { font-size: clamp(1.25rem, 2.5vw, 2rem); }

/* Only apply dark theme paragraph colors when dark theme is active */
body.rhino-dark-theme p,
html.rhino-dark-theme body p {
    color: var(--rhino-text-grey);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Text Utilities */
.text-primary {
    color: var(--rhino-primary-orange) !important;
}

.text-muted {
    color: var(--rhino-text-muted) !important;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
#header {
    background: linear-gradient(135deg, #050609 0%, #0f1118 100%) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
    box-shadow: var(--rhino-shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.header-sticky {
    background: rgba(10, 10, 10, 0.98) !important;
    box-shadow: var(--rhino-shadow-lg);
}

/* Header Main Container */
.header-main {
    padding: 1rem 0;
}

/* Logo */
.header-logo img {
    max-height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
}

/* Navigation */
.header-nav-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-nav.nav-left {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-nav.nav-right {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: #9fa4b5 !important;
    font-family: var(--rhino-font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--rhino-primary-orange);
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rhino-primary-orange) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Shop Now CTA Button */
.header-cta {
    margin-left: auto;
}

.btn-shop-now {
    background: var(--rhino-primary-orange);
    color: white !important;
    font-family: var(--rhino-font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--rhino-shadow-orange);
    text-decoration: none;
    display: inline-block;
}

.btn-shop-now:hover {
    background: var(--rhino-primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(199, 120, 43, 0.4);
    color: white !important;
}

/* ============================================
   MEGA MENU NAVIGATION
   ============================================ */
.dropdown-mega-menu {
    min-width: 900px;
    max-width: 1200px;
    padding: 2rem !important;
    background: linear-gradient(135deg, #050609 0%, #0f1118 100%) !important;
    border: 1px solid var(--rhino-border) !important;
    border-radius: 12px !important;
    box-shadow: var(--rhino-shadow-lg) !important;
    margin-top: 1rem !important;
}

.dropdown-mega-content {
    width: 100%;
}

.dropdown-mega-sub-title {
    font-family: var(--rhino-font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rhino-primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rhino-border);
}

.dropdown-mega-sub-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-mega-sub-nav .dropdown-item {
    color: #9fa4b5 !important;
    font-family: var(--rhino-font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0 !important;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

.dropdown-mega-sub-nav .dropdown-item:hover {
    color: var(--rhino-primary-orange) !important;
    background: rgba(199, 120, 43, 0.1);
    padding-left: 0.5rem !important;
    transform: translateX(4px);
}

/* Mega Menu CTA Item */
.dropdown-item-cta {
    background: linear-gradient(135deg, rgba(199, 120, 43, 0.1) 0%, rgba(199, 120, 43, 0.05) 100%) !important;
    border: 1px solid var(--rhino-primary-orange) !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    text-align: center !important;
    margin-top: 1rem !important;
    transition: all 0.3s ease !important;
}

.dropdown-item-cta:hover {
    background: var(--rhino-primary-orange) !important;
    border-color: var(--rhino-primary-orange) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--rhino-shadow-orange) !important;
}

.dropdown-item-cta strong {
    display: block;
    font-size: 1rem;
    color: var(--rhino-primary-orange);
    margin-bottom: 0.25rem;
}

.dropdown-item-cta:hover strong {
    color: white;
}

.dropdown-item-cta .small {
    color: var(--rhino-text-grey);
    font-size: 0.8rem;
}

.dropdown-item-cta:hover .small {
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-divider {
    border-color: var(--rhino-border);
    margin: 0.5rem 0;
    opacity: 0.5;
}

/* Standard Dropdown Menu Styling */
.dropdown-menu {
    background: linear-gradient(135deg, #050609 0%, #0f1118 100%) !important;
    border: 1px solid var(--rhino-border) !important;
    border-radius: 8px !important;
    box-shadow: var(--rhino-shadow-lg) !important;
    padding: 0.5rem 0 !important;
    margin-top: 0.5rem !important;
    min-width: 220px !important;
}

.dropdown-item {
    color: #9fa4b5 !important;
    font-family: var(--rhino-font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
}

.dropdown-item:hover {
    color: var(--rhino-primary-orange) !important;
    background: rgba(199, 120, 43, 0.1) !important;
    padding-left: 1.75rem !important;
}

.dropdown-item i {
    color: var(--rhino-primary-orange);
    font-size: 0.9rem;
}

.dropdown-item:hover i {
    color: var(--rhino-primary-orange);
}

/* 3-Tier Navigation Styling */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0.5rem;
    margin-top: 0;
    z-index: 1001;
    min-width: 200px;
}

/* Desktop: Show on hover */
@media (min-width: 992px) {
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
    
    /* Keep submenu open when hovering over it */
    .dropdown-submenu > .dropdown-menu:hover {
        display: block;
    }
}

/* Mobile: Show on click via JavaScript */
.dropdown-submenu.open > .dropdown-menu {
    display: block;
}

/* Desktop: Submenus open to the right */
@media (min-width: 992px) {
    .dropdown-submenu > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: 0.5rem;
        margin-top: 0;
    }
    
    /* Third tier submenu */
    .dropdown-submenu .dropdown-submenu > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: 0.5rem;
        margin-top: 0;
    }
    
    /* Arrow indicator for items with submenus */
    .dropdown-submenu > .dropdown-item::after {
        content: '\f285'; /* Bootstrap Icons chevron-right */
        font-family: 'bootstrap-icons';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.75rem;
        color: var(--rhino-primary-orange);
        transition: transform 0.3s ease;
    }
    
    .dropdown-submenu:hover > .dropdown-item::after {
        transform: translateY(-50%) translateX(3px);
    }
}

/* Mobile: Submenus stack vertically */
@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 0.5rem !important;
        background: rgba(0, 0, 0, 0.3) !important;
        border-left: 2px solid var(--rhino-primary-orange) !important;
        border-radius: 0 8px 8px 0 !important;
        padding-left: 1rem !important;
    }
    
    .dropdown-submenu .dropdown-submenu > .dropdown-menu {
        position: static !important;
        margin-left: 0 !important;
        margin-top: 0.5rem !important;
        background: rgba(0, 0, 0, 0.4) !important;
        padding-left: 1.5rem !important;
    }
    
    /* Mobile submenu indicator */
    .dropdown-submenu > .dropdown-item::after {
        content: '\f282'; /* Bootstrap Icons chevron-down */
        font-family: 'bootstrap-icons';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.75rem;
        color: var(--rhino-primary-orange);
        transition: transform 0.3s ease;
    }
    
    .dropdown-submenu.open > .dropdown-item::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Indent submenu items on mobile */
    .dropdown-submenu .dropdown-item {
        padding-left: 2rem !important;
    }
    
    .dropdown-submenu .dropdown-submenu .dropdown-item {
        padding-left: 3rem !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-premium {
    position: relative;
    background: linear-gradient(135deg, var(--rhino-dark-bg) 0%, var(--rhino-dark-bg-secondary) 100%);
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(199, 120, 43, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Banner Container - Full Width */
.hero-banner-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner-image {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-banner-image:hover .hero-banner-img {
    transform: scale(1.02);
}

/* Overlay for text readability */
.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Hero Content Wrapper - Text Over Banner */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

/* Hero Left Column - Text Content */
.hero-content {
    padding-right: 3rem;
}

.hero-kicker {
    font-family: var(--rhino-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rhino-primary-orange);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-family: var(--rhino-font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--rhino-text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-title .text-primary {
    color: var(--rhino-primary-orange);
}

.hero-subtitle {
    font-family: var(--rhino-font-body);
    font-size: 1.25rem;
    color: var(--rhino-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

/* Hero Meta Items */
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-meta-item i {
    font-size: 1.5rem;
    color: var(--rhino-primary-orange);
}

.hero-meta-item span {
    font-family: var(--rhino-font-body);
    font-size: 0.95rem;
    color: var(--rhino-text-light);
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Hero Right Column - Image Card */
.hero-image-card {
    position: relative;
    background: var(--rhino-card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--rhino-border);
    box-shadow: var(--rhino-shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-image-card:hover {
    border-color: var(--rhino-primary-orange);
    box-shadow: 0 20px 60px rgba(199, 120, 43, 0.2);
}

.hero-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 120, 43, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-image-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 2;
    border-radius: 20px;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 3;
}

.hero-image-card:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(199, 120, 43, 0.4);
}

/* Stat Chips */
.stat-chips {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    z-index: 4;
    justify-content: flex-start;
}

.hero-banner-image .stat-chips {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 5;
}

.stat-chip {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--rhino-border);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--rhino-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rhino-text-light);
}

.stat-chip i {
    color: var(--rhino-primary-orange);
    font-size: 1rem;
}

/* ============================================
   BUILD YOUR SYSTEM STRIP
   ============================================ */
.build-system-strip {
    background: var(--rhino-dark-bg-secondary);
    border-top: 1px solid var(--rhino-border);
    border-bottom: 1px solid var(--rhino-border);
    padding: 2rem 0;
}

.build-system-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.build-system-label {
    font-family: var(--rhino-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--rhino-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 1rem;
}

.build-system-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-pill {
    background: var(--rhino-card-bg);
    border: 1px solid var(--rhino-border);
    color: var(--rhino-text-grey);
    font-family: var(--rhino-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-pill:hover {
    background: var(--rhino-primary-orange);
    border-color: var(--rhino-primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--rhino-shadow-orange);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card-premium {
    background: linear-gradient(135deg, var(--rhino-card-bg) 0%, var(--rhino-dark-bg-secondary) 100%);
    border: 1px solid var(--rhino-border);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rhino-primary-orange) 0%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--rhino-primary-orange);
    box-shadow: var(--rhino-shadow-lg);
}

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

.feature-card-label {
    font-family: var(--rhino-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--rhino-primary-orange);
    margin-bottom: 1rem;
    display: block;
}

.feature-card-premium h3 {
    font-family: var(--rhino-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rhino-text-light);
    margin-bottom: 1rem;
}

.feature-card-premium p {
    font-family: var(--rhino-font-body);
    font-size: 1rem;
    color: var(--rhino-text-grey);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--rhino-primary-orange);
    border-color: var(--rhino-primary-orange);
    color: white !important;
    font-family: var(--rhino-font-body);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--rhino-shadow-orange);
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--rhino-primary-orange-hover);
    border-color: var(--rhino-primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(199, 120, 43, 0.4);
    color: white !important;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--rhino-border);
    color: var(--rhino-text-light) !important;
    font-family: var(--rhino-font-body);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: var(--rhino-primary-orange);
    border-color: var(--rhino-primary-orange);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--rhino-shadow-orange);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.content-section {
    padding: var(--rhino-section-padding);
}

.section-title {
    font-family: var(--rhino-font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--rhino-text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: var(--rhino-font-body);
    font-size: 1.125rem;
    color: var(--rhino-text-grey);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* Mega Menu Responsive */
@media (max-width: 1199px) {
    .dropdown-mega-menu {
        min-width: 800px;
        max-width: 1000px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-premium {
        padding: 0;
    }
    
    .hero-banner-container {
        min-height: 500px;
        margin-bottom: 2rem;
    }
    
    .hero-banner-image {
        min-height: 500px;
    }
    
    .hero-content-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .build-system-strip .container {
        flex-direction: column;
        text-align: center;
    }
    
    .build-system-label {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .navbar-nav.nav-left {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-chips {
        position: absolute;
        top: 1rem;
        left: 1rem;
        right: 1rem;
        z-index: 4;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    /* Mega Menu Mobile - Stack columns */
    .dropdown-mega-menu {
        min-width: auto;
        max-width: 100%;
        padding: 1.5rem !important;
    }
    
    .dropdown-mega-content .row {
        flex-direction: column;
    }
    
    .dropdown-mega-content .col-lg-2,
    .dropdown-mega-content .col-md-4,
    .dropdown-mega-content .col-sm-6 {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .dropdown-mega-content .col-lg-2:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-banner-container {
        min-height: 450px;
    }
    
    .hero-banner-image {
        min-height: 450px;
    }
    
    .hero-content-wrapper {
        padding: 2rem 1rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .stat-chips {
        position: absolute;
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        flex-wrap: wrap;
    }
    
    .build-system-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-pill {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-mega-menu {
        padding: 1rem !important;
    }
    
    .dropdown-mega-sub-title {
        font-size: 0.8rem;
    }
    
    .dropdown-mega-sub-nav .dropdown-item {
        font-size: 0.85rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-light {
    color: var(--rhino-text-light) !important;
}

.bg-dark {
    background-color: var(--rhino-dark-bg) !important;
}

.bg-dark-secondary {
    background-color: var(--rhino-dark-bg-secondary) !important;
}

.bg-card {
    background-color: var(--rhino-card-bg) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove default Bootstrap button styles where needed */
.btn {
    border-radius: 50px;
}

/* Override Bootstrap form controls for dark theme - only when dark theme is active */
body.rhino-dark-theme .form-control,
html.rhino-dark-theme body .form-control {
    background-color: var(--rhino-card-bg);
    border-color: var(--rhino-border);
    color: var(--rhino-text-light);
}

body.rhino-dark-theme .form-control:focus,
html.rhino-dark-theme body .form-control:focus {
    background-color: var(--rhino-card-bg);
    border-color: var(--rhino-primary-orange);
    color: var(--rhino-text-light);
    box-shadow: 0 0 0 0.2rem rgba(199, 120, 43, 0.25);
}

/* ============================================
   FOOTER STYLES - GLOBAL
   ============================================ */
footer {
    background-color: var(--bg-dark-2, #141414) !important;
    border-top: 1px solid var(--bg-dark-4, #222222);
    color: #ffffff !important;
}

footer .container,
footer .row,
footer .col,
footer [class*="col-"] {
    background-color: transparent !important;
}

footer .form-control {
    background-color: var(--bg-dark-3, #1a1a1a) !important;
    border: 1px solid var(--bg-dark-4, #222222) !important;
    color: #ffffff !important;
}

footer .form-control::placeholder {
    color: var(--text-gray, #8a8a8a) !important;
}

footer .form-control:focus {
    background-color: var(--bg-dark-3, #1a1a1a) !important;
    border-color: var(--rhino-orange, #c57229) !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.25rem rgba(197, 114, 41, 0.25) !important;
}

footer .border-bottom,
footer .border-top {
    border-color: var(--bg-dark-4, #222222) !important;
}

.footer-title {
    font-family: var(--rhino-font-heading, 'Orbitron', sans-serif);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.footer-logo {
    height: 32px;
}

.social-icon {
    padding: 0.5rem;
    background-color: var(--bg-dark-3, #1a1a1a);
    border-radius: 0.25rem;
    color: var(--text-gray, #8a8a8a);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    background-color: var(--bg-dark-4, #222222);
    color: #ffffff;
}

.footer-link {
    color: var(--text-gray, #8a8a8a) !important;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ffffff !important;
}

.text-muted-custom {
    color: var(--text-gray, #8a8a8a) !important;
}

.led-accent {
    height: 4px;
    background: linear-gradient(to right, transparent, var(--rhino-orange, #c57229), transparent);
}

/* ============================================
   PRODUCT DETAIL PAGE FIXES
   ============================================ */
/* Fix tabs on product detail pages - ensure text is visible */
.nav-tabs .nav-link {
    color: #333 !important;
}

.nav-tabs .nav-link.active {
    color: #333 !important;
    background-color: transparent !important;
}

.nav-tabs .nav-link:hover {
    color: #333 !important;
}

/* Ensure tab content text is readable */
.tab-content,
.tab-pane {
    color: #333 !important;
}

.tab-content p,
.tab-pane p {
    color: #333 !important;
}

/* Override any white text in product descriptions */
#productDescription,
#gallery,
#whatsIncluded,
#installInstructions,
#frequentlyBought {
    color: #333 !important;
}

#productDescription p,
#gallery p,
#whatsIncluded p,
#installInstructions p,
#frequentlyBought p {
    color: #333 !important;
}