/* ============================================
   24/7 Towing Landing Page
   Exact mockup match — Yellow / Dark / White
   ============================================ */

:root {
  --yellow: #ffc107;
  --yellow-dark: #e6ac00;
  --dark: #1c1c1c;
  --dark-2: #222222;
  --dark-3: #2a2a2a;
  --gray: #777777;
  --gray-light: #999999;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --container: 1170px;
  --font: "Montserrat", sans-serif;
  --header-h: 100px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
  transition: background 0.3s ease, padding 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.logo {
  flex-shrink: 0;
  width: 180px;
  
  
  overflow: hidden;
  
  z-index: 2;
}

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

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

.nav a {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav a i {
  font-size: 9px;
  opacity: 0.8;
}

.nav a:hover,
.nav .active > a {
  color: var(--yellow);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  max-width: 320px;
  background: var(--dark);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border-top: 3px solid var(--yellow);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  width: 100%;
  display: block;
}

.dropdown a {
  display: block;
  width: 100%;
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
  white-space: normal;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown a:hover {
  color: var(--yellow);
  background: rgba(255, 193, 7, 0.08);
}

.has-dropdown > a i {
  transition: transform var(--transition);
}

.has-dropdown:hover > a i,
.has-dropdown:focus-within > a i {
  transform: rotate(180deg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

.mobile-nav {
  display: none;
  background: rgba(28, 28, 28, 0.98);
  padding: 16px 20px 24px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mobile-has-dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 12px 0;
  cursor: pointer;
}

.mobile-dropdown-toggle i {
  font-size: 11px;
  transition: transform var(--transition);
}

.mobile-dropdown-toggle.open i {
  transform: rotate(180deg);
}

.mobile-dropdown {
  display: none;
  flex-direction: column;
  padding: 0 0 10px 12px;
}

.mobile-dropdown.open {
  display: flex;
}

.mobile-dropdown a {
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.mobile-dropdown li:last-child a {
  border-bottom: none;
}

/* ---------- HERO SLIDER ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 4s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 80px;
  max-width: 900px;
}

.hero h1 {
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  animation: fadeUp 0.8s ease both;
}

.hero-accent {
  display: block;
  font-size: clamp(36px, 6.5vw, 64px);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 1px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-text {
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  animation: fadeUp 0.8s ease 0.3s both;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.mouse {
  display: block;
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  position: relative;
}

.wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ---------- CTA BAR ---------- */
.cta-bar {
  position: relative;
  z-index: 5;
  margin-top: -40px;
  padding-bottom: 0;
}

.cta-bar-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.1fr;
  align-items: stretch;
  min-height: 90px;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.18));
}

.cta-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--white);
}

.cta-segment i {
  font-size: 28px;
  flex-shrink: 0;
}

.cta-left {
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
  margin-right: -28px;
  padding-right: 48px;
  z-index: 1;
}

.cta-center {
  background: var(--dark);
  clip-path: polygon(28px 0, calc(100% - 28px) 0, 100% 100%, 0 100%);
  z-index: 2;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
}

.cta-center a {
  color: var(--white);
}

.cta-center strong {
  color: var(--yellow);
  font-weight: 800;
}

.cta-right {
  background: var(--yellow);
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -28px;
  padding-left: 48px;
  z-index: 1;
}

/* ---------- OFFER ---------- */
.offer {
  padding: 100px 0 90px;
  background: var(--white);
}

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

.offer-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 380px;
}

