/* ============================================
   BREAKDOWN RECOVERY WORSLEY — Design System
   Colors extracted from logo:
   Primary Orange: #E8611A
   Dark Orange: #C74E12
   Light Orange: #F47B3A
   Black: #0A0A0A
   Charcoal: #1A1A1A
   Dark Gray: #2A2A2A
   Silver/White: #E8E8E8
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --orange: #E8611A;
  --orange-dark: #C74E12;
  --orange-light: #F47B3A;
  --orange-glow: rgba(232, 97, 26, 0.35);
  --orange-subtle: rgba(232, 97, 26, 0.08);

  /* Neutrals */
  --black: #0A0A0A;
  --charcoal: #141414;
  --dark: #1A1A1A;
  --dark-2: #222222;
  --dark-3: #2A2A2A;
  --gray: #3A3A3A;
  --gray-light: #555555;
  --silver: #999999;
  --silver-light: #BBBBBB;
  --white: #F0F0F0;
  --pure-white: #FFFFFF;

  /* Gradients */
  --gradient-orange: linear-gradient(135deg, #E8611A, #F47B3A);
  --gradient-dark: linear-gradient(180deg, #0A0A0A, #1A1A1A);
  --gradient-card: linear-gradient(145deg, rgba(30,30,30,0.9), rgba(20,20,20,0.95));
  --gradient-hero: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(232,97,26,0.15) 100%);

  /* Glass */
  --glass-bg: rgba(20, 20, 20, 0.6);
  --glass-border: rgba(232, 97, 26, 0.15);
  --glass-blur: blur(20px);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1280px;
  --container-padding: 0 24px;

  /* Borders & Radius */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --radius-full: 0px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-orange: 0 8px 40px rgba(232, 97, 26, 0.25);
  --shadow-orange-lg: 0 15px 60px rgba(232, 97, 26, 0.35);

  /* Transitions */
  --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-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--pure-white);
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--orange-subtle);
  border: 1px solid rgba(232, 97, 26, 0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge i {
  font-size: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--pure-white), var(--silver-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title .highlight {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--pure-white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange-lg);
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid rgba(232, 97, 26, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--orange-subtle);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.btn i {
  font-size: 1rem;
  transition: var(--transition-base);
}

.btn:hover i {
  transform: translateX(3px);
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-logo {
  width: 120px;
  height: 120px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark-3);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  animation: preloaderFill 2s ease-out forwards;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

@keyframes preloaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-base);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(232, 97, 26, 0.1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: var(--transition-base);
}

.nav-logo:hover img {
  box-shadow: 0 0 20px var(--orange-glow);
}

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

.nav-logo-text span:first-child {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--pure-white);
  line-height: 1.2;
}

.nav-logo-text span:last-child {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--silver-light);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pure-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 20px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--orange-subtle);
  border: 1px solid rgba(232,97,26,0.2);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange-light);
  transition: var(--transition-base);
}

.nav-phone:hover {
  background: rgba(232,97,26,0.15);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.nav-phone i {
  font-size: 0.85rem;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--pure-white);
  border-radius: var(--radius-full);
  transition: 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;
  transform: translateX(10px);
}

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

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: var(--glass-blur);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--silver-light);
  padding: 14px 30px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.nav-mobile a:hover {
  color: var(--orange);
}

.nav-mobile .mobile-phone {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pure-white);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.82) 40%, rgba(232,97,26,0.08) 100%);
  z-index: 1;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, var(--black), transparent);
}

/* Animated orange glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  z-index: 1;
  animation: glowFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-glow-1 {
  width: 550px;
  height: 550px;
  background: var(--orange);
  top: -15%;
  right: -8%;
  animation-delay: 0s;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--orange-dark);
  bottom: 5%;
  left: -8%;
  animation-delay: -4s;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  background: var(--orange-light);
  top: 40%;
  left: 40%;
  opacity: 0.08;
  animation-delay: -2s;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Animated Speed Lines */
.hero-speed-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.speed-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 97, 26, 0.3), transparent);
  animation: speedLineMove 4s linear infinite;
  opacity: 0;
}

.speed-line:nth-child(1) { top: 12%; width: 200px; left: -200px; animation-delay: 0s; animation-duration: 3s; }
.speed-line:nth-child(2) { top: 28%; width: 300px; left: -300px; animation-delay: 0.8s; animation-duration: 3.5s; }
.speed-line:nth-child(3) { top: 45%; width: 150px; left: -150px; animation-delay: 1.5s; animation-duration: 2.8s; }
.speed-line:nth-child(4) { top: 60%; width: 250px; left: -250px; animation-delay: 2.2s; animation-duration: 4s; }
.speed-line:nth-child(5) { top: 75%; width: 180px; left: -180px; animation-delay: 0.4s; animation-duration: 3.2s; }
.speed-line:nth-child(6) { top: 88%; width: 220px; left: -220px; animation-delay: 1.8s; animation-duration: 3.8s; }
.speed-line:nth-child(7) { top: 35%; width: 280px; left: -280px; animation-delay: 2.8s; animation-duration: 3.3s; }
.speed-line:nth-child(8) { top: 55%; width: 160px; left: -160px; animation-delay: 3.5s; animation-duration: 2.6s; }

