/* =========================================================
   CLEAN CSS - GARAGE DOOR REPAIR DENTON TX
   Organized and deduplicated. Ready to paste.
   Palette: Dark Green #003B17 | Orange #FB691B | Light Green #EDF5E3
========================================================= */

/* ================= GLOBAL VARIABLES & BASE ================= */
:root {
  --brand-dark: #003B17;
  --brand-highlight: #A8B28A;
  --brand-cta: #FB691B;
  --brand-alt: #EDF5E3;
  --brand-bg: #F6F5EB;
  --text-main: #1A1A1A;
  --text-white: #ffffff;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--brand-bg);
  color: var(--text-main);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .fw-black {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}

.text-accent {
  color: #FB691B;
}

.object-fit-cover {
  object-fit: cover;
}

.bg-orange {
  background-color: #FB691B !important;
}

.text-orange {
  color: #FB691B;
}

.text-green {
  color: #003B17;
}

.text-highlight {
  color: #FB691B;
}

/* ================= NAVIGATION ================= */
.main-nav {
  background-color: #E7E8D9;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 59, 23, 0.1);
  padding: 15px 0;
}

.nav-logo {
  max-height: 90px;
  transition: var(--transition);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-link {
  color: var(--brand-dark) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: 0 10px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--brand-cta);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-link {
  background-color: var(--brand-dark);
  color: var(--text-white);
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.nav-cta-link:hover {
  background-color: var(--brand-cta);
  transform: translateY(-2px);
}

.custom-toggler {
  border-color: var(--brand-dark);
}

.custom-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 59, 23, 0.12);
}

.repair-tabs-section .nav-pills {
  background: #f8f9fa;
  border-bottom: 2px solid #EDF5E3;
}

.repair-tabs-section .nav-link {
  border-radius: 0;
  padding: 25px 15px;
  color: #003B17;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.repair-tabs-section .nav-link.active {
  background-color: #003B17 !important;
  color: #ffffff !important;
}

.repair-tabs-section .nav-link.active .tab-icon-wrapper {
  color: #FB691B;
  transform: scale(1.1);
}

.repair-tabs-section .nav-link:hover:not(.active) {
  background-color: #EDF5E3;
  color: #003B17;
}

.main-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-nav .dropdown-toggle::after {
  position: static;
  width: auto;
  height: auto;
  margin-left: 4px;
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-left: .3em solid transparent;
  background: transparent;
}

.main-nav .dropdown-toggle:hover::after {
  width: auto;
}

.main-nav .dropdown-menu {
  border: none;
  border-radius: 12px;
  padding: 10px 0;
  margin-top: 12px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 59, 23, 0.14);
}

.main-nav .dropdown-item {
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: .5px;
  padding: 10px 20px;
  transition: var(--transition);
}

.main-nav .dropdown-item:hover {
  background-color: var(--brand-cta);
  color: #ffffff;
}


/* ================= HERO SECTION ================= */
.hero-minimalist {
  background-color: var(--brand-bg);
  overflow: hidden;
  padding-top: 5%;
}

.hero-left-card {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-dark);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.kicker-dot {
  width: 9px;
  height: 9px;
  background: var(--brand-cta);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(251, 105, 27, 0.2);
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
  font-weight: 900;
  color: #FB691B;
}

.hero-title span {
  display: block;
  color: var(--brand-dark);
}

.hero-title span::after {
  content: "";
  display: block;
  width: 90px;
  height: 6px;
  background: var(--brand-cta);
  border-radius: 10px;
  margin-top: 10px;
}

.hero-description {
  font-size: 1.12rem;
  color: #4b4b4b;
  line-height: 1.8;
  max-width: 570px;
  margin-bottom: 28px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 28px 0 34px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: transform 0.3s ease;
  cursor: default;
}

.hero-badge-item span {
  font-size: 0.75rem;
  white-space: nowrap;
}

.badge-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.badge-one {
  background: var(--brand-dark);
  color: #ffffff;
  border-radius: 12px;
}

.badge-one .badge-icon {
  background: rgba(255,255,255,0.15);
  color: var(--brand-cta);
}

