:root {
  --yellow: #ffd400;
  --black: #040304;
  --dark-gray: #1c1c1c;
  --white: #f9f9f9;
  --blue: #0a6cff;
  --red: #dd1b21;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 4rem;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.page-header {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-bottom: 0;
  border-bottom: 4px solid var(--yellow);
  width: 100%;
  overflow: visible;
}

.header-top-section {
  transition: transform 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
  transform: translateY(0);
  opacity: 1;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

/* On mobile, allow menu to overflow */
@media (max-width: 968px) {
  .header-top-section {
    overflow: visible;
  }
  
  .header-top-section.scrolled-down {
    overflow: hidden;
  }
}

.header-top-section.scrolled-down {
  transform: translateY(-100%);
  opacity: 0;
  max-height: 0;
  padding: 0;
  margin: 0;
}

.header-contact-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.5rem 2vw;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
  transform: translateY(0);
  opacity: 1;
  max-height: 200px;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.header-contact-section .header-contact {
  display: block;
}

.header-contact-compact {
  display: none;
  text-align: center;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-contact-compact .header-availability {
  margin: 0 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--red) !important;
  font-weight: 700 !important;
}

.header-contact-compact .phone-link {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
}

.header-contact-section.scrolled-down {
  padding: 0.8rem 2vw;
  justify-content: center;
}

.header-contact-section.scrolled-down .header-contact {
  display: none;
}

.header-contact-section.scrolled-down .header-contact-compact {
  display: flex;
}

/* Desktop and Tablet: Always show both sections, ignore scroll behavior */
@media (min-width: 701px) {
  .header-top-section.scrolled-down {
    transform: translateY(0) !important;
    opacity: 1 !important;
    max-height: 500px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .header-top-section {
    transform: translateY(0) !important;
    opacity: 1 !important;
    max-height: 500px !important;
    overflow: visible !important;
  }

  /* Hide separate contact section on desktop */
  .header-contact-section {
    display: none !important;
  }

  /* Show header-contact in top-bar on desktop */
  .header-contact.desktop-only {
    display: block;
  }
}

/* Mobile: Hide desktop contact, show separate contact section */
@media (max-width: 700px) {
  .header-contact.desktop-only {
    display: none;
  }

  .header-contact-section {
    display: flex;
  }
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: nowrap;
  gap: 1rem;
  position: relative;
  z-index: 1002;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo img {
  width: clamp(70px, 8vw, 100px);
  height: clamp(70px, 8vw, 100px);
  object-fit: contain;
}

.logo-text span {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
}

.logo-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--yellow);
}

.logo a {
  display: flex;
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1003;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
  white-space: nowrap;
  min-height: 44px; /* Better touch target */
  display: flex;
  align-items: center;
}

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

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown > a i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

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

.nav-dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--black);
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--yellow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1004;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: rgba(255, 212, 0, 0.1);
  color: var(--yellow);
  padding-left: 2rem;
}

.header-contact {
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-availability {
  margin: 0 0 0.25rem 0 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--red) !important;
  font-weight: 700 !important;
}

.header-contact p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-link {
  font-size: clamp(2.8rem, 3vw, 3.6rem);
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 3rem 2vw 4rem;
  align-items: center;
  background: var(--black);
  color: var(--white);
  position: relative;
  min-height: 600px;
  height: 600px;
  overflow: visible;
  z-index: 1;
}

.hero-text {
  transition: opacity 0.6s ease-in-out;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 4vw, 3.5rem) !important;
  line-height: 1.15 !important;
  margin: 0.4rem 0 !important;
  font-weight: 700 !important;
}

.hero-text .eyebrow {
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
  color: var(--yellow) !important;
  font-weight: 400 !important;
}

.hero-text h1 span {
  display: block !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  margin-top: 0.4rem !important;
}

#heroTitleMain {
  font-size: clamp(2.8rem, 4vw, 3.5rem) !important;
  font-weight: 700 !important;
}

#heroTitleSub {
  font-size: 1rem !important;
  font-weight: 500 !important;
}

.hero-description {
  margin-bottom: 1.5rem !important;
  max-width: 34rem !important;
  color: #e6e6e6 !important;
  font-size: inherit !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-state-images {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: opacity 0.6s ease-in-out;
  justify-content: center;
  position: absolute;
  bottom: -30px !important;
  right: calc(2vw - 50px);
  width: 750px;
  height: 550px;
  z-index: 0;
}

.hero-state-images img {
  display: block;
  height: auto;
  max-height: 400px;
  max-width: 280px;
  width: auto;
  margin: 0;
  padding: 0;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px; /* Better touch target */
  cursor: pointer;
}

.btn.primary {
  background: var(--yellow);
  color: var(--black);
}

.btn.secondary {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.85rem;
  margin-top: 1rem;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: var(--white);
}

.hero-visual {
  display: flex;
  gap: 0;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  padding: 0;
  margin: 0;
  overflow: visible;
  align-self: flex-end;
  z-index: 0;
}

/* Services/Repairs page hero visual - ensure proper sizing */
.hero-visual:not(:has(.hero-truck)):not(:has(.hero-owner)):not(:has(.hero-state-images)) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Index.html specific hero visual positioning */
.hero-visual:has(.hero-truck),
.hero-visual:has(.hero-owner),
.hero-visual:has(.hero-state-images) {
  position: relative;
  overflow: visible;
  align-items: flex-end;
  align-self: flex-end;
  justify-content: flex-end;
}

.hero-visual img {
  border-radius: 0;
  object-fit: contain;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  margin: 0;
}

/* Only apply full-width responsive styles to hero images that are NOT the special index.html hero images */
.hero-visual img:not(.hero-truck):not(.hero-owner):not(.hero-state-images img) {
  width: 600px;
  height: 500px;
  object-fit: contain;
}

.hero-mechanic {
  width: 200px;
  height: 180px;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  bottom: -70px;
  left: 0;
  z-index: 1;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
  outline: none !important;
}

.hero-truck {
  width: 750px;
  height: 550px;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  bottom: -70px !important;
  right: calc(2vw - 50px);
  box-shadow: none !important;
  background: none !important;
  border: none !important;
  outline: none !important;
  transition: opacity 0.6s ease-in-out;
  object-fit: contain;
  z-index: 0;
}

.hero-truck[src*="truck-icon.png"] {
  right: calc(2vw + 50px);
  bottom: -70px !important;
}

.hero-owner {
  width: 550px;
  height: 500px;
  max-width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  background: none !important;
  border: none !important;
  outline: none !important;
  transition: opacity 0.6s ease-in-out;
  object-fit: contain;
  z-index: 0;
}

.section-title h2,
.intro h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
}

