/* ═══════════════════════════════════════════════════════════════
   OREMARC — Transporte de Carga Especializada
   Styles v2.0 — Professional Build
   ═══════════════════════════════════════════════════════════════ */

/* ─── ROOT VARIABLES ─── */
:root {
    --primary: #65D42C;
    --primary-dark: #4CAF20;
    --primary-glow: rgba(101, 212, 44, 0.15);
    --neon-light: #8fff5a;
    --black: #000;
    --gray: #5B5B5B;
    --dark-bg: #0a0a0a;
    --card-bg: #111;
    --card-bg-2: #161616;
    --card-border: #1a1a1a;
    --text-primary: #fff;
    --text-secondary: #b0b0b0;
    --text-muted: #666;
    --whatsapp: #25D366;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-display: 'Poppins', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark-bg); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; }
a { color: var(--text-primary); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.row { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ─── COMMON ─── */
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.section-tag::before { content: ''; width: 32px; height: 2px; background: var(--primary); border-radius: 2px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px; }
.section-title span { color: var(--primary); }
.section-text { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-size: 14px; font-weight: 600; letter-spacing: .5px; border-radius: var(--radius-full); transition: var(--transition); border: none; cursor: pointer; text-decoration: none; font-family: var(--font-body); }
.btn-primary { background: var(--primary); color: var(--black); }
.btn-primary:hover { background: #fff; color: var(--black); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(101, 212, 44, 0.3); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid rgba(255, 255, 255, 0.2); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* ═══════════════════════════════════════
   01. HEADER
═══════════════════════════════════════ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
.header.scrolled { background: rgba(250 250 250 / 0.3); backdrop-filter: blur(50px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid #e6e6e6; padding: 10px 0; }
.header .row { display: flex; align-items: center; justify-content: space-between; }
.header-logo img { height: 10rem; width: auto; transition: var(--transition); }
.header.scrolled .header-logo img { height: 5rem; }
.nav-menu { display: flex; list-style: none; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: flex; align-items: center; gap: 5px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: #ffffff; text-transform: uppercase; letter-spacing: .8px; border-radius: var(--radius-full); transition: var(--transition); position: relative; overflow: hidden; background: rgba(0, 0, 0, 0.09); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.01); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01), inset 0 0 10px rgba(0, 0, 0, 0.01); }

.nav-menu > li > a:hover { color: var(--primary); background: rgba(0, 0, 0, 0.8); border-color: rgba(101, 212, 44, 0.2); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 0 12px rgba(0, 0, 0, 0.15); }
.nav-menu > li.active > a { color: #ffff; background: rgba(0, 0, 0, 0.5); border-color: rgba(101, 212, 44, 0.15); }
.nav-menu > li > a .arrow-down { font-size: 10px; transition: transform .3s ease; }
.nav-menu > li:hover > a .arrow-down { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-8px); background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.08); min-width: 220px; padding: 12px; border-radius: var(--radius-md); opacity: 0; visibility: hidden; transition: var(--transition); list-style: none; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown li a { display: block; padding: 10px 16px; font-size: 13px; color: rgba(255, 255, 255, 0.8); border-radius: var(--radius-sm); transition: var(--transition); }
.dropdown li a:hover { color: var(--primary); background: rgba(101, 212, 44, 0.08); }
.header-ctas { display: flex; gap: 8px; align-items: center; }
.header-ctas a[href^="tel"]:hover { color: #fff; transform: scale(1.05); font-weight: 700; }
.btn-header { padding: 10px 22px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: var(--radius-full); transition: var(--transition); border: none; cursor: pointer; font-family: var(--font-body); }
.btn-header.primary { background: var(--primary); color: var(--black); }
.btn-header.primary:hover { background: #fff; transform: translateY(-1px); }
.btn-header.outline { background: rgba(101, 212, 44, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #ffffff; font-weight: 700; border: 1px solid rgba(101, 212, 44, 0.3); box-shadow: 0 2px 10px rgba(101, 212, 44, 0.15), inset 0 0 10px rgba(101, 212, 44, 0.05); }
.btn-header.outline:hover { background: rgba(150, 150, 150, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-color: rgba(255, 255, 255, 0.15); color: #ffffff; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.1); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 24px; cursor: pointer; padding: 8px; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(20px); z-index: 1001; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.mobile-menu.active { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text-secondary); padding: 12px 24px; transition: var(--transition); }
.mobile-menu a:hover { color: var(--primary); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--text-primary); font-size: 32px; cursor: pointer; }

/* ═══════════════════════════════════════
   02. HERO SLIDER — REDISEÑO
═══════════════════════════════════════ */
.hero-slider { position: relative; width: 100%; height: 100vh; min-height: 650px; overflow: hidden; background: #000; }
/* Film grain */
.hero-slider::after { content: ''; position: absolute; inset: 0; z-index: 3; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; opacity: 0.5; }
.hero-slide { position: absolute; inset: 0; opacity: 0; z-index: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide.exiting { opacity: 0; z-index: 0; }
.hero-slide .slide-bg { position: absolute; inset: -40px; background-size: cover; background-position: center; will-change: transform; }
/* Ken Burns variations */
.hero-slide.active .slide-bg { animation-duration: 8s; animation-fill-mode: forwards; animation-timing-function: ease-out; }
.hero-slide[data-kb="zoom-in"].active .slide-bg { animation-name: kbZoomIn; }
.hero-slide[data-kb="pan-right"].active .slide-bg { animation-name: kbPanRight; }
.hero-slide[data-kb="zoom-out"].active .slide-bg { animation-name: kbZoomOut; }
@keyframes kbZoomIn { 0% { transform: scale(1) translate(0,0); } 100% { transform: scale(1.12) translate(-1%,-1%); } }
@keyframes kbPanRight { 0% { transform: scale(1.05) translateX(-2%); } 100% { transform: scale(1.08) translateX(1%); } }
@keyframes kbZoomOut { 0% { transform: scale(1.15) translate(1%,1%); } 100% { transform: scale(1.02) translate(0,0); } }
/* Overlay — top limpio, oscuridad solo zona texto */
.hero-slide .slide-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.08) 55%, rgba(0,0,0,0.05) 100%), linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.05) 85%, rgba(0,0,0,0.01) 100%); mask-image: linear-gradient(180deg, transparent 0%, transparent 12%, black 40%); -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 12%, black 40%); }
/* Neon line */
.hero-neon-line { position: absolute; left: 7%; top: 50%; z-index: 5; width: 3px; height: 0; transform: translateY(-50%); background: linear-gradient(180deg, transparent, var(--primary), var(--neon-light), var(--primary), transparent); box-shadow: 0 0 12px rgba(101,212,44,0.4), 0 0 30px rgba(101,212,44,0.15); border-radius: 4px; transition: height 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
.hero-slider.loaded .hero-neon-line { height: 180px; }
/* Content */
.hero-content { position: absolute; left: 0; top: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 0 0 9%; z-index: 4; max-width: 750px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; width: fit-content; background: rgba(0,0,0,0.45); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(101,212,44,0.25); padding: 8px 20px; border-radius: var(--radius-full); font-family: var(--font-display); font-size: 11px; font-weight: 600; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 0 20px rgba(101,212,44,0.03); opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-slide.active .hero-tag { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.hero-slide.exiting .hero-tag { opacity: 0; transform: translateY(-20px); transition-delay: 0s; transition-duration: 0.4s; }
/* Title — word by word */
.hero-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px; }
.hero-title .word { display: inline-block; opacity: 0; transform: translateY(50px) rotateX(40deg); transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: center bottom; }
.hero-slide.active .hero-title .word { opacity: 1; transform: translateY(0) rotateX(0deg); }
.hero-slide.exiting .hero-title .word { opacity: 0; transform: translateY(-30px) rotateX(-20deg); transition-duration: 0.35s; }
.hero-title .word-highlight { color: var(--primary); text-shadow: 0 0 40px rgba(101,212,44,0.25); }
.hero-title .line-break { display: block; width: 0; height: 0; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.85); font-weight: 400; line-height: 1.8; margin-bottom: 36px; max-width: 520px; opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-slide.active .hero-desc { opacity: 1; transform: translateY(0); }
.hero-slide.exiting .hero-desc { opacity: 0; transform: translateY(-20px); transition-duration: 0.35s; transition-delay: 0s; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-slide.active .hero-ctas { opacity: 1; transform: translateY(0); }
.hero-slide.exiting .hero-ctas { opacity: 0; transform: translateY(-20px); transition-duration: 0.35s; transition-delay: 0s; }
/* Side counter */
.slide-counter { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px; font-family: var(--font-display); }
.counter-current { font-size: 56px; font-weight: 900; color: #fff; line-height: 1; text-shadow: 0 0 30px rgba(101,212,44,0.2); transition: opacity 0.3s ease, transform 0.3s ease; }
.counter-line { width: 2px; height: 40px; background: linear-gradient(180deg, var(--primary), rgba(101,212,44,0.1)); border-radius: 2px; box-shadow: 0 0 8px rgba(101,212,44,0.3); }
.counter-total { font-size: 20px; font-weight: 400; color: var(--text-muted); line-height: 1; }
/* Bottom bar */
.slider-bottom { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 7% 36px; }
.slider-progress { display: flex; gap: 12px; align-items: center; }
.progress-dot { position: relative; width: 60px; height: 3px; background: rgba(255,255,255,0.12); border-radius: 10px; cursor: pointer; overflow: hidden; transition: background 0.3s ease; }
.progress-dot:hover { background: rgba(255,255,255,0.2); }
.progress-dot .fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--primary); border-radius: 10px; box-shadow: 0 0 8px rgba(101,212,44,0.4); transition: width 0.15s linear; }
.progress-dot.active .fill { animation: progressFill 7s linear forwards; }
.progress-dot.done .fill { width: 100%; }
@keyframes progressFill { 0% { width: 0; } 100% { width: 100%; } }
.slider-arrows { display: flex; gap: 8px; }
.slider-arrow { width: 50px; height: 50px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-primary); font-size: 16px; transition: var(--transition); backdrop-filter: blur(8px); }
.slider-arrow:hover { background: var(--primary); color: var(--black); border-color: var(--primary); box-shadow: 0 0 20px rgba(101,212,44,0.3); }
/* Bottom fade */
.hero-bottom-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(0deg, var(--dark-bg), transparent); z-index: 5; pointer-events: none; }
/* Scroll hint */
.scroll-hint { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeInScroll 1s ease 2s forwards; }
@keyframes fadeInScroll { to { opacity: 1; } }
.scroll-hint span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); font-family: var(--font-display); font-weight: 500; }
.scroll-mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.2); border-radius: 11px; position: relative; }
.scroll-mouse::after { content: ''; width: 3px; height: 8px; background: var(--primary); border-radius: 3px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); } 50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); } }

