/* =============================================
   OBOBA EVACUATORI — Premium Stylesheet
   =============================================
   Table of Contents:
   1. CSS Custom Properties
   2. Reset & Base
   3. Typography
   4. Preloader
   5. Navigation
   6. Hero Section & SVG Truck Animation
   7. Section Common Styles
   8. About Section
   9. Why Choose Us
   10. Services
   11. Emergency CTA
   12. How It Works
   13. Advantages / Stats
   14. Coverage Areas
   15. Pricing
   16. Reviews
   17. Gallery
   18. FAQ
   19. Blog / Articles
   20. Contact
   21. Footer
   22. Back to Top
   23. Glassmorphism & Card Effects
   24. Animations & Keyframes
   25. Responsive Media Queries
   26. Accessibility & Print
   ============================================= */

/* =============================================
   1. CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --primary: #ffb000;
  --primary-dark: #e09e00;
  --primary-light: #ffc040;
  --primary-glow: rgba(255, 176, 0, 0.3);
  --secondary: #111111;
  --secondary-light: #1a1a1a;
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 176, 0, 0.2);
  --border-accent: rgba(255, 176, 0, 0.3);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 176, 0, 0.15);
  --shadow-glow-strong: 0 0 50px rgba(255, 176, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-georgian: 'Noto Sans Georgian', 'Inter', sans-serif;
  --max-width: 1280px;
  --header-height: 80px;
  --z-nav: 1000;
  --z-preloader: 9999;
  --z-backtotop: 999;
  --z-overlay: 100;
}

/* =============================================
   2. RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-georgian);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

::selection {
  background: var(--primary);
  color: var(--secondary);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* =============================================
   3. TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

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

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.accent {
  color: var(--primary);
}

.accent-block {
  display: block;
  color: var(--primary);
}

/* =============================================
   4. PRELOADER
   ============================================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-preloader);
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  margin-bottom: 1rem;
}

.loader-ring {
  animation: loaderRotate 1.5s ease-in-out infinite;
  transform-origin: center;
}

.loader-arrow {
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes loaderRotate {
  0% { stroke-dashoffset: 163; transform: rotate(0deg); }
  50% { stroke-dashoffset: 0; transform: rotate(180deg); }
  100% { stroke-dashoffset: -163; transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* =============================================
   5. NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: var(--header-height);
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
  padding: 0 1rem;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.1;
}

.logo-subtitle {
  font-family: var(--font-georgian);
  font-size: 0.7rem;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-list {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: transform var(--transition-base);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 100px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 15px rgba(255, 176, 0, 0.25);
}

.btn-call:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 176, 0, 0.35);
}

.btn-call svg {
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 100;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
}

.lang-current::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 100px;
}

.lang-current:hover::before {
  opacity: 1;
}

.lang-current:hover {
  border-color: rgba(255, 176, 0, 0.2);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 176, 0, 0.06);
}

.lang-current .lang-arrow {
  width: 8px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: all var(--transition-fast);
  margin-left: 2px;
}

.lang-current .lang-arrow svg {
  width: 8px;
  height: 8px;
  display: block;
  transition: transform var(--transition-fast);
}

.lang-switcher.open .lang-current .lang-arrow svg {
  transform: rotate(180deg);
}

.lang-switcher.open .lang-current {
  border-color: rgba(255, 176, 0, 0.2);
}

.lang-flag {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.lang-flag svg {
  border-radius: 2px;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-code {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
  transform-origin: top right;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.8125rem;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--text-secondary);
  text-align: left;
  background: none;
  border: none;
  position: relative;
}

.lang-option:hover {
  background: rgba(255, 176, 0, 0.08);
  color: var(--primary);
}

.lang-option.active {
  background: rgba(255, 176, 0, 0.12);
  color: var(--primary);
}

.lang-option.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  background: var(--primary);
  border-radius: 0 2px 2px 0;
}

.lang-option .lang-code {
  font-weight: 600;
}

/* Nav Toggle (Mobile) */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   6. HERO SECTION & SVG TRUCK
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--header-height) 1rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 176, 0, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(255, 176, 0, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 10%, rgba(255, 176, 0, 0.02) 0%, transparent 50%);
  transition: opacity 0.1s ease-out;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  padding-top: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(255, 176, 0, 0.1);
  border: 1px solid rgba(255, 176, 0, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #44ff44;
  animation: pulse-dot 2s ease-in-out infinite;
  position: relative;
}