.badge-two {
  background: rgba(251, 105, 27, 0.08);
  color: var(--brand-dark);
  border: 1px solid rgba(251, 105, 27, 0.25);
  border-radius: 40px;
}

.badge-two .badge-icon {
  background: var(--brand-cta);
  color: #ffffff;
  border-radius: 50%;
}

.badge-three {
  background: transparent;
  color: var(--brand-dark);
  border: 2px dashed rgba(0, 59, 23, 0.25);
  border-radius: 8px;
}

.badge-three .badge-icon {
  background: rgba(0, 59, 23, 0.08);
  color: var(--brand-cta);
}

.hero-badge-item:hover {
  transform: translateY(-5px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 28px;
}

.phone-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #FB691B;
  color: #ffffff;
  padding: 18px 40px 18px 30px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 15px;
  clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
}

.cta-icon-style {
  font-size: 1.4rem;
  color: #ffffff;
}

.cta-text-horizontal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.cta-number {
  font-size: 1.3rem;
  font-weight: 900;
}

.phone-cta-arrow:hover {
  background: #003B17;
  transform: translateX(10px);
  color: #ffffff;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 59, 23, 0.10);
}

.hero-trust-row div {
  background: rgba(255,255,255,0.65);
  border-radius: 18px;
  padding: 14px;
}

.hero-trust-row strong {
  display: block;
  color: var(--brand-cta);
  font-size: 1.1rem;
  line-height: 1.1;
}

.hero-trust-row span {
  display: block;
  color: #555;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.image-frame-wrapper {
  position: relative;
  padding: 20px;
}

.image-frame {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.image-frame img {
  width: 100%;
  transition: transform 0.6s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.stat-card {
  position: absolute;
  bottom: 10%;
  left: -5%;
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.stat-num {
  font-size: 1.4rem;
  color: var(--brand-cta);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #888;
}

.badge-custom {
  background-color: #FB691B;
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ================= OFFER & COUPONS ================= */
.offer-modern {
  background: #F6F5EB;
  overflow: hidden;
  padding: 100px 0;
}

.offer-split-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background: #ffffff;
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 59, 23, 0.08);
  border: 1px solid rgba(0, 59, 23, 0.05);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-alt);
  color: #003B17;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #FB691B;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FB691B;
  border-radius: 50%;
  animation: badge-pulse 1.5s infinite;
}

.offer-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #003B17;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.offer-lead {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 35px;
  max-width: 550px;
  line-height: 1.7;
}

.offer-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #003B17;
  font-weight: 700;
  font-size: 0.95rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: #A8B28A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.check-icon::after {
  content: "✓";
  color: #003B17;
  font-size: 14px;
  font-weight: 900;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-btn-modern {
  background: #FB691B;
  color: #fff;
  padding: 20px 35px;
  font-weight: 900;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 15px 30px rgba(251, 105, 27, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-btn-modern:hover {
  background: #003B17;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 59, 23, 0.2);
}

.cta-subtext {
  font-size: 0.85rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
}

.coupon-frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 59, 23, 0.15);
  transition: transform 0.5s ease;
  cursor: pointer;
}

.coupon-frame:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) scale(1.02);
}

.coupon-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.coupon-frame:hover .coupon-shine {
  left: 150%;
}

