@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@1,800;1,900&display=swap');

/* ============================================
   Franklin Porta Potty - Complete CSS
   ============================================ */

/* GLOBAL RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #fff;
  padding-top: 130px;
  overflow-x: hidden;
}

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

img[width][height] {
  aspect-ratio: attr(width) / attr(height);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOP BAR */
.top-bar {
  background: #ff6b35;
  color: #fff;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  font-size: 14px;
  text-align: center;
}

.top-bar .underline-text {
  text-decoration: underline;
  font-weight: 700;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #2563eb;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* HEADER & NAVIGATION */
.header {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.logo-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu > li > a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  display: block;
  transition: opacity 0.2s ease;
}

.nav-menu > li > a:hover {
  opacity: 0.85;
}

.nav-menu > li > a.active {
  border-bottom: 2px solid #ff6b35;
}

.cta-btn-header {
  background: #ff6b35 !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cta-btn-header:hover {
  background: #e55a28 !important;
  transform: translateY(-1px);
}

.dropdown {
  position: relative;
}

.dropdown > a {
  cursor: pointer;
  padding-right: 18px !important;
}

.dropdown > a::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  transition: transform 0.2s ease;
}

.dropdown:hover > a::after,
.dropdown.active > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  list-style: none;
  padding: 8px 0;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}

.dropdown-menu a {
  color: #1f2937;
  text-decoration: none;
  padding: 12px 20px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 4px;
  margin: 0 8px;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
  color: #2563eb;
}

/* HERO SECTION */
.hero-section-wrapper {
  position: relative;
}

.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

.hero-decorative-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.1;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: 10%;
}
.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
}
.circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 25%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-main-text {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-new {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
}

.feature-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.hero-cta-new {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-new {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero-image-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  aspect-ratio: 1 / 1;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-hero-primary {
  background: #ff6b35;
  color: #fff;
}

.btn-hero-primary:hover {
  background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid #fff;
}

.btn-hero-secondary:hover {
  background: #fff;
  color: #2563eb;
}

/* COMMON ELEMENTS */
.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: #1f2937;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: #6b7280;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-primary {
  background: #ff6b35;
  color: #fff;
}

.btn-primary:hover {
  background: #e55a28;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: #fff;
}

.phone-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.phone-link:hover {
  text-decoration: underline;
}

/* SERVICES SECTION */
.services-overview {
  padding: 80px 0;
  background: #f9fafb;
}

.services-grid-expanded {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-card picture {
  display: block;
  width: 100%;
  aspect-ratio: 400 / 267;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 400 / 267;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 20px 12px;
  color: #1f2937;
  line-height: 1.3;
  display: block;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0 20px 16px;
  line-height: 1.6;
  display: block;
  flex-grow: 1;
}

.service-link {
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  margin: 0 20px 20px;
  transition: color 0.2s ease;
}

.service-link:hover {
  color: #1e40af;
  text-decoration: underline;
}

/* PLACER COUNTY SECTION */
.placer-county-section {
  padding: 80px 0;
  background: #fff;
}

.placer-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.placer-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.placer-intro-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
}

.placer-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

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

.placer-feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.placer-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon-large {
  margin-bottom: 20px;
}

.feature-icon-large img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}

.placer-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

/* INFO SECTIONS */
.info-section {
  padding: 80px 0;
}

.info-section.alternate {
  background: #f9fafb;
}

.info-section.with-image {
  background: #fff;
}

.info-content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.2;
}

.info-text .section-description {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* CTA SECTIONS */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  text-align: center;
}

.cta-section.cta-highlight {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a28 100%);
}