@keyframes speedLineMove {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 400px)); opacity: 0; }
}

/* Grid Pattern Overlay */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(232, 97, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 97, 26, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Hero Container — Two Column */
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(232, 97, 26, 0.08);
  border: 1px solid rgba(232, 97, 26, 0.18);
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 0px;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-badge span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--silver-light);
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

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

.hero-title .orange {
  color: var(--orange);
  position: relative;
}

.hero-title .outline {
  -webkit-text-stroke: 2px var(--orange);
  -webkit-text-fill-color: transparent;
}

.hero-title-dot {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}

.hero-description {
  font-size: 1.08rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

/* Premium Emergency Call Button */
.btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 6px 6px 6px 6px;
  background: linear-gradient(135deg, rgba(232, 97, 26, 0.15), rgba(232, 97, 26, 0.05));
  border: 1px solid rgba(232, 97, 26, 0.35);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.btn-hero-call::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 97, 26, 0.2), rgba(232, 97, 26, 0.05));
  opacity: 0;
  transition: var(--transition-base);
  border-radius: var(--radius-lg);
}

.btn-hero-call:hover::before {
  opacity: 1;
}

.btn-hero-call:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232, 97, 26, 0.25);
}

.btn-hero-call-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-orange);
  border-radius: var(--radius-md);
  color: var(--pure-white);
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: phoneRing 3s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-15deg); }
  15% { transform: rotate(10deg); }
  20% { transform: rotate(-10deg); }
  25% { transform: rotate(0deg); }
}

.btn-hero-call-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.btn-hero-call-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-hero-call-number {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pure-white);
}

.btn-hero-call-arrow {
  position: relative;
  z-index: 1;
  color: var(--orange);
  font-size: 1rem;
  margin-right: 12px;
  transition: var(--transition-base);
}

.btn-hero-call:hover .btn-hero-call-arrow {
  transform: translateX(5px);
  color: var(--pure-white);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stat {
  position: relative;
}

.hero-stat::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--gray);
}

.hero-stat:last-child::after {
  display: none;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--silver);
  font-weight: 500;
}

/* ---- Hero Image (Right Side) ---- */
.hero-image {
  position: relative;
  animation: fadeInRight 1s ease 0.5s forwards;
  opacity: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(232, 97, 26, 0.15);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  transition: var(--transition-slow);
}

.hero-image:hover .hero-image-wrapper img {
  transform: scale(1.03);
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, transparent 40%, rgba(232, 97, 26, 0.12) 100%);
  pointer-events: none;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.6), transparent);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  pointer-events: none;
}

/* Floating Feature Badges on Image */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 97, 26, 0.2);
  border-radius: var(--radius-md);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
  white-space: nowrap;
}

.hero-float-badge-1 {
  top: 12%;
  right: -8%;
  animation-delay: 0s;
}

.hero-float-badge-2 {
  bottom: 22%;
  left: -8%;
  animation-delay: -2s;
}

.hero-float-badge-3 {
  bottom: 6%;
  right: 6%;
  animation-delay: -1s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-float-badge .badge-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-orange);
  border-radius: var(--radius-sm);
  color: var(--pure-white);
  font-size: 0.9rem;
}

.hero-float-badge .badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--silver-light);
}

/* ---- Service Ticker ---- */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(232, 97, 26, 0.15);
  overflow: hidden;
  padding: 14px 0;
}

.hero-ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--silver-light);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.hero-ticker-item i {
  color: var(--orange);
  font-size: 0.85rem;
}

.hero-ticker-divider {
  color: var(--orange);
  font-size: 0.65rem;
  opacity: 0.5;
}

/* ---------- SERVICES SECTION ---------- */
.services {
  padding: var(--section-padding);
  position: relative;
  background: var(--charcoal);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  group: true;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 97, 26, 0.3);
  box-shadow: var(--shadow-orange);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,1) 0%, transparent 60%);
}

.service-card-number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 97, 26, 0.9);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--pure-white);
  z-index: 2;
}

.service-card-body {
  padding: 28px;
  position: relative;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-subtle);
  border: 1px solid rgba(232, 97, 26, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
  transition: var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: var(--gradient-orange);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}

.service-card-icon i {
  font-size: 1.2rem;
  color: var(--orange);
  transition: var(--transition-base);
}