.coupon-modern-card {
  background: linear-gradient(135deg, #003B17 0%, #005a24 100%);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  color: white;
  box-shadow: 0 25px 60px rgba(0, 59, 23, 0.25);
  overflow: hidden;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.coupon-modern-card:hover {
  transform: perspective(1000px) rotateY(-8deg) rotateX(5deg) translateY(-10px);
  box-shadow: 20px 30px 70px rgba(0, 59, 23, 0.35);
}

.coupon-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.coupon-brand-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #FB691B;
  backdrop-filter: blur(5px);
}

.coupon-sub {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

.coupon-main-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}

.value-row {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 10px;
}

.value-row .currency {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 10px;
  color: #FB691B;
}

.value-row .amount {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -2px;
}

.value-row .off-text {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 35px;
  margin-left: 5px;
}

.coupon-details {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 25px;
  max-width: 250px;
}

.coupon-features-inline {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  font-weight: 700;
}

.coupon-features-inline i {
  color: #FB691B;
}

.coupon-divider {
  position: relative;
  margin: 30px -40px;
  display: flex;
  align-items: center;
}

.cut-line {
  width: 100%;
  height: 2px;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
}

.cut-circle {
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}

.cut-circle.left {
  left: -15px;
}

.cut-circle.right {
  right: -15px;
}

.coupon-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qr-placeholder {
  font-size: 2.5rem;
  opacity: 0.9;
}

.promo-code-wrap {
  text-align: right;
}

.code-label {
  font-size: 0.6rem;
  letter-spacing: 1px;
  display: block;
  opacity: 0.7;
}

.actual-code {
  font-weight: 900;
  font-size: 1.1rem;
  color: #FB691B;
}

.coupon-modern-card:hover .coupon-shine {
  left: 100%;
}

.denton-coupon-frame {
  position: relative;
  background: #fdfdfd;
  border: 3px dashed #003B17;
  border-radius: 15px;
  padding: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.coupon-cut-icon {
  position: absolute;
  top: 5px;
  right: 20px;
  color: #003B17;
  font-size: 1.5rem;
  transform: rotate(90deg);
}

.coupon-inner-split {
  display: flex;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.coupon-left-info {
  flex: 1.2;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coupon-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #003B17;
  font-weight: 900;
  line-height: 1;
}

.coupon-logo i {
  font-size: 2.5rem;
  color: #FB691B;
}

.coupon-logo span {
  font-size: 1.2rem;
  letter-spacing: -0.5px;
}

.coupon-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.coupon-features-list li {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coupon-features-list i {
  color: #003B17;
}

.coupon-phone-bar {
  background: #FB691B;
  padding: 10px;
  border-radius: 50px 5px 5px 50px;
  color: #fff;
  margin-left: -25px;
  padding-left: 35px;
}

.coupon-right-offer {
  flex: 1;
  background: #003B17;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.offer-value {
  font-size: 4.5rem;
  font-weight: 900;
  color: #FB691B;
  line-height: 0.8;
  margin-bottom: 10px;
  text-shadow: 2px 2px 0px #fff;
}

.offer-value .dollar {
  font-size: 2rem;
  vertical-align: top;
  margin-right: -5px;
}

.offer-value .off {
  font-size: 1.5rem;
  display: block;
  color: #fff;
  text-shadow: none;
  letter-spacing: 2px;
}

.offer-description {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.coupon-footer-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

.coupon-bottom-strip {
  background: #003B17;
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px;
  margin: 5px -10px -10px -10px;
}

.coupon-link-wrapper {
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.coupon-link-wrapper:hover {
  transform: scale(1.02);
}

.coupon-link-wrapper, .coupon-link-wrapper:hover {
  color: inherit;
  text-decoration: none;
}

.offer-image-container-large {
  padding: 20px 0;
  width: 100%;
}

.static-coupon-wrapper-large {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
  border: 3px dashed #003B17;
  padding: 8px;
  cursor: pointer;
}

.static-coupon-wrapper-large:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 59, 23, 0.25) !important;
  border-color: #FB691B;
}

.static-coupon-wrapper-large img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}

.static-coupon-wrapper-large:hover img {
  filter: brightness(0.9);
}

.image-coupon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 59, 23, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.static-coupon-wrapper-large:hover .image-coupon-hover {
  opacity: 1;
}

/* ================= BRAND MARQUEE ================= */
.brand-marquee {
  background: #E7E8D9;
  border-top: 1px solid rgba(0, 59, 23, 0.05);
}

.brand-subtitle {
  color: var(--brand-dark);
  font-size: 0.85rem;
  letter-spacing: 2px;
  opacity: 0.7;
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
}

.marquee-wrapper::before, .marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-scroll {
  display: flex;
  width: max-content;
  animation: brand-scroll 40s linear infinite;
}

.brand-item {
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.marquee-wrapper:hover .marquee-scroll {
  animation-play-state: paused;
}

/* ================= COMMON SECTION STYLES ================= */
.section-heading {
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-tag, .cta-mini-tag {
  display: inline-block;
  background: var(--brand-alt);
  color: var(--brand-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--brand-dark);
}

.section-heading p {
  color: #555;
  font-size: 1.05rem;
}

.section-tag {
  background: rgba(251, 105, 27, 0.1);
  color: #FB691B;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.cta-mini-tag {
  background: rgba(251, 105, 27, 0.2);
  color: #FB691B;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(251, 105, 27, 0.3);
}

/* ================= SERVICES & COMPARISON ================= */
.repair-services-section {
  background-color: #fcfcfc;
}

.service-card-horizontal {
  display: flex;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 59, 23, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card-horizontal:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border-color: #FB691B;
}

.service-icon-large {
  min-width: 70px;
  height: 70px;
  background: #003B17;
  color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 25px;
  transition: 0.3s;
}

.service-card-horizontal:hover .service-icon-large {
  background: #FB691B;
  transform: scale(1.1);
}

.service-details {
  position: relative;
}

.service-num-ghost {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,0,0,0.03);
  line-height: 1;
}

.service-details h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #003B17;
  margin-bottom: 10px;
}

.service-details p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.vertical-service-image {
  position: relative;
  min-height: 400px;
}

.service-card-modern {
  position: relative;
  display: flex;
  background: #ffffff;
  padding: 40px 30px 30px 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 59, 23, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  margin-top: 10px;
  background-color: #F6F5EB;
}

.service-num-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: #FB691B;
  color: #fff;
  font-weight: 900;
  padding: 5px 15px;
  border-radius: 10px;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(251, 105, 27, 0.3);
}

.service-icon-box {
  min-width: 70px;
  height: 70px;
  background: #f4f7f4;
  color: #003B17;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 25px;
  transition: 0.3s;
}

.service-card-modern.featured-card .accent-bg {
  background: #003B17;
  color: #fff;
}

.service-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #003B17;
  margin: 0;
}

.service-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
}

