/* ================================================
   HI-TECH KEY SOLUTIONS - MAIN STYLESHEET
   Mirrors new Webflow design (orange accents)
   ================================================ */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;600;700&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --orange:     #FB743C;
  --orange-dk:  #e55e28;
  --black:      #121212;
  --dark:       #1a1a1a;
  --dark-2:     #222222;
  --white:      #ffffff;
  --light:      #f5f5f5;
  --gray:       #cccccc;
  --text:       #444444;
  --text-light: #888888;
  --font-main:  'Plus Jakarta Sans', 'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --radius:     12px;
  --radius-sm:  8px;
  --transition: 0.3s ease;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  min-width: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-main);
  font-size: 15px;
}

/* --- UTILITY --- */
.page-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; width: 100%; }
.page-wrap { width: 100%; }
.hide { display: none !important; }
.orange { color: var(--orange); }

/* Force all sections to stretch full viewport width */
.hero-section, .counter-section, .services-section, .about-section,
.wcu-section, .benefits-section, .process-section, .cta-section,
.testimonials-section, .contact-section, .page-hero, .locations-section,
.site-footer, .footer-bottom, .top-banner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* --- BUTTONS --- */
.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}
.primary-btn:hover { background: var(--orange-dk); transform: translateY(-1px); }

.white-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}
.white-btn:hover { background: var(--light); }

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid var(--orange);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.ghost-btn:hover { background: var(--orange); color: var(--white); }

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
}
.phone-btn:hover { background: var(--orange-dk); }
.phone-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-wrap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* --- SECTION HEADERS --- */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .subheader-wrap { justify-content: center; }

.subheader-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.subheader-wrap img { width: 18px; height: 18px; }
.subh-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

h1, h2, h3, h4 { font-family: var(--font-main); line-height: 1.2; }

.heading-h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; }
.heading-h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
.heading-h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 700; }
.section-p {
  font-size: 16px;
  color: var(--text);
  max-width: 640px;
  line-height: 1.8;
}
.section-p.center { margin: 0 auto; text-align: center; }

/* ================================================
   TOP BANNER
   ================================================ */
.top-banner {
  background: var(--black);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-banner .banner-left { display: flex; align-items: center; gap: 16px; }
.top-banner .banner-left a { display: flex; align-items: center; opacity: 0.8; transition: var(--transition); }
.top-banner .banner-left a:hover { opacity: 1; }
.top-banner .banner-left img { width: 20px; height: 20px; }
.top-banner .banner-right { display: flex; align-items: center; gap: 24px; }
.banner-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
  transition: var(--transition);
}
.banner-link:hover { opacity: 1; color: var(--orange); }
.banner-link img { width: 16px; height: 16px; }

/* ================================================
   NAVIGATION
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  width: 100%;
  overflow: visible;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--white); }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 16px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.mobile-nav .primary-btn { margin-top: 8px; justify-content: center; }

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.50);
  z-index: 1;
}
.hero-bg::after { display: none; }
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  max-width: 660px;
  background: rgba(10,10,10,0.80);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 48px 48px;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  cursor: pointer;
  transition: var(--transition);
}
.hero-rating:hover { background: rgba(255,255,255,0.10); }
.hero-rating-logo { width: 80px; }
.hero-rating-info { display: flex; flex-direction: column; gap: 2px; }
.rating-stars { display: flex; gap: 3px; }
.rating-stars img, .star-icon { width: 14px; height: 14px; }
.rating-score { font-size: 13px; font-weight: 700; color: var(--white); }
.rating-label { font-size: 11px; color: rgba(255,255,255,0.6); }
.rating-row { display: flex; align-items: center; gap: 6px; }

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-content {
  max-width: 820px;
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,0.72);
  border-radius: 16px;
  padding: 56px 64px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7);
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--orange); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-btns .primary-btn { box-shadow: 0 4px 20px rgba(251,116,60,0.5); }
.hero-btns .white-btn {
  background: rgba(255,255,255,0.95);
  color: #121212;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.hero-rating:hover { background: rgba(255,255,255,0.20); }
.hero-rating-info { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.rating-stars { display: flex; gap: 2px; }
.rating-score { font-size: 15px; font-weight: 700; color: var(--white); }
.rating-label { font-size: 11px; color: rgba(255,255,255,0.7); }

/* Left/right decorative patterns */
.left-pattern, .right-pattern {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}
.left-pattern { left: 0; bottom: 0; }
.right-pattern { right: 0; top: 0; }
.left-pattern img, .right-pattern img { width: 200px; }

