/* ===== ROOT VARIABLES ===== */
:root {
  --orange: #FF6B00;
  --orange-dark: #E05A00;
  --orange-light: #FF8C33;
  --yellow: #FFB800;
  --black: #0D0D0D;
  --dark: #1A1A1A;
  --dark2: #242424;
  --gray: #555;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --font: 'Poppins', sans-serif;
  --shadow: 0 4px 20px rgba(255,107,0,0.15);
  --radius: 12px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .label { background: rgba(255,107,0,0.1); color: var(--orange); font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; display: inline-block; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--black); margin-bottom: 12px; }
.section-head p { color: var(--gray); font-size: 16px; max-width: 550px; margin: 0 auto; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--white); padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; transition: all 0.3s; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,0,0.4); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; border: 2px solid rgba(255,255,255,0.5); transition: all 0.3s; }
.btn-outline:hover { background: var(--white); color: var(--orange); border-color: var(--white); }

/* ===== HEADER ===== */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0; background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.10); transition: all 0.3s; }
.header-inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 54px; width: 54px; object-fit: contain; border-radius: 10px; background: #fff3e8; padding: 4px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand { font-size: 16px; font-weight: 800; color: var(--black); letter-spacing: 0.5px; line-height: 1.2; }
.logo-text .tagline { font-size: 11px; color: var(--orange); font-weight: 500; }
#navbar { margin-left: auto; }
#navbar ul { display: flex; gap: 2px; }
#navbar ul li a { color: var(--dark); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all 0.3s; }
#navbar ul li a:hover, #navbar ul li a.active { color: var(--orange); background: rgba(255,107,0,0.07); }
.btn-call { display: flex; align-items: center; gap: 8px; background: var(--orange); color: var(--white); padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: 14px; transition: all 0.3s; white-space: nowrap; box-shadow: 0 4px 14px rgba(255,107,0,0.3); }
.btn-call:hover { background: var(--orange-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  background: #0f0f0f;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('0901.png');
  background-size: cover;
  background-position: center center;
  z-index: 0;
  opacity: 0.45;
}
.hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.96) 0%,
    rgba(10,10,10,0.85) 45%,
    rgba(10,10,10,0.4) 75%,
    rgba(10,10,10,0.15) 100%
  );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding: 80px 0;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1.5px solid rgba(255,107,0,0.4);
  color: var(--orange-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-content h1 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--orange); }