.service-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 59, 23, 0.08);
  border-color: #FB691B;
}

.service-card-modern:hover .service-icon-box {
  background: #FB691B;
  color: #fff;
  transform: rotate(-5deg);
}

.comparison-container {
  position: relative;
  background-color: #003B17;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px;
}

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

.comparison-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 59, 23, 0.9));
  color: #FFFFFF;
}

.comparison-outer-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-img-responsive {
  width: 100%;
  height: auto;
  display: block;
}

.service-area-badge {
  display: inline-block;
  background: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #003B17;
  border: 1px solid rgba(0, 59, 23, 0.1);
}

.service-locations {
  background: #f8f9fa;
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-block;
  font-size: 0.85rem;
  color: #003B17;
  border-left: 4px solid #003B17;
}

/* ================= FAQ SECTION ================= */
.faq-section {
  background-color: #ffffff;
}

.faq-side-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 5px solid #FB691B;
}

.custom-faq-accordion .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 15px !important;
  overflow: hidden;
}

.custom-faq-accordion .accordion-button {
  background-color: #F8F9F3;
  color: #003B17;
  padding: 22px 25px;
  font-size: 1.1rem;
  border: none;
  box-shadow: none;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
  background-color: #003B17;
  color: #ffffff;
}

.custom-faq-accordion .accordion-body {
  line-height: 1.6;
  padding: 25px;
  color: #444;
}

/* ================= CONTACT SECTION ================= */
.contact-details-section {
  padding: 100px 0;
  background: #fdfdfd;
}

.contact-panel {
  background: #fff;
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.06);
}

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

