/* ========== HOPE INDUSTRIAL POWER EQUIPMENTS - PREMIUM PROFESSIONAL DESIGN ========== */

/* 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 - ENHANCED COLOR PALETTE ========== */
:root {
    /* Primary Colors - Industrial Theme */
    --primary-black: #0a0a0a;
    --deep-charcoal: #121212;
    --metal-grey: #1e1e1e;
    --steel-grey: #2a2a2a;
    --light-metal: #333333;
    
    /* Accent Colors - Bold Red Theme */
    --hope-red: #e30613;
    --hope-red-dark: #b8050f;
    --hope-red-bright: #ff3333;
    --hope-red-glow: rgba(227, 6, 19, 0.3);
    --hope-red-subtle: rgba(227, 6, 19, 0.1);
    
    /* Secondary Accents */
    --industrial-gold: #ffb800;
    --industrial-blue: #0066cc;
    --industrial-silver: #c0c0c0;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #f0f0f0;
    --text-muted: #a0a0a0;
    --text-light: #cccccc;
    --text-dark: #666666;
    
    /* Gradient Accents */
    --gradient-red: linear-gradient(135deg, #e30613 0%, #ff4d4d 100%);
    --gradient-red-reverse: linear-gradient(135deg, #ff4d4d 0%, #e30613 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1e1e1e 100%);
    --gradient-metal: linear-gradient(180deg, #1e1e1e 0%, #2a2a2a 100%);
    --gradient-gold: linear-gradient(135deg, #ffb800 0%, #ffd700 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(227, 6, 19, 0.2) 0%, rgba(0, 0, 0, 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: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-red: 0 8px 32px rgba(227, 6, 19, 0.3);
    --shadow-gold: 0 8px 32px rgba(255, 184, 0, 0.3);
    
    /* 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-black);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Animated 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.03) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(227, 6, 19, 0.03) 0%, transparent 30%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 1px, transparent 1px, transparent 20px);
    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(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(227, 6, 19, 0.2);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.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(10, 10, 10, 0.98);
    box-shadow: var(--shadow-lg);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(227, 6, 19, 0.3);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.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-light);
    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-bright);
    transform: translateX(3px);
}

.separator {
    color: var(--hope-red);
    font-weight: 300;
    opacity: 0.5;
}

.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: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.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.8rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    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: 3px;
    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-bright);
    background: rgba(227, 6, 19, 0.05);
}

.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.6rem 1.5rem;
    font-size: 0.9rem;
    margin-left: 1rem;
    animation: pulse 2s infinite;
}

/* 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);
}

/* ========== FIXED MEGA MENU - CENTERED PROPERLY ========== */
.mega-menu-parent {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 3px solid var(--hope-red);
    border-bottom: 1px solid rgba(227, 6, 19, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
}

.mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 800px;
}

.mega-menu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.mega-menu-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(227, 6, 19, 0.3);
    position: relative;
}

.mega-menu-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
}

.mega-menu-header h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mega-menu-header p {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mega-menu-column {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(42, 42, 42, 0.4) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(227, 6, 19, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mega-menu-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-red);
    transition: height var(--transition-slow);
}

.mega-menu-column:hover {
    border-color: var(--hope-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

.mega-menu-column:hover::before {
    height: 100%;
}

.mega-menu-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--hope-red);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--hope-red);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-menu-title i {
    font-size: 1.6rem;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mega-menu-links {
    list-style: none;
    margin-bottom: 1.5rem;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    position: relative;
}

.mega-menu-link i {
    font-size: 0.8rem;
    color: var(--hope-red);
    transition: transform var(--transition-normal);
}

.mega-menu-link:hover {
    color: var(--text-primary);
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(227, 6, 19, 0.1), transparent);
}

.mega-menu-link:hover i {
    transform: translateX(5px);
    color: var(--hope-red-bright);
}

/* CTA Box in Mega Menu */
.mega-menu-cta {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.1) 0%, rgba(227, 6, 19, 0.05) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid rgba(227, 6, 19, 0.3);
    margin-top: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mega-menu-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.mega-menu-cta:hover {
    border-color: var(--hope-red);
    transform: scale(1.02);
}

.mega-menu-cta:hover::before {
    opacity: 1;
}

.mega-menu-cta h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.mega-menu-cta p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* ========== ENHANCED BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.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: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--text-primary);
    border-color: var(--hope-red);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(227, 6, 19, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--primary-black);
    transform: translateY(-3px);
    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: var(--text-primary);
    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(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-small {
    padding: 0.6rem 1.3rem;
    font-size: 0.85rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn i {
    font-size: 1.1em;
}

/* ========== ENHANCED HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.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;
    filter: brightness(0.3) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 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.03) 0px, transparent 1px, transparent 60px),
        repeating-linear-gradient(0deg, rgba(227, 6, 19, 0.03) 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.5rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--gradient-red);
    color: var(--text-primary);
    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(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.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.3;
    z-index: -1;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.8s both;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(227, 6, 19, 0.2);
    border-bottom: 1px solid rgba(227, 6, 19, 0.2);
    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(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--hope-red);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px var(--hope-red-glow);
    position: relative;
}

.stat-item strong::after {
    content: '+';
    font-size: 2rem;
    position: absolute;
    top: 0;
    right: -20px;
    color: var(--industrial-gold);
}

.stat-item span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    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: 50px;
    height: 50px;
    border: 2px solid var(--hope-red);
    border-radius: 50%;
    color: var(--hope-red);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    transition: all var(--transition-normal);
    background: rgba(227, 6, 19, 0.1);
    backdrop-filter: blur(5px);
}

.scroll-down:hover {
    background: var(--gradient-red);
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

/* ========== SECTION UTILITIES ========== */
.section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--primary-black) 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(227, 6, 19, 0.02) 50px, rgba(227, 6, 19, 0.02) 51px);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-weight: 400;
}

/* ========== GRID SYSTEM ========== */
.grid {
    display: grid;
    gap: 2rem;
}

.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: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(227, 6, 19, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--hope-red);
    box-shadow: var(--shadow-xl), 0 0 40px var(--hope-red-glow);
}

.card:hover::before {
    opacity: 1;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

.hover-glow:hover {
    box-shadow: var(--shadow-xl), 0 0 40px var(--hope-red-glow);
}

/* ========== ICON COMPONENTS ========== */
.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 3px solid var(--hope-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.card:hover .icon-circle {
    border-color: var(--hope-red-bright);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px var(--hope-red-glow);
}

.industrial-icon {
    font-size: 3rem;
    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: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.dealer-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(227, 6, 19, 0.3);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.dealer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.1), transparent);
    transition: left 0.6s;
}

.dealer-card:hover::before {
    left: 100%;
}

.dealer-card .card-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.2) 0%, rgba(227, 6, 19, 0.05) 100%);
    border-bottom: 2px solid rgba(227, 6, 19, 0.3);
}