.service-card:hover .service-card-icon i {
  color: var(--pure-white);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  transition: var(--transition-base);
}

.service-card:hover h3 {
  color: var(--orange-light);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  transition: var(--transition-base);
}

.service-card-link:hover {
  gap: 14px;
}

/* ---------- WHY CHOOSE US SECTION ---------- */
.why-us {
  padding: var(--section-padding);
  position: relative;
  background: var(--black);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-us-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  opacity: 0;
  transition: var(--transition-base);
}

.why-us-card:hover {
  border-color: rgba(232, 97, 26, 0.2);
  transform: translateY(-6px);
}

.why-us-card:hover::before {
  opacity: 1;
}

.why-us-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-subtle);
  border-radius: 0px;
  margin: 0 auto 24px;
  transition: var(--transition-base);
}

.why-us-card:hover .why-us-icon {
  background: rgba(232, 97, 26, 0.15);
  box-shadow: 0 0 40px var(--orange-glow);
}

.why-us-icon i {
  font-size: 1.6rem;
  color: var(--orange);
}

.why-us-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-us-card p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.7;
}

/* ---------- CTA BANNER SECTION ---------- */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  background: linear-gradient(135deg, rgba(232, 97, 26, 0.15), rgba(232, 97, 26, 0.05));
  border: 1px solid rgba(232, 97, 26, 0.2);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 97, 26, 0.15), transparent 60%);
  border-radius: 50%;
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 97, 26, 0.1), transparent 60%);
  border-radius: 50%;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-banner h2 .orange {
  color: var(--orange);
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- PROCESS SECTION ---------- */
.process {
  padding: var(--section-padding);
  background: var(--charcoal);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(232,97,26,0.3), var(--orange));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--dark-2);
  border: 2px solid rgba(232, 97, 26, 0.3);
  border-radius: 0px;
  position: relative;
  transition: var(--transition-base);
}

.process-step:hover .process-step-number {
  border-color: var(--orange);
  box-shadow: 0 0 40px var(--orange-glow);
  background: rgba(232, 97, 26, 0.1);
}

.process-step-number span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials {
  padding: var(--section-padding);
  background: var(--black);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 97, 26, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  font-size: 0.9rem;
  color: var(--orange);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--silver-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 0px;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--pure-white);
  flex-shrink: 0;
}

.testimonial-author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--silver);
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: rgba(232, 97, 26, 0.1);
}

/* ---------- CONTACT / MAP SECTION ---------- */
.contact {
  padding: var(--section-padding);
  background: var(--charcoal);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.contact-info-card:hover {
  border-color: rgba(232, 97, 26, 0.2);
  transform: translateX(6px);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-subtle);
  border: 1px solid rgba(232, 97, 26, 0.2);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: var(--transition-base);
}

.contact-info-card:hover .contact-info-icon {
  background: var(--gradient-orange);
  border-color: transparent;
}

.contact-info-icon i {
  font-size: 1.2rem;
  color: var(--orange);
  transition: var(--transition-base);
}

.contact-info-card:hover .contact-info-icon i {
  color: var(--pure-white);
}

.contact-info-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.6;
}

.contact-info-text a:hover {
  color: var(--orange);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: grayscale(0.6) contrast(1.1) brightness(0.8);
  transition: var(--transition-base);
}

.contact-map:hover iframe {
  filter: grayscale(0.2) contrast(1) brightness(0.9);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 60px 0 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .nav-logo img {
  width: 115px;
  height: 115px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  color: var(--silver);
  font-size: 1rem;
  transition: var(--transition-base);
}

.footer-social-link:hover {
  background: var(--gradient-orange);
  border-color: transparent;
  color: var(--pure-white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--pure-white);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--silver);
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--orange);
  transform: translateX(5px);
}

.footer-col ul li a i {
  font-size: 0.7rem;
  color: var(--orange);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--silver);
}

.footer-bottom p .orange {
  color: var(--orange);
  font-weight: 600;
}

.footer-credit {
  font-size: 0.82rem;
  color: var(--silver);
}

.footer-credit a.orange {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-credit a.orange:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

/* ---------- FLOATING BUTTONS ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.2), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

.floating-call {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: var(--gradient-orange);
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: var(--shadow-orange);
  transition: var(--transition-base);
  animation: callPulse 2s ease-in-out infinite;
}

.floating-call:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-orange-lg);
}

@keyframes callPulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(232, 97, 26, 0.3); }
  50% { box-shadow: 0 6px 30px rgba(232, 97, 26, 0.15), 0 0 0 12px rgba(232, 97, 26, 0.08); }
}

/* ---------- GUARANTEES BAR ---------- */
.guarantees-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(232, 97, 26, 0.15);
  border-bottom: 1px solid rgba(232, 97, 26, 0.15);
  padding: 30px 0;
  position: relative;
  z-index: 4;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.guarantee-item:hover {
  border-color: rgba(232, 97, 26, 0.3);
  transform: translateY(-3px);
  background: rgba(232, 97, 26, 0.05);
}

.guarantee-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-subtle);
  border-radius: var(--radius-sm);
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.guarantee-text p {
  font-size: 0.78rem;
  color: var(--silver);
}