.contact-info-card {
  background: var(--brand-bg);
  padding: 20px;
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid rgba(0, 59, 23, 0.08);
  transition: 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-info-card i {
  background: #003B17;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.contact-info-card span {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-info-card strong {
  display: block;
  color: var(--brand-dark);
  font-weight: 900;
  line-height: 1.4;
}

.contact-form-placeholder {
  margin-top: 30px;
  padding: 20px;
  border: 2px dashed rgba(0,0,0,0.1);
  text-align: center;
  border-radius: 12px;
  color: #888;
}

.custom-input {
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 59, 23, 0.08) !important;
  border-radius: 12px !important;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.custom-input:focus {
  background-color: #fff !important;
  border-color: #FB691B !important;
  box-shadow: 0 0 0 4px rgba(251, 105, 27, 0.1) !important;
}

.contact-form-wrapper {
  background-color: #f9faf7 !important;
  border: 1px solid rgba(0, 59, 23, 0.03);
}

.cta-form-btn {
  background-color: #FB691B !important;
  border: none;
  border-radius: 12px;
  transition: 0.3s;
}

.cta-form-btn:hover {
  background-color: #e55a15 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(251, 105, 27, 0.3) !important;
}

.custom-input::placeholder {
  color: #999;
  font-size: 0.95rem;
}

.contact-direct-call-btn {
  background-color: #003B17;
  color: #ffffff !important;
  border-radius: 50px;
  border: 2px solid #003B17;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.contact-direct-call-btn:hover {
  background-color: transparent;
  color: #003B17 !important;
  border-color: #FB691B;
  transform: scale(1.05);
}

.contact-direct-call-btn i {
  color: #FB691B;
}

.contact-direct-call-btn:hover i {
  color: #003B17;
}

.contact-info-card:hover i {
  background: #FB691B;
  transform: rotate(5deg);
}

.form-header h3 {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.form-header p {
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 500;
}

.form-header::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #FB691B;
  margin: 15px auto 0;
  border-radius: 10px;
}

/* ================= FOOTER ================= */
.card-footer-mini {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  color: #003B17;
}

.card-footer-mini i {
  color: #FB691B;
  margin-right: 5px;
}

.site-footer {
  background: var(--brand-dark);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-logo {
  max-width: 220px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.site-footer p {
  color: rgba(255,255,255,0.7);
}

.site-footer h4 {
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-cta);
}

.footer-phone {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand-cta);
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--brand-cta);
  color: #fff;
  transform: translateY(-3px);
}

.footer-map-container {
  border: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 0;
}

.footer-area-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer-area-text strong {
  color: #fff;
}

.footer-brand-phone {
  color: #fff !important;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  transition: 0.3s;
  display: inline-block;
}

.footer-brand-phone i {
  color: #FB691B;
}

.footer-brand-phone:hover {
  color: #FB691B !important;
  transform: translateX(5px);
}

.footer-logo-large {
  max-width: 280px;
  width: 100%;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.footer-logo-large:hover {
  transform: scale(1.02);
}

.footer-call-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 25px 10px 10px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.footer-call-pill .icon-circle {
  background: #FB691B;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(251, 105, 27, 0.4);
}

.footer-call-pill .call-text {
  display: flex;
  flex-direction: column;
}

.footer-call-pill .call-text small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-call-pill .call-text strong {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 800;
}

.footer-call-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FB691B;
  transform: translateY(-3px);
}

.footer-call-pill:hover .icon-circle {
  transform: rotate(15deg);
  background: #fff;
  color: #FB691B;
}

/* ================= SPRING REPAIR SECTION ================= */
.spring-repair-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #F6F5EB 100%);
  overflow: hidden;
}

.spring-content {
  position: relative;
  z-index: 2;
}

.spring-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #EDF5E3;
  color: #003B17;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.spring-tag i {
  color: #FB691B;
}

.spring-content h2 {
  color: #1A1A1A;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 18px;
}

.spring-content h2 span {
  display: block;
  color: #003B17;
  font-size: 0.95em;
}

.spring-title {
  color: #003B17 !important;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  margin-bottom: 2px;
}

.spring-subtitle {
  display: block;
  color: #FB691B !important;
  font-size: 1rem !important;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
}

.spring-content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.spring-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.spring-highlights div {
  padding: 12px 10px;
  border-left: 3px solid #FB691B;
}

.spring-highlights div:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 59, 23, 0.12);
}

.spring-highlights strong {
  display: block;
  color: #FB691B;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.spring-highlights span {
  display: block;
  color: #003B17;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.4;
}

