/*========== GLOBAL ==========*/
:root {
  --font-main: 'Rajdhani', sans-serif;

  --primary-accent: #fda200;
  --secondary-accent: #242238;

  --text-color: #333;
  --alt-bg: #f8fafe;

  --header-bg: #ffffff;

  --button-text: #333;
  --button-bg: var(--primary-accent);
  --button-bg-hover: #fd8100; /* slightly darker shade */;
  --button-hover-filter: brightness(1.1);
}

body {
  margin:0;
  font-family: var(--font-main);
  background: var(--background-light);
  color: var(--text-color);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}
p {
  font-size: 1.2rem;
}
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
.alt-bg {
  background-color: var(--alt-bg);
}
.btn {
  display: inline-block;
  position: relative;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
}

.btn-primary {
  position: relative;
  font-weight: 900;
  background-color: var(--primary-accent);
  color: var(--button-text);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-secondary {
  background-color: var(--primary-accent);
  color: var(--button-text);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-nav-cta:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/*========== HEADER & MENU ==========*/
.top-accent {
  position: relative;
  background-color: var(--primary-accent);
  height: 10px;
  width: 100%;
  z-index: 9999;
}

header {
  background: transparent;
  color: white;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 9998;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

header.scrolled {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.5);
}

header.scrolled nav a {
  color: black;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; 
  gap: 1rem;
}

.logo {
  padding: 10px;
  display: flex;
  align-items: center;
  max-width:60%;
}

.logo-img {
  height: 28px;
  max-width: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

header .logo-img {
  content: url('/images/logo-light.png'); /* default logo */
}

header.scrolled .logo-img {
  content: url('/images/logo-dark.png'); /* logo after scroll */
}

nav {
  margin-left: auto;
}

nav ul {
  display: flex;
  font-size: 1.2rem;
  gap: 3rem;
  list-style: none;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

#main-nav ul li {
  position: relative;
}

nav ul li::after {
  content: '';
  position: absolute;
  height: 2px;
  left: 0;
  bottom: -5px;
  width: 0%;
  background: var(--primary-accent);
  transition: width 0.2s ease;
}

#main-nav > ul > li:not(.no-underline):hover::after {
  width: 100%;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav.open {
  transform: translateX(0%);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-color);
}

.mobile-nav .btn-nav-cta {
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  margin-top: auto;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
  position: relative;
}

.menu-toggle span {
  position: absolute; 
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 4px;
  background-color: var(--primary-accent);
  border-radius: 6px;
  transition: all 0.3s ease;
}

/*Menu Icon*/
.menu-toggle span:nth-child(1) {
  top: 8px;
}

.menu-toggle span:nth-child(2) {
  top: 18px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.middle-line {
  margin-left: 3px;
}

/* Animated 'X' State */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 18px;
}

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

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
}

.btn-nav-cta {
  display: inline-block;  
  padding: 0.6rem 1.2rem;
  background-color: var(--button-bg);
  color: var(--button-text);
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, transform 0.2s ease;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
}

.btn-nav-cta:hover {
  transform: scale(110%);

}
.has-dropdown {
  position: relative;
}

.has-dropdown > .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-top: 3px solid var(--primary-accent);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 100;
  min-width: 220px;
  overflow: hidden;
}

.dropdown li + li {
  border-top: 1px solid #eee;
}

.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown li {
  padding: 0;
}

.dropdown a {
  font-weight: 400;
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-color);
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown a:hover {
  background-color: var(--primary-accent);
  color: white;
}

.has-dropdown > .dropdown {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  top: calc(100% + 10px);
  transition: opacity .2s ease, transform 0.2s ease;
}

.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 18px; /* same as the spacing */
  width: 100%;
  background: transparent;
  pointer-events: auto;
}

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

.dropdown-icon {
  font-size: .8em;
  margin-left: 0.3em;
  color: var(--primary-accent);
}

.menu-toggle {
  display: none;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
  pointer-events: none;
}