.dealer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-red);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-red);
}

.dealer-badge i {
    font-size: 1.2rem;
}

.dealer-card .card-body {
    padding: 2rem;
}

.dealer-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dealer-description {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ========== BRAND STRIP ========== */
.brand-strip {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(18, 18, 18, 0.9) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(227, 6, 19, 0.2);
    margin-top: 3rem;
}

.strip-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.brand-item {
    position: relative;
    transition: all var(--transition-normal);
    cursor: pointer;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

.brand-item strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    display: block;
}

.brand-item:hover {
    background: rgba(227, 6, 19, 0.1);
    transform: scale(1.1);
}

.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.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-description {
    font-family: var(--font-body);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex: 1;
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-features li i {
    color: var(--hope-red);
    font-size: 1rem;
}

.card-footer {
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(227, 6, 19, 0.2);
    margin-top: auto;
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M10 10 L90 10 L50 90 Z" fill="%23e30613"/></svg>') repeat;
    background-size: 50px 50px;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breadcrumb {
    margin-top: 1rem;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--hope-red);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--hope-red-bright);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-text {
    display: none;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    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 rgba(255, 255, 255, 0.2);
}

.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), 0 0 40px rgba(227, 6, 19, 0.6);
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--deep-charcoal);
    border-top: 3px solid var(--hope-red);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(18, 18, 18, 0.9) 100%);
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(227, 6, 19, 0.02) 20px, rgba(227, 6, 19, 0.02) 21px);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-column h3,
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hope-red);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.footer-column h3::after,
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
}

.footer-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-family: var(--font-body);
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    color: var(--hope-red);
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.footer-links a:hover {
    color: var(--hope-red-bright);
    padding-left: 0.5rem;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.footer-contact i {
    color: var(--hope-red);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--hope-red);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.1);
    border: 2px solid rgba(227, 6, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hope-red);
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient-red);
    color: var(--text-primary);
    border-color: var(--hope-red);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-red);
}

.footer-bottom {
    padding: 2rem 0;
    background: var(--primary-black);
    border-top: 1px solid rgba(227, 6, 19, 0.2);
}

.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.95rem;
}

.footer-legal {
    margin-top: 0.5rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--hope-red);
}

.footer-credits {
    text-align: right;
}

.footer-credits p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-credits i {
    color: var(--hope-red);
    margin-right: 0.3rem;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: var(--gradient-red);
    padding: 5rem 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 20px, rgba(0, 0, 0, 0.1) 20px, rgba(0, 0, 0, 0.1) 21px);
    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(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-actions .btn-secondary {
    background: var(--text-primary);
    color: var(--hope-red);
    border-color: var(--text-primary);
}

.cta-actions .btn-secondary:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* ========== FORM COMPONENTS ========== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(227, 6, 19, 0.3);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--hope-red);
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
    accent-color: var(--hope-red);
}

.form-check-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== 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(-15px); }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: var(--shadow-red);
    }
    50% {
        box-shadow: 0 12px 40px rgba(227, 6, 19, 0.6);
    }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@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-container {
        padding: 2rem;
    }
    
    .mega-menu-grid {
        gap: 1.5rem;
    }
    
    .mega-menu-column {
        padding: 1.5rem;
    }
}

@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: 350px;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        transition: right var(--transition-slow);
        overflow-y: auto;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .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 rgba(227, 6, 19, 0.1);
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 0;
        justify-content: space-between;
    }
    
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: transparent;
        border: none;
        max-height: 0;
        overflow: hidden;
        transform: none;
    }
    
    .mega-menu-parent.active .mega-menu {
        max-height: 800px;
        opacity: 1;
        visibility: visible;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .top-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-menu-wrapper {
        width: 100%;
    }
    
    .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: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .brand-logos {
        gap: 1rem;
    }
    
    .brand-item strong {
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .back-to-top {
        left: 1rem;
        bottom: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

/* ========== ACCESSIBILITY ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles */
*:focus-visible {
    outline: 2px solid var(--hope-red);
    outline-offset: 3px;
}

/* ========== PRINT STYLES ========== */
@media print {
    .main-header,
    .top-bar,
    .hero-scroll-indicator,
    .mobile-menu-toggle,
    .whatsapp-float,
    .back-to-top,
    .footer-social,
    .cta-banner {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card {
        break-inside: avoid;
        border: 1px solid #ddd;
    }
}