.spring-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FB691B;
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(251, 105, 27, 0.28);
  transition: 0.3s ease;
}

.spring-btn:hover {
  background: #003B17;
  color: #ffffff;
  transform: translateY(-4px);
}

.spring-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spring-card-main {
  position: relative;
  z-index: 3;
  width: min(100%, 430px);
  background: #003B17;
  color: #ffffff;
  border-radius: 34px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 35px 90px rgba(0, 59, 23, 0.22);
}

.spring-icon {
  width: 92px;
  height: 92px;
  background: #FB691B;
  color: #ffffff;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin: 0 auto 26px;
  animation: springPulse 2.4s infinite;
}

.spring-card-main h3 {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.spring-card-main p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 0;
}

.spring-floating-card {
  position: absolute;
  z-index: 4;
  background: #ffffff;
  border: 1px solid rgba(0, 59, 23, 0.08);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 25px 65px rgba(0, 59, 23, 0.14);
  animation: floatSoft 4s ease-in-out infinite;
}

.spring-floating-card strong {
  display: block;
  color: #FB691B;
  font-size: 1.1rem;
  font-weight: 900;
}

.spring-floating-card span {
  display: block;
  color: #003B17;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.top-card {
  top: 70px;
  right: 10px;
}

.bottom-card {
  bottom: 80px;
  left: 10px;
  animation-delay: 1s;
}

.spring-ring {
  position: absolute;
  border: 2px dashed rgba(251, 105, 27, 0.25);
  border-radius: 50%;
  animation: rotateRing 18s linear infinite;
}

.ring-one {
  width: 420px;
  height: 420px;
}

.ring-two {
  width: 300px;
  height: 300px;
  border-color: rgba(0, 59, 23, 0.18);
  animation-direction: reverse;
}

/* ================= OPENER REPAIR SECTION ================= */
.opener-repair-section {
  background-color: #EDF5E3;
  overflow: hidden;
}

.opener-title {
  color: #003B17 !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 2px;
}

.opener-subtitle {
  display: block;
  color: #FB691B !important;
  font-size: 0.65rem !important;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.opener-image-wrapper {
  z-index: 1;
}

.rounded-custom {
  border-radius: 40px;
  border: 10px solid #fff;
}

.brand-overlay {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  border-left: 5px solid #FB691B;
}

.opener-shape-blob {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(0, 59, 23, 0.05);
  border-radius: 50%;
  z-index: -1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #003B17;
  font-size: 0.9rem;
}

.feature-item i {
  color: #FB691B;
}

.opener-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FB691B;
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.3s ease;
  box-shadow: 0 15px 30px rgba(251, 105, 27, 0.3);
}

.opener-action-btn:hover {
  background: #003B17;
  color: #fff;
  transform: translateY(-5px);
}

.opener-mini-label {
  background: #003B17;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* ================= TRACK REPAIR SECTION ================= */
.repair-title.align-target {
  line-height: 1.2;
  color: #003B17;
  font-weight: 900;
}

.track-repair-section {
  background-color: #ffffff;
  overflow: hidden;
}

.repair-mini-label {
  background: #FB691B;
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.repair-title {
  color: #003B17;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-top: 15px;
}

.repair-subtitle {
  display: block;
  color: #FB691B;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

.repair-feature-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.repair-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.feature-icon {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px;
  background: #EDF5E3;
  color: #003B17;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
}

.feature-icon i {
  display: inline-block;
  line-height: 1;
}

.feature-text strong {
  display: block;
  color: #003B17;
  font-size: 1.05rem;
  font-weight: 800;
}

.feature-text span {
  font-size: 0.85rem;
  color: #666;
}

.btn-main-repair {
  background: #003B17;
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0, 59, 23, 0.2);
}

.btn-main-repair:hover {
  background: #FB691B;
  color: #fff;
  transform: translateY(-3px);
}

.no-fee-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #444;
  font-size: 0.9rem;
}

.no-fee-tag i {
  color: #28a745;
}

.repair-image-container {
  position: relative;
  padding: 20px;
}

.repair-main-img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  min-height: 400px;
}