/* When menu is open, show backdrop */
.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*========== HERO SECTION ==========*/
.hero {
  position: relative;
  color: white;
  padding: 5rem 1.5rem;
  padding-top: 140px;
  text-align: center;
}

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

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

/*.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}*/

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.2;
}

.hero h1 {
  margin-top: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero-divider {
  width: 25%;
  margin-bottom: 40px;
}
.hero-highlight {
  color: var(--primary-accent);
  font-size: 3.5rem;
}
.hero-light {
  font-weight: 300;
  font-size:1 rem;
}
.hero-phone {
  color: white;
  font-size: 3rem;
  text-decoration: none;
}

.hero .mainhead {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}

.hero .subhead {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

.hero-buttons {
  color: var(--button-text);
  font-size: 1.4rem;
  font-weight: 900!important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.btn-text-mobile {
  display: none;
}
.btn-text-desktop {
  display: inline;
}


/*========== TRUST SECTION ==========*/
.trust-section {
  padding: 3rem 1.5rem;
  text-align: center;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  flex-wrap: wrap;
}

.trust-item img {
  max-height: 120px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: grayscale(0); /* optionally grayscale or faded, e.g., grayscale(1) for subtle */
  transition: filter 0.3s ease;
}

.trust-item img:hover {
  filter: none;
}
.serving {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.trust-text {
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0;
  margin-bottom: -30px;
}
.trust-years {
  font-size: 3.5rem;
  font-weight: 700;
  margin:0;
}

/*========= SERVICES SECTION ==========*/

.service-highlight {
  padding: 4rem 1.5rem;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.service-text {
  flex: 1 1 calc(50% - 2rem);
  max-width: 600px;
}

.service-image {
  flex: 1 1 calc(50% - 2rem);
}

.service-image-optimized {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.service-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 0.5rem;
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-lead {
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-text p {
  margin-bottom: 1rem;
  color: #333;
}
.reverse-row {
  flex-direction: row-reverse;
}
.cta {
  text-align: center;
  margin-top: 60px;
  font-weight: 600;
  font-size: 1.2rem;

}

/*========== WHY CALLOUT ==========*/

.why-text {
  flex: 1 1 calc(70% - 2rem);
  max-width: 600px;
}

.callout-box {
  background-color: #007A33; /* Dark green */
  color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  flex: 1 1 calc(30% - 2rem);
}

.callout-box h3 {
  margin-top: 0;
  font-size: 1.25rem;
}
.callout-text {
  border-left: 1px solid white;
}
.callout-box p {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

/* Optional inverted button for contrast */
.btn-inverse {
  background-color: #fff;
  color: #007A33;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-inverse:hover {
  color: #005f27;
  transform: scale(1.1);
}

/*========== PRICE SECTION ==========*/
.pricing-section {
  background-color: var(--alt-bg);
  padding: 4rem 2rem;
  text-align: center;
}

.pricing-heading {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.pricing-subtext {
  color: #444;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.price-box {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.price-box h3 {
  font-size: 2rem;
  color: #007A33;
  margin-bottom: 0.5rem;
}

.price-box p {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.price-box span {
  font-size: 1.2rem;
  color: #555;
}

.pricing-note {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
/*========= TESTIMONIALS SECTION ==========*/
.testimonials-section {
  padding: 4rem 0;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: start;
}

.testimonial-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  font-size: 1.25rem;
  color: #fbbf24; /* golden yellow */
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: #333;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  color: #666;
}
/*========== SERVICE AREA ==========*/
.service-map-area {
  background-color: #fff;
  padding: 0;
}

.map-area-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
}

.map-side {
  flex: 1 1 50%;
  max-width: 50%;
  height: auto;
  display: flex;
}

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

.area-info-side {
  flex: 1 1 30%;
  max-width: 50%;
  padding: 3rem 2rem;
  text-align: center;
  overflow-y: auto;
}

.area-info-side .section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.area-info-side .section-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #666;
}

.service-search-input {
  padding: 0.75rem 1rem;
  width: 80%;
  max-width: 400px;
  margin-bottom: 2rem;
  border-radius: 999px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  padding: 0;
  list-style: none;
  margin-bottom: 2rem;
}

.town-list li a {
  text-decoration: none;
  color: var(--primary-accent);
  font-size: 1rem;
}

.town-list li a:hover {
  text-decoration: underline;
}

.service-note {
  font-size: 0.95rem;
  color: #666;
}
/*========== FEATURE SECTION ==========*/
.feature-grid-section {
  padding: 4rem 0;
  background-color: var(--alt-bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.text-center {
  text-align: center!important;

}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, scale 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  scale: 1.07;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
/*========== CTA SECTION ==========*/
.cta-banner {
  background-color: var(--secondary-accent);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-subtext {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.cta-banner .btn-primary {
  background-color: var(--primary-accent);
  color: var(--button-text);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
/*========= PLANS SECTION ==========*/
.pricing-comparison {
  padding: 4rem 1rem;
  background-color: #fff;
  overflow-x: auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.plan-heading {
  text-align: center;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
}

.featured-plan-heading {
  background: #e6f7ff;
  border: 2px solid #1890ff;
}

.plan-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}

.feature-label {
  font-weight: 600;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  position: relative;
}

.tooltip-wrapper {
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  cursor: pointer;
}

.tooltip-icon {
  vertical-align: middle;
}

.tooltip-box {
  position: absolute;
  bottom: 125%;
  left: 0;
  background: #333;
  color: #fff;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  line-height: 1.4;
  width: 220px;
  display: none;
  z-index: 10;
}

.tooltip-wrapper:hover .tooltip-box {
  display: block;
}

.tooltip-arrow {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  width: 0;
  height: 0;
  border-top: 6px solid #333;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.plan-check {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.feature-label.last-row,
.plan-check.last-row {
  border-bottom: none;
}

.feature-label.heading {
  border: none;
  background: transparent;
}

.final-row {
  height: 2rem;
}
/*========= ABOUT SECTION ==========*/
/* === Founder Story Improvements === */
.story-subheading {
  text-align: center;
  font-weight: 600;
  font-size: 1.3rem;
}

.founder-story {
  padding: 4rem 1rem;
  background-color: #fff;
}

.story-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text {
  flex: 1 1 55%;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
  color: #222;
}

.story-text p {
  margin-bottom: 1.25rem;
}

.quote-image-wrapper {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 400px;
  margin-top: 80px;
}

.founder-quote {
  background: var(--alt-bg);
  border-left: 4px solid #1890ff;
  padding: 1.75rem;
  font-style: italic;
  font-size: 1.2rem;
  margin: 0;
  width: 100%;
  line-height: 1.6;
  box-sizing: border-box;
}

.founder-quote footer {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.story-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: 60% 50%;
}

.about-section {
  padding: 4rem 2rem;
}

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

.section-title {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 1 1 60%;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

.about-highlights {
  flex: 1 1 35%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-highlights li {
  font-size: 1.2rem;
  color: var(--primary-accent);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
/*========= SLIDER SECTION =========*/
.how-it-works {
  padding: 4rem 4rem;
  background-color: var(--alt-bg);
}

.how-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;    
  margin-top: 2rem;
}

.how-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 1rem 0;
  scroll-behavior: smooth;
  max-width: 100%;
}

.how-step {
  flex: 0 0 90%;
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
}

.how-step h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.how-step-icon {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primary-accent);
}

.how-quote {
  font-style: italic;
  margin-bottom: 1rem;
}

.how-step p {
  margin-bottom: 1rem;
}

.how-step-icon svg {
  width: 80px;
  height: 80px;
}

.how-scroll-arrow {
  background: white;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1.5rem;
  padding: 0.25rem 0.75rem;
  margin: 0 1rem;
  cursor: pointer;
}
.slider-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary-accent);
}

/*========= FAQ SECTION ==========*/
.faq-section {
  background-color: #fff;
  padding: 4rem 2rem;
}

.faq-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.faq-question {
  all: unset;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: inherit;
  line-height: 1.4;
}

.faq-answer {
  display: none;
  margin-left: 3rem;
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #555;
  padding-bottom: 0.5rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--primary-accent);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.25rem;
  transition: transform 0.3s ease, background-color 0.2s ease;
}

/* Rotate when active */
.faq-item.active .faq-icon {
  transform: rotate(45deg); /* turns + into × */
  background-color: var(--button-bg-hover);
}

.faq-question:hover .faq-icon {
  background-color: var(--button-bg-hover);
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    gap: 0.75rem;
  }
  
  .faq-answer {
    margin-left: 2.5rem;
    font-size: 0.95rem;
  }
  
  .faq-icon {
    width: 22px;
    height: 22px;
    font-size: 1.1rem;
  }
}

/*========== FOOTER ==========*/
.site-footer {
  background-color: #f8f8f8;
  padding: 3rem 2rem 1.5rem;
  font-size: 0.95rem;
  text-align: center;
}
.footer-title {
  text-align: center;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
}
.footer-form-section {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  max-width: 60%;
}

.footer-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-form input,
.footer-form textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.footer-form button {
  padding: 0.6rem 1.2rem;
  background-color: var(--button-bg);
  color: var(--button-text);
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, transform 0.2s ease;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
  border: none;
}

.footer-form button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.footer-contact-grid {
  margin-left: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.footer-icon {
  background-color: var(--secondary-accent);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.footer-contact-item strong {
  display: block;
  font-weight: 600;
  color: #111;
}

.footer-contact-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.footer-contact-item a {
  color: var(--secondary-accent);
  text-decoration: none;
}

.footer-bottom {
  margin-top:35px;
  font-size: 0.85rem;
  color: #999;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

.footer-form .g-recaptcha {
  margin-top: .25rem;
}
.thank-you-phone{
  text-decoration: none;
  color: var(--primary-accent)
}
/*==================== RESPONSIVE ====================*/

/*========== MOBILE HEADER & MENU ==========*/
@media (max-width: 1140px) {
  .header-inner {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  #main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex !important;
    color: var(--primary-accent);
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 2rem 1.5rem;
    padding-top: 4rem;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .mobile-nav.open {
    display: flex;
    transform: translateX(0%);
  }

  .mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .mobile-nav ul li {
    margin: 0;
    padding: 0;
  }
  .mobile-nav ul li a {
    display: block;
    font-size: 1.5rem;
    padding: 0.4rem 0;
    border-bottom: 2px solid #e2e2e2;
  }

  .mobile-nav .btn-nav-cta {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    align-self: center;
    color: white;
  }
.mobile-nav ul li.mobile-sub a {
    font-size: 1.1rem;
    font-weight: 400;
    border: none;
  }
  .logo {
    max-width: 45%;
  }
  .hero {
    padding: 3rem 1.5rem;
  }
  .hero h1 {
    margin-top: 50px;
  };
  .hero .mainhead {
    line-height: 1.2;
  }
  .hero-buttons {
    flex-direction: column;
    max-width: 320px;
    margin: auto;
  }
  .btn-text-mobile {
    display: inline;
  }
  
  .btn-text-desktop {
    display: none;
  }
}

@media (max-width: 820px) {
  .service-row {
    flex-direction: column;
  }

  .service-text,
  .service-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .service-subtitle {
    margin: 0;
  }
  .service-title {
    font-size: 1.75rem;
    margin: 0;
  }
  .service-highlight {
    padding-top:0;
  }
  .service-row {
    gap: 0px;
  }
  .button-wrapper {
    padding-top:15px;
    display: flex;
    justify-content: center;
  }
  .trust-logos {
    flex-direction: column;
    gap: 4rem;
  }
   .service-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; /* or 3 / 2 depending on the image */
    object-fit: cover;
  }
  .mobile-reverse {
    flex-direction: column-reverse;
  }
  .about-grid {
    flex-direction: column;
  }

  .section-title {
    text-align: center;
  }

  .about-text,
  .about-highlights {
    text-align: left;
  }
  .map-area-container {
    flex-direction: column-reverse;
  }
  .map-side, .area-info-side {
    max-width: 100%;
  }
  .service-map-area {
    background-image: url('../images/service-area-map.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .service-map-area::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .service-map-area::before {
    background: rgba(255, 255, 255, 0.75); /* white overlay with ~25% transparency */
    backdrop-filter: blur(1.5px);
  }
  .area-info-side {
    position: relative;
    z-index: 2;
    color: black;
    text-align: center;
  }

  .service-search-input,
  .town-list a,
  .service-note {
    font-weight:600;
    font-size: 1.2rem;
  }
  .town-list li a {
    font-size: 1.1rem;
  }

  .map-side {
    display: none; /* hide map image block below */
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Mobile scroll hint + right-edge fade for plans table */
  .pricing-comparison {
    position: relative; /* anchor pseudo elements */
  }
  .pricing-comparison::before {
    content: "";
    position: sticky; /* stay pinned to the right edge while horizontal scrolling */
    right: 0;
    top: 0;
    display: block;
    width: 40px;
    height: 100%;
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
    pointer-events: none;
    flex: 0 0 auto;
  }
  .pricing-comparison::after {
    content: "Swipe for more →";
    position: sticky; /* pin to right edge of scroll container */
    right: 1rem;
    bottom: 0.25rem;
    display: inline-block;
    font-size: 0.95rem;
    color: #888;
    letter-spacing: 0.2px;
    pointer-events: none;
    animation: nudge-right 1.6s ease-in-out infinite;
  }
  @keyframes nudge-right {
    0% { transform: translateX(0); opacity: 0.9; }
    50% { transform: translateX(6px); opacity: 1; }
    100% { transform: translateX(0); opacity: 0.9; }
  }
  
  .footer-form-section {
    display: none;
  }
  .footer-contact-grid {
    display: flex;
    flex-direction: column;
    margin:auto;
  }
  .footer-contact-item {
  font-size: 1.3rem;
  gap: 1.25rem;
}
.footer-contact-item p {
  font-size: 1.2rem
}


.footer-icon {
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
  border-radius: 16px;
}
.trust-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .trust-item img {
    max-height: 80px;
  }
  .section-title {
    font-size: 1.5rem;
  }
 .how-it-works {
    padding: 4rem 1rem;
  }
  
  .how-slider {
    gap: 1rem;
  }
  
  .how-step {
    flex: 0 0 85%;
    max-width: 300px;
    padding: 1.5rem;
  }
  
  .how-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  
  .how-step-icon svg {
    width: 60px;
    height: 60px;
  }
  
  .how-scroll-arrow {
    display: none;
  }

  /* Show slider dots under How It Works cards on mobile */
  .how-it-works .slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0 1rem;
  }
  
  /* Remove the problematic padding rule */
  .how-step p {
    padding: 0; /* Override the padding: 1rem; rule */
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }

}
@media (max-width: 479px) {
  .hero h1, .subhead {
    font-size: 1.3rem;
  }
  .hero .mainhead {
    font-size: 2.2rem;
  }
  .hero-highlight {
    font-size: 2.8rem;
  }
  .hero-phone {
    font-size: 2.2rem;
  }
  .trust-logos {
    gap: 1.5rem 0.5rem;
    max-width: 320px;
  }
   .how-step {
    flex: 0 0 90%;
    max-width: 280px;
    padding: 1.25rem;
  }
  
  .how-step h3 {
    font-size: 1.2rem;
  }
  
  .how-step p {
    font-size: 1.1rem;
  }

}
@media (max-width: 350px) {
  .hero h1, .hero .subhead {
    font-size: 1.1rem;
  }
  .hero .subhead {
    margin-bottom: 0;
  }
  .hero .mainhead, .hero-highlight {
    font-size: 1.6rem;
  }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
  }
  .menu-toggle span {
    height: 3px;
  }
}