/* ==========================================================================
   Uptown Car Wash - EXACT REPLICA
   Changed: Red (#e9361e) -> Blue (#1e3a5f) for header/sections
   Kept: Orange buttons, original layout
   ========================================================================== */

:root {
  /* Changed from red to blue */
  --color-primary: #1e3a5f;
  --color-primary-dark: #152a45;

  /* Orange for buttons - KEPT */
  --color-accent: #ea580c;
  --color-accent-dark: #c2410c;

  /* Text colors */
  --color-white: #ffffff;
  --color-black: #111827;
  --color-gray: #6b7280;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-max: 1200px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--color-black);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
}

.btn-directions {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-directions:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* ============================================
   HEADER - Changed to blue
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-primary);
  padding: 8px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo img.logo-large {
  height: 55px;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-left: auto;
}

.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-menu-btn.active .hamburger { background: transparent; }
.mobile-menu-btn.active .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-menu-btn.active .hamburger::after { top: 0; transform: rotate(-45deg); }

.nav {
  display: none;
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary-dark);
  padding: 20px;
  overflow-y: auto;
  z-index: 999;
}

.nav.nav-open { display: block; }

.dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-item > a {
  display: block;
  padding: 15px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dropdown-menu {
  display: none;
  padding-left: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
  margin-top: 5px;
}

.dropdown.active .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

.header-cta { display: none; }

/* ============================================
   HERO - Rotating slideshow with crossfade
   ============================================ */
.hero-slideshow {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

/* Slides container */
.hero-slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

/* Individual slides */
.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

/* Dark overlay for text readability */
.hero-slideshow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Hero content overlay */
.hero-slideshow .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 500px;
  padding: 60px 20px;
  color: #fff;
}

.hero-slideshow .hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-slideshow .hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-slideshow .hero-content p.hero-tagline {
  margin-top: 20px;
  margin-bottom: 0;
}

.hero-slideshow .hero-content p.hero-tagline + p.hero-tagline {
  margin-top: 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-split {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}

/* Changed from red to blue */
.hero-content h1 .red-text {
  color: var(--color-white);
  display: block;
}

.hero-content h1 .white-text {
  color: var(--color-white);
}

.business-hours {
  color: var(--color-white);
}

.business-hours h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.weather-note {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.season {
  margin-bottom: 15px;
}

.season-title {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 5px;
}

.season p {
  font-size: 14px;
  margin: 3px 0;
}

.holidays {
  margin: 20px 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.holidays-title {
  font-weight: 600;
  margin-bottom: 5px;
}

/* ============================================
   AWARDS
   ============================================ */
.awards-area {
  background: #f8f9fa;
  padding: 50px 0;
}

.awards-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-items: center;
}

.single-award img {
  max-width: 120px;
  height: auto;
  transition: 0.3s;
}

.single-award img:hover {
  transform: scale(1.05);
}

/* Coming Soon Button */
.coming-soon-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  margin-top: 15px;
}

.signup-note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 10px;
  font-style: italic;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-area {
  padding: 60px 0;
}

.testimonial-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.slick-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.slick-arrow img {
  width: 20px;
  height: 20px;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  flex: 1;
}

.single-testimonial {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.quote-icon {
  width: 40px;
  margin: 0 auto 15px;
  /* Changed from red to blue */
  filter: hue-rotate(200deg);
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.dot.active {
  /* Changed from red to blue */
  background: var(--color-primary);
}

/* ============================================
   WHO WE ARE - Changed to blue
   ============================================ */
.who-we-are-area {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 0.7;
  margin-bottom: 10px;
}

.who-we-are-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.who-we-are-content p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
}

.who-we-are-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.who-we-are-photos img {
  border-radius: 8px;
  object-fit: cover;
  height: 150px;
  width: 100%;
}

.who-we-are-photos img:first-child {
  grid-column: 1 / -1;
  height: 200px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-area {
  padding: 60px 0;
}

.services-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3,
.service-card p {
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 20px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  margin: 0;
  z-index: 2;
}

.service-card h3 {
  bottom: 45px;
  font-size: 20px;
  font-weight: 700;
}

.service-card p {
  bottom: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  z-index: 1;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.service-overlay span {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
}

/* ============================================
   VALUE PROP
   ============================================ */
.value-area {
  padding: 60px 0;
  text-align: center;
  background: #f8f9fa;
}

.value-area h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.value-area > .container > p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.value-area h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-area {
  padding: 60px 0;
  background: #e5e7eb;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact-info h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-item img {
  width: 20px;
  height: 20px;
  /* Changed from red to accent orange */
  filter: hue-rotate(30deg) saturate(1.5);
}

.contact-item a,
.contact-item address {
  font-size: 15px;
  color: #374151;
}

.contact-hours {
  margin: 25px 0;
  padding: 20px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.contact-hours p {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

.holidays-label {
  font-weight: 700;
  margin-top: 15px !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.contact-map-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.contact-map-section h2 {
  text-align: center;
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 30px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111;
  color: #888;
  padding: 30px 0;
  text-align: center;
}

.footer p {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-links a {
  font-size: 13px;
  color: #888;
}

.footer-links a:hover {
  color: #fff;
}

/* ============================================
   SCROLL TO TOP - Orange kept
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.scroll-top img {
  width: 24px;
  filter: brightness(0) invert(1);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */
@media (min-width: 768px) {
  .hero-slideshow .hero-content h1 {
    font-size: 42px;
  }

  .awards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonial-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-testimonial:nth-child(3) {
    display: none;
  }

  .who-we-are-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-large {
    grid-row: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE - Desktop
   ============================================ */
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav {
    display: flex;
    position: static;
    background: transparent;
    padding: 0;
  }

  .nav-list {
    flex-direction: row;
    gap: 10px;
  }

  .nav-item > a {
    padding: 10px 15px;
    font-size: 13px;
  }

  .dropdown {
    position: relative;
  }

  .dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
  }

  .dropdown-menu a {
    color: #333;
    padding: 10px 20px;
    display: block;
  }

  .dropdown-menu a:hover {
    background: #f5f5f5;
    color: var(--color-accent);
  }

  .header-cta {
    display: inline-block;
  }

  .hero-slideshow .hero-content h1 {
    font-size: 48px;
  }

  .awards-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .testimonial-carousel {
    grid-template-columns: repeat(3, 1fr);
  }

  .single-testimonial:nth-child(3) {
    display: block;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-content h1 {
    font-size: 100px;
  }
}

/* ============================================
   INNER PAGES STYLES
   ============================================ */

/* Page Hero */
.page-hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 40px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* About Page */
.about-content {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  gap: 40px;
}

.about-text h2 {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 22px;
  color: var(--color-primary);
  margin: 30px 0 15px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-services-list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.about-services-list li {
  margin-bottom: 8px;
}

.about-images {
  display: grid;
  gap: 20px;
}

.about-images img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* CTA Area */
/* Signup Section (FlexWash iframe) */
.signup-section {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
}

.signup-section h2 {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.signup-section p {
  color: var(--color-gray);
  margin-bottom: 30px;
}

.signup-iframe-wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}

.member-portal-section {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.member-portal-section h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.member-portal-section p {
  color: var(--color-gray);
  margin-bottom: 30px;
}

.cta-area {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
}

.cta-area h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-area p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Secondary button inside pricing cards - needs visible colors */
.pricing-card .btn-secondary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.pricing-card .btn-secondary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* Services Pricing */
.services-pricing {
  padding: 60px 0;
}

.services-pricing.alt-bg {
  background: #f8fafc;
}

.services-pricing h2 {
  font-size: 32px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 40px;
}

.section-intro {
  text-align: center;
  margin-top: -30px;
  margin-bottom: 40px;
  color: var(--color-gray);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  gap: 25px;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.pricing-card .price span {
  font-size: 18px;
  font-weight: 400;
}

.pricing-card .first-month {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-card .duration {
  color: var(--color-gray);
  margin-bottom: 20px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 25px;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  width: 100%;
}

/* Pricing Table */
.pricing-table-wrapper {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pricing-table th,
.pricing-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

.pricing-table td strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.pricing-table .service-desc {
  display: block;
  font-size: 13px;
  color: var(--color-gray);
}

.pricing-note {
  text-align: center;
  margin-top: 20px;
  color: var(--color-gray);
}

/* A La Carte Grid */
.alacarte-grid {
  display: grid;
  gap: 15px;
}

.alacarte-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.alacarte-name {
  font-weight: 500;
}

.alacarte-price {
  font-weight: 700;
  color: var(--color-primary);
}

/* Benefits Section */
.benefits-section {
  padding: 60px 0;
  background: #f8fafc;
}

.benefits-grid {
  display: grid;
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.benefit-icon {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 15px;
}

.benefit-item h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

/* How It Works */
.how-it-works {
  padding: 60px 0;
  background: #f8fafc;
}

.how-it-works h2 {
  text-align: center;
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  gap: 30px;
}

.step {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

/* Contact Page */
.contact-page-section {
  padding: 60px 0;
}

.contact-page-section .contact-grid {
  display: grid;
  gap: 40px;
}

.contact-page-section .contact-info h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.contact-page-section .contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-page-section .contact-item img {
  width: 24px;
  height: 24px;
}

.contact-hours {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.contact-hours h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
}

.hours-block {
  margin-bottom: 15px;
}

.contact-form-wrapper h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.contact-page-section .contact-form {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.map-section iframe {
  display: block;
}

/* Gift Card Section */
.gift-card-section {
  padding: 60px 0;
}

.gift-card-grid {
  display: grid;
  gap: 40px;
}

.gift-card-display {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.gift-card {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  max-width: 350px;
}

.gift-card img {
  max-width: 200px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
}

.gift-card-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
}

.gift-card-content h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.gift-card-uses {
  list-style: disc;
  padding-left: 25px;
  margin: 20px 0;
}

.gift-card-uses li {
  margin-bottom: 8px;
}

.purchase-options {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.purchase-option {
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
}

.purchase-option h4 {
  color: var(--color-primary);
  margin-bottom: 5px;
}

.gift-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.gift-amounts .amount {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.gift-note {
  font-style: italic;
  color: var(--color-gray);
  margin: 20px 0;
}

/* Free Wash Page */
.free-wash-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}

.free-wash-content h1 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 10px;
}

.free-wash-content .subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.9;
}

.free-wash-details {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.free-wash-details h2 {
  margin-bottom: 20px;
}

.redeem-steps {
  padding-left: 25px;
  margin-bottom: 30px;
}

.redeem-steps li {
  margin-bottom: 10px;
}

.offer-details ul {
  list-style: disc;
  padding-left: 25px;
}

.free-wash-form {
  background: #fff;
  color: var(--color-black);
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.free-wash-form h3 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  gap: 15px;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group.checkbox input {
  width: auto;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: normal;
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--color-gray);
  text-align: center;
  margin-top: 15px;
}

.location-section {
  padding: 60px 0;
  text-align: center;
}

.location-section h2 {
  color: var(--color-primary);
  margin-bottom: 30px;
}

.location-info {
  display: inline-block;
  text-align: left;
}

.location-info p {
  margin-bottom: 15px;
}

/* Service Detail */
.service-detail-section {
  padding: 60px 0;
}

.service-detail-content h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.service-detail-content h3 {
  font-size: 22px;
  color: var(--color-primary);
  margin: 30px 0 15px;
}

.benefits-list,
.process-list {
  padding-left: 25px;
  margin-bottom: 20px;
}

.benefits-list li,
.process-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.simple-pricing {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  margin: 20px 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
}

.price-item:last-child {
  border-bottom: none;
}

.service-price {
  font-weight: 700;
  color: var(--color-primary);
}

/* Benefits Grid (Coatings) */
.benefits-grid {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.benefit-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
}

.benefit-card h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

/* Legal Content */
.legal-content {
  padding: 60px 0;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
}

.legal-text h2 {
  font-size: 24px;
  color: var(--color-primary);
  margin: 40px 0 15px;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin: 25px 0 10px;
}

.legal-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-text ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.legal-text ul li {
  margin-bottom: 8px;
}

/* Membership Page */
.membership-section {
  padding: 60px 0;
}

.membership-grid {
  display: grid;
  gap: 25px;
  margin-bottom: 50px;
}

.membership-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.membership-card h2 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 22px;
}

.membership-card p {
  margin-bottom: 20px;
  color: var(--color-gray);
}

.membership-help {
  text-align: center;
  padding: 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 12px;
}

.membership-help h2 {
  margin-bottom: 15px;
}

.help-options {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.help-option h3 {
  margin-bottom: 5px;
}

.help-option a {
  color: var(--color-accent);
}

.business-hours-mini {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* ============================================
   RESPONSIVE - Inner Pages
   ============================================ */
@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 56px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alacarte-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page-section .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gift-card-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-grid.combo-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .pricing-grid.membership-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}

.booking-section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
}

.booking-intro {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.booking-info {
  max-width: 600px;
  margin: 0 auto 30px;
}

.booking-policy {
  background: rgba(255,255,255,0.1);
  padding: 25px 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.booking-policy h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.booking-policy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-policy li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.booking-policy li:last-child {
  border-bottom: none;
}

.booking-widget {
  max-width: 800px;
  margin: 0 auto 30px;
}

.booking-placeholder {
  background: #fff;
  color: var(--color-black);
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.booking-placeholder p:first-child {
  font-size: 20px;
  margin-bottom: 10px;
}

.booking-placeholder p:last-of-type {
  color: var(--color-gray);
  margin-bottom: 0;
}

.booking-fallback {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 600px;
  margin: 0 auto;
}

.booking-fallback p {
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Square widget container - responsive */
.booking-widget iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 12px;
  background: #fff;
}

@media (min-width: 768px) {
  .booking-section h2 {
    font-size: 36px;
  }

  .booking-placeholder {
    padding: 80px 60px;
  }
}

/* ============================================
   GIFT CARD PURCHASE SECTION (Loopz)
   ============================================ */
.gift-card-purchase {
  padding: 60px 0;
  background: #f8fafc;
}

.gift-card-purchase h2 {
  font-size: 32px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 10px;
}

.gift-card-purchase .section-intro {
  text-align: center;
  color: var(--color-gray);
  margin-bottom: 40px;
}

.gift-card-widget {
  max-width: 800px;
  margin: 0 auto 40px;
}

.widget-placeholder {
  background: #fff;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 2px dashed #e5e7eb;
}

.widget-placeholder p:first-child {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.widget-placeholder p:last-of-type {
  color: var(--color-gray);
  margin-bottom: 0;
}

.purchase-alternatives {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.purchase-alternatives h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.purchase-alternatives .purchase-options {
  display: grid;
  gap: 20px;
}

/* Loopz widget container - responsive */
.gift-card-widget iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: 12px;
  background: #fff;
}

@media (min-width: 768px) {
  .gift-card-purchase h2 {
    font-size: 36px;
  }

  .purchase-alternatives .purchase-options {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   GOOGLE REVIEWS SECTION (ElfSight)
   ============================================ */
.google-reviews-area {
  padding: 60px 0;
  background: #f8fafc;
  text-align: center;
}

.reviews-title {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.reviews-subtitle {
  color: var(--color-gray);
  margin-bottom: 40px;
}

.reviews-widget {
  max-width: 1000px;
  margin: 0 auto 30px;
}

.reviews-placeholder {
  background: #fff;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 2px dashed #e5e7eb;
}

.reviews-placeholder p:first-child {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.reviews-placeholder p:last-of-type {
  color: var(--color-gray);
  margin-bottom: 0;
}

.review-link {
  background: var(--color-primary);
  color: #fff;
  border: none;
}

.review-link:hover {
  background: var(--color-primary-dark);
}

@media (min-width: 768px) {
  .reviews-title {
    font-size: 36px;
  }
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Page Header (Blog Listing) */
.page-header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* Blog Listing */
.blog-listing {
  padding: 60px 0;
}

.blog-grid {
  display: grid;
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
}

.blog-card-date {
  font-size: 13px;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-title {
  font-size: 20px;
  margin: 10px 0 15px;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--color-primary);
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: var(--color-accent);
}

.blog-card-excerpt {
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog-card-link {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-link:hover {
  color: var(--color-accent-dark);
}

/* CTA Section */
.cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Blog Post Detail */
.blog-post {
  padding: 40px 0 60px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 30px;
  color: var(--color-gray);
}

.breadcrumb a {
  color: var(--color-primary);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.blog-post-header {
  margin-bottom: 30px;
}

.blog-post-header h1 {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-post-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--color-gray);
}

.blog-post-image {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: auto;
}

/* Blog Post Body */
.blog-post-body {
  max-width: 800px;
  line-height: 1.8;
}

.blog-post-body .lead {
  font-size: 20px;
  color: var(--color-gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.blog-post-body h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin: 40px 0 20px;
}

.blog-post-body h3 {
  font-size: 22px;
  color: var(--color-primary);
  margin: 30px 0 15px;
}

.blog-post-body p {
  margin-bottom: 20px;
}

.blog-post-body ul {
  margin: 20px 0;
  padding-left: 25px;
}

.blog-post-body ul li {
  margin-bottom: 10px;
  list-style: disc;
}

.blog-post-body a {
  color: var(--color-accent);
  text-decoration: underline;
}

.blog-post-body a:hover {
  color: var(--color-accent-dark);
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: #f8fafc;
}

/* Blog CTA Box */
.blog-cta-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
}

.blog-cta-box h3 {
  color: var(--color-white);
  margin-bottom: 15px;
}

.blog-cta-box p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Blog Post Footer */
.blog-post-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

/* Related Posts */
.related-posts {
  background: #f8fafc;
  padding: 60px 0;
}

.related-posts h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 30px;
  text-align: center;
}

/* Footer Grid (for blog pages) */
.footer-grid {
  display: grid;
  gap: 30px;
  text-align: left;
}

.footer-col h4 {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 15px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #888;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
}

/* Blog Responsive */
@media (min-width: 768px) {
  .page-header h1 {
    font-size: 48px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-post-header h1 {
    font-size: 42px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-posts .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-post-header h1 {
    font-size: 48px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */
.newsletter-section {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 50px 0;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.newsletter-section p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input[type="email"] {
  padding: 15px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  width: 100%;
  font-family: inherit;
}

.newsletter-form input[type="email"]:focus {
  outline: 3px solid var(--color-accent);
}

.newsletter-form button {
  padding: 15px 30px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: var(--color-accent-dark);
}

.newsletter-privacy {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 15px;
}

.newsletter-privacy a {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form input[type="email"] {
    flex: 1;
  }

  .newsletter-form button {
    flex-shrink: 0;
  }
}

/* ============================================
   MOBILE REFINEMENTS
   ============================================ */

/* Ensure no horizontal overflow - on main only to preserve sticky header */
main {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Better touch targets for mobile (minimum 44px) */
.btn,
button,
.nav-item > a,
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Improve readability on small screens */
@media (max-width: 767px) {
  /* Smaller headings on mobile */
  h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  /* Page hero adjustments */
  .page-hero {
    padding: 50px 0;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  /* Better spacing for cards on mobile */
  .pricing-card {
    padding: 20px;
  }

  .pricing-card .price {
    font-size: 32px;
  }

  /* Stack footer links vertically on small mobile */
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  /* Full-width buttons on mobile */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Better table scrolling on mobile */
  .pricing-table-wrapper {
    margin: 0 -20px;
    padding: 0 20px;
  }

  /* Comparison table scroll on mobile */
  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Blog adjustments */
  .blog-post-header h1 {
    font-size: 26px;
  }

  .blog-post-body .lead {
    font-size: 17px;
  }

  .blog-cta-box {
    padding: 25px 20px;
  }

  /* Newsletter on mobile */
  .newsletter-section h2 {
    font-size: 24px;
  }

  /* Contact form spacing */
  .form-group {
    margin-bottom: 15px;
  }

  /* Better image handling */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure pricing features readable */
  .pricing-features li {
    font-size: 14px;
    padding: 10px 0;
  }
}

/* Very small screens (iPhone SE, etc.) */
@media (max-width: 374px) {
  .container {
    padding: 0 15px;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .pricing-card .price {
    font-size: 28px;
  }
}

/* Improve tap highlighting on mobile */
@media (hover: none) {
  a, button, .btn {
    -webkit-tap-highlight-color: rgba(234, 88, 12, 0.2);
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Directions CTA (replaces map)
   ========================================================================== */
.directions-cta {
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border-radius: 8px;
}

.directions-content {
  text-align: center;
  padding: 3rem;
  color: var(--color-white);
}

.directions-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.directions-address {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.directions-content .btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