.badge-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #44ff44;
  opacity: 0.2;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title .title-line {
  display: block;
}

.hero-title .title-line.accent {
  color: var(--primary);
  font-weight: 900;
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 100px;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(255, 176, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 176, 0, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-base);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 176, 0, 0.05);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Hero Visual - SVG Truck */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truck-scene {
  width: 100%;
  max-width: 700px;
  position: relative;
}

.truck-svg {
  width: 100%;
  height: auto;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 1;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}

/* =============================================
   7. SECTION COMMON STYLES
   ============================================= */
.section {
  padding: 6rem 1rem;
  position: relative;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(255, 176, 0, 0.1);
  border: 1px solid rgba(255, 176, 0, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   8. ABOUT SECTION
   ============================================= */
.about {
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 0, 0.2), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-wrapper {
  position: relative;
}

.placeholder-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}

.image-wrapper:hover .placeholder-img {
  transform: scale(1.01);
}

/* About Video */
.about-video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 176, 0, 0.08);
  border: 1px solid rgba(255, 176, 0, 0.1);
  aspect-ratio: 6/5;
  background: #0a0a0a;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.about-video-wrapper:hover .about-video {
  transform: scale(1.02);
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.05), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 176, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 176, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 0 30px rgba(255, 176, 0, 0.2);
}

.video-play-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(255, 176, 0, 0.4);
}

.video-play-btn svg {
  margin-left: 3px;
}

.video-play-btn:hover svg {
  fill: var(--secondary);
}

.image-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--primary);
  border-radius: var(--radius-md);
  color: var(--secondary);
  box-shadow: var(--shadow-glow-strong);
}

.badge-num {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

.about-content h3 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.about-features li svg {
  flex-shrink: 0;
}

/* =============================================
   9. WHY CHOOSE US
   ============================================= */
.why-us {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 176, 0, 0.03) 50%, var(--bg-dark) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: rgba(255, 176, 0, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.why-card:hover .why-icon {
  background: rgba(255, 176, 0, 0.15);
  transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9375rem;
  margin: 0;
}

/* =============================================
   10. SERVICES
   ============================================= */
.services {
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 50% 0%, rgba(255, 176, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  margin-bottom: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.service-card p {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 0.75rem;
}

/* =============================================
   11. EMERGENCY CTA
   ============================================= */
.emergency {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 176, 0, 0.05) 50%, var(--bg-dark) 100%);
}

.emergency-card {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius-xl);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(255, 176, 0, 0.15);
}

.emergency-icon {
  margin-bottom: 1.5rem;
}

.emergency-icon.pulse svg {
  animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
  0% { filter: drop-shadow(0 0 0 rgba(255, 176, 0, 0.4)); }
  50% { filter: drop-shadow(0 0 20px rgba(255, 176, 0, 0.6)); }
  100% { filter: drop-shadow(0 0 0 rgba(255, 176, 0, 0.4)); }
}

.emergency-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.emergency-desc {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-emergency {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 176, 0, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(255, 176, 0, 0.5); }
}

.emergency-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-whatsapp:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37, 211, 102, 0.05);
}

.btn-messenger:hover {
  border-color: #0084FF;
  color: #0084FF;
  background: rgba(0, 132, 255, 0.05);
}

/* =============================================
   12. HOW IT WORKS
   ============================================= */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-num {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  min-width: 60px;
  text-align: right;
}

.step-content {
  flex: 1;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border: 1px solid var(--border-glass);
}

.step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 176, 0, 0.08);
  border-radius: var(--radius-sm);
}

.step-content h3 {
  margin-bottom: 0.375rem;
  font-size: 1.125rem;
}

.step-content p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--text-muted);
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  opacity: 0.5;
}

/* =============================================
   13. ADVANTAGES / STATS
   ============================================= */
.advantages {
  position: relative;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.adv-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid var(--border-glass);
}

.adv-num {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: inline;
}

.adv-plus,
.adv-percent {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  display: inline;
  margin-left: 2px;
}

.adv-card h3 {
  font-size: 1rem;
  margin: 0.75rem 0 0.5rem;
}

.adv-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   14. COVERAGE AREAS
   ============================================= */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.coverage-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.coverage-icon {
  margin-bottom: 1rem;
}

.coverage-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.coverage-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   15. PRICING
   ============================================= */