/* ================================================
   COUNTER / STATS SECTION
   ================================================ */
.counter-section {
  background: var(--black);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.counter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.counter-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.counter-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.3;
}
.counter-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
}
.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .stat-accent { color: var(--orange); }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* Car brand marquee inside counter */
.brand-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 40px;
  margin-bottom: 20px;
}
.logov3-component { overflow: hidden; position: relative; }
.logov3-marquee {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee-scroll 18s linear infinite;
  width: max-content;
}
.logov3-component:hover .logov3-marquee { animation-play-state: paused; }
.logov3-item img { height: 28px; width: auto; filter: brightness(0) invert(0.5); transition: var(--transition); }
.logov3-item img:hover { filter: brightness(0) invert(1); }

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

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
  padding: 100px 40px;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.services-header { margin-bottom: 52px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.services-grid-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 24px auto 0;
}

.service-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-width: 0;
  word-break: break-word;
}
.service-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-box:hover { border-color: rgba(251,116,60,0.2); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-box:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(251,116,60,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--orange); }

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-btns { display: flex; gap: 12px; }
.service-btns .primary-btn { padding: 10px 20px; font-size: 14px; }
.service-btns .ghost-btn { padding: 10px 20px; font-size: 14px; }

.services-bottom-btn { text-align: center; margin-top: 48px; }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section {
  padding: 100px 40px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-heading { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; margin-bottom: 24px; }
.about-para { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.about-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */
.wcu-section {
  padding: 100px 40px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.wcu-header { text-align: center; margin-bottom: 64px; }
.wcu-header .heading-h2 { color: var(--white); margin-bottom: 16px; }
.wcu-header .section-p { color: rgba(255,255,255,0.6); }

.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.wcu-list { display: flex; flex-direction: column; gap: 20px; }
.wcu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}
.wcu-card:hover {
  background: rgba(251,116,60,0.08);
  border-color: rgba(251,116,60,0.3);
}
.wcu-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(251,116,60,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wcu-icon-wrap svg { width: 26px; height: 26px; color: var(--orange); }
.wcu-card-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.wcu-card-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.wcu-middle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wcu-middle-inner {
  width: 200px;
  height: 200px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 24px;
  box-shadow: 0 0 60px rgba(251,116,60,0.3);
}
.wcu-middle-icon { width: 40px; height: 40px; margin-bottom: 8px; filter: brightness(0) invert(1); }
.wcu-middle-text { font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.4; }

.wcu-cta { text-align: center; margin-top: 56px; display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ================================================
   BENEFITS SECTION
   ================================================ */
.benefits-section {
  padding: 100px 40px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 80px;
}
.benefits-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.benefits-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.checklist { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
.check-item { display: flex; align-items: flex-start; gap: 20px; }
.check-item img { width: 32px; height: 32px; flex-shrink: 0; margin-top: 2px; }
.check-title { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.check-text { font-size: 15px; color: var(--text); line-height: 1.6; }

/* Review card in benefits */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #eee;
}
.reviewer-name { font-size: 16px; font-weight: 700; color: var(--black); }
.reviewer-stars { display: flex; gap: 4px; margin: 8px 0 16px; }
.reviewer-stars svg { width: 16px; height: 16px; fill: var(--orange); }
.reviewer-text { font-size: 14px; color: var(--text); line-height: 1.7; }
.review-divider { width: 40px; height: 3px; background: var(--orange); border-radius: 2px; margin: 0 auto 32px; }

/* ================================================
   PROCESS SECTION
   ================================================ */
.process-section {
  padding: 100px 40px;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.process-img img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-icon-wrap svg { width: 24px; height: 24px; color: var(--white); }
.step-title { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.step-text { font-size: 14px; color: var(--text); line-height: 1.6; }

/* ================================================
   CTA BANNER SECTION
   ================================================ */
.cta-section {
  background: var(--orange);
  padding: 80px 40px;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-heading { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-text { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 24px; }
.cta-checklist { display: flex; flex-direction: column; gap: 10px; }
.cta-check { font-size: 15px; color: var(--white); }
.cta-check strong { font-weight: 700; }
.cta-buttons { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.cta-buttons .white-btn { justify-content: center; min-width: 220px; }

/* Rating badge */
.rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  min-width: 220px;
}
.rating-badge:hover { background: rgba(255,255,255,0.25); }
.rating-badge-logo img { width: 32px; height: 32px; }
.rating-badge-info .stars { display: flex; gap: 3px; }
.rating-badge-info .stars img { width: 14px; }
.rating-badge-info .score { font-size: 13px; font-weight: 700; color: var(--white); }
.rating-badge-info .label { font-size: 11px; color: rgba(255,255,255,0.7); }

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
  padding: 100px 40px;
  background: var(--white);
}
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .heading-h2 { margin-bottom: 16px; }

.slider-container { position: relative; overflow: hidden; max-width: 1280px; margin: 0 auto; }
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 0;
}
.slide {
  min-width: 100%;
  padding: 0 8px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars img { width: 24px; height: 24px; }
.testimonial-text { font-size: 17px; color: var(--text); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: space-between; }
.author-name { font-size: 16px; font-weight: 700; color: var(--black); }
.author-platform { font-size: 13px; color: var(--text-light); }
.testimonial-logo img { width: 60px; height: auto; opacity: 0.7; }

.slider-nav { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.slider-dot {
  width: 10px;
  height: 10px;
  background: var(--gray);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--orange);
  width: 14px;
  height: 14px;
}
.slider-arrows { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--orange);
  background: transparent;
}
.slider-arrow:hover { background: var(--orange); color: var(--white); }
.slider-arrow svg { width: 18px; height: 18px; }

/* ================================================
   CONTACT / MAPS SECTION
   ================================================ */
.contact-section {
  padding: 100px 40px;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.map-wrap {
  height: 100%;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.contact-form-wrap {
  background: var(--dark-2);
  border-radius: var(--radius);
  padding: 48px 40px;
  color: var(--white);
}
.contact-form-title { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact-form-sub { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-main);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--orange);
  background: rgba(251,116,60,0.08);
}
.form-select option { background: var(--dark-2); color: var(--white); }
.form-textarea { height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  margin-top: 8px;
}
.form-submit:hover { background: var(--orange-dk); }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: #4CAF50;
  font-weight: 600;
}
.form-error {
  display: none;
  text-align: center;
  padding: 12px;
  color: #ff6b6b;
  font-size: 14px;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--black);
  padding: 80px 40px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 48px; width: auto; margin-bottom: 20px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-link:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item img { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; opacity: 0.6; }
.footer-contact-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact-text a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); }
.footer-social img { width: 16px; height: 16px; }

.footer-bottom {
  background: var(--orange);
  padding: 20px 40px;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--white); }
.footer-copy a { color: var(--white); margin-left: 4px; }
.footer-terms { display: flex; align-items: center; gap: 20px; }
.footer-terms a { font-size: 13px; color: rgba(255,255,255,0.85); transition: var(--transition); }
.footer-terms a:hover { color: var(--white); }
.footer-terms-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.3); }

/* Floating call button */
.call-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99999;
  background: var(--orange);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 24px rgba(251,116,60,0.5);
  transition: var(--transition);
  display: flex !important;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  visibility: visible !important;
  opacity: 1 !important;
}
.call-float:hover { background: var(--orange-dk); transform: translateY(-2px); }

/* ================================================
   PAGE-SPECIFIC: ABOUT
   ================================================ */
.page-hero {
  background: var(--dark);
  padding: 80px 40px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(251,116,60,0.15) 0%, transparent 70%);
}
.page-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }
.page-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.page-breadcrumb a { color: var(--orange); }
.page-breadcrumb span { margin: 0 8px; }