.hero-content p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-outline { border-color: rgba(255,255,255,0.45); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--orange); border-color: var(--white); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.stat {
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat span { display: block; font-size: 26px; font-weight: 800; color: var(--orange); line-height: 1; }
.stat p { color: rgba(255,255,255,0.55); font-size: 11px; margin-top: 5px; font-weight: 500; }

/* Hero right — photo card */
.hero-photo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo-card {
  width: 100%;
  max-width: 520px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 2px solid rgba(255,107,0,0.25);
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}
.hero-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(255,107,0,0.5);
}
.hero-photo-badge2 {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-photo-badge2 i { color: #22c55e; }

.hero-scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; }
.hero-scroll a { color: rgba(255,255,255,0.4); font-size: 20px; animation: bounce 2s infinite; display: block; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 40px; }
  .hero-photo { display: none; }
  .hero-content { max-width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===== HERO SERVICES STRIP ===== */
.hero-services-strip {
  background: var(--orange);
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.hero-services-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}
.hero-services-strip:hover .hero-services-track { animation-play-state: paused; }
.hs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-right: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
  cursor: default;
  transition: background 0.3s;
}
.hs-item:hover { background: rgba(0,0,0,0.12); }
.hs-item i { font-size: 16px; color: var(--white); opacity: 0.9; }
.hs-item span { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: 0.3px; }

/* ===== EMERGENCY STRIP ===== */
.emergency-strip { background: var(--orange); padding: 14px 0; }
.emergency-strip .container { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.emergency-strip i { font-size: 20px; color: var(--white); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.emergency-strip span { color: var(--white); font-weight: 700; font-size: 16px; }
.emergency-strip a { background: var(--white); color: var(--orange); padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: 14px; transition: all 0.3s; display: flex; align-items: center; gap: 6px; }
.emergency-strip a:hover { background: var(--black); color: var(--white); }
.wa-btn { background: #25D366 !important; color: var(--white) !important; }
.wa-btn:hover { background: #1da851 !important; }

/* ===== SERVICES ===== */
.services { padding: 90px 0; background: var(--light-gray); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: all 0.3s; border: 1px solid transparent; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,107,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon { width: 72px; height: 72px; background: rgba(255,107,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all 0.3s; }
.service-card .icon i { font-size: 28px; color: var(--orange); }
.service-card:hover .icon { background: var(--orange); }
.service-card:hover .icon i { color: var(--white); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ===== COVERAGE + GARAGE ===== */
.coverage-section { padding: 90px 0 0; background: var(--white); }
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: var(--white);
  border: 1.5px solid #efefef;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}
.coverage-card {
  padding: 48px 40px;
}
.coverage-card:first-child { border-right: none; }
.coverage-divider {
  width: 1px;
  background: #efefef;
  margin: 40px 0;
}
.coverage-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,107,0,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.coverage-icon i { font-size: 26px; color: var(--orange); }
.coverage-icon.garage { background: rgba(34,197,94,0.08); }
.coverage-icon.garage i { color: #16a34a; }
.coverage-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}
.coverage-card > p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.coverage-list { display: flex; flex-direction: column; gap: 10px; }
.coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}
.coverage-list li i { color: var(--orange); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.coverage-icon.garage + h3 + p + .coverage-list li i { color: #16a34a; }

/* Bottom strip */
.coverage-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid #efefef;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.cs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-right: 1px solid #efefef;
  background: var(--white);
  transition: all 0.3s;
}
.cs-item:last-child { border-right: none; }
.cs-item:hover { background: rgba(255,107,0,0.04); }
.cs-item i { font-size: 20px; color: var(--orange); flex-shrink: 0; }
.cs-item span { font-size: 13px; font-weight: 600; color: var(--dark); }

@media (max-width: 768px) {
  .coverage-inner { grid-template-columns: 1fr; }
  .coverage-divider { width: 100%; height: 1px; margin: 0 40px; width: calc(100% - 80px); }
  .coverage-card { padding: 32px 24px; }
  .coverage-strip { grid-template-columns: repeat(2, 1fr); }
  .cs-item:nth-child(2) { border-right: none; }
  .cs-item:nth-child(1), .cs-item:nth-child(2) { border-bottom: 1px solid #efefef; }
}

/* ===== BRANDS ===== */
.brands { padding: 90px 0 80px; background: var(--white); overflow: hidden; }
.brands-track-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brands-track-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.brands-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.brands-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.brands-track.scroll-left  { animation: scrollLeft 30s linear infinite; }
.brands-track.scroll-right { animation: scrollRight 30s linear infinite; }
.brands-track:hover { animation-play-state: paused; }

@keyframes scrollLeft  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 16px 24px;
  background: var(--white);
  border: 1.5px solid #efefef;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: default;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.brand-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(255,107,0,0.12);
  transform: translateY(-4px);
}
.brand-card i { display: none; }
.brand-card span {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  white-space: nowrap;
}
.brand-card:hover span { color: var(--orange); }

/* ===== WHY US ===== */
.why-us { padding: 90px 0; background: var(--white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

/* Left side */
.why-img { position: relative; }
.why-img-main {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.why-stat-card {
  background: var(--white);
  border: 1.5px solid #f0f0f0;
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.why-stat-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,107,0,0.1); }
.why-stat-card span { display: block; font-size: 24px; font-weight: 800; color: var(--orange); line-height: 1; }
.why-stat-card p { font-size: 11px; color: var(--gray); margin-top: 5px; font-weight: 500; }
.exp-badge { display: none; }

/* Right side */
.why-content .label { background: rgba(255,107,0,0.08); color: var(--orange); font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 20px; display: inline-block; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.why-content h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--black); margin-bottom: 14px; line-height: 1.25; }
.why-content > p { color: var(--gray); font-size: 15px; line-height: 1.8; margin-bottom: 30px; }
.why-list { margin-bottom: 36px; display: flex; flex-direction: column; gap: 0; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 15px;
  color: var(--dark);
}
.why-list li:last-child { border-bottom: none; }
.why-list li .why-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,107,0,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-list li .why-icon i { color: var(--orange); font-size: 15px; }
.why-list li span { padding-top: 7px; font-weight: 500; line-height: 1.5; }

@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; gap: 50px; }
  .why-img-main { height: 300px; }
}

/* ===== GALLERY ===== */
.gallery { padding: 90px 0; background: var(--light-gray); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 220px 220px 220px; gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.g1 { grid-column: span 2; background: linear-gradient(135deg, #1a1a1a, #2d1500); background-size: cover; background-position: center; }
.gallery-item.g2 { background: linear-gradient(135deg, #0d0d0d, #1a0a00); background-size: cover; background-position: center; }
.gallery-item.g3 { background: linear-gradient(135deg, #1a0a00, #2d1500); background-size: cover; background-position: center; }
.gallery-item.g4 { background: linear-gradient(135deg, #0d0d0d, #1a1a1a); background-size: cover; background-position: center; }
.gallery-item.g5 { grid-column: span 2; background: linear-gradient(135deg, #2d1500, #1a1a1a); background-size: cover; background-position: center; }
.gallery-item.g6 { background: linear-gradient(135deg, #1a1a1a, #0d0d0d); background-size: cover; background-position: center; }
.gallery-item.g-video { grid-column: span 1; background: #000; height: 220px; }
.gallery-item.g-video video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.video-overlay { background: rgba(255,107,0,0.75) !important; }
.gallery-item::before { content: '\f030'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 48px; color: rgba(255,107,0,0.2); }
.gallery-item.g-video::before { display: none; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(255,107,0,0.88); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: all 0.3s; }
.gallery-overlay i { font-size: 32px; color: var(--white); }
.gallery-overlay span { color: var(--white); font-weight: 700; font-size: 16px; }
.gallery-note { text-align: center; margin-top: 20px; color: var(--gray); font-size: 13px; }
.gallery-note i { color: var(--orange); margin-right: 6px; }

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-note { text-align: center; margin-top: 20px; color: var(--gray); font-size: 13px; }
.gallery-note i { color: var(--orange); margin-right: 6px; }
.testimonials { padding: 90px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--light-gray); border-radius: var(--radius); padding: 24px; border: 1px solid transparent; transition: all 0.3s; display: flex; flex-direction: column; gap: 12px; }
.testi-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-top { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; background: var(--orange); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; flex-shrink: 0; }
.testi-top > div:nth-child(2) { flex: 1; }
.testi-top strong { display: block; font-size: 14px; font-weight: 700; color: var(--black); }
.testi-top span { font-size: 12px; color: var(--gray); }
.google-badge img { height: 18px; width: auto; object-fit: contain; }
.stars { color: var(--yellow); font-size: 13px; }
.testi-card > p { color: var(--gray); font-size: 13px; line-height: 1.8; font-style: italic; }

/* Overall rating card */
.rating-summary { background: var(--white); border: 2px solid #efefef; text-align: center; align-items: center; justify-content: center; }
.rating-summary .google-badge { margin-bottom: 4px; }
.rating-big { font-size: 56px; font-weight: 800; color: var(--orange); line-height: 1; }
.rating-label { font-size: 15px; font-weight: 700; color: var(--black); margin-top: 6px; }
.rating-sub { font-size: 12px; color: var(--gray); }

@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ===== CONTACT ===== */
.contact { padding: 90px 0; background: var(--light-gray); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card { display: flex; align-items: flex-start; gap: 16px; background: var(--white); padding: 20px; border-radius: var(--radius); border-left: 4px solid var(--orange); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.info-card i { font-size: 22px; color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.info-card h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 14px; color: var(--gray); display: block; }
.info-card a:hover { color: var(--orange); }
.info-card small { display: block; font-size: 11px; color: var(--orange); margin-top: 4px; font-weight: 500; }
.contact-btns { display: flex; gap: 12px; margin-top: 4px; }
.contact-btns .btn-primary { flex: 1; justify-content: center; padding: 13px 16px; }
.btn-whatsapp { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: var(--white); padding: 13px 16px; border-radius: 50px; font-weight: 700; font-size: 15px; transition: all 0.3s; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
.map-container { border-radius: var(--radius); overflow: hidden; min-height: 480px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); position: relative; }
.map-container iframe { width: 100%; height: 100%; border: none; display: block; min-height: 480px; }
.map-directions-btn { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 16px rgba(255,107,0,0.4); white-space: nowrap; transition: all 0.3s; z-index: 2; }
.map-directions-btn:hover { background: var(--orange-dark); transform: translateX(-50%) translateY(-2px); }

/* ===== FOOTER ===== */
footer { background: #f8f8f8; padding: 70px 0 0; border-top: 1px solid #eee; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
footer h4 { color: var(--black); font-size: 16px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--orange); }
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a, .footer-services ul li a { color: var(--gray); font-size: 14px; transition: color 0.3s; display: flex; align-items: center; gap: 6px; }
.footer-links ul li a:hover, .footer-services ul li a:hover { color: var(--orange); }
.footer-contact p { color: var(--gray); font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--orange); width: 16px; }
.footer-contact a { color: var(--gray); transition: color 0.3s; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid #e5e5e5; padding: 20px 0; text-align: center; background: #f0f0f0; }
.footer-bottom p { color: var(--gray); font-size: 13px; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.92); cursor: zoom-out; }
.lightbox-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 92vw; max-height: 92vh; }
.lb-img-wrap {
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
  max-width: 88vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap.zoomed { cursor: zoom-out; }
#lbImg {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
  transform-origin: center center;
  display: block;
}
#lbImg.zoomed { transform: scale(2); cursor: zoom-out; }
.lb-caption { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 600; margin-top: 14px; letter-spacing: 0.5px; }
.lb-close { position: fixed; top: 20px; right: 24px; background: rgba(255,255,255,0.1); border: none; color: var(--white); width: 44px; height: 44px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; backdrop-filter: blur(6px); }
.lb-close:hover { background: var(--orange); }
.lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: var(--white); width: 48px; height: 48px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; backdrop-filter: blur(6px); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: var(--orange); }
@media (max-width: 600px) { .lb-prev { left: 8px; } .lb-next { right: 8px; } }
.float-call, .float-wa { position: fixed; right: 20px; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--white); z-index: 999; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.3s; }
.float-call { bottom: 160px; background: var(--orange); }
.float-wa { bottom: 96px; background: #25D366; }
.float-call:hover, .float-wa:hover { transform: scale(1.1); }
.scroll-top { position: fixed; right: 20px; bottom: 30px; width: 52px; height: 52px; border-radius: 50%; background: var(--dark2); color: var(--white); border: none; cursor: pointer; font-size: 18px; display: none; align-items: center; justify-content: center; z-index: 999; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--orange); }

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

/* Tablet 1024px */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-img { display: none; }
  .coverage-inner { grid-template-columns: 1fr; }
  .coverage-divider { width: calc(100% - 80px); height: 1px; margin: 0 40px; }
  .coverage-strip { grid-template-columns: repeat(2, 1fr); }
  .cs-item:nth-child(2) { border-right: none; }
  .cs-item:nth-child(1), .cs-item:nth-child(2) { border-bottom: 1px solid #efefef; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile 768px */
@media (max-width: 768px) {

  /* Header */
  #navbar { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: center; justify-content: center; z-index: 999; }
  #navbar.open { display: flex; }
  #navbar ul { flex-direction: column; gap: 8px; text-align: center; }
  #navbar ul li a { font-size: 18px; padding: 10px 24px; color: var(--black); }
  .hamburger { display: flex; z-index: 1000; }
  .btn-call { display: none; }
  .logo-text .brand { font-size: 13px; }

  /* Hero */
  .hero { min-height: auto; padding-top: 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 36px 0 30px; }
  .hero-photo { display: none; }
  .hero-content { max-width: 100%; }
  .hero-content h1 { font-size: 30px; margin-bottom: 14px; }
  .hero-content p { font-size: 14px; margin-bottom: 24px; }
  .hero-badge { font-size: 11px; padding: 6px 12px; margin-bottom: 16px; }
  .hero-btns { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero-btns a { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 14px 8px; }
  .stat span { font-size: 20px; }
  .stat p { font-size: 10px; }
  .hero-scroll { display: none; }

  /* Emergency strip */
  .emergency-strip .container { flex-direction: column; gap: 8px; text-align: center; }
  .emergency-strip span { font-size: 13px; }

  /* Services */
  .services { padding: 50px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 20px; }

  /* Coverage */
  .coverage-section { padding: 50px 0 0; }
  .coverage-inner { grid-template-columns: 1fr; }
  .coverage-divider { width: calc(100% - 40px); height: 1px; margin: 0 20px; }
  .coverage-card { padding: 24px 20px; }
  .coverage-card h3 { font-size: 17px; }
  .coverage-strip { grid-template-columns: repeat(2, 1fr); }
  .cs-item { padding: 12px 14px; gap: 8px; }
  .cs-item i { font-size: 16px; }
  .cs-item span { font-size: 12px; }
  .cs-item:nth-child(2) { border-right: none; }
  .cs-item:nth-child(1), .cs-item:nth-child(2) { border-bottom: 1px solid #efefef; }

  /* Brands */
  .brands { padding: 50px 0; }
  .brands-track-wrap::before, .brands-track-wrap::after { width: 40px; }

  /* Why Us */
  .why-us { padding: 50px 0; }
  .why-inner { grid-template-columns: 1fr; }
  .why-img { display: none; }
  .why-content h2 { font-size: 22px; }
  .why-list li { font-size: 14px; }

  /* Gallery */
  .gallery { padding: 50px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 150px 150px 200px; gap: 8px; }
  .gallery-item.g1, .gallery-item.g5 { grid-column: span 1; }
  .gallery-item.g-video { grid-column: span 2; }

  /* Testimonials */
  .testimonials { padding: 50px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .rating-big { font-size: 44px; }

  /* Contact */
  .contact { padding: 50px 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 24px; }
  .map-container { min-height: 300px; }
  .contact-btns { flex-direction: column; }
  .contact-btns .btn-primary, .btn-whatsapp { width: 100%; }

  /* Footer */
  footer { padding: 40px 0 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 30px; }
  .footer-bottom p { font-size: 11px; }

  /* Section heads */
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 24px; }
  .section-head p { font-size: 13px; }
}

/* Small Mobile 480px */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero-content h1 { font-size: 26px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .btn-primary, .btn-outline { padding: 11px 18px; font-size: 13px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 180px; grid-column: span 1 !important; }
  .gallery-item.g-video { height: 220px; }
  .coverage-strip { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom p { font-size: 10px; line-height: 1.6; }
  .float-call { bottom: 136px; width: 46px; height: 46px; font-size: 18px; }
  .float-wa { bottom: 80px; width: 46px; height: 46px; font-size: 18px; }
  .scroll-top { bottom: 24px; width: 40px; height: 40px; font-size: 15px; }
  .info-card { padding: 14px; gap: 12px; }
  .info-card i { font-size: 18px; }
  .contact-form input, .contact-form textarea { padding: 11px 12px; font-size: 13px; }
  .testi-card { padding: 18px; }
  .service-card { padding: 20px 16px; }
  .coverage-card { padding: 20px 16px; }
  .hs-item { padding: 12px 18px; }
  .hs-item span { font-size: 12px; }
}