/* ═══════════════════════════════════════
   03. STATS BAR
═══════════════════════════════════════ */
.stats-bar { background: var(--card-bg); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { display: flex; align-items: center; gap: 20px; padding: 16px 32px; border-right: 1px solid var(--card-border); transition: var(--transition); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 52px; font-weight: 800; color: var(--primary); line-height: 1; transition: var(--transition); }
.stat-number .plus { font-size: 32px; opacity: .7; }
.stat-label-sm { font-size: 13px; color: var(--text-muted); letter-spacing: .5px; }
.stat-label-lg { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); text-transform: uppercase; line-height: 1.2; }

/* ═══════════════════════════════════════
   04. ABOUT
═══════════════════════════════════════ */
.about-section { padding: 120px 0; position: relative; overflow: hidden; }
.about-section::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 55%; background: var(--card-bg); border-right: 1px solid var(--card-border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.feature-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--card-border); border-radius: var(--radius-md); margin-bottom: 12px; transition: var(--transition); }
.feature-card:hover { border-color: var(--primary); background: var(--primary-glow); }
.feature-icon { width: 48px; height: 48px; background: var(--primary); border-radius: 14px 14px 4px 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--black); flex-shrink: 0; }
.feature-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.about-images { position: relative; height: 620px; }
.about-img-main { position: absolute; width: 75%; height: 450px; object-fit: cover; border-radius: 0; top: 0; right: 0; border: 2px solid transparent; animation: neonBorderMain 3s ease-in-out infinite alternate; z-index: 1; }
.about-img-secondary { position: absolute; width: 65%; height: 350px; object-fit: cover; border-radius: 0; bottom: 0; left: 0; border: 2px solid transparent; animation: neonBorderSecondary 3s ease-in-out infinite alternate-reverse; z-index: 2; }
@keyframes neonBorderMain { 0% { border-color: rgba(101, 212, 44, 0.3); box-shadow: 0 0 8px rgba(101, 212, 44, 0.2), 0 0 20px rgba(101, 212, 44, 0.05), inset 0 0 8px rgba(101, 212, 44, 0.03); } 50% { border-color: rgba(101, 212, 44, 0.7); box-shadow: 0 0 15px rgba(101, 212, 44, 0.4), 0 0 40px rgba(101, 212, 44, 0.15), 0 0 80px rgba(101, 212, 44, 0.05), inset 0 0 15px rgba(101, 212, 44, 0.05); } 100% { border-color: rgba(143, 255, 90, 0.5); box-shadow: 0 0 12px rgba(143, 255, 90, 0.3), 0 0 35px rgba(101, 212, 44, 0.12), 0 0 60px rgba(101, 212, 44, 0.05), inset 0 0 10px rgba(101, 212, 44, 0.04); } }
@keyframes neonBorderSecondary { 0% { border-color: rgba(143, 255, 90, 0.4); box-shadow: 0 0 10px rgba(143, 255, 90, 0.25), 0 0 25px rgba(101, 212, 44, 0.08), inset 0 0 10px rgba(101, 212, 44, 0.03); } 50% { border-color: rgba(101, 212, 44, 0.8); box-shadow: 0 0 18px rgba(101, 212, 44, 0.5), 0 0 45px rgba(101, 212, 44, 0.18), 0 0 90px rgba(101, 212, 44, 0.06), inset 0 0 18px rgba(101, 212, 44, 0.06); } 100% { border-color: rgba(101, 212, 44, 0.4); box-shadow: 0 0 8px rgba(101, 212, 44, 0.2), 0 0 30px rgba(101, 212, 44, 0.1), 0 0 50px rgba(101, 212, 44, 0.04), inset 0 0 8px rgba(101, 212, 44, 0.03); } }
.about-badge { position: absolute; bottom: 50px; right: 20px; background: var(--primary); color: var(--black); padding: 20px 24px; border-radius: 0; text-align: center; z-index: 3; animation: neonBadgePulse 2.5s ease-in-out infinite; }
@keyframes neonBadgePulse { 0%, 100% { box-shadow: 0 0 15px rgba(101, 212, 44, 0.4), 0 0 30px rgba(101, 212, 44, 0.1); } 50% { box-shadow: 0 0 25px rgba(101, 212, 44, 0.7), 0 0 60px rgba(101, 212, 44, 0.2), 0 0 100px rgba(101, 212, 44, 0.08); } }
.about-badge .number { font-family: var(--font-display); font-size: 36px; font-weight: 800; line-height: 1; }
.about-badge .label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ═══════════════════════════════════════
   05. SERVICES
