/* ========== HOPE INDUSTRIAL POWER EQUIPMENTS - LIGHT THEME VERSION ========== */

/* Custom Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* ========== ROOT VARIABLES - LIGHT THEME ========== */
:root {
    /* Primary Colors - Light Theme */
    --primary-white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --border-gray: #dee2e6;
    --dark-gray: #495057;
    
    /* Accent Colors - Bold Red Theme (unchanged) */
    --hope-red: #e30613;
    --hope-red-dark: #b8050f;
    --hope-red-bright: #ff3333;
    --hope-red-glow: rgba(227, 6, 19, 0.2);
    --hope-red-subtle: rgba(227, 6, 19, 0.05);
    
    /* Secondary Accents */
    --industrial-gold: #ffb800;
    --industrial-blue: #0066cc;
    --industrial-silver: #6c757d;
    
    /* Text Colors - Dark for Light Background */
    --text-primary: #212529;
    --text-secondary: #343a40;
    --text-muted: #6c757d;
    --text-light: #495057;
    --text-white: #ffffff;
    
    /* Background Gradients */
    --gradient-red: linear-gradient(135deg, #e30613 0%, #ff4d4d 100%);
    --gradient-red-reverse: linear-gradient(135deg, #ff4d4d 0%, #e30613 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --gradient-gold: linear-gradient(135deg, #ffb800 0%, #ffd700 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(227, 6, 19, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    
    /* Typography */
    --font-display: 'Oswald', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 9999px;
    
    /* Shadows - Lighter for Light Theme */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-red: 0 4px 12px rgba(227, 6, 19, 0.2);
    --shadow-gold: 0 4px 12px rgba(255, 184, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========== BASE RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--primary-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(227, 6, 19, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(227, 6, 19, 0.02) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
}

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* ========== ENHANCED HEADER ========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gray);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.main-header.scrolled::after {
    transform: scaleX(1);
}

.header-shrink {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

/* Top Bar */
.top-bar {
    background: var(--light-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 0.9rem;
    position: relative;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a i {
    color: var(--hope-red);
    font-size: 0.9rem;
}

.contact-info a:hover {
    color: var(--hope-red);
}

.separator {
    color: var(--border-gray);
    font-weight: 300;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white !important;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25D366 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-gray);
}

.social-links a:hover {
    background: var(--gradient-red);
    color: white;
    transform: translateY(-3px) rotate(360deg);
    border-color: var(--hope-red);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    transition: padding var(--transition-normal);
}

.header-shrink .main-nav {
    padding: 0.5rem 0;
}

/* Brand Logo */
.nav-brand {
    flex: 0 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.logo-link:hover {
    transform: translateX(5px);
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform var(--transition-bounce);
}

.logo-img.logo-rotate:hover {
    transform: rotate(360deg) scale(1.1);
}

.header-shrink .logo-img {
    width: 50px;
    height: 50px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-shrink .brand-title {
    font-size: 1.4rem;
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    position: relative;
    border-radius: var(--radius-md);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
    color: var(--hope-red);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: transform var(--transition-normal);
}

.mega-menu-parent:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* CTA Button in Nav */
.cta-item .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    width: 32px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    transform-origin: center;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background: var(--hope-red);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background: var(--hope-red);
}

/* ========== COMPACT MEGA MENU - REDESIGNED ========== */
.mega-menu-parent {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 90%;
    max-width: 1000px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow: hidden;
}

.mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-container {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.mega-menu-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-gray);
    position: relative;
}

.mega-menu-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--hope-red);
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.mega-menu-header p {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mega-menu-column {
    padding: 0;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 1rem;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-gray);
}

.mega-menu-column:hover {
    border-color: var(--hope-red);
    box-shadow: var(--shadow-md);
}

.mega-menu-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hope-red);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--hope-red);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-title i {
    font-size: 1rem;
    color: var(--hope-red);
}

.mega-menu-links {
    list-style: none;
    margin-bottom: 1rem;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-gray);
    transition: all var(--transition-fast);
    position: relative;
}

.mega-menu-link i {
    font-size: 0.7rem;
    color: var(--hope-red);
    transition: transform var(--transition-normal);
}

.mega-menu-link:hover {
    color: var(--hope-red);
    padding-left: 0.5rem;
    background: rgba(227, 6, 19, 0.02);
}

.mega-menu-link:hover i {
    transform: translateX(3px);
}

/* CTA Box in Mega Menu */
.mega-menu-cta {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--hope-red);
    margin-top: 1rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.mega-menu-cta h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.mega-menu-cta p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* ========== ENHANCED BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    border-color: var(--hope-red);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3);
}

.btn-secondary {
    background: var(--medium-gray);
    color: var(--text-primary);
    border-color: var(--border-gray);
}

.btn-secondary:hover {
    background: var(--border-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-red {
    background: transparent;
    color: var(--hope-red);
    border-color: var(--hope-red);
}

.btn-outline-red:hover {
    background: var(--gradient-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-outline-gold {
    background: transparent;
    color: var(--industrial-gold);
    border-color: var(--industrial-gold);
}

.btn-outline-gold:hover {
    background: var(--gradient-gold);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ========== ENHANCED HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--primary-white) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, rgba(227, 6, 19, 0.02) 0px, transparent 1px, transparent 60px),
        repeating-linear-gradient(0deg, rgba(227, 6, 19, 0.02) 0px, transparent 1px, transparent 60px);
    z-index: 2;
    animation: patternMove 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-red);
    color: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-red);
}

.badge-outline {
    background: transparent;
    border: 2px solid var(--hope-red);
    color: var(--hope-red);
    box-shadow: none;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.2s both;
    color: var(--text-primary);
}

