/* ======================
   BEHRAM CAR RECOVERY
   Main Stylesheet
   ====================== */

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

:root {
  --primary: #E53935;
  --primary-dark: #B71C1C;
  --secondary: #111111;
  --accent: #22C55E;
  --accent-dark: #16A34A;
  --bg: #FFFFFF;
  --card: #F8F8F8;
  --text: #333333;
  --text-muted: #666666;
  --border: #E5E5E5;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --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; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-red { color: var(--primary); }
.text-green { color: var(--accent); }
.fw-700 { font-weight: 700; }

.section-label {
  display: inline-block;
  background: rgba(229,57,53,0.10);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,57,53,0.35);
}

.btn-green {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-green:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-dark {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--secondary);
  color: #fff;
  padding: 10px 0;
  font-size: 0.82rem;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
}

.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.top-bar-item .badge {
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  animation: pulse-badge 2s infinite;
}

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

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-right .btn { padding: 7px 16px; font-size: 0.78rem; border-radius: 50px; }

/* ===== HEADER ===== */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--secondary);
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 26px; height: 26px; fill: #fff; }

.logo-text span { color: var(--primary); }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
nav a:hover, nav a.active {
  color: var(--primary);
  background: rgba(229,57,53,0.07);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .mobile-btns { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.mobile-nav .mobile-btns .btn { flex: 1; justify-content: center; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(229,57,53,0.18) 0%, transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: #fff; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,57,53,0.2);
  border: 1px solid rgba(229,57,53,0.4);
  color: #f87171;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge span {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  animation: live-dot 1.5s infinite;
}

@keyframes live-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat .num span { color: var(--primary); }
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-truck-wrap {
  position: relative;
  z-index: 2;
}

.hero-truck-svg {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  object-fit: cover;
  animation: float-truck 5s ease-in-out infinite;
  display: block;
}

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

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229,57,53,0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* ===== QUICK CONTACT STRIP ===== */
.quick-strip {
  background: var(--primary);
  padding: 20px 0;
}

.quick-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.quick-strip-text { color: #fff; font-weight: 600; font-size: 1rem; }
.quick-strip-text span { opacity: 0.85; font-weight: 400; }
.quick-strip-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.quick-strip-btns .btn { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.5); }
.quick-strip-btns .btn:hover { background: rgba(255,255,255,0.35); }
.quick-strip-btns .btn-wha { background: #25D366; border-color: #25D366; }
.quick-strip-btns .btn-wha:hover { background: #128C7E; border-color: #128C7E; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(229,57,53,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-icon svg { width: 26px; height: 26px; fill: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon svg { fill: #fff; }

.service-card h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.service-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--secondary); }

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

.why-item {
  background: rgba(255,255,255,0.04);
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(255,255,255,0.08);
}

.why-item:hover::after { transform: scaleX(1); }

.why-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(229,57,53,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon svg { width: 28px; height: 28px; fill: var(--primary); }
.why-item h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-item p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.how-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.4rem;
  font-weight: 800;
  position: relative;
  transition: var(--transition);
}

.step-num:nth-child(1) { background: var(--primary); color: #fff; }

.how-step:nth-child(1) .step-num { background: var(--primary); color: #fff; }
.how-step:nth-child(2) .step-num { background: #fff; color: var(--primary); border: 3px solid var(--primary); }
.how-step:nth-child(3) .step-num { background: var(--secondary); color: #fff; border: 3px solid var(--secondary); }
.how-step:nth-child(4) .step-num { background: var(--accent); color: #fff; }

.how-step:hover .step-num { transform: scale(1.1); box-shadow: 0 8px 24px rgba(229,57,53,0.3); }

.how-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.how-step p { font-size: 0.84rem; color: var(--text-muted); }

/* ===== AREAS ===== */
.areas-section { background: var(--card); }

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

.area-block { }
.area-block h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-block h3 span {
  background: var(--primary);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.area-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.area-tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.area-tag:hover::before { background: #fff; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--card);
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: 0.95rem; }

/* Gallery SVG placeholders */
.gallery-svg-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.gallery-svg-placeholder svg { width: 48px; height: 48px; fill: rgba(229,57,53,0.4); }
.gallery-svg-placeholder span { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--secondary); }

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

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 16px; height: 16px; fill: #FBBF24; }

.review-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-text::before { content: '"'; font-size: 1.4em; color: var(--primary); line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.review-text::after { content: '"'; font-size: 1.4em; color: var(--primary); line-height: 0; vertical-align: -0.4em; margin-left: 2px; }

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

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 600; color: #fff; font-size: 0.9rem; }
.reviewer-loc { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.reviewer-tag { font-size: 0.72rem; color: var(--accent); font-weight: 600; margin-top: 2px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

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

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(229,57,53,0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  text-align: left;
  transition: var(--transition);
}

.faq-q:hover { color: var(--primary); }
.faq-item.open .faq-q { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(45deg);
}

.faq-icon svg { width: 12px; height: 12px; fill: var(--text-muted); transition: var(--transition); }
.faq-item.open .faq-icon svg { fill: #fff; }

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  padding: 0 24px 20px;
  max-height: 300px;
}

.faq-a p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #B71C1C 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: 14px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-btns .btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.cta-btns .btn-white:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-btns .btn-wha { background: #25D366; color: #fff; border-color: #25D366; }
.cta-btns .btn-wha:hover { background: #128C7E; border-color: #128C7E; transform: translateY(-2px); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }

.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: rgba(229,57,53,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 22px; height: 22px; fill: var(--primary); }
.contact-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 0.98rem; font-weight: 600; color: var(--secondary); }
.contact-item a:hover { color: var(--primary); }

.contact-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); }
.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.social-link:hover svg { fill: #fff; }

.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.84rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
}
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--primary); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--primary); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--primary); }

/* ===== FLOATING BTNS ===== */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
}

.float-btn svg { width: 24px; height: 24px; fill: #fff; }
.float-btn:hover { transform: scale(1.12); }

.float-wha { background: #25D366; }
.float-wha:hover { box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.float-call { background: var(--primary); }
.float-call:hover { box-shadow: 0 8px 28px rgba(229,57,53,0.5); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--primary); transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; fill: #fff; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(229,57,53,0.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 24px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap { border-radius: var(--radius); overflow: hidden; background: var(--card); }
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: #fff;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-float .big { font-size: 2rem; font-weight: 900; }
.about-badge-float .sm { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.about-content .section-title { text-align: left; }
.about-content .section-label { }
.about-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.about-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.about-list li::before {
  content: '';
  width: 20px; height: 20px;
  background: rgba(34,197,94,0.15);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2322C55E' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== STATS BAR ===== */
.stats-bar { background: var(--primary); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-item .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== ANIMATE ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* ---- General spacing ---- */
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: 1.5rem; margin-bottom: 10px; }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 32px; }
  .section-label { font-size: 0.7rem; padding: 5px 14px; }

  /* ---- Top bar: cleaner, no clutter ---- */
  .top-bar { padding: 8px 0; }
  .top-bar .container { flex-direction: row; justify-content: space-between; padding: 0 12px; gap: 6px; }
  .top-bar-left { gap: 0; }
  .top-bar-left .top-bar-item:nth-child(2),
  .top-bar-left .top-bar-item:nth-child(3) { display: none; }
  .top-bar-left .top-bar-item:first-child { font-size: 0.72rem; }
  .top-bar-right { gap: 6px; }
  .top-bar-right .btn { padding: 6px 12px; font-size: 0.7rem; }

  /* ---- Header ---- */
  .header-inner { height: 64px; padding: 0 16px; }
  .logo { font-size: 1rem; gap: 8px; }
  .logo-icon { width: 38px; height: 38px; border-radius: 8px; }
  .logo-icon svg { width: 22px; height: 22px; }
  nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  /* ---- Mobile nav drawer ---- */
  .mobile-nav { padding: 8px 16px 20px; }
  .mobile-nav a { padding: 14px 4px; font-size: 1rem; }

  /* ---- Hero ---- */
  .hero { min-height: auto; padding: 36px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { order: -1; margin: 0 -16px; }
  .hero-truck-wrap { padding: 0 16px; }
  .hero-truck-svg { max-width: 100%; width: 100%; }
  .hero-glow { width: 260px; height: 260px; }
  .hero-badge { font-size: 0.7rem; padding: 5px 14px; margin-bottom: 16px; }
  .hero h1 { font-size: 1.85rem; line-height: 1.15; margin-bottom: 14px; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 24px; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-stats { gap: 16px; padding-top: 20px; justify-content: space-between; }
  .hero-stat { flex: 1; min-width: 0; }
  .hero-stat .num { font-size: 1.4rem; }
  .hero-stat .label { font-size: 0.65rem; letter-spacing: 0.3px; }

  /* ---- Quick strip ---- */
  .quick-strip { padding: 16px 0; }
  .quick-strip .container { flex-direction: column; text-align: center; gap: 14px; }
  .quick-strip-text { font-size: 0.88rem; }
  .quick-strip-btns { width: 100%; flex-direction: column; gap: 8px; }
  .quick-strip-btns .btn { width: 100%; justify-content: center; }

  /* ---- Services ---- */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { padding: 18px 14px; }
  .service-icon { width: 42px; height: 42px; margin-bottom: 12px; }
  .service-icon svg { width: 20px; height: 20px; }
  .service-card h3 { font-size: 0.86rem; margin-bottom: 6px; }
  .service-card p { font-size: 0.74rem; line-height: 1.5; }

  /* ---- Why choose us ---- */
  .why-grid { grid-template-columns: 1fr; gap: 1px; }
  .why-item { padding: 28px 22px; }

  /* ---- How it works ---- */
  .how-grid { grid-template-columns: 1fr; gap: 28px; }
  .step-num { width: 56px; height: 56px; font-size: 1.1rem; margin-bottom: 16px; }

  /* ---- Service areas ---- */
  .areas-grid { grid-template-columns: 1fr; gap: 28px; }
  .area-tag { font-size: 0.76rem; padding: 5px 13px; }

  /* ---- Gallery: clean 2-col grid ---- */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/10; }
  .gallery-overlay { padding: 12px; }
  .gallery-overlay span { font-size: 0.78rem; }

  /* ---- Reviews ---- */
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 22px; }

  /* ---- FAQ ---- */
  .faq-q { padding: 16px 18px; font-size: 0.86rem; }
  .faq-a { padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }

  /* ---- CTA ---- */
  .cta-section { padding: 56px 0; }
  .cta-section h2 { font-size: 1.5rem; }
  .cta-section p { font-size: 0.9rem; margin-bottom: 28px; }
  .cta-btns { flex-direction: column; gap: 10px; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* ---- Stats bar ---- */
  .stats-bar { padding: 28px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .stat-item { border-right: none; padding: 0 8px 16px; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .stat-item .num { font-size: 1.7rem; }
  .stat-item .lbl { font-size: 0.68rem; }

  /* ---- About page ---- */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-content .section-title { font-size: 1.4rem; }
  .about-badge-float { position: relative; bottom: auto; right: auto; margin-top: 14px; display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; }
  .about-badge-float .big { font-size: 1.5rem; }

  /* ---- Contact page ---- */
  .contact-grid { gap: 36px; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-item { margin-bottom: 18px; }

  /* ---- Footer ---- */
  footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-col h4 { margin-bottom: 14px; }

  /* ---- Floating buttons: slightly smaller, safe spacing ---- */
  .float-btns { bottom: 20px; right: 16px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn svg { width: 21px; height: 21px; }
  .scroll-top { bottom: 20px; left: 16px; width: 40px; height: 40px; }

  /* ---- Page hero (inner pages) ---- */
  .page-hero { padding: 48px 0; }
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero p { font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; aspect-ratio: 4/3; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 0 0 calc(50% - 8px); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 20px 16px; }
  .why-item { padding: 24px 18px; }
  .top-bar-right .btn:first-child span,
  .header-cta .btn span { display: none; }
}