═══════════════════════════════════════ */
.services-section { padding: 120px 0; background: var(--black); position: relative; }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-subtitle { font-size: 17px; color: #FFFFFF; max-width: 550px; margin: 0 auto; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto auto; gap: 16px; position: relative; z-index: 1; }
.service-card:nth-child(1) { grid-column: 1 / 8; grid-row: 1; }
.service-card:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.service-card:nth-child(3) { grid-column: 1 / 5; grid-row: 2; }
.service-card:nth-child(4) { grid-column: 5 / 9; grid-row: 2; }
.service-card:nth-child(5) { grid-column: 9 / 13; grid-row: 2; }





.service-card .card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease, filter 0.5s ease; }
.service-card:hover .card-bg { transform: scale(1.08); filter: brightness(0.6); }
.service-card .card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.2) 100%); z-index: 1; transition: var(--transition); }
.service-card:hover .card-overlay { background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%); }
.service-card .card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; z-index: 2; }
.service-card .card-number { font-family: var(--font-display); font-size: 64px; font-weight: 900; color: rgba(101, 212, 44, 0.08); position: absolute; top: 20px; right: 24px; z-index: 2; line-height: 1; transition: var(--transition); }
.service-card:hover .card-number { color: rgba(101, 212, 44, 0.15); text-shadow: 0 0 30px rgba(101, 212, 44, 0.1); }
.card-icon-wrap { width: 52px; height: 52px; background: rgba(101, 212, 44, 0.1); border: 1px solid rgba(101, 212, 44, 0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; color: var(--primary); transition: var(--transition); }
.service-card:hover .card-icon-wrap { background: var(--primary); color: var(--black); box-shadow: 0 0 20px rgba(101, 212, 44, 0.4), 0 0 40px rgba(101, 212, 44, 0.1); }
.card-content h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; transition: var(--transition); }
.service-card:hover .card-content h3 { text-shadow: 0 0 20px rgba(101, 212, 44, 0.15); }
.card-content .card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; max-height: 0; overflow: hidden; opacity: 0; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover .card-desc { max-height: 100px; opacity: 1; margin-bottom: 16px; }
.card-content .card-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); opacity: 0; transform: translateY(10px); transition: var(--transition); }
.service-card:hover .card-cta { opacity: 1; transform: translateY(0); }




/* Service Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.92); backdrop-filter: blur(20px); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { width: 95%; max-height: 95vh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid rgba(101, 212, 44, 0.2); position: relative; transform: translateY(30px) scale(0.95); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); animation: neonBorderModal 3s ease-in-out infinite alternate; }
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
@keyframes neonBorderModal { 0% { box-shadow: 0 0 15px rgba(101, 212, 44, 0.2), 0 0 40px rgba(101, 212, 44, 0.05); } 100% { box-shadow: 0 0 25px rgba(101, 212, 44, 0.4), 0 0 60px rgba(101, 212, 44, 0.1), 0 0 120px rgba(101, 212, 44, 0.03); } }
.modal-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-primary); font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: var(--transition); }
.modal-close:hover { background: var(--primary); color: var(--black); border-color: var(--primary); }
.modal-image { position: relative; overflow: hidden; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }
.modal-image .modal-number { position: absolute; bottom: 20px; left: 24px; font-family: var(--font-display); font-size: 120px; font-weight: 900; color: rgba(101, 212, 44, 0.12); line-height: 1; }
.modal-body { background: var(--dark-bg); padding: 48px 40px; overflow-y: auto; display: flex; flex-direction: column; justify-content: center; }
.modal-body .modal-icon { width: 56px; height: 56px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--black); margin-bottom: 20px; box-shadow: 0 0 20px rgba(101, 212, 44, 0.3); }
.modal-body h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.modal-body .modal-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.modal-body .includes-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.modal-body .includes-list { list-style: none; }
.modal-body .includes-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.modal-body .includes-list li:last-child { border-bottom: none; }
.modal-body .includes-list li .li-dot { width: 6px; height: 6px; background: var(--primary); flex-shrink: 0; box-shadow: 0 0 8px rgba(101, 212, 44, 0.4); }


.modal-nav { display: flex; gap: 8px; }
.modal-nav button { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-secondary); font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.modal-nav button:hover { border-color: var(--primary); color: var(--primary); background: rgba(101, 212, 44, 0.08); }
.modal-counter { font-family: var(--font-display); font-size: 12px; color: var(--text-muted); letter-spacing: 2px; display: flex; align-items: center; margin-left: 12px; }
.modal-counter .current { color: var(--primary); font-weight: 700; font-size: 16px; }

/* ═══════════════════════════════════════
   06. IMPACT BANNER
═══════════════════════════════════════ */
.impact-banner { position: relative; padding: 100px 0; background-image: url('../img/slider-03.jp'); background-size: cover; background-position: center; background-attachment: fixed; }

.impact-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }


.impact-content p { font-size: 17px; color: var(--text-secondary); margin-top: 20px; line-height: 1.8; }

/* ═══════════════════════════════════════
   07. PROGRESS + TABS
═══════════════════════════════════════ */
.progress-section { position: relative; padding: 120px 0; overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
.progress-bg { position: absolute; inset: 0; z-index: 0; }
.progress-bg .bg-layer { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease, transform 8s ease; transform: scale(1); }
.progress-bg .bg-layer.active { opacity: 1; transform: scale(1.05); }
.progress-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.6) 100%); z-index: 1; }
.progress-bg .ambient-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(120px); z-index: 2; pointer-events: none; transition: all 1.5s ease; }
.progress-bg .ambient-glow.g1 { background: rgba(101, 212, 44, 0.06); top: -100px; right: -100px; }
.progress-bg .ambient-glow.g2 { background: rgba(101, 212, 44, 0.04); bottom: -100px; left: -100px; }
.progress-section[data-active-tab="vision"] .ambient-glow.g1 { background: rgba(143, 255, 90, 0.08); top: -50px; right: -50px; }
.progress-section[data-active-tab="vision"] .ambient-glow.g2 { background: rgba(101, 212, 44, 0.06); bottom: -50px; left: 10%; }
.progress-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 5; }
.progress-bar-item { margin-bottom: 28px; }
.progress-bar-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.progress-bar-title { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.progress-bar-percent { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--primary); }
.progress-bar-track { width: 100%; height: 6px; background: rgba(255, 255, 255, 0.06); border-radius: 10px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary-dark), var(--primary)); width: 0; transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1); border-radius: 10px; box-shadow: 0 0 12px rgba(101, 212, 44, 0.3); }