.city-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background:
    linear-gradient(to top, #e8e8e8 0%, transparent 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 160' fill='%23d8d8d8'%3E%3Crect x='20' y='80' width='40' height='80'/%3E%3Crect x='70' y='50' width='55' height='110'/%3E%3Crect x='135' y='70' width='35' height='90'/%3E%3Crect x='180' y='30' width='70' height='130'/%3E%3Crect x='260' y='60' width='45' height='100'/%3E%3Crect x='315' y='40' width='60' height='120'/%3E%3Crect x='390' y='75' width='40' height='85'/%3E%3Crect x='440' y='25' width='80' height='135'/%3E%3Crect x='530' y='55' width='50' height='105'/%3E%3Crect x='590' y='45' width='65' height='115'/%3E%3Crect x='665' y='70' width='40' height='90'/%3E%3Crect x='715' y='35' width='55' height='125'/%3E%3C/svg%3E")
      bottom / 100% 160px no-repeat;
  opacity: 0.9;
  z-index: 0;
}

.offer-image img {
  position: relative;
  z-index: 1;
  
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  animation: floatTruck 4s ease-in-out infinite;
}

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

.offer-content h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}

.offer-content h2 span {
  color: var(--yellow);
}

.offer-content > p {
  margin-bottom: 28px;
  color: var(--gray);
  font-size: 15px;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
}

.offer-list i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ---------- STATS ---------- */
.stats {
  position: relative;
  padding: 90px 0;
  background:
    url("../images/stats-bg.jpg")
      center / cover no-repeat fixed;
  color: var(--white);
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.82);
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item i {
  font-size: 36px;
  color: var(--yellow);
  margin-bottom: 18px;
  display: block;
}

.stat-number {
  display: block;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--white);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- SERVICES ---------- */
.services {
  padding: 100px 0 90px;
  background: var(--white);
}

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

.section-line {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--yellow);
  margin: 0 auto 18px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
}

.section-header h2 span {
  color: var(--yellow);
}

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

.service-card {
  background: var(--white);
  border: 1px solid #ececec;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

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

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.service-card-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--yellow);
}

.service-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.35;
  text-transform: none;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--dark);
  align-self: flex-start;
}

.service-card-link i {
  color: var(--yellow);
  font-size: 11px;
  transition: transform var(--transition);
}

.service-card-link:hover {
  color: var(--yellow);
}

.service-card-link:hover i {
  transform: translateX(4px);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
}

.testimonials-photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.testimonials-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.55);
}

.testimonials-photos .active-photo {
  filter: grayscale(0%) brightness(1);
  outline: 4px solid var(--yellow);
  outline-offset: -4px;
  z-index: 1;
  position: relative;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.72);
  z-index: 2;
}

.testimonials-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 900px;
}

.testimonial-slide-wrap {
  flex: 1;
  overflow: hidden;
  text-align: center;
}

.testimonial-slides {
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-slide p {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-slide cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-slide cite span {
  color: var(--yellow);
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-nav:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ---------- LOCATIONS ---------- */
.locations {
  padding: 100px 0 90px;
  background: var(--bg-light);
}

.locations .section-header h2 {
  text-transform: none;
  font-size: clamp(26px, 3vw, 34px);
}

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

.location-card {
  background: var(--white);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.location-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
  padding: 0;
  margin-top: -1px;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1.15fr 1.5fr 1.15fr;
  align-items: stretch;
  min-height: 90px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
  transform: translateY(45px);
  position: relative;
  z-index: 5;
}

.newsletter-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--dark);
  text-align: center;
}

.newsletter-left {
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
  margin-right: -28px;
  padding-right: 44px;
  z-index: 1;
}

.newsletter-left strong {
  font-weight: 800;
}

.newsletter-center {
  background: var(--dark);
  clip-path: polygon(28px 0, calc(100% - 28px) 0, 100% 100%, 0 100%);
  z-index: 2;
  padding: 18px 40px;
}

.newsletter-right {
  background: var(--yellow);
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -28px;
  padding-left: 44px;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 380px;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 4px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-form button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--yellow);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.newsletter-form button:hover {
  background: var(--yellow-dark);
  transform: scale(1.05);
}

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative;
  background: #111111;
  color: rgba(255, 255, 255, 0.7);
  padding: 120px 0 40px;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #111111 0%, rgba(17, 17, 17, 0.92) 35%, rgba(17, 17, 17, 0.78) 100%),
    url("../images/footer-tools.jpg") center bottom / cover no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.footer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
}