/* ---------- ABOUT US SECTION ---------- */
.about {
  padding: var(--section-padding);
  background: var(--black);
  position: relative;
}

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

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(232, 97, 26, 0.2);
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 97, 26, 0.3);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.about-badge-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--silver-light);
  line-height: 1.3;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--silver);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--silver-light);
}

.about-highlight-item i {
  color: var(--orange);
  font-size: 1rem;
}

/* ---------- FLEET SHOWCASE SECTION ---------- */
.fleet {
  padding: var(--section-padding);
  background: var(--black);
  position: relative;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.fleet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 97, 26, 0.3);
  box-shadow: var(--shadow-orange);
}

.fleet-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

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

.fleet-card:hover .fleet-image img {
  transform: scale(1.08);
}

.fleet-body {
  padding: 28px;
}

.fleet-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.fleet-body p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 18px;
}

.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fleet-tag {
  padding: 4px 12px;
  background: rgba(232, 97, 26, 0.1);
  border: 1px solid rgba(232, 97, 26, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange-light);
}

/* ---------- COVERAGE AREAS SECTION ---------- */
.coverage {
  padding: var(--section-padding);
  background: var(--charcoal);
  position: relative;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.coverage-box {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.coverage-box-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--pure-white);
}

.coverage-box-title i {
  color: var(--orange);
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--dark-2);
  border: 1px solid rgba(232, 97, 26, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--silver-light);
  transition: var(--transition-base);
}

.coverage-tag:hover {
  border-color: var(--orange);
  background: rgba(232, 97, 26, 0.1);
  transform: translateY(-2px);
}

.coverage-tag i {
  color: var(--orange);
  font-size: 0.75rem;
}

/* ---------- SAFETY CHECKLIST SECTION ---------- */
.safety {
  padding: var(--section-padding);
  background: var(--black);
  position: relative;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.safety-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition-smooth);
}

.safety-card:hover {
  border-color: rgba(232, 97, 26, 0.3);
  transform: translateY(-6px);
}

.safety-step-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(232, 97, 26, 0.15);
}

.safety-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-subtle);
  border-radius: var(--radius-md);
  color: var(--orange);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.safety-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.safety-card p {
  font-size: 0.86rem;
  color: var(--silver);
  line-height: 1.6;
}

/* ---------- FAQ SECTION ---------- */
.faq {
  padding: var(--section-padding);
  background: var(--charcoal);
  position: relative;
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item.active {
  border-color: rgba(232, 97, 26, 0.3);
  background: rgba(232, 97, 26, 0.04);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  color: var(--orange);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.8;
}

/* ---------- RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS ---------- */
@media (max-width: 1200px) {
  .guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .estimator-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .guarantees-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

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

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

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

  .estimator-box {
    padding: 28px 20px;
  }

  .estimator-result {
    flex-direction: column;
    text-align: center;
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--dark-2);
  border: 1px solid rgba(232, 97, 26, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gradient-orange);
  color: var(--pure-white);
  border-color: transparent;
  transform: translateY(-3px);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */

/* Tablet Landscape */
@media (max-width: 1200px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

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

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

  .hero-image {
    display: none;
  }

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

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

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

/* Tablet Portrait */
@media (max-width: 992px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

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

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

  .hero-image {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

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

  .hero-badge {
    margin-bottom: 20px;
  }

  .hero .container {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stat::after {
    display: none;
  }

  .hero-image {
    display: none;
  }

  .hero-speed-lines {
    display: none;
  }

  .hero-ticker-item {
    font-size: 0.78rem;
  }

  .hero-ticker-track {
    gap: 20px;
  }

  .btn-hero-call {
    width: 100%;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .cta-banner-inner {
    padding: 40px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .floating-whatsapp,
  .floating-call {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }

  .floating-call {
    bottom: 20px;
    left: 20px;
  }

  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-buttons .btn-secondary {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  .hero-float-badge {
    display: none;
  }

  .hero .container {
    padding-bottom: 70px;
  }

  .btn-hero-call-number {
    font-size: 1rem;
  }

  .btn-hero-call-label {
    font-size: 0.65rem;
  }

  .nav-logo img {
    width: 54px;
    height: 54px;
  }

  .footer-brand .nav-logo img {
    width: 90px;
    height: 90px;
  }

  .nav-logo-text span:first-child {
    font-size: 0.95rem;
  }
}