.cta-section.cta-highlight-alt {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* EVENTS SECTION */
.events-section {
  padding: 80px 0;
  background: #fff;
}

.events-title {
  margin-bottom: 12px;
}

.events-subtitle {
  text-align: center;
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 50px;
}

.portable-link {
  color: #2563eb;
  text-decoration: underline;
}

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

.flip-box {
  perspective: 1000px;
  height: 300px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.flip-box-front {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-box-front h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  border-radius: 8px;
}

.flip-box-back {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.flip-box-back h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.flip-box-back p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

/* REVIEWS SECTION */
.reviews-section {
  padding: 80px 0;
  background: #f9fafb;
}

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

.review-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.review-rating {
  margin-bottom: 16px;
}

.star {
  color: #fbbf24;
  font-size: 20px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
}

.review-author strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.review-author span {
  font-size: 14px;
  color: #6b7280;
}

/* ABOUT CITY SECTION */
.about-city-section {
  padding: 80px 0;
  background: #fff;
}

.about-city-section.city-bg {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.about-city-content {
  max-width: 900px;
  margin: 0 auto;
}

.city-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  text-align: center;
}

/* MAP SECTION */
.map-section {
  padding: 0;
  margin: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* SERVICE AREAS */
.service-areas {
  padding: 80px 0;
  background: #f9fafb;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.area-tag {
  background: #fff;
  color: #2563eb;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #2563eb;
  transition: all 0.3s ease;
}

.area-tag:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

/* FAQ SECTION */
.faq-section-new {
  padding: 80px 0;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 30px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-item {
  background: #f9fafb;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.faq-accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-accordion-button:hover {
  background: #f3f4f6;
}

.faq-plus {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
  min-width: 24px;
  transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-plus {
  transform: rotate(45deg);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 500px;
}

.faq-accordion-content p {
  padding: 0 20px 20px 60px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.faq-right {
  position: sticky;
  top: 140px;
}

.faq-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* FOOTER */
.footer {
  background: #1f2937;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  body {
    padding-top: 92px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    max-height: calc(100vh - 92px);
    opacity: 1;
    overflow-y: auto;
    padding: 16px 0;
  }

  .nav-menu li {
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-menu > li > a {
    color: #1f2937;
    padding: 14px 24px;
    font-size: 16px;
  }

  .nav-menu > li > a.active {
    color: #2563eb;
    border-bottom: none;
    border-left: 3px solid #2563eb;
  }

  .cta-btn-header {
    margin: 8px 24px !important;
    text-align: center;
    display: block;
  }

  .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px !important;
  }

  .dropdown > a::after {
    position: static;
    transform: none;
    font-size: 14px;
    margin-left: auto;
  }

  .dropdown.active > a::after {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: #f9fafb;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }

  .dropdown.active .dropdown-menu {
    max-height: 400px;
    padding: 8px 0;
  }

  .dropdown-menu a {
    padding: 12px 24px 12px 40px;
    font-size: 15px;
    margin: 0;
  }

  .dropdown-menu a:hover {
    background: #e5e7eb;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 50px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-main-text {
    font-size: 36px;
  }

  .hero-subtitle-new {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features-list {
    align-items: center;
  }

  .hero-cta-new {
    justify-content: center;
  }

  .hero-image-new {
    max-width: 400px;
    order: 2;
  }

  .hero-content-new {
    order: 1;
  }

  .services-grid-expanded,
  .placer-intro,
  .info-content-with-image {
    grid-template-columns: 1fr;
  }

  .placer-features,
  .flip-box-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-right {
    position: relative;
    top: 0;
  }
}

@media (max-width: 480px) {
  .hero-main-text {
    font-size: 28px;
  }

  .hero-subtitle-new {
    font-size: 16px;
  }

  .hero-image-new {
    max-width: 320px;
  }

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

  .section-title {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   PAGE-SPECIFIC STYLES FOR OTHER PAGES
   ===================================================== */

/* Page Hero (Used on About, Contact, Service pages) */
.page-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  padding: 80px 20px 60px;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}


/* =====================================================
   ABOUT US PAGE STYLES
   ===================================================== */

/* Page Hero - About Us */
.page-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  padding: 100px 20px 80px;
  margin-top: 80px;
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.6;
}

/* About Grid Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.about-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 640 / 426;
  object-fit: cover;
}

.about-grid h2 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.about-grid p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Services/Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 0;
}

.card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 22px;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 600;
}

.card h3 a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card h3 a:hover {
  color: #2563eb;
}

.card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.text-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: #1e40af;
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  padding: 80px 20px;
  margin: 80px 0 0 0;
}

.cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta h2 {
  font-size: 36px;
  color: white;
  font-weight: 700;
}

.cta .btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid white;
  min-width: 220px;
}

.cta .btn.primary {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.cta .btn.primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.cta .btn:not(.primary) {
  background: transparent;
  color: white;
}

.cta .btn:not(.primary):hover {
  background: white;
  color: #2563eb;
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE STYLES - ABOUT US PAGE
   ===================================================== */

/* Tablet - 768px and below */
@media (max-width: 768px) {
  .page-hero {
    padding: 80px 20px 60px;
    margin-top: 70px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-subtitle {
    font-size: 18px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .about-grid h2 {
    font-size: 32px;
  }

  .about-grid p {
    font-size: 17px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .cta .btn {
    padding: 14px 32px;
    font-size: 17px;
    min-width: 200px;
  }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
  .page-hero {
    padding: 60px 15px 40px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .about-grid {
    gap: 30px;
    padding: 40px 0;
  }

  .about-grid h2 {
    font-size: 26px;
  }

  .about-grid p {
    font-size: 16px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .card {
    padding: 30px 20px;
  }

  .card h3 {
    font-size: 20px;
  }

  .cta-section {
    padding: 50px 15px;
    margin-top: 60px;
  }

  .cta h2 {
    font-size: 26px;
  }

  .cta .btn {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
  }
}

/* Performance optimizations */
.about-grid img {
  content-visibility: auto;
  contain: layout style paint;
}

.card {
  content-visibility: auto;
  contain: layout style paint;
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

.contact-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-box {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.contact-info-box h3 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-info-box p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.contact-info-box a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-box a:hover {
  color: #1e40af;
  text-decoration: underline;
}

/* Contact Form */
.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
  font-size: 28px;
  color: #1e293b;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background: #ff6b35;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}

/* =====================================================
   SERVICE PAGES STYLES (Standard & Deluxe Porta Potty)
   ===================================================== */
/* =====================================================
   SERVICE PAGES STYLES (Standard & Deluxe Porta Potty)
   ===================================================== */

/* Service Hero Section */
.service-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  padding: 100px 20px 80px;
  margin-top: 80px;
  color: white;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  color: white;
}

.service-hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.5;
}

.service-hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-feature {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background: #ff6b35;
  color: white;
  border: 2px solid #ff6b35;
}

.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
  background: white;
  color: #2563eb;
  transform: translateY(-2px);
}

.service-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 500 / 600;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Service Details Section */
.service-details {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-intro {
  margin-bottom: 60px;
}

.service-intro h2 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 30px;
  font-weight: 700;
}

.service-intro p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Features Section */
.service-features-section {
  margin-bottom: 80px;
}

.service-features-section h2 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-box {
  background: #f8fafc;
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.feature-box h3 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-box ul li {
  font-size: 15px;
  color: #64748b;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.feature-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

/* Ideal Uses Section */
.ideal-uses-section {
  margin-bottom: 80px;
}

.ideal-uses-section h2 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

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

.use-card {
  background: white;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2563eb;
  transition: all 0.3s ease;
}

.use-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.use-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.use-card h3 {
  font-size: 22px;
  color: #1e293b;
  margin-bottom: 12px;
  font-weight: 600;
}

.use-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Section */
.why-choose-service {
  background: #f8fafc;
  padding: 60px 40px;
  border-radius: 12px;
  margin-bottom: 80px;
}

.why-choose-service h2 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 22px;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-content p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Comparison Section (Deluxe Page) */
.comparison-section {
  margin-bottom: 80px;
}

.comparison-section h2 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background: #2563eb;
  color: white;
  font-weight: 600;
}

.comparison-cell {
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-cell:first-child {
  text-align: left;
  justify-content: flex-start;
  font-weight: 500;
}

.comparison-cell.highlighted {
  background: #f0f9ff;
  font-weight: 600;
  color: #1e40af;
}

.comparison-header .comparison-cell.highlighted {
  background: #1e40af;
  color: white;
}

.comparison-row:hover:not(.comparison-header) {
  background: #f8fafc;
}

/* Rental Info Section */
.rental-info-section {
  margin-bottom: 80px;
}

.rental-info-section h2 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

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

.info-card {
  background: white;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2563eb;
}

.info-card h3 {
  font-size: 22px;
  color: #1e293b;
  margin-bottom: 20px;
  font-weight: 600;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  font-size: 16px;
  color: #64748b;
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.info-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.rental-info-section > p {
  text-align: center;
  font-size: 18px;
  color: #64748b;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* Tips Section (Deluxe Page) */
.tips-section {
  background: #fffbeb;
  padding: 50px 40px;
  border-radius: 12px;
  border-left: 6px solid #fbbf24;
  margin-bottom: 80px;
}

.tips-section h2 {
  font-size: 32px;
  color: #1e293b;
  margin-bottom: 30px;
  font-weight: 700;
}

.tips-content h3 {
  font-size: 24px;
  color: #1e293b;
  margin-bottom: 20px;
  font-weight: 600;
}

.tips-content p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 15px;
}

.tips-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.tips-content ul li {
  font-size: 17px;
  color: #64748b;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.tips-content ul li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #2563eb;
  font-size: 24px;
  line-height: 1.2;
}

.tips-note {
  font-style: italic;
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 3px solid #fbbf24;
}

/* Related Services Section */
.related-services {
  background: #f8fafc;
  padding: 80px 20px;
}

.related-services h2 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.related-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.related-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  aspect-ratio: 300 / 220;
}

.related-card h3 {
  padding: 25px 20px;
  font-size: 18px;
  color: #1e293b;
  margin: 0;
  font-weight: 600;
  text-align: center;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  padding: 80px 20px;
  margin: 0;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   RESPONSIVE STYLES - SERVICE PAGES
   ===================================================== */

/* Tablet - 768px and below */
@media (max-width: 768px) {
  .service-hero {
    padding: 80px 20px 60px;
    margin-top: 70px;
  }

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

  .service-hero-content h1 {
    font-size: 38px;
  }

  .service-hero-subtitle {
    font-size: 19px;
  }

  .service-hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 350px;
  }

  .service-details {
    padding: 60px 20px;
  }

  .service-intro h2,
  .service-features-section h2,
  .ideal-uses-section h2,
  .why-choose-service h2,
  .comparison-section h2,
  .rental-info-section h2,
  .related-services h2 {
    font-size: 32px;
  }

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

  .uses-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .comparison-cell {
    padding: 15px 10px;
    font-size: 14px;
  }

  .rental-info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .cta-content h2 {
    font-size: 34px;
  }

  .cta-content p {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 350px;
  }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
  .service-hero {
    padding: 60px 15px 40px;
  }

  .service-hero-content h1 {
    font-size: 30px;
  }

  .service-hero-subtitle {
    font-size: 17px;
  }

  .hero-feature {
    font-size: 16px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 16px;
  }

  .service-details {
    padding: 50px 15px;
  }

  .service-intro h2,
  .service-features-section h2,
  .ideal-uses-section h2,
  .why-choose-service h2,
  .comparison-section h2,
  .rental-info-section h2,
  .related-services h2 {
    font-size: 26px;
  }

  .service-intro p {
    font-size: 16px;
  }

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

  .feature-box {
    padding: 25px 20px;
  }

  .why-choose-service {
    padding: 40px 20px;
  }

  .benefit-icon {
    font-size: 36px;
  }

  .benefit-content h3 {
    font-size: 19px;
  }

  .comparison-row {
    font-size: 13px;
  }

  .comparison-cell {
    padding: 12px 8px;
  }

  .info-card {
    padding: 25px 20px;
  }

  .tips-section {
    padding: 35px 20px;
  }

  .tips-section h2 {
    font-size: 26px;
  }

  .tips-content h3 {
    font-size: 20px;
  }

  .tips-content p,
  .tips-content ul li {
    font-size: 15px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .related-card img {
    height: 250px;
  }

  .cta-section {
    padding: 60px 15px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 17px;
  }
}

/* Performance Optimizations */
.service-hero-image img,
.feature-box,
.use-card,
.benefit,
.info-card,
.related-card img {
  content-visibility: auto;
  contain: layout style paint;
}

/* =====================================================
   RENTALS PAGE STYLES
   ===================================================== */

/* =====================================================
   RENTALS PAGE STYLES
   ===================================================== */

/* Rentals Section */
.rentals-section {
  padding: 80px 20px;
  background: #ffffff;
}

.rentals-section h2 {
  font-size: 42px;
  color: #1e293b;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

/* Service Cards Grid */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Service Card Rental */
.service-card-rental {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
}

.service-card-rental:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #2563eb;
}

/* Service Image */
.service-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 400 / 280;
  transition: transform 0.3s ease;
}

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

/* Service Content */
.service-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.service-content h2 {
  font-size: 24px;
  color: #1e293b;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.service-description {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-size: 15px;
  color: #475569;
  line-height: 1.5;
  padding-left: 0;
}

.service-features li::before {
  content: none;
}

/* Service Actions */
.service-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
  flex-wrap: wrap;
}

.service-actions .btn-primary,
.service-actions .btn-secondary {
  flex: 1;
  min-width: 140px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-actions .btn-primary {
  background: #2563eb;
  color: white;
  border: 2px solid #2563eb;
}

.service-actions .btn-primary:hover {
  background: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service-actions .btn-secondary {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.service-actions .btn-secondary:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
}

/* Related Note (hidden by default) */
.related-note {
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  margin-top: 40px;
  font-style: italic;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  padding: 80px 20px;
  margin: 0;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: #0bdb49;
  color: white;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #ff6b35;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 240px;
}

.cta-buttons .btn-primary:hover {
  background: #e55a2b;
  border-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid white;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 240px;
}

.cta-buttons .btn-secondary:hover {
  background: rgb(211, 5, 5);
  color: #d74608;
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE STYLES - RENTALS PAGE
   ===================================================== */

/* Tablet - 768px and below */
@media (max-width: 768px) {
  .rentals-section {
    padding: 60px 20px;
  }

  .rentals-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }

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

  .service-image {
    height: 240px;
  }

  .service-content {
    padding: 25px;
    gap: 18px;
  }

  .service-content h2 {
    font-size: 22px;
  }

  .service-description {
    font-size: 15px;
  }

  .service-features li {
    font-size: 14px;
  }

  .service-actions {
    flex-direction: column;
  }

  .service-actions .btn-primary,
  .service-actions .btn-secondary {
    width: 100%;
    min-width: 0;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta-content h2 {
    font-size: 34px;
  }

  .cta-content p {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 400px;
  }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
  .rentals-section {
    padding: 50px 15px;
  }

  .rentals-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .service-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-image {
    height: 260px;
  }

  .service-content {
    padding: 20px;
    gap: 15px;
  }

  .service-content h2 {
    font-size: 20px;
  }

  .service-description {
    font-size: 15px;
  }

  .service-features {
    gap: 8px;
  }

  .service-features li {
    font-size: 14px;
  }

  .service-actions .btn-primary,
  .service-actions .btn-secondary {
    padding: 12px 16px;
    font-size: 15px;
  }

  .cta-section {
    padding: 50px 15px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    min-width: 0;
  }
}

/* Performance Optimizations */
.service-card-rental {
  content-visibility: auto;
  contain: layout style paint;
}

.service-image img {
  content-visibility: auto;
  contain: layout style paint;
}
/* =====================================================
   RESPONSIVE STYLES FOR OTHER PAGES
   ===================================================== */

/* Tablet - 768px */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 20px 40px;
    margin-top: 70px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 18px;
  }

  /* About Page */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    min-height: 300px;
  }

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

  .card-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* About Page */
  .about-section {
    padding: 60px 15px;
  }

  .about-intro h2 {
    font-size: 28px;
  }

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

  .kpi {
    padding: 30px 20px;
  }

  .kpi-number {
    font-size: 36px;
  }

  /* Contact Page */
  .contact-section {
    padding: 60px 15px;
  }

  .contact-form-box {
    padding: 30px 20px;
  }

  .contact-form-box h2 {
    font-size: 24px;
  }

  /* Service Pages */
  .service-hero {
    padding: 80px 15px 60px;
  }

  .service-hero-content h1 {
    font-size: 32px;
  }

  .service-hero-content p {
    font-size: 18px;
  }

  .service-details {
    padding: 60px 15px;
  }

  .service-details h2 {
    font-size: 28px;
  }

  .features-section {
    padding: 60px 15px;
  }

  .features-container h2 {
    font-size: 28px;
  }

  .feature-box {
    padding: 30px 20px;
  }

  /* Rentals Page */
  .rentals-section {
    padding: 60px 15px;
  }

  .rentals-intro h2 {
    font-size: 28px;
  }
}
.nav-container { position: relative; z-index: 10; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; left: 0; top: 100%;
  z-index: 999; max-height: 70vh; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 968px) {
  .nav-menu.active .dropdown-menu {
    position: static; max-height: none; overflow: visible;
  }
}
/* Default: hide all dropdown menus */
.dropdown-menu { 
  display: none; 
}

/* Show when the parent li is opened via JS */
.dropdown.active > .dropdown-menu {
  display: block;
}

/* Desktop: show on hover/focus too */
@media (min-width: 969px) {
  .dropdown:hover > .dropdown-menu,
  .dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}

/* Mobile: keep menus hidden until user taps "Rentals" */
@media (max-width: 968px) {
  /* If you had a rule that showed all menus inside the open mobile menu,
     override it here so they stay hidden until .active */
  .nav-menu.active .dropdown-menu {
    display: none;          /* important line */
    position: static;       /* keep stacked layout in the off-canvas menu */
    max-height: none;
    overflow: visible;
  }
  .nav-menu.active .dropdown.active > .dropdown-menu {
    display: block;         /* only the tapped dropdown opens */
  }
}

/* Hide dropdowns by default */
.dropdown-menu { display: none; }

/* Show only when parent <li> has .active */
.dropdown.active > .dropdown-menu { display: block; }

/* Desktop: allow hover/focus open */
@media (min-width: 969px) {
  .dropdown:hover > .dropdown-menu,
  .dropdown:focus-within > .dropdown-menu { display: block; }
}

/* Mobile: kill hover behavior entirely and ONLY use .active */
@media (max-width: 968px) {
  .dropdown:hover > .dropdown-menu,
  .dropdown:focus-within > .dropdown-menu { display: none !important; }

  .nav-menu .dropdown-menu {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .dropdown.active > .dropdown-menu { display: block !important; }
}
.social-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a {
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #374151;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #10b981;
  color: #fff;
  transform: translateY(-3px);
}

.social-links .icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}
/* Fix for Deprecated H1 Warning */
section h1,
article h1,
aside h1,
nav h1 {
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    font-weight: bold;
}

/* ============================================
   ULTRA ADVANCED STICKY CALL BUTTON
   100% Responsive | Centered | Modern
   ============================================ */

/* Wrapper - Fixed & Perfectly Centered */
.call-button-wrapper {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
  display: block;
  width: auto;
  max-width: calc(100% - 40px);
}

/* Main Button */
.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  min-width: 220px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(145deg, #10b981 0%, #059669 50%, #047857 100%);
  border: none;
  border-radius: 60px;
  box-shadow: 
    0 10px 40px rgba(16, 185, 129, 0.45),
    0 6px 20px rgba(0, 0, 0, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-tap-highlight-color: transparent;
}

/* Shimmer Effect */
.call-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* Pulse Glow Animation */
.call-btn::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 70px;
  background: linear-gradient(145deg, #10b981, #059669);
  z-index: -1;
  opacity: 0;
  animation: glow-pulse 2.5s ease-in-out infinite;
}

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

/* Hover State */
.call-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 50px rgba(16, 185, 129, 0.55),
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.25);
  background: linear-gradient(145deg, #34d399 0%, #10b981 50%, #059669 100%);
}

/* Active State */
.call-btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 
    0 5px 20px rgba(16, 185, 129, 0.4),
    0 3px 10px rgba(0, 0, 0, 0.15),
    inset 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Focus State */
.call-btn:focus {
  outline: none;
  box-shadow: 
    0 10px 40px rgba(16, 185, 129, 0.45),
    0 0 0 4px rgba(16, 185, 129, 0.3);
}

/* Phone Icon */
.call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  animation: ring-shake 2s ease-in-out infinite;
  animation-delay: 1s;
}

.call-icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

@keyframes ring-shake {
  0%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(-15deg); }
  10% { transform: rotate(15deg); }
  15% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  25% { transform: rotate(0deg); }
}

/* Text Styling */
.call-text {
  position: relative;
  z-index: 1;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media screen and (max-width: 768px) {
  .call-button-wrapper {
    bottom: 16px;
    max-width: calc(100% - 32px);
  }
  
  .call-btn {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 200px;
  }
  
  .call-icon {
    width: 20px;
    height: 20px;
  }
}

/* Mobile */
@media screen and (max-width: 480px) {
  .call-button-wrapper {
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: none;
  }
  
  .call-btn {
    width: 100%;
    padding: 15px 24px;
    font-size: 15px;
    min-width: unset;
    gap: 10px;
  }
  
  .call-icon {
    width: 18px;
    height: 18px;
  }
}

/* Small Mobile */
@media screen and (max-width: 360px) {
  .call-button-wrapper {
    bottom: 10px;
    width: calc(100% - 20px);
  }
  
  .call-btn {
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 50px;
  }
}

/* Safe Area for Notched Phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .call-button-wrapper {
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
}

/* Landscape Mode */
@media screen and (max-height: 480px) and (orientation: landscape) {
  .call-button-wrapper {
    bottom: 8px;
  }
  
  .call-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  
  .call-btn::after {
    display: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .call-btn,
  .call-btn::before,
  .call-btn::after,
  .call-icon {
    animation: none;
    transition: none;
  }
}
/* ==========================================================
   TECHNEXT LOCAL SEO V2
   Modern Business-inspired visual layer. This block is kept
   at the end of the shared stylesheet so all generated pages
   receive the same design without changing content mappings.
   ========================================================== */
:root {
  --v2-navy: #0b1f33;
  --v2-navy-soft: #163a59;
  --v2-blue: #0f6fff;
  --v2-teal: #13b8a6;
  --v2-orange: #ff7a1a;
  --v2-cream: #f7f4ee;
  --v2-surface: #ffffff;
  --v2-text: #172233;
  --v2-muted: #617082;
  --v2-border: #dbe3eb;
  --v2-shadow: 0 20px 55px rgba(11, 31, 51, 0.12);
}

body {
  color: var(--v2-text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

h1, h2, h3, h4, .logo-title {
  color: var(--v2-navy);
  letter-spacing: -0.025em;
}

.container { max-width: 1240px; }

.top-bar {
  background: var(--v2-teal);
  color: #062f2a;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.top-bar a { color: #062f2a; }

.header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  box-shadow: 0 8px 30px rgba(11, 31, 51, 0.08);
  backdrop-filter: blur(14px);
}

.logo-title { color: var(--v2-navy); font-size: 27px; }
.logo-subtitle { color: var(--v2-blue); font-weight: 800; }
.nav-menu > li > a { color: var(--v2-navy); font-weight: 750; }
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--v2-blue); }
.mobile-menu-toggle span { background: var(--v2-navy); }

.cta-btn-header,
.btn-primary,
.btn-hero-primary,
.btn.btn-primary {
  background: var(--v2-orange) !important;
  border-color: var(--v2-orange) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.25);
}

.cta-btn-header:hover,
.btn-primary:hover,
.btn-hero-primary:hover,
.btn.btn-primary:hover {
  background: #e86608 !important;
  border-color: #e86608 !important;
  transform: translateY(-2px);
}

.hero,
.hero-new,
.service-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 18%, rgba(19, 184, 166, 0.2), transparent 27%),
    radial-gradient(circle at 15% 88%, rgba(15, 111, 255, 0.18), transparent 31%),
    linear-gradient(135deg, #071a2d 0%, #0e3150 56%, #155d70 100%) !important;
}

.hero::after,
.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-inner,
.service-hero-grid { position: relative; z-index: 1; }
.hero-content-new h1,
.hero-main-text,
.hero-subtitle-new,
.service-hero h1,
.service-hero h2,
.service-hero p,
.service-hero li { color: #fff !important; }
.hero-content-new h1,
.service-hero h1 { font-size: clamp(2.45rem, 5vw, 4.8rem); line-height: 1.02; }
.hero-main-text { color: #bdeee8 !important; font-weight: 800; }
.hero-badge {
  color: #07312d;
  background: #bdf7ed;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: none;
}

.hero-image-new img,
.service-hero-image img,
.placer-intro-image img,
.info-image img {
  border-radius: 24px;
  box-shadow: var(--v2-shadow);
}

.hero-image-new::before,
.service-hero-image::before {
  content: "LOCAL SERVICE";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 14px;
  color: #fff;
  background: rgba(11,31,51,.88);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.hero-image-new,
.service-hero-image { position: relative; }

.btn-hero-secondary,
.btn-secondary,
.btn-outline {
  border: 2px solid var(--v2-teal) !important;
  color: var(--v2-navy) !important;
  background: #fff !important;
}

.hero .btn-hero-secondary,
.service-hero .btn-secondary {
  color: #fff !important;
  background: transparent !important;
}

.placer-county-section,
.info-section,
.service-details { background: var(--v2-cream); }

.section-title {
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.12;
}

.section-subtitle { color: var(--v2-muted); max-width: 760px; margin-inline: auto; }

.placer-feature-card,
.service-card,
.review-card,
.related-card,
.contact-card,
.info-card {
  background: var(--v2-surface);
  border: 1px solid var(--v2-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 35px rgba(11, 31, 51, 0.07) !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.placer-feature-card:hover,
.service-card:hover,
.review-card:hover,
.related-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15,111,255,.45) !important;
  box-shadow: 0 22px 48px rgba(11, 31, 51, 0.13) !important;
}

.service-card { overflow: hidden; }
.service-card h3,
.related-card h3 { color: var(--v2-navy); }
.service-link { color: var(--v2-blue) !important; font-weight: 850; }
.feature-icon-large,
.service-icon { color: var(--v2-blue); }

.cta-section,
.cta-highlight {
  background: linear-gradient(120deg, var(--v2-blue), #1943a4) !important;
  color: #fff;
}
.cta-section h2,
.cta-section p { color: #fff !important; }

.reviews-section {
  background: #fff;
}
.review-card { border-top: 5px solid var(--v2-teal) !important; }
.stars { color: #f5a623 !important; letter-spacing: 3px; }

.service-areas,
.areas-section { background: var(--v2-cream); }
.area-tag {
  border: 1px solid #b8c8d8 !important;
  color: var(--v2-navy) !important;
  background: #fff !important;
  border-radius: 999px !important;
  font-weight: 800;
}
.area-tag:hover {
  color: #fff !important;
  background: var(--v2-blue) !important;
  border-color: var(--v2-blue) !important;
}

.footer {
  background: var(--v2-navy) !important;
  border-top: 6px solid var(--v2-teal);
}
.footer h2,
.footer h3,
.footer h4,
.footer p,
.footer a { color: #fff; }
.footer a:hover { color: #7ce7dc; }
.footer-bottom { border-color: rgba(255,255,255,.13); }

input,
textarea,
select {
  border: 1px solid #b8c8d8 !important;
  border-radius: 10px !important;
  background: #fff;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--v2-blue) !important;
  box-shadow: 0 0 0 4px rgba(15,111,255,.12) !important;
}

@media (max-width: 900px) {
  .header { background: rgba(255,255,255,.99); }
  .nav-menu { background: #fff !important; box-shadow: var(--v2-shadow); }
  .nav-menu > li > a { color: var(--v2-navy) !important; }
  .hero-content-new h1,
  .service-hero h1 { font-size: clamp(2.2rem, 10vw, 3.4rem); }
}

@media (max-width: 600px) {
  .container { padding-inline: 18px; }
  .hero-image-new img,
  .service-hero-image img { border-radius: 16px; }
  .service-card,
  .review-card,
  .placer-feature-card { border-radius: 14px !important; }
}

/* ==========================================================
   V2 HOMEPAGE — TRUE STRUCTURAL REDESIGN
   Conversion-focused local rental layout.
   ========================================================== */
.v2-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 7% 10%, rgba(30, 215, 180, .16), transparent 26rem),
    radial-gradient(circle at 88% 20%, rgba(43, 116, 255, .26), transparent 30rem),
    #071827;
}

.v2-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #a7f3e8;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.v2-eyebrow span {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--v2-orange);
}

.v2-hero-copy h1 {
  max-width: 770px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 6.1vw, 6.6rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.065em;
}

.v2-hero-copy h1 em {
  color: #55dfcf;
  font-style: normal;
}

.v2-hero-copy > p {
  display: -webkit-box;
  overflow: hidden;
  max-width: 680px;
  margin: 28px 0 0;
  color: #b9cbd9;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.v2-button {
  min-height: 62px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.v2-button:hover { transform: translateY(-3px); }

.v2-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 26px;
  color: #fff;
  background: var(--v2-orange);
  box-shadow: 0 16px 34px rgba(255, 122, 26, .26);
  font-weight: 900;
}

.v2-button-primary span { font-size: 22px; }

.v2-button-phone {
  display: grid;
  align-content: center;
  padding: 7px 22px;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  background: rgba(255,255,255,.065);
}

.v2-button-phone small { color: #91a8ba; font-size: 11px; }
.v2-button-phone strong { font-size: 16px; }

.v2-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  color: #d7e2ea;
  font-size: 13px;
  font-weight: 700;
}

.v2-trust-list b { color: #55dfcf; margin-right: 5px; }

.v2-quote-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(0,0,0,.38);
  transform: rotate(1.25deg);
}

.v2-quote-photo { position: relative; height: 240px; overflow: hidden; }
.v2-quote-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(5,20,33,.84)); }
.v2-quote-photo img { width: 100%; height: 100%; object-fit: cover; }
.v2-quote-photo > span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.v2-quote-body { padding: 24px; color: var(--v2-text); }
.v2-quote-body > div:first-child { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.v2-quote-body small { color: var(--v2-blue); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.v2-quote-body h2 { margin: 3px 0 0; font-size: 25px; }

.v2-service-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 18px; }
.v2-service-pills a {
  padding: 11px 6px;
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  color: var(--v2-navy);
  background: #f8fafc;
  text-align: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
}
.v2-service-pills a:hover { color: #fff; border-color: var(--v2-blue); background: var(--v2-blue); }

.v2-quote-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 15px 17px;
  border-radius: 9px;
  color: #062b27;
  background: #55dfcf;
  text-decoration: none;
  font-weight: 900;
}

.v2-quote-body > p { margin: 12px 0 0; color: var(--v2-muted); font-size: 11px; line-height: 1.5; }

.v2-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
}

.v2-proof-strip > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 23px 25px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.v2-proof-strip > div:last-child { border-right: 0; }
.v2-proof-strip strong { color: #55dfcf; font-size: 25px; }
.v2-proof-strip span { color: #b9cbd9; font-size: 12px; font-weight: 750; }

.placer-county-section { padding-top: 110px; }
.placer-intro { gap: clamp(36px, 6vw, 86px); align-items: center; }
.placer-intro-image { position: relative; }
.placer-intro-image::before {
  content: "DEPENDABLE LOCAL DELIVERY";
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 22px;
  max-width: 150px;
  padding: 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--v2-blue);
  box-shadow: 0 15px 35px rgba(15,111,255,.25);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .08em;
}
.placer-intro-text h1 { font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.03; }

.services-overview { padding-block: 110px; background: #fff; }
.services-grid-expanded { gap: 22px; }
.service-card { padding: 0 0 24px !important; }
.service-card > img { width: 100%; height: 210px; object-fit: cover; border-radius: 17px 17px 0 0; }
.service-card > h3,
.service-card > p,
.service-card > a { margin-right: 22px; margin-left: 22px; }
.service-card > h3 { margin-top: 21px; }

@media (max-width: 980px) {
  .v2-hero { padding-top: 65px; }
  .v2-hero-grid { grid-template-columns: 1fr; }
  .v2-hero-copy h1 { max-width: 820px; }
  .v2-quote-card { max-width: 620px; transform: none; }
  .v2-proof-strip { grid-template-columns: 1fr 1fr; }
  .v2-proof-strip > div:nth-child(2) { border-right: 0; }
  .v2-proof-strip > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 600px) {
  .v2-hero { padding-top: 48px; }
  .v2-hero-copy h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .v2-hero-actions { display: grid; }
  .v2-button { width: 100%; }
  .v2-trust-list { display: grid; }
  .v2-quote-photo { height: 205px; }
  .v2-service-pills { grid-template-columns: 1fr; }
  .v2-proof-strip { margin-top: 50px; }
  .v2-proof-strip > div { display: grid; gap: 2px; padding: 17px 13px; }
  .v2-proof-strip strong { font-size: 20px; }
  .placer-intro-image::before { right: 10px; bottom: 10px; }
}

/* ==========================================================
   V2 STYLE POLISH
   Distinctive details, subtle motion, and stronger hierarchy.
   ========================================================== */
::selection { color: #fff; background: var(--v2-blue); }

.header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  opacity: .75;
  background: linear-gradient(90deg, transparent, var(--v2-teal), var(--v2-blue), var(--v2-orange), transparent);
}

.logo-title { position: relative; }
.logo-title::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v2-orange);
  box-shadow: 0 0 0 5px rgba(255,122,26,.13);
}

.nav-menu > li > a:not(.cta-btn-header)::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 2px;
  border-radius: 99px;
  background: var(--v2-blue);
  transition: right .22s ease, left .22s ease;
}
.nav-menu > li > a:not(.cta-btn-header):hover::after,
.nav-menu > li > a.active:not(.cta-btn-header)::after { right: 0; left: 0; }

.v2-hero-copy h1 em {
  background: linear-gradient(100deg, #55dfcf 5%, #89f1e3 48%, #69a8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.v2-hero-copy h1::after {
  content: "";
  display: block;
  width: 94px;
  height: 7px;
  margin-top: 26px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--v2-orange) 0 60%, #55dfcf 60%);
}

.v2-quote-card {
  animation: v2-card-arrive .7s cubic-bezier(.2,.8,.2,1) both;
}

.v2-quote-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(85,223,207,.28);
  border-radius: 27px;
}

.v2-quote-card:hover { transform: rotate(0) translateY(-5px); }

.v2-quote-photo > span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #55dfcf;
  box-shadow: 0 0 0 5px rgba(85,223,207,.18);
}

.v2-proof-strip strong {
  font-variant-numeric: tabular-nums;
  text-shadow: 0 8px 28px rgba(85,223,207,.18);
}

.placer-intro-image img,
.info-image img {
  filter: saturate(1.05) contrast(1.03);
  transition: transform .55s cubic-bezier(.2,.75,.2,1), filter .4s ease;
}
.placer-intro-image:hover img,
.info-image:hover img { transform: scale(1.025); filter: saturate(1.16) contrast(1.04); }

.placer-intro-text h1::before,
.services-overview .section-title::before,
.reviews-section .section-title::before,
.events-section .section-title::before {
  content: "EXPLORE";
  display: block;
  margin-bottom: 11px;
  color: var(--v2-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .2em;
}
.placer-intro-text h1::before { content: "LOCAL RENTALS"; }
.services-overview .section-title::before { content: "CHOOSE YOUR UNIT"; }
.reviews-section .section-title::before { content: "CUSTOMER STORIES"; }
.events-section .section-title::before { content: "BUILT FOR EVERY OCCASION"; }

.services-grid-expanded { counter-reset: v2-service; }
.service-card { counter-increment: v2-service; position: relative; }
.service-card::before {
  content: counter(v2-service, decimal-leading-zero);
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 10px;
  color: #fff;
  background: rgba(7,24,39,.75);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 900;
}
.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55px;
  height: 55px;
  opacity: 0;
  border-radius: 55px 0 17px 0;
  background: linear-gradient(135deg, transparent 45%, rgba(15,111,255,.1) 46%);
  transition: opacity .25s ease;
}
.service-card:hover::after { opacity: 1; }

.service-link { display: inline-flex; align-items: center; gap: 8px; }
.service-link::after { content: "↗"; transition: transform .2s ease; }
.service-link:hover::after { transform: translate(3px,-3px); }

.cta-section,
.cta-highlight {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 60px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -.04em; }

.review-card { position: relative; overflow: hidden; }
.review-card::after {
  content: "“";
  position: absolute;
  right: 18px;
  top: -17px;
  color: rgba(15,111,255,.08);
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
}
.review-card > * { position: relative; z-index: 1; }

.area-tag { box-shadow: 0 5px 14px rgba(11,31,51,.05); }
.area-tag::before { content: "•"; margin-right: 7px; color: var(--v2-teal); }
.area-tag:hover::before { color: #fff; }

.footer { position: relative; overflow: hidden; }
.footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -250px;
  border: 70px solid rgba(85,223,207,.055);
  border-radius: 50%;
}
.footer-grid,
.footer-bottom { position: relative; z-index: 1; }

@keyframes v2-card-arrive {
  from { opacity: 0; transform: translateY(24px) rotate(1.25deg); }
  to { opacity: 1; transform: translateY(0) rotate(1.25deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 900px) {
  .nav-menu > li > a:not(.cta-btn-header)::after { display: none; }
  .v2-quote-card::before { display: none; }
}

/* Mobile visual correction after device preview */
@media (max-width: 768px) {
  body { padding-top: 102px; }

  .top-bar {
    min-height: 32px;
    padding: 5px 0;
    font-size: 12px;
    line-height: 1.35;
  }
  .top-bar p { margin: 0; }

  .header {
    top: 32px;
    min-height: 70px;
    padding: 9px 0;
  }
  .nav-container { min-height: 52px; padding-inline: 20px; }
  .logo-title { font-size: 22px; }
  .logo-subtitle { font-size: 9px; }
  .mobile-menu-toggle { padding: 7px; }
  .mobile-menu-toggle span { width: 23px; height: 2px; }
  .nav-menu { top: 102px; }
  .nav-menu.active { max-height: calc(100vh - 102px); }

  .v2-hero { padding-top: 42px; }
  .v2-hero-grid { gap: 34px; }
  .v2-eyebrow { margin-bottom: 15px; font-size: 10px; letter-spacing: .1em; }
  .v2-eyebrow span { width: 22px; }
  .v2-hero-copy h1 {
    max-width: 560px;
    font-size: clamp(2.65rem, 9.4vw, 3.65rem);
    line-height: 1.01;
    letter-spacing: -.052em;
  }
  .v2-hero-copy h1::after { width: 72px; height: 5px; margin-top: 20px; }
  .v2-hero-copy > p {
    margin-top: 19px;
    font-size: 15px;
    line-height: 1.58;
    -webkit-line-clamp: 3;
  }
  .v2-hero-actions { margin-top: 24px; }
  .v2-button { min-height: 54px; }
  .v2-trust-list { margin-top: 20px; }
  .v2-quote-card { border-radius: 18px; }
  .v2-proof-strip { margin-top: 42px; }

  .call-button-wrapper {
    right: 16px;
    bottom: 16px;
    left: auto;
    width: 56px;
    max-width: 56px;
    transform: none;
  }
  .call-btn {
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(16,185,129,.34), 0 5px 14px rgba(0,0,0,.14);
  }
  .call-text { display: none; }
  .call-icon { width: 22px; height: 22px; }
}

@media (max-width: 420px) {
  .v2-hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3rem); }
  .v2-proof-strip span { font-size: 10px; }
  .v2-quote-body { padding: 20px; }
}

/* ==========================================================
   V2 E1-inspired visual direction
   Split photographic hero, confident color blocks and cleaner
   editorial sections. All content tokens stay generator-driven.
   ========================================================== */
:root {
  --v2-ink: #20242d;
  --v2-purple: #5437b7;
  --v2-purple-dark: #402593;
  --v2-purple-soft: #eee9fb;
  --v2-orange: #ff7a1a;
  --v2-paper: #ffffff;
  --v2-mist: #f4f5f8;
}

body {
  color: var(--v2-ink);
  background: var(--v2-paper);
}

.top-bar {
  background: #292b2f;
  color: #fff;
  text-align: right;
}

.top-bar a,
.top-bar .underline-text { color: #fff; }

.top-bar .underline-text {
  color: #b9abef;
  text-decoration: none;
  letter-spacing: .08em;
}

.header {
  background: var(--v2-purple);
  box-shadow: 0 10px 30px rgba(42, 28, 91, .18);
}

.logo-title { color: #fff; font-size: 25px; letter-spacing: -.035em; }
.logo-subtitle { color: #ded7ff; letter-spacing: .16em; }
.nav-menu > li > a:not(.cta-btn-header) { color: #fff; }
.nav-menu > li > a.active { border-bottom-color: #fff; }
.cta-btn-header {
  background: #fff !important;
  color: var(--v2-purple) !important;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(34, 26, 68, .18);
}
.cta-btn-header:hover { background: #f6f2ff !important; }

.v2-hero {
  padding: 30px 0 0;
  color: #fff;
  background: #edf0f5;
}

.v2-hero::before,
.v2-hero::after { display: none; }

.v2-hero-grid {
  max-width: 1320px;
  min-height: 610px;
  gap: 0;
  align-items: stretch;
  padding-inline: 30px;
}

.v2-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% + 58px);
  margin: 30px -58px 30px 0;
  padding: clamp(44px, 6vw, 80px);
  background: linear-gradient(145deg, var(--v2-purple) 0%, var(--v2-purple-dark) 100%);
  box-shadow: 0 26px 60px rgba(43, 27, 100, .28);
}

.v2-eyebrow { color: #fff; }
.v2-eyebrow span { background: #ff9a48; }
.v2-hero-copy h1 {
  max-width: 680px;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.85rem, 4.55vw, 4.85rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.028em;
  text-wrap: balance;
}
.v2-hero-copy h1 em { color: #f2c8ff; }
.v2-hero-copy h1::after { background: #ff9a48; }
.v2-hero-copy > p {
  max-width: 620px;
  color: rgba(255,255,255,.88);
  font-size: 17px;
}

.v2-button-primary {
  color: var(--v2-purple-dark);
  background: #fff;
  box-shadow: 0 12px 24px rgba(22, 14, 56, .24);
}
.v2-button-primary:hover { color: #fff; background: var(--v2-orange); }
.v2-button-phone { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.v2-trust-list b { color: #ffd4ae; }

.v2-hero-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #223136;
}
.v2-hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.82) contrast(1.07);
}
.v2-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27,18,65,.24), transparent 44%), linear-gradient(0deg, rgba(20,21,26,.46), transparent 45%);
}
.v2-image-label,
.v2-fast-quote {
  position: absolute;
  z-index: 2;
}
.v2-image-label {
  top: 28px;
  right: 28px;
  display: grid;
  gap: 4px;
  max-width: 250px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(28,29,34,.78);
  backdrop-filter: blur(12px);
}
.v2-image-label small { color: #d6cdfa; font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.v2-image-label strong { line-height: 1.25; }
.v2-fast-quote {
  right: 28px;
  bottom: 28px;
  left: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(38,40,45,.9);
  backdrop-filter: blur(12px);
}
.v2-fast-quote span { font-size: 13px; color: rgba(255,255,255,.72); }
.v2-fast-quote a { color: #fff; font-weight: 900; text-decoration: none; white-space: nowrap; }
.v2-fast-quote a:hover { color: #ffd0aa; }

.v2-proof-strip {
  max-width: 1260px;
  margin-top: 0;
  padding: 26px 36px;
  color: var(--v2-ink);
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: 0 18px 45px rgba(34, 36, 45, .1);
}
.v2-proof-strip strong { color: var(--v2-purple); text-shadow: none; }
.v2-proof-strip span { color: #656b76; }

.placer-county-section,
.services-overview,
.events-section,
.reviews-section,
.service-areas,
.faq-section-new { padding-block: clamp(72px, 8vw, 118px); }

.placer-county-section { background: #fff; }
.placer-intro { gap: clamp(36px, 6vw, 84px); align-items: center; }
.placer-intro-image {
  padding: 26px;
  background: var(--v2-purple-soft);
  border-radius: 0;
  box-shadow: none;
}
.placer-intro-image img { background: #fff; border-radius: 0; }
.placer-intro-text h1,
.section-title,
.faq-left h2 { color: var(--v2-purple-dark); letter-spacing: -.035em; }
.placer-intro-text h1::before,
.services-overview .section-title::before,
.reviews-section .section-title::before,
.events-section .section-title::before { color: var(--v2-purple); }

.placer-features {
  margin-top: 72px;
  gap: 0;
  border-top: 1px solid #dedfe5;
  border-bottom: 1px solid #dedfe5;
}
.placer-feature-card {
  padding: 28px 24px;
  border-right: 1px solid #dedfe5;
  border-radius: 0;
  box-shadow: none;
}
.placer-feature-card:last-child { border-right: 0; }
.placer-feature-card h3 { color: var(--v2-purple-dark); }
.feature-icon-large { border-radius: 0; }

.services-overview { background: var(--v2-mist); }
.services-grid-expanded { gap: 28px; }
.service-card {
  padding-bottom: 26px;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 26px rgba(32,36,45,.08);
}
.service-card > img { height: 250px; border-radius: 0; object-fit: cover; }
.service-card h3,
.service-card p,
.service-card .service-link { margin-inline: 24px; }
.service-card h3 { margin-top: 22px; color: var(--v2-purple-dark); }
.service-link { color: var(--v2-purple); }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 20px 46px rgba(40,29,85,.15); }
.service-card::before { background: var(--v2-purple-dark); border-radius: 0; }

.cta-section,
.cta-highlight,
.cta-highlight-alt {
  color: #fff;
  background: linear-gradient(120deg, #2d3036 0%, #202226 100%);
}
.cta-highlight-alt { background: linear-gradient(120deg, var(--v2-purple-dark), var(--v2-purple)); }
.btn-primary { background: var(--v2-orange); border-color: var(--v2-orange); }
.btn-primary:hover { background: #ff9347; }

.info-section { background: #fff; }
.info-section.alternate { background: var(--v2-purple-soft); }
.info-content-with-image { gap: clamp(36px, 6vw, 80px); }
.info-image img { min-height: 390px; border-radius: 0; object-fit: cover; }

.events-section { background: #fff; }
.flip-box-front,
.flip-box-back { border-radius: 0; }
.flip-box-back { background: var(--v2-purple); }

.reviews-section { background: #e9e9eb; }
.reviews-grid { gap: 24px; }
.review-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}
.review-rating .star { color: var(--v2-orange); }
.review-author strong { color: var(--v2-purple-dark); }
.review-card::after { color: rgba(84,55,183,.08); }

.about-city-section { background: var(--v2-purple-soft); }
.map-section { border-top: 10px solid var(--v2-purple); }
.service-areas { background: #fff; }
.area-tag {
  color: var(--v2-purple);
  border-color: #c7bbed;
  border-radius: 3px;
  box-shadow: none;
}
.area-tag:hover { background: var(--v2-purple); border-color: var(--v2-purple); }

.faq-section-new { background: var(--v2-mist); }
.faq-accordion-item { border-radius: 0; }
.faq-accordion-button { color: var(--v2-purple-dark); }
.faq-plus { color: var(--v2-purple); }
.faq-right img { border-radius: 0; }

.footer { background: #2a2c30; }
.footer::before { border-color: rgba(111,82,203,.16); }
.footer h3 { color: #c9bdfa; }

.call-button-wrapper {
  right: auto;
  bottom: 20px;
  left: 50%;
  width: auto;
  max-width: calc(100% - 40px);
  transform: translateX(-50%);
}
.call-btn {
  min-width: 220px;
  padding: 18px 40px;
  background: linear-gradient(145deg, #10b981 0%, #059669 50%, #047857 100%);
  border-radius: 60px;
  box-shadow: 0 10px 40px rgba(16,185,129,.45), 0 6px 20px rgba(0,0,0,.15), inset 0 2px 0 rgba(255,255,255,.2);
}
.call-btn::before { display: block; }
.call-btn::after { display: block; }
.call-btn:hover {
  background: linear-gradient(145deg, #34d399 0%, #10b981 50%, #059669 100%);
  box-shadow: 0 15px 50px rgba(16,185,129,.55), 0 10px 30px rgba(0,0,0,.2);
}

@media (max-width: 900px) {
  .v2-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-inline: 0;
  }
  .v2-hero-copy {
    order: 2;
    width: auto;
    margin: -42px 18px 0;
    padding: 46px 34px;
  }
  .v2-hero-visual { order: 1; min-height: 440px; }
  .v2-fast-quote { left: 28px; }
  .placer-feature-card { border-right: 0; border-bottom: 1px solid #dedfe5; }
  .placer-feature-card:last-child { border-bottom: 0; }
}

@media (max-width: 768px) {
  .top-bar { text-align: center; }
  .header { background: var(--v2-purple); }
  .nav-menu { background: var(--v2-purple-dark); }
  .v2-hero { padding-top: 0; }
  .v2-hero-visual { min-height: 310px; }
  .v2-hero-visual > img { object-position: 58% center; }
  .v2-image-label { top: 16px; right: 16px; padding: 12px 14px; }
  .v2-fast-quote { right: 16px; bottom: 16px; left: 16px; padding: 14px 16px; }
  .v2-fast-quote span { display: none; }
  .v2-hero-copy {
    margin: -28px 16px 0;
    padding: 34px 24px 38px;
  }
  .v2-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.12rem, 9.7vw, 2.85rem);
    font-weight: 680;
    line-height: 1.09;
    letter-spacing: -.02em;
  }
  .v2-hero-copy > p { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
  .v2-hero-actions { display: grid; grid-template-columns: 1fr; }
  .v2-button { width: 100%; }
  .v2-trust-list { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .v2-proof-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    padding: 22px 18px;
  }
  .placer-county-section,
  .services-overview,
  .events-section,
  .reviews-section,
  .service-areas,
  .faq-section-new { padding-block: 64px; }
  .placer-features { margin-top: 46px; }
  .service-card > img { height: 220px; }
  .call-button-wrapper {
    right: auto;
    bottom: 12px;
    left: 50%;
    width: calc(50% - 12px);
    max-width: 220px;
    transform: translateX(-50%);
  }
  .call-btn {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 15px 24px;
    border-radius: 60px;
  }
  .call-text { display: inline; }
}

@media (max-width: 420px) {
  .v2-image-label strong { font-size: 12px; }
  .v2-fast-quote a { font-size: 13px; }
  .v2-hero-copy { margin-inline: 12px; padding-inline: 22px; }
  .v2-hero-copy h1 { font-size: clamp(2rem, 9.3vw, 2.55rem); }
}

/* ==========================================================
   V2 OPTION 2 — ANGULAR LOCAL AUTHORITY
   Locked 2026-08-07. Presentation-only homepage redesign.
   ========================================================== */
:root {
  --authority-navy: #173f68;
  --authority-purple: #6842cc;
  --authority-purple-bright: #9b7cff;
  --authority-orange: #ff7417;
  --authority-green: #2eb85c;
}

.top-bar { min-height: 34px; padding: 7px 0; background: var(--authority-navy); }
.top-bar p { font-size: 12px; letter-spacing: .02em; }
.top-bar .underline-text { color: #fff; }
.header { background: var(--authority-purple); box-shadow: none; }
.header::after { background: var(--authority-orange); opacity: 1; }
.nav-container { max-width: 1340px; }
.logo-title { font-size: 27px; }
.logo-subtitle { color: #fff; opacity: .86; }
.cta-btn-header { min-height: 45px; padding: 12px 19px !important; }
.cta-btn-quote { color: #fff !important; background: var(--authority-orange) !important; border-radius: 7px; }
.cta-btn-call { color: #fff !important; background: var(--authority-green) !important; border-radius: 7px; }

.v2-hero { position: relative; padding: 0 0 72px; color: #fff; background: #eef3f8; }
.v2-hero-grid { position: relative; display: flex; align-items: center; max-width: none; min-height: 650px; padding: 56px clamp(24px, 6vw, 92px) 82px; overflow: hidden; background: #dfe8f1; }
.v2-hero-copy {
  position: relative;
  z-index: 3;
  width: min(670px, 62vw);
  margin: 0;
  padding: clamp(42px, 5vw, 68px);
  color: var(--authority-navy);
  border: 1px solid rgba(255,255,255,.8);
  border-left: 6px solid var(--authority-orange);
  border-radius: 10px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 70px rgba(14,39,68,.2);
  backdrop-filter: blur(8px);
  clip-path: none;
}
.v2-eyebrow { margin-bottom: 22px; color: var(--authority-navy); letter-spacing: .15em; }
.v2-eyebrow span { background: var(--authority-orange); }
.v2-hero-copy h1 {
  max-width: 620px;
  color: var(--authority-navy);
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.25rem, 5.25vw, 5.35rem);
  font-weight: 720;
  line-height: .99;
  letter-spacing: -.045em;
}
.v2-hero-copy h1 em { display: block; color: var(--authority-purple-bright); background: none; -webkit-text-fill-color: currentColor; font-style: normal; }
.v2-hero-copy h1::after { width: 58px; height: 5px; margin-top: 28px; background: var(--authority-orange); }
.v2-location-line { margin: 22px 0 0 !important; color: var(--authority-navy) !important; font-size: 18px !important; font-weight: 750; -webkit-line-clamp: initial !important; }
.v2-hero-copy > p:not(.v2-location-line) { max-width: 520px; margin-top: 15px; color: #52677d; font-size: 15px; line-height: 1.65; }
.v2-hero-actions { margin-top: 25px; }
.v2-button { min-height: 58px; border-radius: 7px; }
.v2-button-primary { color: #fff; background: var(--authority-orange); box-shadow: none; }
.v2-button-primary:hover { background: #ff8a3d; }
.v2-button-phone { color: #fff; border-color: var(--authority-green); background: var(--authority-green); }
.v2-button-phone:hover { background: #24994b; }
.v2-trust-list { margin-top: 22px; color: #354d66; }
.v2-trust-list b { color: #22964a; }

.v2-hero-visual { position: absolute; inset: 0; z-index: 1; min-height: 0; background: #dfe8f1; }
.v2-hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: brightness(1.17) saturate(.92) contrast(.96); }
.v2-hero-visual::after { background: linear-gradient(90deg, rgba(238,243,248,.42) 0%, rgba(238,243,248,.1) 54%, transparent 100%), linear-gradient(0deg, rgba(23,63,104,.08), transparent 42%); }
.v2-image-label { display: none; }
.v2-fast-quote { right: 32px; bottom: 30px; left: auto; width: min(390px, 34vw); padding: 19px 22px; border-left: 4px solid var(--authority-orange); background: rgba(23,63,104,.88); }
.v2-fast-quote a { color: #fff; }

.v2-proof-strip {
  position: relative;
  z-index: 5;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1260px;
  margin-top: -15px;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7,23,45,.17);
}
.v2-proof-strip > div { min-height: 116px; padding: 26px 32px; border-right: 1px solid #e6e2f4; }
.v2-proof-strip > div:last-child { border-right: 0; }
.v2-proof-strip strong { color: var(--authority-navy); font-size: 18px; line-height: 1.25; }
.v2-proof-strip span { margin-top: 7px; color: #6a7280; font-size: 13px; line-height: 1.45; }
.services-overview .section-title::before { color: var(--authority-purple); }
.service-card::before { background: var(--authority-navy); }
.service-card h3 { color: var(--authority-navy); }
.service-link { color: var(--authority-purple); }
.call-button-wrapper { right: 24px; left: auto; width: auto; transform: none; }

@media (max-width: 1120px) {
  .nav-menu { gap: 19px; }
  .cta-btn-header { padding-inline: 13px !important; font-size: 12px !important; }
  .v2-hero-copy { padding-inline: 58px; }
}

@media (max-width: 900px) {
  .v2-hero { padding-bottom: 0; background: #eef3f8; }
  .v2-hero-grid { display: flex; min-height: 620px; padding: 34px 24px 54px; }
  .v2-hero-copy {
    width: min(560px, 100%);
    margin: 0 auto;
    padding: 46px 36px 42px;
    clip-path: none;
    border-top: 1px solid rgba(255,255,255,.8);
    border-bottom: 5px solid var(--authority-purple-bright);
  }
  .v2-hero-visual { min-height: 0; }
  .v2-hero-visual > img { object-position: 61% center; }
  .v2-hero-visual::after { background: rgba(238,243,248,.18); }
  .v2-fast-quote { display: none; }
  .v2-proof-strip { margin-top: 0; border-radius: 0; }
}

@media (max-width: 768px) {
  .top-bar { min-height: 32px; }
  .header { top: 32px; }
  .nav-menu { background: var(--authority-navy); }
  .nav-menu .cta-btn-header { margin: 5px 20px; text-align: center; }
  .v2-hero-grid { min-height: 570px; padding: 28px 16px 42px; }
  .v2-hero-visual { min-height: 0; }
  .v2-hero-visual > img { object-position: 64% center; }
  .v2-hero-copy { margin: 0; padding: 34px 24px 32px; }
  .v2-eyebrow { margin-bottom: 16px; font-size: 9px; letter-spacing: .12em; }
  .v2-hero-copy h1 { max-width: 560px; font-size: clamp(2.3rem, 8.8vw, 3rem); line-height: 1.02; }
  .v2-hero-copy h1::after { margin-top: 19px; }
  .v2-location-line { font-size: 16px !important; }
  .v2-hero-copy > p:not(.v2-location-line) { display: none; }
  .v2-hero-actions { grid-template-columns: 1fr 1fr; gap: 10px; }
  .v2-button { min-height: 52px; padding-inline: 12px; font-size: 13px; }
  .v2-trust-list { display: none; }
  .v2-proof-strip { grid-template-columns: 1fr; }
  .v2-proof-strip > div { min-height: 0; padding: 21px 24px; border-right: 0; border-bottom: 1px solid #e6e2f4; }
  .v2-proof-strip > div:last-child { border-bottom: 0; }
  .call-button-wrapper { right: 12px; bottom: 12px; left: auto; width: 176px; max-width: 176px; transform: none; }
  .call-btn { min-height: 52px; padding: 13px 20px; font-size: 15px; }
}

@media (max-width: 420px) {
  .v2-hero-copy { padding-inline: 20px; }
  .v2-hero-copy h1 { font-size: clamp(2.15rem, 10vw, 2.65rem); }
  .v2-location-line { font-size: 14px !important; }
  .v2-hero-actions { grid-template-columns: 1fr; }
  .v2-hero-grid { min-height: 600px; padding-inline: 12px; }
  .v2-hero-visual { min-height: 0; }
  .v2-hero-copy > p:not(.v2-location-line) { -webkit-line-clamp: 3; }
  .call-button-wrapper { width: 164px; max-width: 164px; }
}

/* ==========================================================
   EXPRESS MOBILE — structure adapted from the approved reference
   Homepage presentation only; generator placeholders stay intact.
   ========================================================== */
:root {
  --express-navy: #112f6b;
  --express-navy-deep: #0a234d;
  --express-orange: #f47a24;
  --express-ink: #1c2433;
  --express-muted: #627083;
  --express-surface: #f3f6f9;
  --express-line: #dce3ea;
}

body {
  padding-top: 126px;
  color: var(--express-ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.top-bar {
  min-height: 36px;
  padding: 7px 0;
  background: var(--express-navy-deep);
}
.express-utility p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .03em;
}
.express-utility a { color: #ffb377; font-weight: 800; text-decoration: none; }

.header {
  top: 36px;
  min-height: 90px;
  color: var(--express-ink);
  background: #fff;
  border-bottom: 1px solid var(--express-line);
  box-shadow: 0 8px 24px rgba(10,35,77,.07);
}
.header::after { height: 3px; background: var(--express-orange); }
.nav-container { min-height: 90px; max-width: 1280px; }
.logo-title { color: var(--express-navy); font-size: 30px; font-weight: 900; }
.logo-subtitle { color: var(--express-orange); font-weight: 900; letter-spacing: .17em; }
.nav-menu > li > a:not(.cta-btn-header) { color: var(--express-ink); font-size: 13px; font-weight: 750; }
.nav-menu > li > a.active { color: var(--express-navy); border-bottom-color: var(--express-orange); }
.cta-btn-header { min-height: 44px; border-radius: 4px; box-shadow: none; }
.cta-btn-quote { color: #fff !important; background: var(--express-navy) !important; }
.cta-btn-call { color: #fff !important; background: var(--express-orange) !important; }
.express-mobile-call { display: none; }

.v2-hero {
  padding: 0;
  color: #fff;
  background: var(--express-navy);
}
.v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: stretch;
  max-width: 1280px;
  min-height: 590px;
  padding: 0 24px;
  overflow: visible;
  background: transparent;
}
.v2-hero-copy {
  position: relative;
  width: auto;
  margin: 0;
  padding: 82px clamp(34px,5vw,72px) 78px 0;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.v2-hero-copy::before,
.v2-hero-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.v2-hero-copy::before {
  right: 4%;
  bottom: 8%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.v2-hero-copy::after {
  right: 15%;
  bottom: 19%;
  width: 82px;
  height: 82px;
  border: 18px solid rgba(244,122,36,.08);
  transform: rotate(18deg);
}
.v2-eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #ffb377;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.v2-eyebrow span { width: 44px; height: 4px; background: var(--express-orange); }
.v2-hero-copy h1 {
  position: relative;
  z-index: 1;
  max-width: 690px;
  color: #fff;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(3rem, 4vw, 3.25rem);
  font-stretch: condensed;
  font-style: italic;
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.v2-hero-copy h1 em {
  display: inline;
  color: var(--express-orange);
  font-style: italic;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.v2-hero-copy h1 span { display: block; }
.v2-hero-copy h1::after { width: 72px; height: 5px; margin-top: 26px; background: var(--express-orange); }
.v2-location-line {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 24px 0 0 !important;
  color: #fff !important;
  font-size: 19px !important;
  font-weight: 800;
  line-height: 1.4 !important;
}
.v2-hero-copy > p:not(.v2-location-line) {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin-top: 16px;
  color: rgba(255,255,255,.8);
  font-size: 16px;
  line-height: 1.65;
}
.v2-hero-actions { position: relative; z-index: 1; margin-top: 28px; }
.v2-button { min-height: 56px; border-radius: 4px; font-size: 14px; }
.v2-button-primary { color: #fff; background: var(--express-orange); box-shadow: none; }
.v2-button-primary:hover { color: #fff; background: #ff934c; }
.v2-button-phone { color: #fff; border-color: rgba(255,255,255,.55); background: transparent; }
.v2-button-phone:hover { color: var(--express-navy); background: #fff; }
.v2-trust-list { position: relative; z-index: 1; color: rgba(255,255,255,.86); }
.v2-trust-list b { color: #ffb377; }

.v2-hero-visual {
  position: relative;
  inset: auto;
  min-height: 590px;
  overflow: visible;
  background: #d9e3ed;
}
.v2-hero-visual > img { height: 100% !important; object-position: 57% center; filter: saturate(.85) contrast(1.03); }
.v2-hero-visual::after { background: linear-gradient(90deg, rgba(17,47,107,.2), transparent 48%), linear-gradient(0deg, rgba(10,35,77,.36), transparent 50%); }
.v2-image-label { display: grid; top: 30px; right: 30px; border-left: 4px solid var(--express-orange); border-radius: 0; background: rgba(10,35,77,.9); }
.v2-image-label small { color: #ffb377; }
.v2-fast-quote {
  right: 30px;
  bottom: 30px;
  left: 30px;
  width: auto;
  border-left: 4px solid var(--express-orange);
  border-radius: 0;
  background: rgba(10,35,77,.92);
}

.v2-proof-strip {
  grid-template-columns: repeat(3,1fr);
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}
.v2-proof-strip > div { min-height: 126px; padding: 27px 32px; border-right: 1px solid var(--express-line); }
.v2-proof-strip strong {
  color: var(--express-navy);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}
.v2-proof-strip span { color: var(--express-muted); }

.placer-county-section,
.services-overview,
.events-section,
.reviews-section,
.service-areas,
.faq-section-new { padding-block: clamp(72px,8vw,112px); }
.placer-county-section { background: var(--express-surface); }
.placer-intro-image { padding: 0; background: transparent; }
.placer-intro-image img { min-height: 430px; object-fit: cover; }
.placer-intro-text h1,
.section-title,
.faq-left h2 {
  color: var(--express-navy);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.placer-intro-text h1::before,
.services-overview .section-title::before,
.reviews-section .section-title::before,
.events-section .section-title::before { color: var(--express-orange); }
.placer-feature-card { background: #fff; }
.placer-feature-card h3 { color: var(--express-navy); }

.services-overview { background: #fff; }
.services-grid-expanded { gap: 22px; }
.service-card { border: 1px solid var(--express-line); border-radius: 14px; box-shadow: 0 10px 28px rgba(10,35,77,.08); overflow: hidden; }
.service-card::before { background: var(--express-orange); }
.service-card > img { height: 235px; }
.service-card h3 { color: var(--express-navy); }
.service-link { color: var(--express-orange); font-weight: 850; }

.cta-section,
.cta-highlight,
.cta-highlight-alt { background: var(--express-orange); }
.cta-highlight-alt { background: var(--express-navy); }
.btn-primary { color: var(--express-navy); background: #fff; border-color: #fff; }
.btn-primary:hover { color: #fff; background: var(--express-navy-deep); border-color: var(--express-navy-deep); }
.info-section.alternate { background: var(--express-surface); }
.info-image img { border-radius: 14px; }
.flip-box-front,
.flip-box-back { border-radius: 14px; }
.flip-box-back { background: var(--express-navy); }
.reviews-section { background: var(--express-surface); }
.review-card { border-radius: 14px; box-shadow: 0 8px 24px rgba(10,35,77,.07); }
.review-rating .star { color: var(--express-orange); }
.review-author strong { color: var(--express-navy); }
.about-city-section { background: #fff; }
.map-section { border-top-color: var(--express-orange); }
.area-tag { color: var(--express-navy); border-color: #b8c5d7; border-radius: 999px; }
.area-tag:hover { background: var(--express-navy); border-color: var(--express-navy); }
.faq-section-new { background: var(--express-surface); }
.faq-accordion-item { border-radius: 0; border-color: var(--express-line); }
.faq-accordion-button { color: var(--express-navy); }
.faq-plus { color: var(--express-orange); }
.faq-right img { border-radius: 14px; }
.footer { background: var(--express-navy-deep); }
.footer h3 { color: #ffb377; }

@media (max-width: 900px) {
  body { padding-top: 118px; }
  .v2-hero-grid { grid-template-columns: 1fr; padding: 0; }
  .v2-hero-copy { order: 1; padding: 62px 28px 52px; }
  .v2-hero-visual { order: 2; min-height: 420px; }
  .v2-proof-strip { margin-top: 0; }
}

@media (max-width: 768px) {
  body { padding-top: 190px; }
  .top-bar { min-height: 80px; padding: 12px 0; }
  .express-utility p { display: grid; justify-content: start; gap: 1px; font-size: 11px; text-align: left; }
  .express-utility p span:nth-child(2) { display: block; }
  .express-utility a { font-size: 12px; }
  .header { top: 80px; min-height: 110px; }
  .nav-container { min-height: 110px; padding-inline: 12px; gap: 8px; }
  .generated-site-logo { flex: 1 1 auto; min-width: 0; max-width: 176px; }
  .generated-site-logo img { width: 100% !important; height: 62px !important; }
  .logo-title { font-size: 25px; }
  .logo-subtitle { font-size: 10px; }
  .express-mobile-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 48px;
    margin-left: auto;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    border-radius: 8px;
    background: var(--express-orange);
    box-shadow: 0 10px 24px rgba(244,122,36,.28);
  }
  .mobile-menu-toggle {
    display: flex;
    flex: 0 0 38px;
    width: 38px;
    height: 44px;
    padding: 8px;
  }
  .nav-menu { background: var(--express-navy-deep); }
  .nav-menu > li > a:not(.cta-btn-header) { color: #fff; }
  .nav-menu .cta-btn-header { color: #fff !important; }
  .mobile-menu-toggle span { background: var(--express-navy); }
  .v2-hero-grid { min-height: 0; }
  .v2-hero-copy { margin: 0; padding: 50px 24px 46px; }
  .v2-eyebrow { margin-bottom: 18px; font-size: 10px; }
  .v2-hero-copy h1 { font-size: clamp(2.1rem,9.4vw,2.8rem); line-height: 1.02; letter-spacing: -.035em; }
  .v2-location-line { font-size: 17px !important; }
  .v2-hero-copy > p:not(.v2-location-line) { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
  .v2-hero-actions { grid-template-columns: 1fr; }
  .v2-trust-list { display: grid; grid-template-columns: 1fr; }
  .v2-hero-visual { min-height: 330px; }
  .v2-image-label { top: 16px; right: 16px; }
  .v2-fast-quote { right: 16px; bottom: 16px; left: 16px; }
  .v2-proof-strip { grid-template-columns: 1fr; }
  .v2-proof-strip > div { min-height: 0; padding: 22px 24px; border-right: 0; border-bottom: 1px solid var(--express-line); }
  .placer-intro-image img { min-height: 300px; }
  .service-card > img { height: 220px; }
  .call-button-wrapper { right: 12px; left: auto; width: 176px; max-width: 176px; transform: none; }
}

@media (max-width: 420px) {
  .express-utility p { gap: 12px; }
  .v2-hero-copy { padding-inline: 21px; }
  .v2-hero-copy h1 { font-size: clamp(2.05rem,9.2vw,2.4rem); }
  .v2-location-line { font-size: 15px !important; }
  .v2-hero-visual { min-height: 290px; }
}

/* ==========================================================
   LOCKED DISPLAY TYPE — approved condensed italic heading style
   Applies to every generated V2 page through the shared stylesheet.
   ========================================================== */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif !important;
  font-style: italic !important;
  font-weight: 900 !important;
  line-height: .98 !important;
  letter-spacing: .012em !important;
  text-transform: uppercase !important;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 { color: var(--express-navy); }

body h1 { font-size: clamp(3rem, 5vw, 4.25rem); }
body h2 { font-size: clamp(2.45rem, 4vw, 3.45rem); }
body h3 { font-size: clamp(1.65rem, 2.5vw, 2.15rem); }

.v2-hero-copy h1 { color: #fff; }
.v2-hero-copy h1 em { color: var(--express-orange); }
.cta-section h1,
.cta-section h2,
.cta-section h3,
.flip-box-front h3,
.flip-box-back h3 { color: #fff; }
.footer h1,
.footer h2,
.footer h3,
.footer h4 { color: #ffb377; }

.v2-eyebrow,
.section-eyebrow,
.section-kicker {
  color: var(--express-orange);
  font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  body h1 { font-size: clamp(2.55rem, 11vw, 3.25rem); }
  body h2 { font-size: clamp(2.15rem, 9vw, 2.8rem); }
  body h3 { font-size: clamp(1.5rem, 6.5vw, 1.9rem); }
  .v2-hero-copy h1 { font-size: clamp(2.1rem, 9.4vw, 2.8rem); }
}