.pricing {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 176, 0, 0.02) 50%, var(--bg-dark) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  text-align: center;
  position: relative;
}

.pricing-featured {
  border-color: var(--border-accent);
  box-shadow: 0 0 40px rgba(255, 176, 0, 0.1), var(--shadow-glow);
  z-index: 1;
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.5rem;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* =============================================
   16. REVIEWS
   ============================================= */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9375rem;
}

.review-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   17. GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-weight: 600;
  font-size: 0.875rem;
}

/* =============================================
   18. VIDEO GALLERY
   ============================================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.video-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.video-wrapper {
  position: relative;
  overflow: hidden;
}

.video-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.video-card:hover .video-placeholder svg {
  transform: scale(1.03);
}

.video-info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.video-info h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.video-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   19. FAQ
   ============================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-primary);
  transition: background var(--transition-fast);
  gap: 1rem;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-base);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   19. BLOG / ARTICLES
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img svg {
  width: 100%;
  height: 220px;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-img svg {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 176, 0, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.blog-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  transition: gap var(--transition-fast);
}

.blog-link:hover {
  gap: 0.75rem;
}

/* =============================================
   20. CONTACT
   ============================================= */
.contact {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 176, 0, 0.03) 50%, var(--bg-dark) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 176, 0, 0.08);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.8125rem;
  margin: 0;
  color: var(--text-muted);
}

.contact-link {
  color: var(--primary);
  font-weight: 600;
}

.contact-form {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  font-size: 0.9375rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 176, 0, 0.03);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* =============================================
   21. FOOTER
   ============================================= */
.footer {
  background: var(--secondary);
  padding: 4rem 1rem 2rem;
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all var(--transition-base);
  color: var(--text-muted);
}

.social-link:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-contact li a {
  color: var(--text-muted);
}

.footer-contact li a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.footer-bottom p {
  color: var(--text-muted);
  margin: 0;
}

.footer-seo {
  color: var(--text-muted);
  opacity: 0.5;
}

/* =============================================
   22. BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-backtotop);
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 176, 0, 0.4);
}

/* =============================================
   23. GLASSMORPHISM & CARD EFFECTS
   ============================================= */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
}

.card-hover {
  transition: all var(--transition-base);
}

.card-hover:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* =============================================
   24. ANIMATIONS & KEYFRAMES
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hover glow pulsing effect for certain elements */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 176, 0, 0.2); }
  50% { box-shadow: 0 0 25px rgba(255, 176, 0, 0.4); }
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Fade In */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =============================================
   25. RESPONSIVE MEDIA QUERIES
   ============================================= */

/* Tablets & Small Laptops */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .truck-scene {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-featured {
    transform: none;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    max-width: 600px;
  }

  .step-num {
    font-size: 2.5rem;
    min-width: 50px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  /* Prevent horizontal overflow from reveal animations */
  .about-grid,
  .contact-grid,
  .steps {
    overflow: hidden;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Mobile Navigation */
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--border-glass);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .btn-call span {
    display: none;
  }

  .btn-call {
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    justify-content: center;
  }

  .lang-current {
    padding: 0.375rem 0.625rem;
  }

  .lang-current .lang-code {
    display: none;
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .truck-scene {
    max-width: 380px;
  }

  .scroll-indicator {
    display: none;
  }

  /* Grid conversions */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Steps mobile */
  .step {
    flex-direction: column;
    gap: 0.5rem;
  }

  .step-num {
    text-align: left;
  }

  .step-content {
    flex-direction: column;
    padding: 1.25rem;
  }

  .step-arrow {
    display: none;
  }

  /* Emergency mobile */
  .emergency-card {
    padding: 2rem 1.5rem;
  }

  .emergency-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Pricing mobile */

  /* Contact mobile */
  .contact-form {
    padding: 1.5rem;
  }

  /* Footer mobile */
  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .image-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: -1rem;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

/* Large Mobile */
@media (max-width: 480px) {
  .section {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .truck-scene {
    max-width: 320px;
  }

  .stat-num {
    font-size: 1.25rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-label {
    font-size: 0.625rem;
  }

  .why-card {
    padding: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}

/* =============================================
   26. ACCESSIBILITY & PRINT
   ============================================= */

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* Print */
@media print {
  .navbar,
  .back-to-top,
  .scroll-indicator,
  .emergency-actions,
  #preloader {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .glass {
    background: #f5f5f5;
    backdrop-filter: none;
  }
}