.section-title-header h2 {
  margin: 0;
}

.section-title {
  max-width: 100%;
}

.section-title-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
  min-height: auto;
}

.services-mechanic {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: auto;
  position: absolute;
  right: 0;
  top: 20%;
  transform: translateY(0);
}

.section-title p,
.intro p {
  color: #555;
  margin-top: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.intro p {
  max-width: 70ch;
}

section {
  padding: 2rem 2vw;
}

section:nth-of-type(even) {
  background: #f8f8f8;
}

.services {
  position: relative;
  padding: 2rem 2vw;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-image: url('assets/images/below_hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 30%, transparent 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 30%, transparent 60%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  position: relative;
  padding: 2rem;
  z-index: 1;
}

.service-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  padding: 1.8rem;
  background: #fff;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  scroll-margin-top: 200px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--yellow);
}


.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.service-card-image {
  padding: 0 !important;
  overflow: hidden;
  min-height: 240px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

/* Service Categories for Repairs Page */
.service-category {
  margin-bottom: 3rem;
}

.category-title {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  color: #000000;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 8px;
  padding: 1rem;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 212, 0, 0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: var(--black);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.service-card:hover .service-icon img {
  filter: brightness(0) invert(1);
}

.manufacturers {
  background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  padding: 3rem 2vw;
  color: var(--white);
}

.manufacturers .section-title h2 {
  color: var(--yellow);
}

.manufacturers .section-title p {
  color: #e6e6e6;
}

.manufacturers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
  align-items: stretch;
  justify-items: stretch;
}

.manufacturer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  width: 100%;
  height: 120px;
}

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

.coverage-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.coverage-map iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.coverage-list ul {
  padding-left: 1rem;
}

.coverage-list li {
  margin-bottom: 0.3rem;
  display: block;
}

/* Highway hover functionality */
.highway-hover-item {
  position: relative;
  display: inline-block;
}

.highway-hover-trigger {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.highway-hover-trigger:hover {
  color: var(--blue);
}

.highway-hover-content {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0;
  background: var(--white);
  border: 2px solid var(--yellow);
  padding: 1.5rem;
  padding-top: 1.75rem;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 100;
  max-width: 90vw;
  width: max-content;
  max-width: 600px;
  max-height: 400px;
  overflow-y: auto;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--black);
  pointer-events: auto;
}

.highway-hover-item:hover .highway-hover-content {
  display: block;
}

.highway-hover-item-spacer {
  margin-top: 1rem;
}

.call-highlight {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--yellow);
  border-radius: 0;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.call-highlight a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.2rem;
}

.benefits {
  background: #3a3a3a !important;
  background: linear-gradient(180deg, #3a3a3a 0%, #2d2d2d 100%) !important;
  color: var(--white);
  width: 100%;
  margin: 0;
  padding: 2rem 0;
  max-width: none;
  position: relative;
  overflow: visible;
}

.benefits .container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 2vw;
  position: relative;
  overflow: visible;
}

.benefits .section-title h2 {
  color: var(--yellow);
  margin: 0;
}

.benefits {
  position: relative;
}

.benefits {
  overflow: visible;
}

.benefits .section-title {
  position: static;
}

.benefits .section-title-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.benefits-tires {
  width: 300px;
  height: 300px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
  position: absolute;
  right: 70px;
  top: -170px;
  z-index: 1;
}

.benefits .section-title p {
  color: #e6e6e6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  counter-reset: benefit-counter;
}

.benefit-card {
  border-radius: 0;
  padding: 2.5rem 2rem 2rem;
  background: var(--dark-gray);
  border: none;
  border-left: 4px solid var(--yellow);
  color: var(--white);
  min-height: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%);
  box-shadow: 
    inset -2px 0 0 rgba(255, 212, 0, 0.2),
    0 6px 20px rgba(0, 0, 0, 0.5);
}

.benefit-card::before {
  content: '01';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 55px;
  height: 55px;
  background: var(--yellow);
  border-radius: 50%;
  z-index: 10;
  display: block;
  text-align: center;
  line-height: 55px;
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.15) 0%, transparent 50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 1;
}