/* ================================================
   PAGE-SPECIFIC: SERVICES
   ================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.services-full-grid .service-box { height: 100%; }

/* ================================================
   PAGE-SPECIFIC: LOCATIONS
   ================================================ */
.locations-section { padding: 100px 40px; background: var(--white); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 40px auto 0;
}
.location-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid #eee;
  transition: var(--transition);
}
.location-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.location-city { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.location-state { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.location-desc { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 20px; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .wcu-grid { grid-template-columns: 1fr 1fr; }
  .wcu-middle { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .page-container { padding: 0 24px; }
  .navbar { padding: 14px 24px; }
  .top-banner { padding: 10px 24px; }
  .hero-section { padding: 60px 24px; }
  .counter-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid, .benefits-grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .process-inner { grid-template-columns: 1fr; }
  .process-img { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-buttons { align-items: flex-start; }
  .services-grid, .services-grid-row2 { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wcu-grid { grid-template-columns: 1fr; }
  .counter-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .page-container { padding: 0 16px; }
  .navbar { padding: 14px 16px; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .top-banner { flex-direction: column; gap: 8px; padding: 8px 16px; }
  .hero-section { padding: 40px 16px; min-height: 100svh; }
  .hero-content { padding: 28px 20px; max-width: 100%; }
  .hero-title { font-size: 1.9rem; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 60px 16px; }
  .contact-section { padding: 60px 16px; }
  .about-section { padding: 60px 16px; }
  .services-section { padding: 60px 16px; }
  .counter-section { padding: 60px 16px; }
  .testimonials-section { padding: 60px 16px; }
  .call-float { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 14px; }
  .counter-stats { grid-template-columns: 1fr 1fr; }
  .wcu-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .process-img { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap img { height: 280px; }
  .hero-rating { flex-wrap: wrap; }
}

/* Fix background-attachment: fixed on iOS (causes blank hero) */
@media (max-width: 900px) {
  .hero-bg {
    background-attachment: scroll;
  }
}

/* ===== LOCATION CARDS ===== */
.location-card { opacity:1 !important; visibility:visible !important; transform:none !important; background:#fff; border:1px solid #e8e8e8; border-radius:12px; padding:28px 24px; display:flex; flex-direction:column; gap:12px; box-shadow:0 2px 12px rgba(0,0,0,.07); transition:transform .2s,box-shadow .2s; }
.location-card:hover { transform:translateY(-4px); box-shadow:0 8px 24px rgba(0,0,0,.12); }
.location-icon { width:48px; height:48px; background:#fff5f0; border-radius:10px; display:flex; align-items:center; justify-content:center; }
.location-city { font-size:1.15rem; font-weight:700; color:#121212; margin:0; }
.location-desc { font-size:.9rem; color:#666; line-height:1.5; margin:0; flex:1; }
.location-link { display:inline-flex; align-items:center; color:var(--orange,#E8541E); font-weight:600; font-size:.9rem; text-decoration:none; margin-top:auto; gap:4px; }
.location-link:hover { text-decoration:underline; }
.locations-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:24px; padding:20px 0; }

/* ── Force all animated elements visible ─────────────────── */
.service-box,
.wcu-card,
.step-card,
.location-card,
.review-card,
.testimonial-card,
.team-card,
[class*="-card"],
[class*="-box"] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
}
.service-box:hover { transform: translateY(-4px) !important; }

/* ── New utility classes added in v25.2 ──────────────────────────────────── */

/* CTA Strip */
.cta-strip         { background:var(--orange); text-align:center; }
.cta-strip-inner   { max-width:700px; margin:0 auto; }
.cta-strip-title   { color:#fff; font-size:clamp(1.6rem,3vw,2.2rem); font-weight:800; margin-bottom:16px; }
.cta-strip-sub     { color:rgba(255,255,255,.85); font-size:1.05rem; margin-bottom:32px; }
.cta-strip-btns    { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.cta-strip-call    { background:#fff; color:var(--orange); padding:14px 36px; border-radius:8px; font-weight:800; font-size:1.05rem; text-decoration:none; }
.cta-strip-quote   { background:transparent; color:#fff; padding:14px 36px; border-radius:8px; font-weight:700; font-size:1.05rem; text-decoration:none; border:2px solid rgba(255,255,255,.6); }

/* Why Choose Us strip */
.wcu-strip         { background:#121212; }
.wcu-strip-inner   { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.section-eyebrow   { color:var(--orange); font-size:12px; font-weight:700; letter-spacing:3px; text-transform:uppercase; margin-bottom:14px; }
.wcu-strip-heading { color:#fff; font-size:clamp(1.5rem,3vw,2rem); font-weight:800; margin-bottom:18px; }
.wcu-strip-body    { color:rgba(255,255,255,.65); line-height:1.8; margin-bottom:28px; }
.wcu-strip-stats   { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.wcu-stat-box      { background:rgba(255,255,255,.07); border-radius:10px; padding:18px; }
.wcu-stat-icon     { font-size:1.5rem; margin-bottom:8px; }
.wcu-stat-title    { color:#fff; font-weight:700; font-size:.9rem; margin-bottom:3px; }
.wcu-stat-sub      { color:rgba(255,255,255,.45); font-size:.8rem; }

/* City links grid */
.city-links-grid   { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.city-link-pill    { background:#f4f4f4; color:#333; padding:9px 18px; border-radius:6px; font-size:14px; font-weight:600; text-decoration:none; border:1px solid #e0e0e0; transition:all .2s; }
.city-link-pill:hover { background:var(--orange); color:#fff; border-color:var(--orange); }

/* Trust Bar */
.trust-bar-section { background:#f8f8f8; border-bottom:1px solid #eee; padding:20px 40px; }
.trust-bar-inner   { max-width:1100px; margin:0 auto; display:flex; gap:40px; justify-content:center; flex-wrap:wrap; }
.trust-bar-item    { display:flex; align-items:center; gap:10px; }
.trust-bar-icon    { font-size:1.5rem; }
.trust-bar-label   { font-weight:700; font-size:14px; color:#121212; }
.trust-bar-sub     { font-size:12px; color:#666; }

/* Spacing utilities */
.section-pad    { padding: 70px 40px; }
.section-pad-sm { padding: 40px 40px; }
.section-pad-lg { padding: 100px 40px; }

/* Location utilities */
.location-link  { display:inline-flex; align-items:center; color:var(--orange,#E8541E); font-weight:600; font-size:.9rem; text-decoration:none; margin-top:auto; gap:4px; }
.location-link:hover { text-decoration:underline; }
.location-icon  { width:48px; height:48px; background:#fff5f0; border-radius:10px; display:flex; align-items:center; justify-content:center; }

@media (max-width:768px) {
  .wcu-strip-inner { grid-template-columns:1fr; gap:32px; }
}
@media (max-width:640px) {
  .section-pad    { padding:48px 20px; }
  .section-pad-sm { padding:28px 20px; }
  .section-pad-lg { padding:64px 20px; }
  .trust-bar-inner{ gap:20px; }
}
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 640px) {
    .why-choose-grid {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 640px) {
    .counter-grid {
        display: block !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .counter-left,
    .counter-right {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .counter-heading {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1.3rem !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
}
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .why-choose-grid {
        grid-template-columns: 1fr !important;
    }

    .counter-grid {
        display: block !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .counter-left,
    .counter-right {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .counter-heading {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1.3rem !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        max-width: 100% !important;
        padding: 0 16px !important;
    }

    .hero-inner {
        padding: 0 16px !important;
        max-width: 100% !important;
        overflow: visible !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-section {
        overflow-x: hidden !important;
    }

    .counter-heading {
        font-size: 1.3rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }

    .why-choose-outer {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}