/* Tabs */
.tabs-container { background: rgba(17, 17, 17, 0.8); border: 1px solid var(--card-border); overflow: hidden; backdrop-filter: blur(16px); }
.tabs-header { display: flex; position: relative; background: rgba(255, 255, 255, 0.02); border-bottom: 1px solid var(--card-border); }
.tabs-header .neon-slider { position: absolute; bottom: 0; height: 2px; width: 50%; background: var(--primary); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 0 10px var(--primary), 0 0 25px rgba(101, 212, 44, 0.3); }
.tabs-header .neon-slider[data-pos="0"] { left: 0; }
.tabs-header .neon-slider[data-pos="1"] { left: 50%; }
.tab-btn { flex: 1; padding: 20px 24px; background: transparent; border: none; color: var(--text-muted); cursor: pointer; font-family: var(--font-display); font-size: 15px; font-weight: 600; position: relative; overflow: hidden; transition: color 0.4s ease; }
.tab-btn.active { color: var(--primary); }
.tab-btn::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0; background: linear-gradient(to top, rgba(101, 212, 44, 0.12), rgba(101, 212, 44, 0.04), transparent); transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0; pointer-events: none; }
.tab-btn:hover::before { height: 100%; }
.tab-btn::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--neon-light); box-shadow: 0 0 8px var(--neon-light), 0 0 20px rgba(143, 255, 90, 0.3); transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1; }
.tab-btn:not(.active):hover::after { width: 60%; }
.tab-btn.active::before { height: 100%; background: linear-gradient(to top, rgba(101, 212, 44, 0.08), rgba(101, 212, 44, 0.02), transparent); }
.tab-btn i { margin-right: 8px; font-size: 14px; transition: var(--transition); }
.tab-btn:hover i { color: var(--primary); text-shadow: 0 0 8px rgba(101, 212, 44, 0.5); }
.tab-btn.active i { color: var(--primary); text-shadow: 0 0 12px rgba(101, 212, 44, 0.6); }
.tab-panel { padding: 36px 32px; display: none; animation: tabFadeIn 0.6s ease both; }
.tab-panel.active { display: block; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel .quote-mark { font-family: var(--font-display); font-size: 64px; font-weight: 900; color: rgba(101, 212, 44, 0.12); line-height: 1; margin-bottom: -20px; display: block; }
.tab-panel p { font-size: 16px; color: var(--text-secondary); line-height: 1.9; font-style: italic; padding-left: 20px; border-left: 2px solid rgba(101, 212, 44, 0.2); }
.values-list { list-style: none; padding: 24px 32px; border-top: 1px solid var(--card-border); }
.values-list li { display: flex; align-items: center; gap: 12px; padding: 11px 0; color: var(--text-secondary); font-size: 14px; transition: var(--transition); }
.values-list li:hover { color: var(--text-primary); transform: translateX(6px); }
.values-list li .check { width: 24px; height: 24px; background: rgba(101, 212, 44, 0.08); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 10px; flex-shrink: 0; transition: var(--transition); }
.values-list li:hover .check { background: var(--primary); color: var(--black); box-shadow: 0 0 12px rgba(101, 212, 44, 0.4); }

/* ═══════════════════════════════════════
   08. CLIENTS
═══════════════════════════════════════ */
.clients-section { padding: 80px 0; background: var(--dark-bg); position: relative; overflow: hidden; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.clients-section .cl-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
.clients-section .cl-glow.left { width: 300px; height: 300px; background: rgba(101, 212, 44, 0.005); top: 50%; left: -100px; transform: translateY(-50%); }
.clients-section .cl-glow.right { width: 300px; height: 300px; background: rgba(101, 212, 44, 0.005); top: 50%; right: -100px; transform: translateY(-50%); }
.clients-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.clients-header { text-align: center; margin-bottom: 48px; }
.clients-header .cl-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.clients-header .cl-tag::before, .clients-header .cl-tag::after { content: ''; width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--primary)); }
.clients-header .cl-tag::after { background: linear-gradient(90deg, var(--primary), transparent); }
.clients-header h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.clients-header h3 span { color: var(--primary); }
.slider-wrapper { position: relative; overflow: hidden; padding: 20px 0; }
.slider-wrapper::before, .slider-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 15px; z-index: 10; pointer-events: none; }
.slider-wrapper::before { left: 0; background: linear-gradient(to right, var(--dark-bg), transparent); }
.slider-wrapper::after { right: 0; background: linear-gradient(to left, var(--dark-bg), transparent); }
.slider-track { display: flex; gap: 32px; animation: infiniteSlide 30s linear infinite; width: max-content; }
.slider-track:hover, .slider-track.paused { animation-play-state: paused; }
@keyframes infiniteSlide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logo-card { flex-shrink: 0; width: 240px; height: 150px; background: var(--card-bg); border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center; padding: 2px; position: relative; cursor: pointer; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); transform-style: preserve-3d; perspective: 800px; }
.logo-card img { width: auto; height: auto; object-fit: contain; filter: grayscale(0.25) brightness(0.85); opacity: 0.95; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.logo-card:hover { transform: translateY(0px) scale(1.05); border-color: rgba(101, 212, 44, 0.6); background: rgba(20, 20, 20, 0.98); z-index: 20; animation: neonCardPulse 1.5s ease-in-out infinite alternate; }
@keyframes neonCardPulse { 0% { box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 15px rgba(101,212,44,0.25), 0 0 30px rgba(101,212,44,0.08), inset 0 0 15px rgba(101,212,44,0.03); } 100% { box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 25px rgba(143,255,90,0.4), 0 0 60px rgba(101,212,44,0.15), 0 0 100px rgba(101,212,44,0.06), inset 0 0 30px rgba(101,212,44,0.06); } }
.logo-card:hover img { filter: grayscale(0) brightness(1.1); opacity: 1; transform: scale(1.35); }
.logo-card::after { content: ''; position: absolute; bottom: -12px; left: 15%; right: 15%; height: 12px; background: radial-gradient(ellipse, rgba(101,212,44,0) 0%, transparent 70%); filter: blur(4px); opacity: 0; transition: opacity 0.5s ease; }
.logo-card:hover::after { opacity: 1; background: radial-gradient(ellipse, rgba(101,212,44,0.2) 0%, transparent 70%); }
.logo-card::before { content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--primary); box-shadow: 0 0 10px var(--primary), 0 0 20px rgba(101,212,44,0.3); transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.logo-card:hover::before { width: 70%; }
.slider-track:hover .logo-card:not(:hover) { opacity: 0.3; filter: blur(1px); transform: scale(0.97); }
.clients-bottom { display: flex; align-items: center; justify-content: center; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.cl-stat { display: flex; align-items: center; gap: 12px; padding: 12px 24px; border: 1px solid var(--card-border); transition: var(--transition); }
.cl-stat:hover { border-color: rgba(101, 212, 44, 0.2); background: rgba(101, 212, 44, 0.03); }
.cl-stat .cl-stat-icon { width: 40px; height: 40px; background: rgba(101, 212, 44, 0.08); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 16px; flex-shrink: 0; }
.cl-stat .cl-stat-number { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--primary); line-height: 1; }
.cl-stat .cl-stat-label { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════
   09. CONTACT + FAQ
═══════════════════════════════════════ */
.contact-section { padding: 120px 0; position: relative; background-image: url('../img/oremarc5.jpg'); background-size: cover; background-position: center; }
.contact-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.85)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; position: relative; z-index: 1; }
.contact-form { background: rgba(101, 212, 44, 0.08); border: 1px solid rgba(101, 212, 44, 0.2); padding: 48px; border-radius: 0; backdrop-filter: blur(10px); }
.contact-form h3 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.contact-form .subtitle { color: var(--primary); font-size: 14px; font-weight: 500; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--text-primary); transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: rgba(101, 212, 44, 0.05); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; padding: 16px; margin-top: 10px; background: var(--primary); color: var(--black); font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: none; border-radius: 0; cursor: pointer; transition: var(--transition); }
.btn-submit:hover { background: #fff; transform: translateY(-1px); }
.faq-container { position: relative; z-index: 1; }
.faq-item { background: var(--card-bg); border: 1px solid var(--card-border); margin-bottom: 8px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(255, 255, 255, 0.08); }
.faq-question { padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--text-primary); transition: var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-icon { color: var(--primary); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active { border-color: rgba(101, 212, 44, 0.2); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; padding: 0 24px; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 22px; }
.faq-answer p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ═══════════════════════════════════════
   10. COVERAGE
═══════════════════════════════════════ */
.coverage-section { padding: 120px 0; background: var(--dark-bg); position: relative; overflow: hidden; border-top: 1px solid var(--card-border); }
.coverage-section .cv-glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0; }
.cv-glow.g1 { width: 400px; height: 400px; background: rgba(101, 212, 44, 0.04); top: -100px; right: 10%; }
.cv-glow.g2 { width: 300px; height: 300px; background: rgba(101, 212, 44, 0.03); bottom: -80px; left: 5%; }
.coverage-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.coverage-zones { list-style: none; margin-bottom: 32px; }
.coverage-zones li { display: flex; align-items: center; gap: 16px; padding: 14px 20px; border: 1px solid transparent; transition: var(--transition); cursor: pointer; position: relative; }
.coverage-zones li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 0; background: var(--primary); box-shadow: 0 0 8px var(--primary); transition: height 0.3s ease; }
.coverage-zones li:hover::before, .coverage-zones li.active::before { height: 60%; }
.coverage-zones li:hover, .coverage-zones li.active { background: rgba(101, 212, 44, 0.04); border-color: rgba(101, 212, 44, 0.1); }
.zone-dot { width: 10px; height: 10px; background: var(--primary); flex-shrink: 0; position: relative; }
.zone-dot::after { content: ''; position: absolute; inset: -4px; border: 1px solid rgba(101, 212, 44, 0.3); animation: zonePing 2s ease-out infinite; }
@keyframes zonePing { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }
.zone-info h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.zone-info p { font-size: 12px; color: var(--text-muted); }
.coverage-cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--primary); color: var(--black); font-family: var(--font-display); font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: var(--transition); text-decoration: none; }
.coverage-cta:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(101, 212, 44, 0.3); }
.map-container { position: relative; display: flex; align-items: center; justify-content: center; }
.peru-map-wrap { position: relative; width: 100%; max-width: 380px; }
.peru-map { width: 100%; height: auto; filter: drop-shadow(0 0 30px rgba(101, 212, 44, 0.06)); }
.peru-map .peru-silhouette { fill: rgba(101, 212, 44, 0.06); stroke: rgba(101, 212, 44, 0.5); stroke-width: 3; transition: all 0.6s ease; }
.peru-map:hover .peru-silhouette { fill: rgba(101, 212, 44, 0.1); stroke: rgba(143, 255, 90, 0.7); }
.peru-map .route { stroke: rgba(101, 212, 44, 0.12); stroke-width: 1.2; stroke-dasharray: 6 4; fill: none; animation: routeDash 20s linear infinite; }
@keyframes routeDash { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -200; } }
.map-point { position: absolute; cursor: pointer; z-index: 10; }
.map-point .point-dot { width: 12px; height: 12px; background: var(--primary); position: relative; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.map-point .point-dot .inner { width: 5px; height: 5px; background: var(--neon-light); position: absolute; }
.map-point .radar { position: absolute; inset: -5px; border: 1px solid rgba(101, 212, 44, 0.4); animation: radarPulse 2.5s ease-out infinite; pointer-events: none; }
.map-point .radar:nth-child(3) { animation-delay: 0.8s; }
@keyframes radarPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(4); opacity: 0; } }
.map-point:hover .point-dot, .map-point.active .point-dot { transform: scale(1.6); box-shadow: 0 0 15px var(--primary), 0 0 30px rgba(101, 212, 44, 0.3); }
.map-point .tooltip { position: absolute; bottom: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px); background: rgba(17, 17, 17, 0.95); border: 1px solid rgba(101, 212, 44, 0.3); padding: 12px 18px; white-space: nowrap; opacity: 0; visibility: hidden; transition: all 0.3s ease; pointer-events: none; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(101, 212, 44, 0.08); backdrop-filter: blur(10px); }
.map-point .tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: rgba(101, 212, 44, 0.3); }
.map-point:hover .tooltip, .map-point.active .tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.tooltip .tt-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.tooltip .tt-type { font-size: 11px; color: var(--primary); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.map-point.hq .point-dot { width: 16px; height: 16px; box-shadow: 0 0 10px var(--primary), 0 0 20px rgba(101, 212, 44, 0.15); }
.map-point.hq .point-dot .inner { width: 7px; height: 7px; }

/* ═══════════════════════════════════════
   11. GALLERY
═══════════════════════════════════════ */
.gallery-section { padding: 120px 0; background: var(--dark-bg); position: relative; overflow: hidden; }
.gallery-section .gl-glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0; }
.gl-glow.g1 { width: 400px; height: 400px; background: rgba(101, 212, 44, 0.03); top: -100px; left: -100px; }
.gl-glow.g2 { width: 350px; height: 350px; background: rgba(101, 212, 44, 0.03); bottom: -80px; right: -80px; }
.gallery-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.gallery-header .section-subtitle { font-size: 15px; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.7; }
.gallery-filters { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; position: relative; z-index: 1; }
.filter-btn { padding: 10px 24px; background: transparent; border: 1px solid var(--card-border); color: var(--text-muted); font-family: var(--font-display); font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; }
.filter-btn::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0; background: linear-gradient(to top, rgba(101, 212, 44, 0.1), transparent); transition: height 0.4s ease; }
.filter-btn:hover::before { height: 100%; }
.filter-btn:hover { border-color: rgba(101, 212, 44, 0.3); color: var(--text-primary); }
.filter-btn.active { border-color: var(--primary); color: var(--primary); background: rgba(101, 212, 44, 0.06); box-shadow: 0 0 15px rgba(101, 212, 44, 0.1); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 10px; position: relative; z-index: 1; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 2; }
.gallery-item:nth-child(10) { grid-column: span 2; grid-row: span 2; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(255, 255, 255, 0.04); transition: var(--transition); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease; }
.gallery-item .item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%); opacity: 0; transition: opacity 0.4s ease; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.gallery-item .item-overlay .item-label { font-family: var(--font-display); font-size: 14px; font-weight: 600; transform: translateY(12px); transition: transform 0.4s ease; }
.gallery-item .item-overlay .item-cat { font-size: 11px; color: var(--primary); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; transform: translateY(12px); transition: transform 0.4s ease 0.05s; }
.gallery-item .expand-icon { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(101, 212, 44, 0.3); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 14px; z-index: 2; opacity: 0; transform: scale(0.8); transition: var(--transition); backdrop-filter: blur(8px); }
.gallery-item::before { content: ''; position: absolute; inset: -1px; border: 2px solid transparent; z-index: 3; pointer-events: none; transition: all 0.5s ease; }
.gallery-item:hover { z-index: 5; transform: scale(1.02); }
.gallery-item:hover::before { border-color: rgba(101, 212, 44, 0.5); box-shadow: 0 0 12px rgba(101, 212, 44, 0.2), 0 0 30px rgba(101, 212, 44, 0.08), inset 0 0 12px rgba(101, 212, 44, 0.03); animation: galleryNeon 2s ease-in-out infinite alternate; }
@keyframes galleryNeon { 0% { border-color: rgba(101, 212, 44, 0.3); box-shadow: 0 0 8px rgba(101, 212, 44, 0.15), 0 0 20px rgba(101, 212, 44, 0.05); } 100% { border-color: rgba(143, 255, 90, 0.6); box-shadow: 0 0 18px rgba(143, 255, 90, 0.3), 0 0 40px rgba(101, 212, 44, 0.1), inset 0 0 15px rgba(101, 212, 44, 0.04); } }
.gallery-item:hover img { transform: scale(1.1); filter: brightness(0.7); }
.gallery-item:hover .item-overlay { opacity: 1; }
.gallery-item:hover .item-overlay .item-cat, .gallery-item:hover .item-overlay .item-label { transform: translateY(0); }
.gallery-item:hover .expand-icon { opacity: 1; transform: scale(1); }
.gallery-item.hiding { opacity: 0; transform: scale(0.8); pointer-events: none; }
.gallery-item.showing { animation: itemShow 0.5s ease both; }
@keyframes itemShow { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(24px); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-image-wrap { position: relative; max-width: 85vw; max-height: 85vh; }
.lightbox-image-wrap img { max-width: 85vw; max-height: 85vh; object-fit: contain; border: 1px solid rgba(101, 212, 44, 0.2); box-shadow: 0 0 40px rgba(101, 212, 44, 0.08), 0 20px 80px rgba(0, 0, 0, 0.5); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); transform: scale(0.9); }
.lightbox.active .lightbox-image-wrap img { transform: scale(1); }
.lb-close { position: absolute; top: 24px; right: 24px; width: 50px; height: 50px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-primary); font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: var(--transition); }
.lb-close:hover { background: var(--primary); color: var(--black); border-color: var(--primary); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); color: var(--text-primary); font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); z-index: 10; }
.lb-nav:hover { background: rgba(101, 212, 44, 0.1); border-color: rgba(101, 212, 44, 0.3); color: var(--primary); }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
.lb-bottom { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 20px; z-index: 10; }
.lb-counter { font-family: var(--font-display); font-size: 14px; color: var(--text-muted); letter-spacing: 2px; }
.lb-counter .current { color: var(--primary); font-weight: 700; font-size: 18px; }
.lb-title { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--text-secondary); padding: 8px 20px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--card-border); }
.lb-thumbs { position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.lb-thumb { width: 48px; height: 48px; overflow: hidden; cursor: pointer; border: 2px solid transparent; opacity: 0.4; transition: var(--transition); }
.lb-thumb.active { border-color: var(--primary); opacity: 1; box-shadow: 0 0 10px rgba(101, 212, 44, 0.3); }
.lb-thumb:hover { opacity: 0.8; }
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════
   12. FOOTER
═══════════════════════════════════════ */
.footer { background: var(--black); padding: 80px 0 0; border-top: 1px solid var(--card-border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 20px; max-width: 300px; }
.footer-brand img { height: 48px; width: auto; }
.footer-col h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); transform: translateX(4px); }
.footer-col ul li a i { font-size: 12px; color: var(--primary); width: 16px; }
.footer-divider { height: 1px; background: var(--card-border); }
.footer-bottom { padding: 28px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.social-icons { display: flex; gap: 10px; }
.social-icon { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--card-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 15px; transition: var(--transition); }
.social-icon:hover { background: var(--primary); color: var(--black); border-color: var(--primary); }


/* ═══════════════════════════════════════
   14. UTILITIES
═══════════════════════════════════════ */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; background: var(--primary); color: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; border: none; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #fff; transform: translateY(-3px); }
.whatsapp-widget { position: fixed; bottom: 24px; right: 24px; z-index: 1000; }
.whatsapp-btn { width: 60px; height: 60px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; cursor: pointer; box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); transition: var(--transition); border: none; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6); }
.whatsapp-popup { position: absolute; bottom: 76px; left: 0; width: 320px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); }
.whatsapp-popup.active { opacity: 1; visibility: visible; transform: translateY(0); }
.wp-header { background: var(--whatsapp); padding: 18px 20px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; display: flex; align-items: center; gap: 12px; }
.wp-header .avatar { width: 44px; height: 44px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; }
.wp-header-info h5 { color: #fff; font-size: 14px; font-weight: 600; }
.wp-header-info p { color: rgba(255, 255, 255, 0.7); font-size: 12px; }
.wp-body { padding: 20px; }
.wp-message { background: rgba(255, 255, 255, 0.06); padding: 14px; border-radius: 12px; margin-bottom: 16px; color: var(--text-secondary); font-size: 14px; }
.wp-input-group { display: flex; gap: 8px; }
.wp-input { flex: 1; padding: 12px 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--card-border); border-radius: var(--radius-full); color: var(--text-primary); font-size: 14px; font-family: var(--font-body); }
.wp-input:focus { outline: none; border-color: var(--whatsapp); }
.wp-send { width: 44px; height: 44px; background: var(--whatsapp); border: none; border-radius: 50%; color: #fff; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.wp-send:hover { transform: scale(1.1); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: all .8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ═══════════════════════════════════════
   14b. LOGO MODAL
═══════════════════════════════════════ */
.logo-modal-overlay { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }
.logo-modal-overlay.active { opacity: 1; visibility: visible; }
.logo-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.logo-modal { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transform: scale(0.6) translateY(40px); opacity: 0; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease; }
.logo-modal-overlay.active .logo-modal { transform: scale(1) translateY(0); opacity: 1; transition-delay: 0.1s; }
.logo-modal-img-wrap { position: relative; width: 280px; height: 280px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 0 0 1px rgba(101,212,44,0.2), 0 0 40px rgba(101,212,44,0.15), 0 0 80px rgba(101,212,44,0.06), 0 30px 80px rgba(0,0,0,0.5); animation: modalGlow 2s ease-in-out infinite alternate; }
@keyframes modalGlow { 0% { box-shadow: 0 0 0 1px rgba(101,212,44,0.2), 0 0 40px rgba(101,212,44,0.12), 0 0 80px rgba(101,212,44,0.04), 0 30px 80px rgba(0,0,0,0.5); } 100% { box-shadow: 0 0 0 1px rgba(101,212,44,0.4), 0 0 60px rgba(143,255,90,0.2), 0 0 120px rgba(101,212,44,0.08), 0 30px 80px rgba(0,0,0,0.5); } }
.logo-modal-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.logo-modal-img-wrap::before, .logo-modal-img-wrap::after { content: ''; position: absolute; width: 30px; height: 30px; border-color: var(--primary); border-style: solid; border-width: 0; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0; }
.logo-modal-img-wrap::before { top: -6px; left: -6px; border-top-width: 2px; border-left-width: 2px; border-radius: 4px 0 0 0; }
.logo-modal-img-wrap::after { bottom: -6px; right: -6px; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 4px 0; }
.logo-modal-overlay.active .logo-modal-img-wrap::before, .logo-modal-overlay.active .logo-modal-img-wrap::after { opacity: 1; width: 40px; height: 40px; }
.logo-modal-name { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; color: #000; background: #fff; padding: 10px 40px; border-radius: 100px; letter-spacing: 0.5px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.3); transform: translateY(20px); opacity: 0; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease; }
.logo-modal-overlay.active .logo-modal-name { transform: translateY(0); opacity: 1; transition-delay: 0.25s; }
.logo-modal-close { position: absolute; top: 24px; right: 24px; z-index: 3; width: 48px; height: 48px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; color: #fff; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); transform: scale(0) rotate(-90deg); opacity: 0; }
.logo-modal-overlay.active .logo-modal-close { transform: scale(1) rotate(0deg); opacity: 1; transition-delay: 0.3s; }
.logo-modal-close:hover { background: rgba(101,212,44,0.15); border-color: var(--primary); color: var(--primary); transform: scale(1.1) rotate(90deg); }

/* ═══════════════════════════════════════
   15. RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav-menu, .header-ctas { display: none; }
    .mobile-toggle { display: block; }
    .slide-counter { right: 24px; }
    .counter-current { font-size: 44px; }
    .hero-neon-line { left: 5%; }
    .hero-content { padding-left: 7%; }
    .about-grid, .progress-grid, .contact-grid, .coverage-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-section::before { width: 100%; }
    .services-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 12px; }
    .service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(3), .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; grid-row: auto; }
    .service-card { height: 300px; }
    .modal { grid-template-columns: 1fr; width: 95%; max-height: 85vh; overflow-y: auto; }
    .modal-image { max-height: none; }
    .modal-image img { min-height: auto; height: 250px; }
    .impact-accent, .impact-corner { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid var(--card-border); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(4) { grid-row: span 1; }
    .gallery-item:nth-child(7) { grid-column: span 1; }
    .gallery-item:nth-child(10) { grid-column: span 1; grid-row: span 1; }
    .modal { grid-template-columns: 1fr; }
    .modal-image { max-height: 250px; }
    .modal-image img { min-height: 250px; }    
}
@media (max-width: 768px) {
    .hero-slider { height: 100svh; min-height: 550px; }
    .hero-content { padding: 0 24px; max-width: 100%; justify-content: flex-end; padding-bottom: 120px; }
    .hero-title { font-size: clamp(24px, 6vw, 34px); letter-spacing: -0.5px; }
    .slider-bottom { padding: 0 24px 28px; }
    .progress-dot { width: 40px; }
    .slide-counter { right: 20px; top: auto; bottom: 130px; transform: none; flex-direction: row; gap: 10px; }
    .counter-current { font-size: 32px; }
    .counter-line { width: 24px; height: 2px; background: linear-gradient(90deg, var(--primary), rgba(101,212,44,0.1)); }
    .counter-total { font-size: 16px; }
    .hero-neon-line { display: none; }
    .scroll-hint { display: none; }
    .slider-arrow { width: 42px; height: 42px; font-size: 14px; }
    .stats-grid { grid-template-columns: 1fr; }
    .about-images { height: 400px; }
    .about-img-main { width: 75%; height: 280px; }
    .about-img-secondary { width: 65%; height: 230px; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(3), .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
    .service-card { height: 260px; }
    .card-content { padding: 20px; }
    .card-icon-wrap { width: 42px; height: 42px; font-size: 18px; margin-bottom: 12px; }
    .card-content h3 { font-size: 15px; margin-bottom: 4px; }
    .service-card .card-number { font-size: 40px; top: 12px; right: 16px; }
    .modal { width: 100%; max-width: 100%; max-height: 100vh; height: 100vh; border: none; }
    .modal-body { padding: 24px 20px; margin-top: 0rem; }
    .truck-wrap svg { width: 80px; }
    .truck-divider { height: 100px; }
    .vehicle-svg { width: 50px; }
    .impact-banner { padding: 80px 0; }
    .about-section { padding: 50px 0 0 0; }
    .contact-form { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 16px auto 0; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 6px; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(10) { grid-column: span 2; }
    .form-row { grid-template-columns: 1fr; }
    .peru-map-wrap { max-width: 300px; }
    .modal-body { padding: 32px 24px; }
    .lb-thumbs { display: none; }
    .progress-section { padding: 80px 0; }
    .coverage-section { padding: 80px 0; }
    .gallery-section { padding: 80px 0; }
    .logo-modal-img-wrap { width: 220px; height: 220px; padding: 32px; border-radius: 16px; }
    .logo-modal-name { font-size: 22px; padding: 8px 28px; }
}
@media (max-width: 480px) {
    .hero-content { padding: 0 20px; padding-bottom: 60%; }
    .hero-title { font-size: 22px; }
    .hero-ctas { flex-direction: column; }
    .btn { width: 60%; padding: 12px 24px; font-size: 13px; }
    .slider-progress { display: none; }
    .slider-bottom { justify-content: center; }
    .slider-arrows { margin: 0 auto; }
    .btn-primary { padding: 12px 20px; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .service-card { height: 220px; }
    .card-content { padding: 16px; }
    .card-icon-wrap { width: 36px; height: 36px; font-size: 16px; margin-bottom: 8px; }
    .card-content h3 { font-size: 13px; }
    .service-card .card-number { font-size: 32px; top: 8px; right: 12px; }
    .modal-body { padding: 17rem 2.1rem 3rem 2.1rem; margin-top: 0rem; }
    .modal-ctas { flex-direction: column; }
    .modal-cta { width: 100%; justify-content: center; padding: 12px 16px; }
    .truck-wrap svg { width: 60px; }
    .truck-divider { height: 85px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
    .filter-btn { padding: 8px 16px; font-size: 12px; }
    .modal-body .modal-icon{margin-top: 20px;}
    .modal-body h2{font-size: 1.25rem;}
    .service-card .card-content{padding: 10px;}
    .logo-modal-img-wrap { width: 180px; height: 180px; padding: 28px; border-radius: 14px; }
    .logo-modal-name { font-size: 18px; padding: 8px 24px; }
    .logo-modal-close { top: 16px; right: 16px; width: 40px; height: 40px; font-size: 18px; }
    .clients-section .cl-glow { display: none; }
    .slider-wrapper::before, .slider-wrapper::after { display: none; }
}

/* ═══ TRUCK DIVIDER ═══ */
.truck-divider { position: relative; height: 120px; overflow: hidden; background: var(--dark-bg); }
.skyline-track { position: absolute; bottom: 0; left: 0; height: 100%; display: flex; align-items: flex-end; }
.skyline-track svg { height: 100%; width: auto; display: block; flex-shrink: 0; }
.skyline-track svg path { fill: rgba(101, 212, 44, 0.04); stroke: rgba(101, 212, 44, 0.1); stroke-width: 0.5; }
.truck-divider .ground { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: repeating-linear-gradient(90deg, rgba(101, 212, 44, 0.2) 0px, rgba(101, 212, 44, 0.2) 20px, transparent 20px, transparent 40px); z-index: 5; }
.truck-wrap { position: absolute; bottom: 2px; left: -120px; z-index: 10; opacity: 0; filter: drop-shadow(0 0 8px rgba(101, 212, 44, 0.4)) drop-shadow(0 0 20px rgba(101, 212, 44, 0.12)); transition: left 0.08s linear, opacity 0.4s ease; }
.truck-wrap.visible { opacity: 1; }
.truck-wrap svg { width: 110px; height: auto; display: block; }
.truck-wrap::before { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 100px; height: 8px; background: radial-gradient(ellipse, rgba(101, 212, 44, 0.25) 0%, transparent 70%); filter: blur(4px); animation: truckGlow 2s ease-in-out infinite; }
@keyframes truckGlow { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
.truck-wrap::after { content: ''; position: absolute; right: -40px; bottom: 10px; width: 50px; height: 16px; background: linear-gradient(90deg, rgba(143, 255, 90, 0.15), transparent); filter: blur(6px); border-radius: 50%; opacity: 0.6; animation: headlight 3s ease-in-out infinite; }
@keyframes headlight { 0%, 100% { opacity: 0.4; width: 40px; } 50% { opacity: 0.8; width: 60px; } }

/* ═══ ABOUT — SNAKE BORDER ═══ */
.about-img-wrap { position: absolute; overflow: hidden; padding: 3px; background: rgba(101, 212, 44, 0.15); transition: background 0.4s ease; }
.about-img-wrap::before { content: ''; position: absolute; top: 50%; left: 50%; width: 200%; height: 200%; transform: translate(-50%, -50%); background: conic-gradient(transparent 0deg, transparent 200deg, rgba(101, 212, 44, 0.5) 240deg, var(--primary) 280deg, var(--neon-light) 320deg, #fff 335deg, var(--neon-light) 340deg, var(--primary) 350deg, transparent 360deg); z-index: 1; animation: snakeRotate 2.5s linear infinite; animation-play-state: paused; opacity: 0; transition: opacity 0.4s ease; }
.about-img-wrap .img-inner { position: relative; width: 100%; height: 100%; overflow: hidden; z-index: 2; background: var(--black); }
.about-img-wrap .img-inner img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease; }
@keyframes snakeRotate { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
.about-img-wrap::after { content: ''; position: absolute; inset: -10px; z-index: 0; opacity: 0; transition: opacity 0.5s ease; background: conic-gradient(transparent 0deg, transparent 220deg, rgba(101, 212, 44, 0.15) 270deg, rgba(143, 255, 90, 0.25) 320deg, rgba(101, 212, 44, 0.15) 350deg, transparent 360deg); filter: blur(18px); animation: snakeRotate 2.5s linear infinite; animation-play-state: paused; }
.about-img-wrap:hover { background: transparent; }
.about-img-wrap:hover::before { animation-play-state: running; opacity: 1; }
.about-img-wrap:hover::after { animation-play-state: running; opacity: 1; }
.about-img-wrap:hover .img-inner img { transform: scale(1.04); filter: brightness(1.1); }
.about-img-wrap.about-img-secondary::before { animation-name: snakeRotateRev !important; }
.about-img-wrap.about-img-secondary::after { animation-name: snakeRotateRev !important; }
@keyframes snakeRotateRev { 0% { transform: translate(-50%, -50%) rotate(360deg); } 100% { transform: translate(-50%, -50%) rotate(0deg); } }

/* ═══ ABOUT — FORKLIFT ═══ */
.vehicle-divider { position: relative; height: 80px; overflow: hidden; margin-top: 12px; }
.vehicle-wrap { position: absolute; bottom: 10px; left: -80px; z-index: 10; filter: drop-shadow(0 0 6px rgba(101, 212, 44, 0.3)) drop-shadow(0 0 15px rgba(101, 212, 44, 0.1)); opacity: 0; transition: left 0.08s linear, opacity 0.4s ease; }
.vehicle-wrap.visible { opacity: 1; }
.vehicle-wrap::before { content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); width: 70px; height: 6px; background: radial-gradient(ellipse, rgba(101, 212, 44, 0.2) 0%, transparent 70%); filter: blur(3px); animation: truckGlow 2s ease-in-out infinite; }
.vehicle-svg { width: 65px; height: auto; display: block; }

/* ═══ SERVICE CARDS — SNAKE BORDER ═══ */
.service-card { position: relative; height: 380px; overflow: hidden; cursor: pointer; padding: 3px; background: rgba(101, 212, 44, 0.08); transition: var(--transition); }
.service-card::before { content: ''; position: absolute; top: 50%; left: 50%; width: 200%; height: 200%; transform: translate(-50%, -50%); background: conic-gradient(transparent 0deg, transparent 200deg, rgba(101, 212, 44, 0.5) 240deg, var(--primary) 280deg, var(--neon-light) 320deg, #fff 335deg, var(--neon-light) 340deg, var(--primary) 350deg, transparent 360deg); z-index: 4; animation: snakeRotate 2.5s linear infinite; animation-play-state: paused; opacity: 0; transition: opacity 0.4s ease; }
.service-card::after { content: ''; position: absolute; inset: -10px; z-index: 0; opacity: 0; transition: opacity 0.5s ease; background: conic-gradient(transparent 0deg, transparent 220deg, rgba(101, 212, 44, 0.15) 270deg, rgba(143, 255, 90, 0.25) 320deg, rgba(101, 212, 44, 0.15) 350deg, transparent 360deg); filter: blur(18px); animation: snakeRotate 2.5s linear infinite; animation-play-state: paused; }
.card-inner { position: relative; width: 100%; height: 100%; overflow: hidden; z-index: 5; background: var(--black); }
.service-card:hover { transform: translateY(-6px); z-index: 2; background: transparent; }
.service-card:hover::before { animation-play-state: running; opacity: 1; }
.service-card:hover::after { animation-play-state: running; opacity: 1; }

/* ═══ MODAL 3 CTA BUTTONS ═══ */
.modal-ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.modal-cta { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; font-family: var(--font-display); font-size: 13px; font-weight: 700; border: none; cursor: pointer; text-decoration: none; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.modal-cta i { font-size: 16px; transition: transform 0.3s ease; }
.cta-whatsapp { background: #25D366; color: #000; }
.cta-whatsapp::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transform: translateX(-100%); transition: none; }
.cta-whatsapp:hover { background: #20bd5a; transform: translateY(-3px); box-shadow: 0 0 20px rgba(37, 211, 102, 0.5), 0 8px 25px rgba(37, 211, 102, 0.3); }
.cta-whatsapp:hover::before { animation: shimmer 0.8s ease; }
.cta-whatsapp:hover i { transform: scale(1.2) rotate(-10deg); }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.cta-contact { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.cta-contact::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0; background: var(--primary); transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: -1; }
.cta-contact:hover { color: var(--black); transform: translateY(-3px); box-shadow: 0 0 20px rgba(101, 212, 44, 0.4); }
.cta-contact:hover::before { height: 100%; }
.cta-contact:hover i { transform: translateX(3px); }
.cta-call { background: rgba(255,255,255,0.05); color: var(--text-primary); border: 1px solid rgba(255,255,255,0.15); }
.cta-call:hover { background: rgba(101, 212, 44, 0.1); border-color: var(--primary); color: var(--neon-light); transform: translateY(-3px); }
.cta-call:hover i { animation: ringPhone 0.6s ease-in-out infinite; }
@keyframes ringPhone { 0%, 100% { transform: rotate(0deg); } 20% { transform: rotate(15deg); } 40% { transform: rotate(-15deg); } 60% { transform: rotate(10deg); } 80% { transform: rotate(-10deg); } }

/* ═══ IMPACT BANNER — GRADIENT WAVE ═══ */
.impact-banner { position: relative; padding: 120px 0; background: var(--dark-bg); overflow: hidden; }
.impact-banner::before { content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 300px; transform: translate(-50%, -50%); background: radial-gradient(ellipse, rgba(101, 212, 44, 0.06) 0%, transparent 70%); filter: blur(60px); pointer-events: none; }
.impact-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, transparent 49.5%, rgba(101, 212, 44, 0.03) 49.5%, rgba(101, 212, 44, 0.03) 50.5%, transparent 50.5%); background-size: 100% 60px; pointer-events: none; }
.gradient-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.15; letter-spacing: -1px; background: linear-gradient(90deg, #555, #b0b0b0, #fff, var(--primary), var(--neon-light), var(--primary), #fff, #b0b0b0, #555); background-size: 300% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientWave 5s ease-in-out infinite; }
@keyframes gradientWave { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.impact-line-deco { width: 120px; height: 3px; margin: 28px auto; background: linear-gradient(90deg, transparent, var(--primary), var(--neon-light), var(--primary), transparent); box-shadow: 0 0 10px rgba(101, 212, 44, 0.3); }
.impact-corner { position: absolute; width: 20px; height: 20px; z-index: 2; opacity: 0.4; }
.impact-corner::before, .impact-corner::after { content: ''; position: absolute; background: var(--primary); }
.impact-corner.tl { top: 24px; left: 24px; } .impact-corner.tl::before { top: 0; left: 0; width: 20px; height: 2px; } .impact-corner.tl::after { top: 0; left: 0; width: 2px; height: 20px; }
.impact-corner.tr { top: 24px; right: 24px; } .impact-corner.tr::before { top: 0; right: 0; width: 20px; height: 2px; } .impact-corner.tr::after { top: 0; right: 0; width: 2px; height: 20px; }
.impact-corner.bl { bottom: 24px; left: 24px; } .impact-corner.bl::before { bottom: 0; left: 0; width: 20px; height: 2px; } .impact-corner.bl::after { bottom: 0; left: 0; width: 2px; height: 20px; }
.impact-corner.br { bottom: 24px; right: 24px; } .impact-corner.br::before { bottom: 0; right: 0; width: 20px; height: 2px; } .impact-corner.br::after { bottom: 0; right: 0; width: 2px; height: 20px; }
.impact-accent { position: absolute; top: 50%; transform: translateY(-50%); width: 2px; height: 80px; background: linear-gradient(180deg, transparent, var(--primary), transparent); opacity: 0.3; }
.impact-accent.left { left: 40px; } .impact-accent.right { right: 40px; }

/* ═══ FLOATING BUTTONS ═══ */
.whatsapp-widget.widget-right { right: 24px; left: auto; }
.whatsapp-widget.widget-right .whatsapp-popup { right: 0; left: auto; }
.contact-float-btn { position: fixed; bottom: 24px; left: 24px; z-index: 999; width: 56px; height: 56px; background: var(--primary); color: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; text-decoration: none; box-shadow: 0 4px 20px rgba(101, 212, 44, 0.4); transition: all 0.3s ease; animation: floatPulse 2s ease-in-out infinite; }
.contact-float-btn:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 6px 30px rgba(101, 212, 44, 0.6); }
@keyframes floatPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(101, 212, 44, 0.3); } 50% { box-shadow: 0 4px 30px rgba(101, 212, 44, 0.6), 0 0 50px rgba(101, 212, 44, 0.15); } }
.back-to-top-left { left: 24px; right: auto; bottom: 88px; }

/* ═══ FORM FEEDBACK ═══ */
.form-feedback { margin-top: 12px; padding: 0; font-size: 14px; font-weight: 600; border-radius: 0; opacity: 0; max-height: 0; overflow: hidden; transition: all 0.4s ease; }
.form-feedback.show { opacity: 1; max-height: 60px; padding: 12px 16px; }
.form-feedback.success { background: rgba(101, 212, 44, 0.1); border: 1px solid rgba(101, 212, 44, 0.3); color: var(--primary); }
.form-feedback.error { background: rgba(255, 60, 60, 0.1); border: 1px solid rgba(255, 60, 60, 0.3); color: #ff5555; }
.btn-submit.sending { opacity: 0.7; pointer-events: none; }
.btn-submit.sending span { display: none; }
.btn-submit.sending::after { content: 'Enviando...'; }

/* ═══ reCAPTCHA v2 — SPACING ═══ */
.g-recaptcha { margin: 16px 0; }
