/* ============================================
   BURSA YOL YARDIM — Design System
   Navy + Safety Yellow (distinct from prior brand)
   ============================================ */

:root {
  --bg-primary: #061018;
  --bg-secondary: #0a1a28;
  --bg-card: #0e2233;
  --bg-card-hover: #123047;
  --border: rgba(180, 220, 255, 0.08);
  --border-accent: rgba(255, 204, 0, 0.35);

  --text-primary: #f0f6fb;
  --text-secondary: #9db4c8;
  --text-muted: #6b8499;

  --accent: #ffcc00;
  --accent-light: #ffe566;
  --accent-glow: rgba(255, 204, 0, 0.4);
  --accent-dark: #e6b800;

  --teal: #00c9a7;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --emergency: #ff3b4a;
  --emergency-glow: rgba(255, 59, 74, 0.5);

  --gradient-accent: linear-gradient(135deg, #ffcc00 0%, #ffe566 50%, #00c9a7 100%);
  --gradient-cta: linear-gradient(135deg, #ff3b4a 0%, #ff8a00 100%);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Sora', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-glow: 0 0 60px rgba(255, 204, 0, 0.12);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);

  --header-height: 72px;
  --emergency-bar-height: 36px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--emergency-bar-height) + 16px);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   EMERGENCY BAR
   ============================================ */

.emergency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #0a1f14 0%, #1a2e0a 40%, #2a2200 100%);
  border-bottom: 1px solid var(--border-accent);
  height: var(--emergency-bar-height);
}

.emergency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.emergency-bar__pulse {
  width: 8px;
  height: 8px;
  background: var(--emergency);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.emergency-bar__text {
  color: var(--accent-light);
}

.emergency-bar__call {
  color: var(--bg-primary);
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 4px;
  background: var(--accent);
  transition: var(--transition);
}

.emergency-bar__call:hover {
  background: var(--accent-light);
}

/* ============================================
   HEADER / NAV
   ============================================ */

.header {
  position: fixed;
  top: var(--emergency-bar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(6, 16, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  z-index: 10;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.nav__logo-text strong {
  color: var(--accent);
  font-weight: 800;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.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);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn--primary {
  background: var(--accent);
  color: #061018;
  box-shadow: 0 4px 20px var(--accent-glow);
  font-weight: 700;
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--accent-light);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.btn--emergency {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 30px var(--emergency-glow);
  animation: emergency-glow 2s ease-in-out infinite;
}

.btn--emergency:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px var(--emergency-glow);
}

.btn__pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--emergency-bar-height) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
}

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

.hero__roads {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 40%, rgba(255, 204, 0, 0.03) 50%, transparent 60%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(0, 201, 167, 0.04) 48px,
      rgba(0, 201, 167, 0.04) 50px
    );
  mask-image: radial-gradient(ellipse 90% 70% at 40% 50%, black 20%, transparent 75%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}

.hero__glow--1 {
  width: 560px;
  height: 560px;
  background: rgba(255, 204, 0, 0.14);
  top: -15%;
  right: -8%;
  animation: float 8s ease-in-out infinite;
}

.hero__glow--2 {
  width: 420px;
  height: 420px;
  background: rgba(0, 201, 167, 0.1);
  bottom: 5%;
  left: -8%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero__scan {
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.04), transparent);
  animation: scan-sweep 7s ease-in-out infinite;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
  text-shadow: 0 0 40px var(--accent-glow);
  animation: brand-pulse 3s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__subtitle strong {
  color: var(--accent-light);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Tow truck visual */
.hero__visual {
  position: absolute;
  right: 4%;
  top: 55%;
  transform: translateY(-50%);
  z-index: 1;
  width: 420px;
  height: 280px;
}

.tow-scene {
  position: relative;
  width: 100%;
  height: 100%;
  animation: float 6s ease-in-out infinite;
}

.tow-scene__road {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.35), transparent);
  border-radius: 4px;
  overflow: hidden;
}

.tow-scene__road::after {
  content: '';
  position: absolute;
  inset: 2px 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.5) 20px,
    rgba(255, 255, 255, 0.5) 36px
  );
  animation: road-dash 1.2s linear infinite;
}

.tow-scene__truck {
  position: absolute;
  bottom: 48px;
  left: 10%;
  width: 280px;
  height: 120px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
}

.tow-scene__cab {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 90px;
  height: 70px;
  background: linear-gradient(160deg, #1a3a4f, #0d2436);
  border: 2px solid var(--accent);
  border-radius: 12px 4px 4px 8px;
  clip-path: polygon(0 35%, 25% 0, 100% 0, 100% 100%, 0 100%);
}

.tow-scene__cab::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 10px;
  width: 36px;
  height: 28px;
  background: rgba(0, 201, 167, 0.35);
  border-radius: 4px;
  border: 1px solid rgba(0, 201, 167, 0.5);
}