.satisfaction-card {
  position: absolute;
  top: 40px;
  right: 0;
  background: #fff;
  padding: 15px 25px;
  border-radius: 15px;
  text-align: center;
}

.repair-tabs-container {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
}

/* ================= TESTIMONIALS ================= */
.testimonials-grid-section {
  background-color: #F8F9F3;
}

.static-testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 59, 23, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.static-testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #003B17;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #003B17;
}

.client-meta strong {
  display: block;
  color: #003B17;
  font-size: 1.1rem;
  line-height: 1.2;
}

.client-meta span {
  font-size: 0.8rem;
  color: #777;
  font-weight: 700;
  text-transform: uppercase;
}

.stars i {
  color: #FFC107;
  font-size: 0.85rem;
}

.testimonial-short {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 0;
}

/* ================= QUESTIONS / TABS ================= */
.tab-icon-wrapper {
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.timer-badge {
  background: #EDF5E3;
  padding: 25px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  border: 3px solid #003B17;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.tab-content-title {
  color: #003B17;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.tab-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tab-side-img {
  max-height: 250px;
  width: 100%;
  object-fit: cover;
  border: 4px solid #fff;
  transition: transform 0.3s ease;
}

.tab-pane.active .tab-side-img:hover {
  transform: scale(1.03);
}

.assessment-item {
  background-color: #EDF5E3;
  border: 1px solid rgba(0, 59, 23, 0.1);
  transition: all 0.3s ease;
}

.assessment-item:hover {
  background-color: #fff;
  border-color: #FB691B;
  transform: translateY(-3px);
}

.assessment-icon {
  color: #FB691B;
  font-size: 1.5rem;
}

/* ================= QUICK CTA ================= */
/* Palette Check:
   Deep Green: #003B17
   Sage: #A8B28A
   Orange: #FB691B
   Alt Bg: #EDF5E3
*/

.split-cta-section .display-phone-number {
    transition: color 0.3s ease;
    font-weight: 900;
}

.split-cta-section .display-phone-number:hover {
    color: #A8B28A !important; /* Sage highlight on hover */
}

/* Primary CTA Button - Very Important Strategy */
.btn-primary-strategy {
  display: inline-block;
  background-color: #FB691B; /* Primary Orange */
  color: #FFFFFF !important;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 8px; /* Clean, modern squareness */
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary-strategy:hover {
  background-color: #E85A10; /* Hover Strategy Darker Orange */
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(251, 105, 27, 0.3);
}

/* Utilities used */
.ls-1 { letter-spacing: 1px; }
.fw-black { font-weight: 900; }

/* ================= MISCELLANEOUS ================= */
.phone-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  opacity: 0.9;
}

.phone-num {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
}

.featured-accent {
  background: linear-gradient(to right, #ffffff, #fef8f5);
  border-left: 5px solid #FB691B;
}

.image-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(0,59,23,0.9), transparent);
  color: #fff;
}