.footer-phone-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 20px;
  flex-shrink: 0;
}

.footer-phone-number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
}

.footer-phone:hover .footer-phone-number {
  color: var(--yellow);
}

.footer-address {
  text-align: left;
}

.footer-address-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-address-label i {
  font-size: 14px;
}

.footer-address p {
  color: var(--white);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.35;
}

.footer-main {
  display: grid;
  grid-template-columns: 2.2fr 1.3fr 1.3fr;
  gap: 40px 50px;
  padding-bottom: 50px;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 22px;
  color: var(--white);
}

.footer-chevrons {
  display: inline-flex;
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: -6px;
  margin-right: 10px;
}

.footer-chevrons i {
  margin-right: -2px;
}

.footer-brand-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: #9a9a9a;
  max-width: 340px;
  margin-bottom: 28px;
}

.footer-social-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.footer-social-text a {
  color: var(--white);
}

.footer-social-text a:hover {
  color: var(--yellow);
}

.footer-social-text span {
  color: var(--yellow);
  font-weight: 700;
}

.footer-nav-col h4 {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-col a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.footer-nav-col a i {
  color: var(--yellow);
  font-size: 10px;
}

.footer-nav-col a:hover {
  color: var(--yellow);
}

.footer-copy {
  padding-top: 10px;
}

.footer-copy p {
  font-size: 13px;
  color: #8a8a8a;
}

.footer-copy span {
  color: var(--yellow);
  font-weight: 600;
}

.footer-fab {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 28px rgba(255, 193, 7, 0.35);
  z-index: 5;
  transition: transform var(--transition), background var(--transition);
}

.footer-fab:hover {
  transform: scale(1.08);
  background: #ffd54f;
  color: #111111;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
  }

  .footer-main .footer-nav-col:last-child {
    grid-column: 2 / 3;
  }

  .services-grid {
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    width: 88px;
    height: 88px;
  }

  .cta-bar-inner,
  .newsletter-inner {
    grid-template-columns: 1fr;
    filter: none;
  }

  .cta-left,
  .cta-center,
  .cta-right,
  .newsletter-left,
  .newsletter-center,
  .newsletter-right {
    clip-path: none;
    margin: 0;
    padding: 24px 20px;
  }

  .newsletter-inner {
    transform: none;
    margin: 40px 0 0;
  }

  .site-footer {
    padding: 70px 0 100px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main .footer-nav-col:last-child {
    grid-column: auto;
  }

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

  .offer-image {
    order: -1;
    min-height: 280px;
  }

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

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

  .testimonials-photos {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .testimonials-photos img:nth-child(n + 13) {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 620px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .hero-arrow-prev {
    left: 12px;
  }

  .hero-arrow-next {
    right: 12px;
  }

  .hero-dots {
    bottom: 80px;
  }

  .cta-bar {
    margin-top: 0;
  }

  .cta-center {
    font-size: 24px;
  }

  .offer,
  .services,
  .locations {
    padding: 70px 0 60px;
  }

  .stats {
    padding: 70px 0;
    background-attachment: scroll;
  }

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

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

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

  .footer-phone-number {
    font-size: 26px;
  }

  .footer-fab {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .testimonials-content {
    flex-direction: column;
    gap: 24px;
  }

  .testimonial-nav {
    display: none;
  }

  .testimonials::after {
    content: none;
  }

  /* Show nav buttons below on mobile via JS-friendly visible row */
  .testimonials-content {
    position: relative;
  }

  .testimonial-nav {
    display: flex;
    position: static;
  }

  .testimonials-content {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
  }

  .newsletter-segment {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 72px;
    height: 72px;
  }

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

  .cta-segment {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

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

  .testimonial-slide p {
    font-size: 16px;
  }
}