.benefit-card:nth-child(1)::before { content: '01'; }
.benefit-card:nth-child(2)::before { content: '02'; }
.benefit-card:nth-child(3)::before { content: '03'; }
.benefit-card:nth-child(4)::before { content: '04'; }
.benefit-card:nth-child(5)::before { content: '05'; }
.benefit-card:nth-child(6)::before { content: '06'; }

.benefit-card h3 {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}

.benefit-card p {
  color: #c0c0c0;
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  overflow: visible;
}

.gallery-grid img {
  width: 100%;
  border-radius: 0;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
  position: relative;
}

.reviews {
  position: relative;
  background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  background-image: 
    url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,212,0,0.12)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
    linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  color: var(--white);
  padding: 4rem 0;
  overflow: hidden;
  width: 100%;
}

.reviews-background-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  z-index: 0;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 212, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 212, 0, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 212, 0, 0.05) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.reviews::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 212, 0, 0.5) 50%, transparent 100%);
  z-index: 0;
}

.reviews .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 2vw;
}

.reviews .section-title h2 {
  color: var(--black);
  text-align: center;
  margin-bottom: 0.5rem;
}

.reviews .section-title p {
  color: #d0d0d0;
  text-align: center;
  font-size: 1.1rem;
}

.reviews-layout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.google-widget {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 3px solid var(--yellow);
  border-radius: 0;
  text-align: center;
  position: sticky;
  top: 100px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.google-logo {
  font-size: 3rem;
  color: #4285f4;
  margin-bottom: 1rem;
}

.rating-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.google-widget .rating-score {
  font-size: 4rem;
  font-weight: 900;
  margin: 0;
  color: var(--black);
  line-height: 1;
}

.stars-container {
  display: flex;
  gap: 0.3rem;
  font-size: 1.5rem;
  color: var(--yellow);
}

.google-widget .review-count {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 1rem 0 0.5rem;
}

.google-widget .update-info {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.reviews-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  border-radius: 0;
  padding: 1.25rem;
  background: var(--dark-gray);
  border: 2px solid rgba(255, 212, 0, 0.3);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 212, 0, 0.2);
  border-color: var(--yellow);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  font-size: 0.95rem;
  color: var(--yellow);
}

.review-badge {
  background: var(--yellow);
  color: var(--black);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.review-card .quote {
  font-style: italic;
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0 0 1rem;
  position: relative;
  padding-left: 1.2rem;
}

.review-card .quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.3rem;
  font-size: 2.5rem;
  color: var(--yellow);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-footer {
  border-top: 1px solid rgba(255, 212, 0, 0.2);
  padding-top: 0.75rem;
  margin-top: auto;
}

.review-card .author {
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
}

.review-card .author-role {
  font-size: 0.75rem;
  color: #b0b0b0;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-date {
  font-size: 0.75rem;
  color: #888;
  margin: 0;
  font-style: italic;
}

/* About page specific contact section styling */
.about-page .contact {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  color: var(--white);
  padding: 4rem 2vw;
  position: relative;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.about-page .contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--yellow) 50%, transparent 100%);
  z-index: 1;
}

.about-page .contact .section-title h2 {
  color: var(--yellow);
}

.about-page .contact .section-title p {
  color: #e6e6e6;
}

.about-page .contact-details h3 {
  color: var(--white);
}

.about-page .contact-details p {
  color: #e6e6e6;
}

.about-page .contact-details a {
  color: var(--yellow);
}

.about-page .contact-details a:hover {
  color: var(--white);
}