.status-indicator {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FB691B;
  background: rgba(251, 105, 27, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

.border-orange {
  border-color: #FB691B !important;
  border-top: 5px solid #FB691B !important;
}

/* ================= ANIMATIONS ================= */
@keyframes badge-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

@keyframes brand-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes springPulse {
  0%, 100% {
  transform: scale(1);
  box-shadow: 0 0 0 0 rgba(251, 105, 27, 0.35);
  }
  50% {
  transform: scale(1.06);
  box-shadow: 0 0 0 16px rgba(251, 105, 27, 0);
  }
}

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

@keyframes rotateRing {
  from {
  transform: rotate(0deg);
  }
  to {
  transform: rotate(360deg);
  }
}

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

/* ================= RESPONSIVE MEDIA QUERIES ================= */
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-link {
    font-size: 0.8rem;
    margin: 0 5px;
  }

  .nav-cta-link {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

}

@media (max-width: 991px) {
  .hero-left-card {
    padding: 20px 0;
  }

  .stat-card {
    left: 5%;
    bottom: 5%;
  }

  .hero-title {
    text-align: center;
    font-size: 3.5rem;
  }

  .hero-title span::after {
    margin: 10px auto;
  }

  .hero-description {
    text-align: center;
    margin: 0 auto 28px;
  }

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

  .comparison-container {
    min-height: 400px;
    margin-top: 20px;
  }

  .service-card-horizontal {
    flex-direction: column;
    text-align: center;
  }

  .service-icon-large {
    margin: 0 auto 20px;
  }

  .vertical-service-image {
    height: 500px;
  }

  .faq-info-wrapper {
    text-align: center;
    margin-bottom: 20px;
  }

  .custom-faq-accordion {
    margin-top: 20px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .quick-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .spring-repair-section {
    padding: 80px 0;
  }

  .spring-visual {
    min-height: 430px;
  }

  .top-card {
    right: 5%;
  }

  .bottom-card {
    left: 5%;
  }

  .brand-overlay {
    right: 10px;
    bottom: 10px;
    padding: 15px;
  }

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

  .repair-content {
    text-align: center;
  }

  .repair-feature {
    text-align: left;
  }

  .cta-group {
    justify-content: center;
  }

  .repair-main-img {
    min-height: 300px;
  }

  .tab-side-img {
    max-height: 200px;
    margin-bottom: 1.5rem;
  }

  .offer-image-container-large {
    max-width: 90%;
  }

}

@media (max-width: 768px) {
  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .coupon-inner-split {
    flex-direction: column;
  }

  .coupon-right-offer {
    clip-path: none;
    padding: 40px 20px;
  }

  .coupon-phone-bar {
    margin-left: 0;
    border-radius: 5px;
    padding-left: 15px;
  }

  .brand-item {
    padding: 0 30px;
  }

  .brand-item img {
    height: 35px;
  }

  .service-card-modern {
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
  }

  .service-icon-box {
    margin: 0 auto 20px auto;
  }

  .service-num-badge {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .contact-panel {
    padding: 30px 20px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .tab-icon-wrapper {
    font-size: 1.5rem;
  }

  .repair-tabs-section .nav-link {
    padding: 15px 5px;
    font-size: 0.7rem;
  }

}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .phone-cta-arrow {
    padding: 15px 35px 15px 20px;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
  }

  .cta-text-horizontal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .cta-number {
    font-size: 1.1rem;
  }

  .repair-services-section, .faq-section, .contact-details-section {
    padding: 70px 0;
  }

  .contact-panel {
    padding: 25px;
  }

  .spring-repair-section {
    padding: 65px 0;
  }

  .spring-highlights {
    grid-template-columns: 1fr;
  }

  .spring-card-main {
    padding: 38px 24px;
    border-radius: 26px;
  }

  .spring-floating-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 14px;
    width: 100%;
    animation: none;
  }

  .spring-visual {
    min-height: auto;
    display: block;
  }

  .spring-ring {
    display: none;
  }

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

}

@media (max-width: 1100px) {
  .offer-split-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 40px;
  }

  .offer-content {
    text-align: center;
  }

  .offer-lead {
    margin: 0 auto 35px;
  }

  .offer-list {
    justify-content: center;
  }

  .cta-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .offer-image-container {
    order: -1;
  }

}

@media (max-width: 576px) {
  .offer-list {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 250px;
    margin: 0 auto 30px;
  }

  .offer-title {
    font-size: 2.2rem;
  }

  .value-row .amount {
    font-size: 4rem;
  }

  .coupon-modern-card {
    padding: 30px;
  }

  .coupon-divider {
    margin: 25px -30px;
  }

}

@media (min-width: 992px) {
  .custom-faq-accordion {
    margin-top: 58px !important;
  }

}

@media (min-width: 1200px) {
  .offer-image-container-large {
    max-width: 480px;
  }

}




.service-locations-section {
  background: #f8fafc;
}

.location-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #003B17;
  min-height: 72px;
}

.location-card i {
  color: #FD801A;
  font-size: 1.1rem;
}

.location-card:hover {
  transform: translateY(-5px);
  background: #003B17;
  color: #fff;
  border-color: #003B17;
  box-shadow: 0 12px 30px rgba(0, 59, 23, 0.12);
}

.location-card:hover i {
  color: #FD801A;
}