.tow-scene__bed {
  position: absolute;
  left: 88px;
  bottom: 28px;
  width: 160px;
  height: 36px;
  background: linear-gradient(180deg, #123047, #0a1a28);
  border: 2px solid rgba(255, 204, 0, 0.5);
  border-radius: 4px;
}

.tow-scene__hook {
  position: absolute;
  right: 10px;
  bottom: 64px;
  width: 50px;
  height: 4px;
  background: var(--accent);
  transform: rotate(-25deg);
  transform-origin: left center;
  box-shadow: 0 0 12px var(--accent-glow);
}

.tow-scene__hook::after {
  content: '';
  position: absolute;
  right: -8px;
  top: -6px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  border-top-color: transparent;
}

.tow-scene__wheel {
  position: absolute;
  bottom: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3a4a58, #0a1018);
  border: 3px solid var(--accent);
  animation: wheel-spin 1.2s linear infinite;
}

.tow-scene__wheel--1 { left: 28px; }
.tow-scene__wheel--2 { left: 120px; }
.tow-scene__wheel--3 { left: 200px; }

.tow-scene__light {
  position: absolute;
  top: 20px;
  left: 30%;
  width: 60px;
  height: 12px;
  background: var(--accent);
  border-radius: 4px;
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(255, 204, 0, 0.3);
  animation: beacon 1s ease-in-out infinite;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.trust-item__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.trust-item__unit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-right: 4px;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--bg-secondary);
}

.section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section__desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ============================================
   SERVICES
   ============================================ */

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

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  border-color: var(--border-accent);
  background: linear-gradient(145deg, rgba(255, 204, 0, 0.08) 0%, var(--bg-card) 55%);
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: var(--accent);
  color: #061018;
  border-radius: 4px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 0, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--accent);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.service-card__link:hover {
  color: var(--accent-light);
}

/* ============================================
   PROCESS
   ============================================ */

.process__timeline {
  max-width: 700px;
  margin: 0 auto 48px;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--teal), transparent);
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #061018;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px var(--accent-glow);
}

.process-step__content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding-top: 12px;
  letter-spacing: 0.02em;
}

.process-step__content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-step__content a {
  color: var(--accent);
  font-weight: 600;
}

.process-step__content a:hover {
  text-decoration: underline;
}

.process__cta {
  text-align: center;
}

/* ============================================
   WHY US
   ============================================ */

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

.why__text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 20px 0 32px;
}

.why__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--text-primary);
}

.why__list svg {
  color: var(--teal);
  flex-shrink: 0;
}

.why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.why-card--accent {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.12) 0%, var(--bg-card) 100%);
  border-color: var(--border-accent);
}

.why-card__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.why-card__unit {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.why-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   AREAS
   ============================================ */

.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-tag {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: default;
}

.area-tag:hover {
  border-color: var(--border-accent);
  color: var(--accent-light);
  background: rgba(255, 204, 0, 0.08);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.testimonial__stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial footer strong {
  font-size: 0.95rem;
}

.testimonial footer span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */

.faq__list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-item[open] {
  border-color: var(--border-accent);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--accent-light);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   CONTACT
   ============================================ */

.contact__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.contact__content {
  position: relative;
  z-index: 1;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact__desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.contact__phone-link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 32px;
  transition: var(--transition);
}

.contact__phone-link:hover {
  transform: scale(1.03);
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer__contact a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
}

.footer__bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.footer__bottom a {
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}

.footer__bottom a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(6, 16, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.sticky-cta__call,
.sticky-cta__whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.sticky-cta__call {
  background: var(--gradient-cta);
  color: #fff;
}

.sticky-cta__whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

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

@keyframes emergency-glow {
  0%, 100% { box-shadow: 0 4px 30px var(--emergency-glow); }
  50% { box-shadow: 0 4px 50px rgba(255, 138, 0, 0.55); }
}

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

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

@keyframes scan-sweep {
  0% { left: -40%; }
  100% { left: 120%; }
}

@keyframes road-dash {
  from { transform: translateX(0); }
  to { transform: translateX(56px); }
}

@keyframes wheel-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes beacon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes brand-pulse {
  0%, 100% { text-shadow: 0 0 30px var(--accent-glow); }
  50% { text-shadow: 0 0 50px rgba(255, 204, 0, 0.65); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero__visual {
    opacity: 0.35;
    right: -5%;
    width: 320px;
  }

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

  .why__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 16, 24, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 5;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: 1.2rem;
  }

  .nav__actions {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-bottom: 100px;
  }

  .hero__visual {
    display: none;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
  }

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

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

  .why-card--accent {
    grid-column: span 1;
  }

  .contact__card {
    padding: 40px 24px;
  }

  .contact__buttons {
    flex-direction: column;
  }

  .contact__buttons .btn {
    width: 100%;
  }

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

  .footer {
    padding-bottom: 100px;
  }

  .footer__bottom {
    padding: 20px 16px 28px;
  }

  .sticky-cta.visible {
    display: flex;
  }

  .trust-strip__inner {
    gap: 20px;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .section {
    padding: 70px 0;
  }

  .emergency-bar__text {
    font-size: 0.68rem;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 2.1rem;
  }

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