.about-page .contact .section-title,
.about-page .contact .contact-layout {
  width: min(1200px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

.contact-layout {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.dynamic-text-container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  text-align: center;
  z-index: 5;
}

.dynamic-text {
  background: rgba(0, 0, 0, 0.85);
  color: var(--yellow);
  padding: 1.2rem 1.8rem;
  border-radius: 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--yellow);
  transition: opacity 0.3s ease-in-out;
  line-height: 1.4;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border-radius: 0;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  padding: 1rem 1.2rem;
  border-radius: 0;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: var(--black);
}

.contact-details p {
  margin: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-details a {
  color: var(--blue);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Buttons in contact section - black text */
.contact .btn.primary,
.contact .btn.secondary {
  color: var(--black);
}

.contact .btn.secondary {
  background: var(--white);
  border-color: var(--black);
}

.site-footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 2vw 2rem;
  width: 100%;
  margin: 0;
  max-width: none;
}

.site-footer.container {
  width: 100%;
  margin: 0;
  max-width: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.footer-company h3 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.4rem;
}

.footer-company p {
  margin: 0;
  color: #d7d7d7;
  line-height: 1.6;
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--yellow);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links a {
  display: inline-block;
  margin-right: 0.8rem;
  color: var(--yellow);
  font-size: 1.5rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.footer-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #d7d7d7;
}

.footer-bottom {
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 1.5rem 2vw;
  width: 100%;
  margin: 0;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.5rem;
}

.made-by-text {
  font-size: 0.9rem;
  color: #666;
  white-space: nowrap;
}

.footer-sts-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-copyright {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

.footer-copyright a {
  color: var(--blue);
  text-decoration: none;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

.payment-methods {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

.payment-methods-label {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  white-space: nowrap;
}

.payment-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.sticky-phone {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: var(--red);
  color: var(--white);
  border-radius: 2rem;
  padding: 0.8rem 1.6rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  z-index: 20;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-phone:hover,
.sticky-phone:active {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
}

.sticky-phone a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 7px;
  z-index: 1001;
  position: relative;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  align-items: center;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop - ensure hero images maintain bottom positioning */
@media (min-width: 969px) {
  .hero {
    overflow: visible !important;
    padding-bottom: 100px !important;
    align-items: flex-end !important;
  }

  .hero-visual {
    position: relative !important;
    overflow: visible !important;
    align-items: flex-end !important;
    align-self: flex-end !important;
    justify-content: flex-end !important;
    height: 100%;
    display: flex !important;
  }

  .hero-visual:has(.hero-truck),
  .hero-visual:has(.hero-state-images) {
    align-items: flex-end !important;
    justify-content: flex-end !important;
  }

  .hero-truck {
    position: absolute !important;
    bottom: -70px !important;
    top: auto !important;
    margin-top: auto !important;
    margin-bottom: 0 !important;
  }

  .hero-truck[src*="truck-icon.png"] {
    bottom: -70px !important;
    top: auto !important;
  }

  .hero-truck[src*="truck2.png"] {
    bottom: -70px !important;
    top: auto !important;
  }

  .hero-state-images {
    position: absolute !important;
    bottom: -30px !important;
    top: auto !important;
    align-items: flex-end !important;
  }

  .hero-owner {
    position: relative !important;
  }
}

/* Tablet and below */
@media (max-width: 968px) {
  /* Ensure menu appears above contact section */
  .header-contact-section {
    z-index: 1;
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
    min-width: 44px;
    min-height: 44px;
    padding: 7px;
  }

  .top-bar {
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1001;
    order: 3;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    visibility: hidden;
    opacity: 0;
  }

  .main-nav.nav-open {
    max-height: 1000px;
    padding: 1.5rem 2vw;
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown {
    width: 100%;
    position: static;
  }

  .nav-dropdown > a {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 0;
    margin-left: 1rem;
    border-top: none;
    border-left: 3px solid var(--yellow);
    box-shadow: none;
    min-width: auto;
    width: calc(100% - 1rem);
    background: rgba(0, 0, 0, 0.3);
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .header-contact {
    text-align: center;
    width: 100%;
    order: 4;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
    flex-shrink: 0;
  }

  .header-availability {
    font-size: 0.65rem !important;
    margin-bottom: 0.2rem !important;
  }

  .header-contact p {
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
  }

  .phone-link {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    word-break: break-all;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 2vw 3rem;
    min-height: auto;
    height: auto;
    padding-bottom: 4rem;
  }

  .hero-text {
    order: 2;
    text-align: center;
  }

  /* Only apply responsive layout to hero-visual that doesn't contain index.html specific elements */
  .hero-visual:not(:has(.hero-truck)):not(:has(.hero-owner)):not(:has(.hero-state-images)) {
    order: 1;
    margin-bottom: 2rem;
    width: 100%;
  }

  /* Fixed size for hero visual image on tablet (only for services/repairs pages) */
  .hero-visual img:not(.hero-truck):not(.hero-owner):not(.hero-state-images img) {
    width: 500px;
    height: 400px;
    object-fit: contain;
  }

  /* Index.html hero images - keep their specific responsive behavior */
  .hero-truck {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 400px;
    bottom: auto;
    right: auto;
    margin: 0 auto;
  }

  .hero-owner {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 400px;
    margin: 0 auto;
  }

  .hero-state-images {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    bottom: auto;
    right: auto;
    margin: 0 auto;
    gap: 0.5rem;
  }

  .hero-state-images img {
    max-width: 200px;
    max-height: 300px;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

  .hero-actions {
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

  .service-category {
    margin-bottom: 2.5rem;
  }

  .category-title {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
  }

  .service-card {
    min-height: 200px;
    padding: 1.5rem;
  }

  .service-card-image {
    min-height: 200px;
  }

  .service-card-image img {
    min-height: 200px;
  }

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

  .manufacturer-logo {
    height: 100px;
    padding: 1rem;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .coverage-map iframe {
    min-height: 350px;
  }

  .highway-hover-content {
    max-width: 95vw;
    font-size: 0.85rem;
    padding: 1rem;
    max-height: 300px;
  }

  .call-highlight {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .benefits-tires {
    width: 200px;
    height: 200px;
    right: 20px;
    top: -120px;
  }

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

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

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .google-widget {
    position: static;
    max-width: 100%;
    margin: 0 auto;
  }

  .reviews-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-image {
    order: -1;
  }

  .section-title-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-mechanic {
    position: static;
    margin-top: 1rem;
    width: 80px;
    height: 80px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .top-bar {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 2vw;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .logo img {
    width: 60px;
    height: 60px;
  }

  .logo-text span {
    font-size: 1rem;
  }

  .logo-text small {
    font-size: 0.7rem;
  }

  .mobile-menu-toggle {
    order: 2;
    margin-left: auto;
    width: 28px;
    height: 28px;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
  }

  .main-nav {
    width: 100%;
    order: 4;
  }

  .main-nav a {
    padding: 0.75rem 0;
  }

  .header-contact {
    width: 100%;
    text-align: center;
    order: 4;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
    flex-shrink: 0;
  }

  .header-contact-section {
    padding: 0.4rem 2vw;
  }

  .header-contact-section.scrolled-down {
    padding: 0.6rem 2vw;
  }

  .header-contact-compact {
    flex-direction: column;
    gap: 0.3rem;
  }

  .header-contact-compact .phone-link {
    font-size: 1.5rem;
  }

  .header-availability {
    font-size: 0.6rem !important;
    margin-bottom: 0.15rem !important;
  }

  .header-contact p {
    font-size: 0.65rem;
    margin-bottom: 0.25rem;
  }

  .phone-link {
    font-size: 1.6rem;
    word-break: break-all;
  }

  .hero {
    padding: 1.5rem 2vw 2.5rem;
    min-height: auto;
    height: auto;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
    line-height: 1.2;
  }

  .hero-text .eyebrow {
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
  }

  #heroTitleSub {
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
  }

  .hero-description {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Index.html hero images - mobile specific styles with important to override general styles */
  .hero-truck {
    max-width: 100% !important;
    max-height: 300px !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
  }

  .hero-owner {
    max-width: 100% !important;
    max-height: 300px !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
  }

  .hero-state-images {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
  }

  .hero-state-images img {
    max-width: 140px !important;
    max-height: 250px !important;
    width: auto !important;
    height: auto !important;
  }

  /* Ensure index.html hero-visual container maintains proper layout */
  .hero-visual:has(.hero-truck),
  .hero-visual:has(.hero-owner),
  .hero-visual:has(.hero-state-images) {
    order: 1;
    margin-bottom: 2rem;
    width: 100%;
    position: relative;
    overflow: visible;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    justify-content: center;
    font-size: 0.75rem;
  }

  .trust-badges span {
    padding: 0.4rem 0.8rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }

  .service-category {
    margin-bottom: 2rem;
  }

  .category-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  .services {
    padding: 1.5rem 2vw;
  }

  .services .section-title {
    margin-bottom: 1.5rem;
  }

  .services .section-title h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
  }

  .services .section-title p {
    font-size: 0.95rem;
  }

  .service-card {
    min-height: auto;
    padding: 1.5rem;
  }

  .service-card-image {
    min-height: 180px;
  }

  .service-card-image img {
    min-height: 180px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
  }

  .section-title p {
    font-size: 0.95rem;
  }

  .manufacturers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .manufacturer-logo {
    height: 80px;
    padding: 0.75rem;
  }

  .coverage-map iframe {
    min-height: 300px;
  }

  .coverage-list ul {
    padding-left: 1.2rem;
  }

  .coverage-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .benefits {
    padding: 2rem 0;
  }

  .benefits-tires {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.5rem 1.25rem;
    min-height: auto;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery-grid img {
    aspect-ratio: 4 / 3;
  }

  .reviews {
    padding: 2.5rem 2vw;
  }

  .reviews-background-accent {
    width: 250px;
    height: 250px;
  }

  .reviews .section-title h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .google-widget {
    position: static;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
  }

  .google-widget .rating-score {
    font-size: 3rem;
  }

  .google-logo {
    font-size: 2.5rem;
  }

  .reviews-cards-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .review-card .quote {
    font-size: 0.9rem;
  }

  .contact {
    padding: 2rem 2vw;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-image {
    order: -1;
  }

  .contact-image img {
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
  }

  .dynamic-text-container {
    bottom: 1rem;
    width: 95%;
    max-width: 100%;
  }

  .dynamic-text {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .contact-form button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-company {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 0.5rem;
  }

  .site-footer > div {
    text-align: center;
  }

  .site-footer ul {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .footer-logo-section {
    order: 1;
    justify-content: center;
  }

  .payment-methods {
    flex-direction: column;
    gap: 0.75rem;
    order: 2;
    width: 100%;
  }

  .payment-methods-label {
    text-align: center;
  }

  .payment-cards {
    gap: 1rem;
    justify-content: center;
  }

  .footer-copyright {
    order: 3;
    text-align: center;
  }

  .payment-logo {
    height: 25px;
  }

  .sticky-phone {
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 2rem);
    max-width: 400px;
    text-align: center;
    padding: 0.75rem 1.2rem;
    bottom: 0.75rem;
  }

  .sticky-phone:hover,
  .sticky-phone:active {
    transform: translateX(50%) translateY(-2px);
  }

  .sticky-phone a {
    font-size: 0.95rem;
  }

  section {
    padding: 1.5rem 2vw;
  }

  main {
    padding-bottom: 5rem; /* Extra space for sticky phone on mobile */
  }

  .container {
    width: min(1200px, 95vw);
  }

  .section-title-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-mechanic {
    position: static;
    margin-top: 1rem;
    width: 70px;
    height: 70px;
  }

  .service-category {
    margin-bottom: 2rem;
  }

  .category-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.75rem;
  }
}

/* Repairs page specific responsive improvements */
@media (max-width: 968px) {
  /* Enhanced spacing for service categories on tablet */
  .service-category {
    margin-bottom: 2.5rem;
  }

  /* Ensure service grid has proper padding on tablet */
  .services .service-grid {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 700px) {
  /* Refined service card spacing for mobile */
  .services .service-grid {
    gap: 0.875rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Fixed size for hero visual image on mobile (only for services/repairs pages) */
  .hero-visual img:not(.hero-truck):not(.hero-owner):not(.hero-state-images img) {
    width: 100%;
    max-width: 400px;
    height: 350px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  /* Enhanced mobile spacing for repairs page */
  .service-category {
    margin-bottom: 1.75rem;
  }

  .category-title {
    font-size: 1.3rem;
    margin-bottom: 0.875rem;
  }

  .services .service-grid {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .service-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
    padding: 0.75rem;
  }
}

/* Manufacturer/Trucks Page Styles */
.manufacturer-hero {
  background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  padding: 4rem 2vw;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

.manufacturer-hero .section-title h1 {
  color: var(--yellow);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.manufacturer-hero .section-title p {
  color: #e6e6e6;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.manufacturer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.manufacturer-nav a {
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.manufacturer-nav a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 212, 0, 0.3);
}

.manufacturer-section {
  padding: 5rem 2vw;
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

.manufacturer-section:nth-of-type(even) {
  background: #f8f8f8;
}

.manufacturer-header {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 3px solid var(--yellow);
}

.manufacturer-brand-logo {
  width: 220px;
  height: 130px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--white);
  padding: 1.25rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.manufacturer-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--black);
  margin: 0 0 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.manufacturer-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: #555;
  margin: 0;
  line-height: 1.7;
  max-width: 800px;
}

.expertise-section {
  margin-bottom: 4rem;
}

.expertise-section h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--black);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--yellow);
  font-weight: 700;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.expertise-card {
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--yellow);
}

.expertise-card i {
  font-size: 3rem;
  color: var(--yellow);
  margin-bottom: 0.5rem;
  display: block;
}

.expertise-card h4 {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  color: var(--black);
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.expertise-card p {
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-size: clamp(0.95rem, 1vw, 1rem);
}

.scenarios-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.scenarios-section h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--black);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--yellow);
  font-weight: 700;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.scenario-card {
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.scenario-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-left-color: var(--red);
}

.scenario-card h4 {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  color: var(--black);
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.scenario-card p {
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-size: clamp(0.95rem, 1vw, 1rem);
}

.scenario-card p strong {
  color: var(--black);
  font-weight: 700;
}

.manufacturer-cta {
  background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  padding: 4rem 2vw;
  text-align: center;
  color: var(--white);
  margin-top: 3rem;
}

.cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--yellow);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: #e6e6e6;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Responsive styles for manufacturer sections */
@media (max-width: 968px) {
  .manufacturer-hero {
    padding: 3rem 2vw;
    margin-bottom: 2rem;
  }

  .manufacturer-hero .section-title h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  .manufacturer-hero .section-title p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  }

  .manufacturer-nav {
    margin-top: 2rem;
    padding-top: 2rem;
    gap: 0.75rem;
  }

  .manufacturer-nav a {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .manufacturer-section {
    padding: 3rem 2vw;
    margin-bottom: 2rem;
  }

  .manufacturer-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }

  .manufacturer-brand-logo {
    width: 180px;
    height: 100px;
    margin: 0 auto;
  }

  .manufacturer-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }

  .manufacturer-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  }

  .expertise-grid,
  .scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .expertise-card,
  .scenario-card {
    padding: 2rem;
  }

  .expertise-section h3,
  .scenarios-section h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
  }

  .manufacturer-cta {
    padding: 3rem 2vw;
  }

  .cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
  }

  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .manufacturer-hero {
    padding: 2.5rem 2vw;
  }

  .manufacturer-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .manufacturer-nav a {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
  }

  .manufacturer-section {
    padding: 2.5rem 2vw;
    margin-bottom: 2rem;
  }

  .expertise-grid,
  .scenarios-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .expertise-card,
  .scenario-card {
    padding: 1.75rem;
  }

  .expertise-section,
  .scenarios-section {
    margin-bottom: 2.5rem;
  }
}

/* Additional responsive styles for trucks.html at 700px breakpoint */
@media (max-width: 700px) {
  .manufacturer-hero {
    padding: 2rem 2vw;
  }

  .manufacturer-hero .section-title h1 {
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .manufacturer-hero .section-title p {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
  }

  .manufacturer-nav {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    gap: 0.6rem;
  }

  .manufacturer-nav a {
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
  }

  .manufacturer-section {
    padding: 2rem 2vw;
    margin-bottom: 1.5rem;
  }

  .manufacturer-header {
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .manufacturer-brand-logo {
    width: 160px;
    height: 90px;
  }

  .manufacturer-header h2 {
    font-size: clamp(1.4rem, 4vw, 1.9rem);
  }

  .manufacturer-subtitle {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
  }

  .expertise-section {
    margin-bottom: 2rem;
  }

  .expertise-section h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }

  .expertise-grid {
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .expertise-card {
    padding: 1.5rem;
  }

  .expertise-card i {
    font-size: 2.5rem;
  }

  .expertise-card h4 {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  }

  .expertise-card p {
    font-size: clamp(0.9rem, 1vw, 0.95rem);
  }

  .scenarios-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
  }

  .scenarios-section h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }

  .scenarios-grid {
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .scenario-card {
    padding: 1.5rem;
  }

  .scenario-card h4 {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  }

  .scenario-card p {
    font-size: clamp(0.9rem, 1vw, 0.95rem);
  }

  .manufacturer-cta {
    padding: 2.5rem 2vw;
    margin-top: 2rem;
  }

  .cta-content h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Extra small screens for trucks.html */
@media (max-width: 480px) {
  .manufacturer-hero {
    padding: 1.5rem 2vw;
  }

  .manufacturer-hero .section-title h1 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .manufacturer-hero .section-title p {
    font-size: 0.9rem;
  }

  .manufacturer-nav {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    gap: 0.5rem;
  }

  .manufacturer-nav a {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .manufacturer-section {
    padding: 1.5rem 2vw;
  }

  .manufacturer-header {
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }

  .manufacturer-brand-logo {
    width: 140px;
    height: 80px;
    padding: 1rem;
  }

  .manufacturer-header h2 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .manufacturer-subtitle {
    font-size: 0.9rem;
  }

  .expertise-section h3,
  .scenarios-section h3 {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-bottom: 1.25rem;
  }

  .expertise-card,
  .scenario-card {
    padding: 1.25rem;
  }

  .expertise-card i {
    font-size: 2rem;
  }

  .expertise-card h4,
  .scenario-card h4 {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
  }

  .expertise-card p,
  .scenario-card p {
    font-size: 0.9rem;
  }

  .manufacturer-cta {
    padding: 2rem 2vw;
  }

  .cta-content h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .cta-content p {
    font-size: 0.9rem;
  }
}

/* Go to Top Button - Only on trucks.html */
.go-to-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
  font-family: inherit;
}

.go-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-to-top-btn:hover {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.go-to-top-btn i {
  font-size: 1.2rem;
}

.go-to-top-btn span {
  font-size: 0.7rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .go-to-top-btn {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .go-to-top-btn i {
    font-size: 1rem;
  }

  .go-to-top-btn span {
    font-size: 0.65rem;
  }
}

/* Tablet specific (between 700px and 968px) */
@media (min-width: 701px) and (max-width: 968px) {
  .hero {
    padding: 2.5rem 2vw 3.5rem;
  }

  .hero-truck {
    max-width: 600px;
    max-height: 450px;
  }

  .hero-owner {
    max-width: 450px;
    max-height: 400px;
  }

  .hero-state-images {
    max-width: 600px;
    gap: 1rem;
  }

  .hero-state-images img {
    max-width: 250px;
    max-height: 350px;
  }

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

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

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

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

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

/* Small mobile */
@media (max-width: 480px) {
  .top-bar {
    padding: 0.6rem 2vw;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  .logo-text span {
    font-size: 0.9rem;
  }

  .logo-text small {
    font-size: 0.65rem;
  }

  .mobile-menu-toggle {
    width: 26px;
    height: 26px;
  }

  .header-availability {
    font-size: 0.55rem !important;
    margin-bottom: 0.1rem !important;
  }

  .header-contact p {
    font-size: 0.6rem;
  }

  .phone-link {
    font-size: 1.4rem;
  }

  .header-contact-section {
    padding: 0.3rem 2vw;
  }

  .header-contact-section.scrolled-down {
    padding: 0.5rem 2vw;
  }

  .header-contact-compact .phone-link {
    font-size: 1.3rem;
  }

  .header-contact-compact .header-availability {
    font-size: 0.55rem !important;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text .eyebrow {
    font-size: 0.7rem !important;
  }

  #heroTitleSub {
    font-size: 0.85rem !important;
  }

  .hero-description {
    font-size: 0.9rem !important;
  }

  .section-title h2,
  .intro h2 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.95rem;
  }

  .phone-link {
    font-size: 1.5rem;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  .logo-text span {
    font-size: 0.9rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* About page specific responsive styles */
@media (max-width: 968px) {
  /* About page hero responsive */
  .about-page .hero {
    grid-template-columns: 1fr;
    padding: 2rem 2vw 3rem;
    min-height: auto;
    height: auto;
    padding-bottom: 4rem;
  }

  .about-page .hero-text {
    order: 2;
    text-align: center;
  }

  .about-page .hero-visual {
    order: 1;
    margin-bottom: 2rem;
    width: 100%;
  }

  .about-page .hero-visual .hero-owner {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    width: auto;
    margin: 0 auto;
  }

  .about-page .hero-text h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

  .about-page .hero-actions {
    justify-content: center;
  }

  /* About page benefits grid responsive */
  .about-page .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* About page contact layout responsive */
  .about-page .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-page .contact-image {
    order: -1;
  }

  .about-page .contact-image img {
    max-width: 100%;
    max-height: 400px;
  }

  /* About page intro sections responsive */
  .about-page .intro {
    padding: 2rem 2vw;
  }

  .about-page .intro h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    text-align: center;
  }

  .about-page .intro p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 700px) {
  /* About page hero mobile */
  .about-page .hero {
    padding: 1.5rem 2vw 2.5rem;
  }

  .about-page .hero-text h1 {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
    line-height: 1.2;
  }

  .about-page .hero-text .eyebrow {
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
  }

  .about-page .hero-text h1 span {
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
  }

  .about-page .hero-description {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }

  .about-page .hero-visual .hero-owner {
    max-width: 100% !important;
    max-height: 300px !important;
  }

  .about-page .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .about-page .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* About page benefits grid mobile */
  .about-page .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-page .benefit-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }

  .about-page .benefit-card h3 {
    font-size: 1.1rem;
  }

  .about-page .benefit-card p {
    font-size: 0.95rem;
  }

  /* About page contact mobile */
  .about-page .contact {
    padding: 2.5rem 2vw !important;
  }

  .about-page .contact-layout {
    gap: 1.5rem;
  }

  .about-page .contact-image img {
    max-height: 300px;
  }

  .about-page .contact-details {
    text-align: center;
  }

  .about-page .contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .about-page .contact-details p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .about-page .contact .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 1.5rem;
  }

  .about-page .contact .hero-actions .btn {
    width: 100%;
  }

  /* About page intro mobile */
  .about-page .intro {
    padding: 1.5rem 2vw;
  }

  .about-page .intro h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin-bottom: 1rem;
  }

  .about-page .intro p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .about-page .section-title h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .about-page .section-title p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* About page extra small screens */
  .about-page .hero {
    padding: 1rem 2vw 2rem;
  }

  .about-page .hero-text h1 {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  .about-page .benefit-card {
    padding: 1.25rem 1rem;
  }

  .about-page .benefit-card h3 {
    font-size: 1rem;
  }

  .about-page .benefit-card p {
    font-size: 0.9rem;
  }

  .about-page .contact {
    padding: 2rem 2vw !important;
  }

  .about-page .contact-details p {
    font-size: 0.9rem;
  }

  .about-page .intro {
    padding: 1.25rem 2vw;
  }

  .about-page .intro p {
    font-size: 0.9rem;
  }
}

/* Contact page specific responsive styles */
@media (max-width: 968px) {
  /* Contact page hero responsive */
  .contact-page .hero {
    grid-template-columns: 1fr;
    padding: 2rem 2vw 3rem;
    min-height: auto;
    height: auto;
    padding-bottom: 4rem;
  }

  .contact-page .hero-text {
    order: 2;
    text-align: center;
  }

  .contact-page .hero-visual {
    order: 1;
    margin-bottom: 2rem;
    width: 100%;
  }

  .contact-page .hero-visual img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    width: auto;
    margin: 0 auto;
  }

  .contact-page .hero-text h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

  .contact-page .hero-actions {
    justify-content: center;
  }

  /* Contact page contact form layout responsive */
  .contact-page .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-page .contact-image {
    order: -1;
  }

  .contact-page .contact-image img {
    max-width: 100%;
    max-height: 400px;
  }

  .contact-page .dynamic-text-container {
    width: 95%;
    max-width: 100%;
  }

  .contact-page .dynamic-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: 1rem 1.5rem;
  }

  /* Contact page benefits grid responsive */
  .contact-page .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Contact page section titles responsive */
  .contact-page .section-title h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    text-align: center;
  }

  .contact-page .section-title p {
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 700px) {
  /* Contact page hero mobile */
  .contact-page .hero {
    padding: 1.5rem 2vw 2.5rem;
  }

  .contact-page .hero-text h1 {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
    line-height: 1.2;
  }

  .contact-page .hero-text .eyebrow {
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
  }

  .contact-page .hero-text h1 span {
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
  }

  .contact-page .hero-description {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }

  .contact-page .hero-visual img {
    max-width: 100% !important;
    max-height: 300px !important;
  }

  .contact-page .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .contact-page .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Contact page contact form mobile */
  .contact-page .contact {
    padding: 2.5rem 2vw !important;
  }

  .contact-page .contact-layout {
    gap: 1.5rem;
  }

  .contact-page .contact-image img {
    max-height: 300px;
  }

  .contact-page .contact-image {
    margin-bottom: 1rem;
  }

  .contact-page .dynamic-text-container {
    bottom: 1rem;
    width: 90%;
  }

  .contact-page .dynamic-text {
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
  }

  .contact-page .contact-form {
    width: 100%;
  }

  .contact-page .contact-form label {
    font-size: 0.95rem;
  }

  .contact-page .contact-form input,
  .contact-page .contact-form select,
  .contact-page .contact-form textarea {
    font-size: 0.95rem;
    padding: 0.8rem 0.9rem;
  }

  .contact-page .contact-form button {
    width: 100%;
    align-self: stretch;
    margin-top: 0.75rem;
  }

  /* Contact page benefits grid mobile */
  .contact-page .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-page .benefit-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }

  .contact-page .benefit-card h3 {
    font-size: 1.1rem;
  }

  .contact-page .benefit-card h3 i {
    font-size: 1rem;
    margin-right: 0.5rem;
  }

  .contact-page .benefit-card p {
    font-size: 0.95rem;
  }

  .contact-page .benefit-card a {
    font-size: 0.95rem;
    word-break: break-word;
  }

  /* Contact page section titles mobile */
  .contact-page .section-title h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin-bottom: 0.75rem;
  }

  .contact-page .section-title p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* Contact page extra small screens */
  .contact-page .hero {
    padding: 1rem 2vw 2rem;
  }

  .contact-page .hero-text h1 {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  .contact-page .contact {
    padding: 2rem 2vw !important;
  }

  .contact-page .contact-image img {
    max-height: 250px;
  }

  .contact-page .dynamic-text {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }

  .contact-page .contact-form input,
  .contact-page .contact-form select,
  .contact-page .contact-form textarea {
    font-size: 0.9rem;
    padding: 0.75rem 0.8rem;
  }

  .contact-page .benefit-card {
    padding: 1.25rem 1rem;
  }

  .contact-page .benefit-card h3 {
    font-size: 1rem;
  }

  .contact-page .benefit-card p {
    font-size: 0.9rem;
  }

  .contact-page .section-title h2 {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
  }

  .contact-page .section-title p {
    font-size: 0.85rem;
  }
}