.hero-title .text-red {
    color: var(--hope-red);
    position: relative;
    display: inline-block;
}

.hero-title .text-red::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-red);
    opacity: 0.2;
    z-index: -1;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    animation: fadeInUp 1s ease 1s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--hope-red);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-item strong::after {
    content: '+';
    font-size: 1.5rem;
    position: absolute;
    margin-left: 5px;
    color: var(--industrial-gold);
}

.stat-item span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--hope-red);
    border-radius: 50%;
    color: var(--hope-red);
    font-size: 1rem;
    animation: bounce 2s infinite;
    transition: all var(--transition-normal);
    background: white;
}

.scroll-down:hover {
    background: var(--gradient-red);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

/* ========== SECTION UTILITIES ========== */
.section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.section-dark {
    background: var(--light-gray);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 0;
    font-weight: 400;
}

/* ========== GRID SYSTEM ========== */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ========== CARD COMPONENTS ========== */
.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-gray);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--hope-red);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    transform: scaleX(1);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-glow:hover {
    box-shadow: var(--shadow-lg), 0 0 20px var(--hope-red-glow);
}

/* ========== ICON COMPONENTS ========== */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 2px solid var(--hope-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all var(--transition-normal);
}

.card:hover .icon-circle {
    border-color: var(--hope-red-bright);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-red);
}

.industrial-icon {
    font-size: 2rem;
    color: var(--hope-red);
    transition: all var(--transition-normal);
}

.card:hover .industrial-icon {
    color: var(--hope-red-bright);
    transform: scale(1.1);
}

/* ========== DEALER CARDS ========== */
.dealer-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.dealer-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.dealer-card:hover {
    border-color: var(--hope-red);
    box-shadow: var(--shadow-lg);
}

.dealer-card .card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.05) 0%, rgba(227, 6, 19, 0.01) 100%);
    border-bottom: 1px solid var(--border-gray);
}

.dealer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--gradient-red);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-red);
}

.dealer-badge i {
    font-size: 1rem;
}

.dealer-card .card-body {
    padding: 1.5rem;
}

.dealer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dealer-description {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== BRAND STRIP ========== */
.brand-strip {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.strip-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.brand-item {
    position: relative;
    transition: all var(--transition-normal);
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
}

.brand-item strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    display: block;
}

.brand-item:hover {
    background: rgba(227, 6, 19, 0.05);
    border-color: var(--hope-red);
    transform: scale(1.05);
}

.brand-item:hover strong {
    color: var(--hope-red);
}

/* ========== PRODUCT CARDS ========== */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-description {
    font-family: var(--font-body);
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
    font-size: 0.95rem;
}

.product-features {
    list-style: none;
    margin: 1rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-gray);
}

.product-features li i {
    color: var(--hope-red);
    font-size: 0.9rem;
}

.card-footer {
    padding: 1rem 0 0;
    border-top: 1px solid var(--border-gray);
    margin-top: auto;
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-gray);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--text-primary);
}

.breadcrumb {
    margin-top: 0.5rem;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--hope-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--hope-red-dark);
}

.breadcrumb-item.active {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
    border: 2px solid white;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.whatsapp-text {
    display: none;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 45px;
    height: 45px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-red);
    z-index: 900;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    border: 2px solid white;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--light-gray);
    border-top: 3px solid var(--hope-red);
    position: relative;
}

.footer-top {
    padding: 3rem 0 2rem;
    background: white;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-column h3,
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hope-red);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after,
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
}

.footer-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-family: var(--font-body);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a i {
    color: var(--hope-red);
    font-size: 0.7rem;
    transition: transform var(--transition-fast);
}

.footer-links a:hover {
    color: var(--hope-red);
    padding-left: 0.3rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--hope-red);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--hope-red);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient-red);
    color: white;
    border-color: var(--hope-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.footer-bottom {
    padding: 1.5rem 0;
    background: var(--light-gray);
    border-top: 1px solid var(--border-gray);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    margin-top: 0.3rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.3rem;
    transition: color var(--transition-fast);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--hope-red);
}

.footer-credits {
    text-align: right;
}

.footer-credits p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.footer-credits i {
    color: var(--hope-red);
    margin-right: 0.3rem;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: var(--gradient-red);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.1) 15px, rgba(255, 255, 255, 0.1) 16px);
    animation: diagonalMove 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-actions .btn-secondary {
    background: white;
    color: var(--hope-red);
    border-color: white;
}

.cta-actions .btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* ========== FORM COMPONENTS ========== */
.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--hope-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-input {
    width: 16px;
    height: 16px;
    accent-color: var(--hope-red);
}

.form-check-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: var(--shadow-red);
    }
    50% {
        box-shadow: 0 8px 25px rgba(227, 6, 19, 0.3);
    }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

@keyframes diagonalMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .mega-menu {
        width: 95%;
        max-width: 900px;
    }
    
    .mega-menu-container {
        padding: 1.2rem;
    }
    
    .mega-menu-grid {
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        padding: 5rem 1.5rem 1.5rem;
        transition: right var(--transition-slow);
        overflow-y: auto;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu-wrapper.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .nav-link {
        width: 100%;
        padding: 0.8rem 0;
        justify-content: space-between;
    }
    
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height var(--transition-normal);
    }
    
    .mega-menu-parent.active .mega-menu {
        max-height: 800px;
        opacity: 1;
        visibility: visible;
    }
    
    .mega-menu-container {
        padding: 1rem 0;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .top-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credits {
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .brand-logos {
        gap: 0.8rem;
    }
    
    .brand-item strong {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .back-to-top {
        left: 1rem;
        bottom: 1rem;
    }
    
    .card {
        padding: 1.2rem;
    }
    
    .page-header {
        padding: 6rem 0 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
}