/* ================================================
   PALMSTONE LANDSCAPING — Main Stylesheet
   Exact match of palmstonelandscaping.com (Zyro/Hostinger)
   Fonts: Lato (body), Poppins (headings)
   ================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* === COLORS (from original site) === */
:root {
  --gold: #CAAB7A;
  --gold-light: #d4bc8e;
  --gold-dark: #b8973f;
  --gold-overlay: rgba(202, 171, 122, 0.55);
  --green-btn: #3d7b4c;
  --green-dark: #2c5e38;
  --green-reviews: #c5dcc0;
  --dark-bg: #1a2e1a;
  --dark-footer: #242D32;
  --dark-footer-bottom: #34383A;
  --white: #fff;
  --black: #000;
  --text-dark: #333;
  --text-light: #aaa;
  --cream: #f9f6f0;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
}

/* ================================================
   HEADER
   ================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #CCAC7D;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

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

.header__logo img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.header__nav { flex: 1; }

.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.header__menu a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
  transition: color 0.2s;
  padding: 8px 0;
  position: relative;
}

.header__menu a:hover {
  text-decoration: underline;
}

.header__menu a.active {
  text-decoration: underline;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-arrow { font-size: 11px; margin-left: 2px; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  background: #CCAC7D;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 8px;
  min-width: 240px;
  padding: 10px 0;
  z-index: 100;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.2s, color 0.2s;
}

.dropdown li a:hover {
  background: #f5f0e8;
  color: var(--gold);
}

/* CTA Button */
.header__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  background: #C9B159;
  color: var(--black);
  padding: 10px 24px;
  border: 1.6px solid var(--black);
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, transform 0.15s;
}

.header__cta:hover {
  background: #b89e45;
  color: var(--black);
  transform: translateY(-1px);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 20px;
}

.mobile-nav.open { display: block; }

.mobile-nav__menu li a {
  display: block;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--text-dark);
  border-bottom: 1px solid #eee;
}

.mobile-nav__cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 14px 28px !important;
  border-radius: 6px;
  text-align: center;
  border-bottom: none !important;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding-bottom: 20px;
}

.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.35);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 20px 20px 10px;
  max-width: 900px;
  width: 100%;
}

/* Title row with decorative lines */
.hero__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
}

.hero__line {
  display: block;
  width: 80px;
  height: 3px;
  background: #d4a824;
  flex-shrink: 0;
  margin-top: 30px;
}

.hero__title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  color: var(--white);
}

/* Social icons flanking the title */
.hero__social-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 4px;
}

.hero__social-icon {
  display: inline-block;
  transition: transform 0.2s;
}

.hero__social-icon:hover { transform: scale(1.1); }

.hero__social-icon img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  border-radius: 14px;
}

.hero__social-icon--left {
  position: absolute;
  left: 0;
}

.hero__social-icon--right {
  position: absolute;
  right: 0;
}

.hero__cta-banner {
  display: flex;
  justify-content: center;
}

.hero__cta-banner a {
  display: inline-block;
  transition: transform 0.2s;
}

.hero__cta-banner a:hover {
  transform: scale(1.03);
}

.hero__cta-banner img {
  max-width: 420px;
  height: auto;
}

/* ================================================
   3 SERVICE FEATURE CARDS (overlapping hero)
   ================================================ */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding: 0 40px;
}

.service-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #ddd;
  border-radius: 4px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.service-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}

/* ================================================
   CITY SEARCH
   ================================================ */
.city-search {
  text-align: center;
  padding: 40px 40px 35px;
  background: #f0ead9;
  max-width: 560px;
  width: 90%;
  margin: 30px auto 0;
  border-radius: 10px;
  position: relative;
  z-index: 6;
}

.city-search h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-weight: 700;
}

.city-search input {
  width: 100%;
  max-width: 450px;
  padding: 16px 22px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.city-search input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(202,171,122,0.2);
}

.city-search__btn {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: underline;
  transition: color 0.2s;
}

.city-search__btn:hover {
  color: var(--gold);
}

/* ================================================
   CONTACT FORM WITH GRASS BACKGROUND
   ================================================ */
.contact-grass {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.contact-grass__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-grass__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-grass__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}

.contact-grass__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-grass__left {
  position: relative;
}

.contact-grass__mascot {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 30px;
}

.contact-grass__mascot img {
  width: 200px;
  height: auto;
  flex-shrink: 0;
}

.contact-grass__bubble {
  background: var(--cream);
  border-radius: 20px;
  padding: 20px 30px;
  position: relative;
  margin-left: -20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-grass__bubble h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.contact-grass__gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-float {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  object-fit: cover;
}

.gallery-float--1 {
  width: 280px;
  height: 220px;
}

.gallery-float--2 {
  width: 220px;
  height: 240px;
}

.contact-grass__right {
  position: relative;
}

.contact-grass__gallery-right {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-float--3 {
  width: 260px;
  height: 180px;
  border-radius: 16px;
}

.gallery-float--4 {
  width: 200px;
  height: 160px;
  border-radius: 16px;
}

.contact-grass__form {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.contact-grass__form .form-group {
  margin-bottom: 18px;
}

.contact-grass__form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.contact-grass__form input,
.contact-grass__form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-grass__form input:focus,
.contact-grass__form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(202,171,122,0.15);
}

.contact-grass__form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-grass__form .btn-submit {
  display: block;
  width: 100%;
  background: var(--text-dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  margin-top: 6px;
}

.contact-grass__form .btn-submit:hover {
  background: #555;
  transform: translateY(-1px);
}

/* ================================================
   OUR SERVICES SECTION (dark background)
   ================================================ */
.our-services {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.our-services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.our-services__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-services__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,40,20,0.85);
  z-index: 1;
}

.our-services__inner {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding: 40px 20px 20px;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 30px;
  align-items: start;
}

/* Heading with lines */
.our-services__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.heading-line {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
}

.our-services__heading h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.our-services__company {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.our-services__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.our-services__mascot-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 10px;
}

.our-services__mascot img {
  width: 160px;
  height: auto;
}

.our-services__irrigation-title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
}

.our-services__irrigation-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.our-services__irrigation-title a:hover {
  color: var(--gold);
}

.our-services__talk {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 8px;
}

.our-services__talk img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.our-services__talk strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.our-services__talk span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.our-services__desc2 {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}

.our-services__stats {
  margin-bottom: 0;
}

.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  color: var(--gold);
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.our-services__cta-banner a {
  display: inline-block;
  transition: transform 0.2s;
}

.our-services__cta-banner a:hover {
  transform: scale(1.03);
}

.our-services__cta-banner img {
  max-width: 300px;
  height: auto;
}

.our-services__left {
  overflow: hidden;
}

/* Right column: first 2 service cards */
.our-services__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Full-width 3-column grid for remaining 6 services */
.our-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 20px 60px;
}


.service-detail-card {
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  color: var(--text-dark);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.service-detail-card__img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-detail-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-detail-card:hover .service-detail-card__img img {
  transform: scale(1.05);
}

.service-detail-card__img .btn-learn-more {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-block;
  background: var(--green-btn);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 7px 16px;
  border-radius: 20px;
  transition: background 0.25s, transform 0.15s;
  text-decoration: none;
}

.service-detail-card__img .btn-learn-more:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.service-detail-card h4 {
  font-size: 22px;
  font-weight: 700;
  padding: 16px 20px 8px;
  color: var(--text-dark);
}

.service-detail-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  padding: 0 20px 20px;
}

/* ================================================
   CUSTOMER REVIEWS
   ================================================ */
.reviews {
  background: var(--white);
  padding: 70px 20px;
  text-align: center;
}

.reviews h2 {
  font-size: 38px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.reviews__subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.reviews__stars {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

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

.review-card {
  background: var(--green-reviews);
  padding: 35px 30px;
  border-radius: 12px;
  text-align: left;
}

.review-card p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-card__author {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

.review-card__location {
  font-size: 13px;
  color: #555;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* ================================================
   FOOTER
   ================================================ */
.footer__top {
  background: var(--dark-footer);
  padding: 40px 20px;
  color: var(--white);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer__brand h4,
.footer__contact h4,
.footer__subscribe h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__brand p,
.footer__contact p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer__social a {
  color: var(--text-light);
  transition: color 0.2s;
}

.footer__social a:hover { color: var(--gold); }

.footer__phone {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  margin-top: 8px;
}

.footer__subscribe h4 {
  text-transform: uppercase;
}

.footer__form {
  margin-top: 10px;
}

.footer__form p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.footer__form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #555;
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  outline: none;
  margin-bottom: 10px;
}

.footer__form input::placeholder { color: #888; }

.footer__form button {
  background: var(--green-btn);
  border: none;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 24px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
  width: 100%;
}

.footer__form button:hover { background: var(--green-dark); }

.footer__bottom {
  background: var(--dark-footer-bottom);
  padding: 16px 20px;
  text-align: center;
  color: #888;
  font-size: 13px;
}

/* ================================================
   SERVICES GRID (Services page)
   ================================================ */
.services-grid-section {
  padding: 60px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-block {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.service-block img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-block__body {
  padding: 24px;
}

.service-block h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-block p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ================================================
   CONTACT FORM (standalone page)
   ================================================ */
.contact-section {
  padding: 60px 20px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.btn-submit {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* ================================================
   LOCATIONS GRID
   ================================================ */
.locations-section {
  padding: 60px 20px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  background: var(--cream);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}

.location-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.location-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.location-card strong {
  color: var(--text-dark);
}

/* ================================================
   SERVICE DETAIL PAGE
   ================================================ */
.service-detail {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.service-detail h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-detail h2 {
  font-size: 24px;
  margin: 30px 0 14px;
  color: var(--text-dark);
}

.service-detail p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detail ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.service-detail ul li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
}

.service-detail__cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  margin-top: 20px;
  transition: background 0.25s;
}

.service-detail__cta:hover { background: var(--gold-dark); }

/* FAQ Accordion */
.faq { margin-top: 40px; }
.faq h2 { margin-bottom: 20px; }

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

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-dark);
}

.faq-item p {
  margin-top: 8px;
  font-size: 15px;
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: var(--gold-overlay);
  padding: 50px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 36px;
  color: var(--text-dark);
}

.page-hero p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 10px auto 0;
}

/* ================================================
   LEARN MORE BUTTON (other pages)
   ================================================ */
.btn-learn-more {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  background: var(--green-btn);
  padding: 10px 22px;
  border-radius: 24px;
  transition: background 0.25s;
}

.btn-learn-more:hover {
  background: var(--green-dark);
}

/* ================================================
   QUOTE BANNER (hover effect)
   ================================================ */
.quote-banner {
  display: block;
  transition: transform 0.2s;
}
.quote-banner:hover { transform: scale(1.03); }

/* ================================================
   CITY LAWN-CARE PAGES (per-city templates)
   ================================================ */
/* HERO - 2 column with form on left, CTA+description on right */
.lawncare-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 24px 60px;
  color: var(--white);
}
.lawncare-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lawncare-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lawncare-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(40,80,40,0.35);
  z-index: 1;
}
.lawncare-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.lawncare-hero__left h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.lawncare-hero__availability {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  margin-bottom: 6px;
}
.lawncare-hero__yard-link {
  display: block;
  margin-bottom: 22px;
  font-size: 16px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.lawncare-hero__yard-link a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

.lawncare-hero__form {
  background: #d9c294;
  border-radius: 10px;
  padding: 22px 22px 26px;
  max-width: 440px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.lawncare-hero__form .form-group {
  margin-bottom: 12px;
}
.lawncare-hero__form label {
  display: block;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
}
.lawncare-hero__form input,
.lawncare-hero__form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #c9ad7a;
  border-radius: 4px;
  background: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
}
.lawncare-hero__form textarea { resize: vertical; min-height: 70px; }
.lawncare-hero__form button {
  display: block;
  margin: 14px auto 0;
  background: #1a1a1a;
  color: var(--white);
  border: none;
  padding: 11px 40px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}
.lawncare-hero__form button:hover { background: #333; }

.lawncare-hero__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lawncare-hero__cta-banner {
  display: inline-block;
  max-width: 460px;
  transition: transform 0.2s;
}
.lawncare-hero__cta-banner img {
  width: 100%;
  border-radius: 10px;
}
.lawncare-hero__cta-banner:hover { transform: scale(1.02); }
.lawncare-hero__description {
  background: var(--white);
  color: var(--text-dark);
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.lawncare-hero__description h2 {
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.lawncare-hero__description p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* "Leave the Hard work to us!" mosaic */
.lawncare-mosaic {
  position: relative;
  padding: 80px 24px 120px;
  overflow: hidden;
  background: url('/images/lawn-care-hero-bg.webp') center/cover no-repeat;
}
.lawncare-mosaic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(60,100,60,0.15);
  z-index: 0;
}
.lawncare-mosaic__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.lawncare-mosaic h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 50px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.lawncare-mosaic__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}
.lawncare-mosaic__grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.lawncare-mosaic__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.lawncare-mosaic__bottom-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.lawncare-mosaic__cta {
  display: block;
  transition: transform 0.2s;
}
.lawncare-mosaic__cta img {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
}
.lawncare-mosaic__cta:hover { transform: scale(1.03); }
.lawncare-mosaic__cat {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.lawncare-mosaic__cat img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Neighborhoods + Map section */
.lawncare-neighborhoods-section {
  background: var(--white);
  padding: 60px 24px;
}
.lawncare-neighborhoods-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 10px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--text-dark);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.lawncare-neighborhoods-section > p {
  text-align: center;
  max-width: 900px;
  margin: 20px auto;
  font-size: 16px;
  color: #444;
}
.lawncare-neighborhoods-grid {
  max-width: 1200px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.lawncare-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  border: 1px solid #ddd;
}
.lawncare-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.lawncare-neighborhoods-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
.lawncare-neighborhoods-groups h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.lawncare-neighborhoods-groups ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.lawncare-neighborhoods-groups li {
  list-style: disc;
  font-size: 15px;
  color: #444;
  margin-bottom: 4px;
}

/* Schedule+pricing with CTA banner on right */
.lawncare-pricing-row {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}
.lawncare-pricing-row__cta img {
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
}
.lawncare-coverage-call {
  max-width: 1200px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.lawncare-coverage-call a { color: var(--green-btn); }

.lawncare-city-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid #c9ad7a;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
}

/* Intro section */
.lawncare-intro {
  background: var(--white);
  padding: 60px 24px;
}
.lawncare-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.lawncare-intro__text h2 {
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.lawncare-intro__text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}
.lawncare-intro__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lawncare-intro__images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.lawncare-intro__cta-row {
  max-width: 1200px;
  margin: 40px auto 0;
  text-align: center;
}
.lawncare-cta-banner {
  display: inline-block;
  transition: transform 0.2s;
}
.lawncare-cta-banner img {
  max-width: 520px;
  width: 100%;
  border-radius: 12px;
}
.lawncare-cta-banner:hover { transform: scale(1.02); }

/* Sections (repeating) */
.lawncare-section {
  background: var(--white);
  padding: 50px 24px;
}
.lawncare-section--light {
  background: #f7f5ef;
}
.lawncare-section__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.lawncare-section h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.25;
}
.lawncare-section h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin: 22px 0 10px;
}
.lawncare-section p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}
.lawncare-section p strong { color: var(--text-dark); }

.lawncare-bullets {
  margin: 0 0 16px 22px;
}
.lawncare-bullets li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.lawncare-neighborhoods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px 0;
}
.lawncare-neighborhoods ul {
  padding: 0;
  margin: 0;
}
.lawncare-neighborhoods li {
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid #e6e2d4;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.lawncare-note {
  margin-top: 16px;
  font-style: italic;
  color: #555;
}
.lawncare-note a {
  color: var(--green-btn);
  font-weight: 700;
  text-decoration: underline;
}

/* Plans grid */
.lawncare-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.lawncare-plan {
  background: var(--white);
  border: 2px solid #e6e2d4;
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.lawncare-plan:hover {
  transform: translateY(-3px);
  border-color: var(--green-btn);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.lawncare-plan h3 {
  font-size: 20px;
  color: var(--green-btn);
  margin: 0 0 10px;
}
.lawncare-plan p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* Why choose us */
.lawncare-why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.lawncare-why__item {
  background: var(--white);
  padding: 20px 22px;
  border-radius: 12px;
  border-left: 4px solid var(--green-btn);
}
.lawncare-why__item h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin: 0 0 8px;
}
.lawncare-why__item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* FAQ accordion */
.lawncare-faq {
  margin-top: 20px;
}
.lawncare-faq__item {
  border: 1px solid #e6e2d4;
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.lawncare-faq__item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.lawncare-faq__item summary::-webkit-details-marker { display: none; }
.lawncare-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--green-btn);
  font-weight: 700;
}
.lawncare-faq__item[open] summary::after { content: '−'; }
.lawncare-faq__item p {
  padding: 0 20px 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}
.lawncare-faq__item a {
  color: var(--green-btn);
  font-weight: 700;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .lawncare-hero { padding: 16px 12px 22px; }
  .lawncare-hero__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* Reorder: Title → CTA banner → Form (wide+centered) → Description → links */
  .lawncare-hero__left {
    display: contents;
  }
  .lawncare-hero__left h1 {
    order: 1;
    font-size: 24px;
    margin-bottom: 0;
    line-height: 1.15;
  }
  .lawncare-hero__right {
    order: 2;
    display: contents;
  }
  .lawncare-hero__cta-banner {
    order: 2;
    align-self: center;
    max-width: 260px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .lawncare-hero__cta-banner img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
  }
  .lawncare-hero__form {
    order: 3;
    width: 100%;
    max-width: 100%;
    padding: 10px 12px 14px;
    margin: -14px 0 0;
  }
  .lawncare-hero__form .form-group { margin-bottom: 7px; }
  .lawncare-hero__form label { font-size: 12px; margin-bottom: 3px; }
  .lawncare-hero__form input,
  .lawncare-hero__form textarea { padding: 8px 10px; font-size: 13px; }
  .lawncare-hero__form textarea { min-height: 56px; }
  .lawncare-hero__form button { padding: 9px 32px; font-size: 14px; margin-top: 10px; }
  .lawncare-hero__description {
    order: 4;
    padding: 16px 18px;
    margin-top: 4px;
  }
  .lawncare-hero__description h2 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.25;
  }
  .lawncare-hero__description p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
  .lawncare-hero__description p:last-child { margin-bottom: 0; }
  .lawncare-hero__availability {
    order: 5;
    font-size: 17px;
    margin-top: 2px;
    margin-bottom: 0;
    text-align: left;
  }
  .lawncare-hero__yard-link {
    order: 6;
    margin-bottom: 0;
    margin-top: 2px;
    text-align: left;
  }

  .lawncare-mosaic { padding: 50px 16px 70px; }
  .lawncare-mosaic h2 { font-size: 30px; margin-bottom: 30px; }
  .lawncare-mosaic__grid { grid-template-columns: 1fr; gap: 14px; }
  .lawncare-mosaic__grid img { height: 220px; }
  .lawncare-mosaic__bottom { grid-template-columns: 1fr; gap: 16px; }
  .lawncare-mosaic__bottom-img { height: 180px; }
  .lawncare-mosaic__cta img { max-width: 300px; display: block; margin: 0 auto; }
  .lawncare-mosaic__cat img { width: 160px; }

  .lawncare-neighborhoods-section { padding: 40px 16px; }
  .lawncare-neighborhoods-section h2 { font-size: 24px; }
  .lawncare-neighborhoods-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lawncare-neighborhoods-groups { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lawncare-pricing-row { grid-template-columns: 1fr; gap: 20px; }

  .lawncare-intro { padding: 40px 16px; }
  .lawncare-intro__inner { grid-template-columns: 1fr; gap: 24px; }
  .lawncare-intro__text h2 { font-size: 24px; }
  .lawncare-intro__images img { height: 160px; }

  .lawncare-section { padding: 40px 16px; }
  .lawncare-section h2 { font-size: 22px; }
  .lawncare-section h3 { font-size: 18px; }

  .lawncare-neighborhoods {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .lawncare-plans { grid-template-columns: 1fr; gap: 14px; }
  .lawncare-why { grid-template-columns: 1fr; gap: 14px; }
  .lawncare-faq__item summary { font-size: 15px; padding: 14px 18px; padding-right: 36px; }
}

/* ================================================
   /SERVICES PAGE (and city-services pages)
   ================================================ */
.services-hero {
  background: linear-gradient(rgba(15,35,25,0.85), rgba(15,35,25,0.85)), url('/images/house-bg.webp') center/cover no-repeat;
  padding: 60px 20px 80px;
  text-align: center;
}
.services-hero h1 {
  color: var(--white);
  font-size: 42px;
  font-weight: 700;
  max-width: 1000px;
  margin: 0 auto;
}

.services-page-grid-section {
  background: var(--white);
  padding: 50px 20px 60px;
}
.services-page-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white);
  color: var(--text-dark);
}

.svc-card__img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.svc-card__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.svc-card__img .btn-learn-more {
  position: absolute;
  bottom: 14px;
  left: 14px;
  margin-top: 0;
  background: var(--green-btn);
  color: var(--white);
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 22px;
}

.svc-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-align: center;
}

.svc-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.services-page-citysearch {
  background: #f0ead9;
  padding: 30px 24px;
  border-radius: 12px;
  text-align: center;
  align-self: center;
}
.services-page-citysearch h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.services-page-citysearch input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 12px;
  background: var(--white);
}
.services-page-citysearch .city-search__btn {
  background: none;
  border: none;
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-dark);
}

/* Services contact form */
.services-contact {
  position: relative;
  overflow: hidden;
  padding: 80px 20px 200px;
  min-height: 900px;
}
.services-contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services-contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-contact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}
.services-contact__inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}
.services-contact__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: -120px;
}
.services-contact__mascot {
  position: relative;
  flex-shrink: 0;
}
.services-contact__mascot img {
  width: 400px;
  height: auto;
  display: block;
}
.services-contact__bubble-text {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 180px;
  color: var(--text-dark);
  text-align: center;
  pointer-events: none;
}
.services-contact__bubble-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}
.services-contact__bubble h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.services-contact__phone {
  text-align: center;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.services-contact__phone strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
}
.services-contact__phone a {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}
.services-contact__form {
  background: transparent;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}
.services-contact__form .form-group {
  margin-bottom: 0;
  background: #d9c294;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.services-contact__form label {
  display: block;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}
.services-contact__form input,
.services-contact__form textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--white);
  border: none;
  border-radius: 4px;
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
}
.services-contact__form input::placeholder,
.services-contact__form textarea::placeholder {
  color: #999;
}
.services-contact__form .btn-submit {
  display: block;
  margin: 24px auto 0;
  background: #1a1a1a;
  color: var(--white);
  padding: 14px 48px;
  border: none;
  border-radius: 6px;
  width: auto;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.services-contact__mascot-bottom {
  position: absolute;
  bottom: 240px;
  right: max(20px, calc((100% - 560px) / 4 - 165px));
  width: 330px;
  height: auto;
  z-index: 3;
}

.services-contact__gallery {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.services-contact__gallery img {
  width: 330px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  pointer-events: auto;
}
.services-contact__gallery--tl { top: 60px; left: 40px; }
.services-contact__gallery--tr { top: 80px; right: 40px; }
.services-contact__gallery--bl { bottom: 300px; left: max(20px, calc((100% - 560px) / 4 - 165px)); }
.services-contact__gallery--br { bottom: 300px; right: max(20px, calc((100% - 560px) / 4 - 165px)); }

/* Services review */
.services-review {
  background: #3d6b4f;
  padding: 50px 20px;
  text-align: center;
  color: var(--white);
}
.services-review__inner {
  max-width: 700px;
  margin: 0 auto;
}
.services-review .reviews__stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
}
.services-review p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.services-review__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px;
  display: block;
}
.services-review__name {
  font-weight: 700;
  font-size: 15px;
}

/* Mobile responsive for services page */
@media (max-width: 768px) {
  .services-hero h1 { font-size: 28px; }
  .services-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .svc-card__img img { height: 220px; }
  .services-contact { padding: 40px 16px 80px; }
  .services-contact__top { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 10px; }
  .services-contact__mascot img { width: 80px; }
  .services-contact__bubble { padding: 10px 14px; max-width: 160px; }
  .services-contact__bubble h3 { font-size: 14px; }
  .services-contact__phone strong { font-size: 14px; }
  .services-contact__phone a { font-size: 16px; }
  .services-contact__gallery { position: relative; top: auto !important; right: auto !important; bottom: auto !important; left: auto !important; display: inline-block; margin: 10px; }
  .services-contact__gallery img { width: 140px; height: 100px; }
  .services-contact__mascot-bottom {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100px;
    margin: 20px auto 0;
    display: block;
  }
  .services-contact__gallery-mobile {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .our-services__inner {
    grid-template-columns: 1fr;
  }
  .contact-grass__inner {
    grid-template-columns: 1fr;
  }
  .contact-grass__gallery-right {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .header__cta { font-size: 12px; padding: 8px 16px; }
  .header__logo img { width: 55px; height: 55px; }

  /* Hero: reduce padding since cards/search are inside */
  .hero { padding-bottom: 24px; }
  .hero__title { font-size: 32px; }
  .hero__line { width: 30px; margin-top: 20px; }
  .hero__content { padding: 30px 16px 20px; }
  .hero__cta-banner img { max-width: 320px; }
  .hero__social-icon img { width: 65px; height: 65px; }

  /* Feature cards: stack on mobile */
  .services-row {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0 20px;
    gap: 14px;
  }
  .service-card { height: 220px; }

  /* City search: full width on mobile */
  .city-search {
    max-width: calc(100% - 40px);
    width: calc(100% - 40px);
    padding: 24px 20px 20px;
  }
  .city-search h2 { font-size: 24px; margin-bottom: 16px; }
  .city-search input { max-width: 100%; }

  /* Contact section */
  .contact-grass__inner { grid-template-columns: 1fr; }
  .contact-grass__mascot img { width: 120px; }
  .contact-grass__bubble h3 { font-size: 18px; }
  .gallery-float--1, .gallery-float--2,
  .gallery-float--3, .gallery-float--4 {
    width: 45%;
    height: auto;
  }

  /* Our Services: stack to 1 column */
  .our-services__inner {
    grid-template-columns: 1fr;
    padding: 30px 16px 20px;
  }
  .our-services__heading h2 { font-size: 24px; }
  .our-services__mascot-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .our-services__mascot img { width: 110px; }
  .our-services__cta-banner img { max-width: 210px; }

  /* Grid cards: stack to 1 column on mobile */
  .our-services__grid {
    grid-template-columns: 1fr;
    padding: 0 16px 40px;
    gap: 16px;
  }

  /* Service detail cards */
  .service-detail-card__img { height: 200px; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews { padding: 40px 16px; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer__social { justify-content: center; }

  .service-detail { padding: 40px 16px; }
  .service-detail h1 { font-size: 26px; }
  .service-detail h2 { font-size: 20px; margin: 24px 0 10px; }
  .service-detail p { font-size: 15px; }

  .page-hero { padding: 40px 16px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 15px; }

  .faq-item h3 { font-size: 15px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 24px; }
  .hero__line { width: 24px; margin-top: 15px; }
  .hero__social-icon img { width: 50px; height: 50px; }
  .hero__cta-banner img { max-width: 240px; }

  .services-row { max-width: 300px; }
  .service-card { height: 180px; }
  .service-card__overlay { font-size: 13px; padding: 14px 12px; }

  .city-search { max-width: 300px; }
  .city-search h2 { font-size: 22px; }
  .city-search input { padding: 12px 16px; font-size: 14px; }

  .our-services__heading h2 { font-size: 22px; }
  .our-services__company { font-size: 22px; }
  .stat-number { font-size: 32px; }
}

/* ===== CLIENT PORTAL PAGE ===== */
.client-portal-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 80px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.client-portal-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.client-portal-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.client-portal-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(30,50,35,0.78) 0%, rgba(20,35,25,0.82) 100%);
}
.client-portal-hero__inner {
  position: relative; z-index: 2;
  max-width: 780px;
  display: flex; flex-direction: column; align-items: center;
}
.client-portal-hero__welcome {
  display: inline-block;
  background: #CAAB7A;
  color: #222;
  padding: 6px 16px;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.client-portal-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff;
}
.client-portal-hero__lead {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  color: rgba(255,255,255,0.92);
  margin: 0 auto 28px;
  max-width: 600px;
  line-height: 1.5;
}
.client-portal-hero__mascot {
  width: 100%;
  max-width: 620px;
  margin: 4px auto 28px;
}
.client-portal-hero__mascot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
}
.client-portal-hero__status {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 2px dashed rgba(255,255,255,0.55);
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
  cursor: not-allowed;
  user-select: none;
  pointer-events: none;
}
.client-portal-hero__cta {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.client-portal-hero__cta--secondary {
  background: #CAAB7A;
  color: #fff;
}
.client-portal-hero__cta--secondary:hover {
  background: #b8956a;
  transform: translateY(-1px);
}

/* Features grid */
.client-portal-features {
  background: #f8f6f0;
  padding: 70px 24px;
}
.client-portal-features__inner {
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.client-portal-features__inner h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: #222;
  margin: 0 0 36px;
}
.client-portal-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  text-align: left;
}
.client-portal-features__item {
  background: #fff;
  border: 1px solid #e8e2d0;
  border-radius: 10px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.client-portal-features__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.client-portal-features__item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0 0 10px;
}
.client-portal-features__item p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Waitlist */
.client-portal-waitlist {
  background: linear-gradient(135deg, #1e3223 0%, #2a4730 100%);
  padding: 70px 24px;
  color: #fff;
}
.client-portal-waitlist__inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.client-portal-waitlist__inner h2 {
  font-family: 'Inter', sans-serif;
  font-size: 32px; font-weight: 800; margin: 0 0 12px; color: #fff;
}
.client-portal-waitlist__inner p {
  font-family: 'Lato', sans-serif;
  font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0 0 26px;
}
.client-portal-waitlist__fields {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.client-portal-waitlist__fields input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  background: #fff;
  color: #222;
}
.client-portal-waitlist__fields button {
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  background: #CAAB7A;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.client-portal-waitlist__fields button:hover { background: #b8956a; }
.client-portal-waitlist__note {
  font-size: 13px !important;
  color: rgba(255,255,255,0.6) !important;
  margin-top: 14px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .client-portal-hero { padding: 55px 18px 65px; }
  .client-portal-hero h1 { font-size: 32px; }
  .client-portal-hero__lead { font-size: 16px; margin-bottom: 22px; }
  .client-portal-hero__mascot { max-width: 92%; margin-bottom: 24px; }
  .client-portal-hero__status { font-size: 13px; padding: 11px 20px; }
  .client-portal-hero__cta { font-size: 15px; padding: 13px 26px; }
  .client-portal-features { padding: 50px 20px; }
  .client-portal-features__inner h2 { font-size: 26px; }
  .client-portal-waitlist { padding: 50px 20px; }
  .client-portal-waitlist__inner h2 { font-size: 26px; }
  .client-portal-waitlist__fields { flex-direction: column; }
  .client-portal-waitlist__fields input,
  .client-portal-waitlist__fields button { width: 100%; }
}

/* ===== CONTACT PAGE (2-column) ===== */
.contact-page-hero {
  position: relative;
  min-height: 580px;
  padding: 80px 24px 100px;
  display: flex; align-items: flex-start; justify-content: center;
  overflow: hidden;
}
.contact-page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.contact-page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-page-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(245,242,233,0.9) 0%, rgba(245,242,233,0.15) 30%, rgba(30,50,35,0.5) 100%);
}
.contact-page-hero__inner {
  position: relative; z-index: 2;
  max-width: 1150px; width: 100%;
  text-align: center;
}
.contact-page-hero__title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #222;
  margin: 0 0 10px;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}
.contact-page-hero__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #333;
  margin: 0 auto 32px;
  max-width: 640px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
  gap: 40px;
  align-items: start;
  text-align: left;
  margin-top: 20px;
}

.contact-page-form {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.contact-page-form .form-group { margin-bottom: 16px; }
.contact-page-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d6d3ca;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  background: #fafaf7;
  color: #222;
  transition: border-color 0.2s, background 0.2s;
}
.contact-page-form input:focus,
.contact-page-form textarea:focus {
  outline: none;
  border-color: #CAAB7A;
  background: #fff;
}
.contact-page-form textarea { resize: vertical; min-height: 80px; }
.contact-page-form__submit {
  width: 100%;
  background: #2d7f3c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}
.contact-page-form__submit:hover { background: #256830; transform: translateY(-1px); }

.contact-page-city {
  background: #ede0c5;
  border: 2px solid #d6c79d;
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
}
.contact-page-city h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #222;
  margin: 0 0 18px;
}
.contact-page-city__select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #CAAB7A;
  border-radius: 8px;
  background: #fff9f1;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #444;
  cursor: pointer;
}
.contact-page-city__note {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #6b5a3c;
  text-decoration: underline;
}

.contact-page-success {
  margin-top: 20px;
  padding: 14px 18px;
  background: #e8f5e9;
  border-radius: 8px;
  text-align: center;
  color: #2e7d32;
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-page-hero { padding: 60px 18px 70px; min-height: 520px; }
  .contact-page-hero__title { font-size: 34px; }
  .contact-page-hero__subtitle { font-size: 15px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-page-form { padding: 22px; }
  .contact-page-city { padding: 24px 18px; }
}

/* ===== CONTACT PAGE — CITY SEO PANEL (city pages replace the selector) ===== */
.contact-page-seo {
  background: #ede0c5;
  border: 2px solid #d6c79d;
  border-radius: 10px;
  padding: 28px 26px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.contact-page-seo__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #222;
  margin: 0 0 12px;
  line-height: 1.25;
}
.contact-page-seo p {
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  color: #3a3a3a;
  line-height: 1.55;
  margin: 0 0 12px;
}
.contact-page-seo__trust {
  list-style: none;
  padding: 0;
  margin: 14px 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}
.contact-page-seo__trust li {
  font-family: 'Lato', sans-serif;
  font-size: 13.5px;
  color: #4a3e25;
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.contact-page-seo__trust li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: #2d7f3c;
  font-weight: 800;
  font-size: 15px;
}
.contact-page-seo__neighborhoods {
  font-size: 13px !important;
  color: #6b5a3c !important;
  font-style: italic;
  border-top: 1px solid #d6c79d;
  padding-top: 12px;
  margin-top: 6px !important;
}
.contact-page-seo__call {
  display: block;
  margin-top: 16px;
  padding: 12px 16px;
  background: #2d7f3c;
  color: #fff !important;
  border-radius: 8px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.contact-page-seo__call:hover { background: #256830; transform: translateY(-1px); }
.contact-page-seo__hours {
  font-size: 12.5px !important;
  color: #6b5a3c !important;
  text-align: center;
  margin-top: 10px !important;
}

/* ===== MOBILE POLISH (SOFONE-friendly) — contact page ===== */
@media (max-width: 900px) {
  .contact-page-hero { padding: 40px 14px 50px; min-height: auto; }
  .contact-page-hero__title { font-size: 28px; line-height: 1.15; }
  .contact-page-hero__subtitle { font-size: 14.5px; margin-bottom: 22px; }
  .contact-page-grid { gap: 18px; margin-top: 14px; }
  .contact-page-form { padding: 18px 16px; border-radius: 8px; }
  .contact-page-form .form-group { margin-bottom: 12px; }
  .contact-page-form label { font-size: 12.5px; }
  .contact-page-form input,
  .contact-page-form textarea { padding: 11px 12px; font-size: 14.5px; border-radius: 6px; }
  .contact-page-form textarea { min-height: 70px; }
  .contact-page-form__submit { padding: 13px 20px; font-size: 15px; }
  .contact-page-city,
  .contact-page-seo { padding: 22px 18px; }
  .contact-page-city h3,
  .contact-page-seo__heading { font-size: 18px; }
  .contact-page-seo p { font-size: 14px; }
  .contact-page-seo__trust { grid-template-columns: 1fr; gap: 6px; }
  .contact-page-seo__trust li { font-size: 13px; }
  .contact-page-seo__call { padding: 11px 14px; font-size: 14px; }
}

@media (max-width: 480px) {
  .contact-page-hero__title { font-size: 24px; }
  .contact-page-form { padding: 16px 14px; }
  .contact-page-city,
  .contact-page-seo { padding: 18px 16px; }
  .contact-page-seo__heading { font-size: 17px; }
}

/* ===== LOCATIONS PAGE ===== */
.locations-hero {
  position: relative;
  padding: 60px 24px 40px;
  overflow: hidden;
}
.locations-hero__bg { position: absolute; inset: 0; z-index: 0; }
.locations-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.locations-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(30,50,35,0.15) 0%, rgba(30,50,35,0.45) 100%);
}
.locations-hero__inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.locations-hero__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 14px;
}
.locations-hero__top h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.locations-hero__mascot img {
  width: 340px; height: auto; display: block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.3));
}
.locations-hero__search {
  background: #ede0c5;
  border: 2px solid #d6c79d;
  border-radius: 12px;
  padding: 22px 24px;
  max-width: 520px;
  margin: 10px auto 0;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
}
.locations-hero__search h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #222;
  margin: 0 0 14px;
}
.locations-hero__select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #CAAB7A;
  border-radius: 8px;
  background: #fff9f1;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #444;
  cursor: pointer;
}
.locations-hero__search-note {
  display: inline-block; margin-top: 10px;
  font-size: 13px; color: #6b5a3c; text-decoration: underline;
}

/* Grid of city cards */
.locations-grid-section { padding: 50px 20px; background: #f8f6f0; }
.locations-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: #fff;
  border: 1px solid #e6e2d5;
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.location-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.location-card__map {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5/3;
  background: #ddd;
  overflow: hidden;
  cursor: pointer;
}
.location-card__map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  pointer-events: none;  /* clicks fall through to wrapping <a> — no Google Maps redirect */
}
.location-card__map::after {
  content: "View services →";
  position: absolute;
  left: 50%; bottom: 12px;
  transform: translateX(-50%);
  background: rgba(45, 127, 60, 0.95);
  color: #fff;
  padding: 6px 14px;
  border-radius: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.25s, bottom 0.25s;
  pointer-events: none;
}
.location-card:hover .location-card__map::after {
  opacity: 1;
  bottom: 18px;
}
.location-card__body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.location-card__body h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #222;
  margin: 0 0 4px;
}
.location-card__addr {
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  color: #444;
  margin: 0 0 14px;
}
.location-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 8px 0 2px;
}
.location-card__val {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}
.location-card__val a { color: #333; text-decoration: none; font-weight: 600; }
.location-card__val a:hover { color: #CAAB7A; }
.location-card__cta {
  display: block;
  margin-top: auto;
  margin-top: 16px;
  background: #2d7f3c;
  color: #fff;
  padding: 11px 18px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.location-card__cta:hover { background: #256830; transform: translateY(-1px); }

/* SEO text section */
.locations-seo { background: #fff; padding: 50px 20px; }
.locations-seo__inner { max-width: 920px; margin: 0 auto; }
.locations-seo__inner h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #222;
  margin: 0 0 16px;
}
.locations-seo__inner p {
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  color: #444;
  line-height: 1.65;
  margin: 0 0 14px;
}
.locations-seo__inner a { color: #CAAB7A; font-weight: 700; }

/* Bottom CTA */
.locations-cta {
  background: #CAAB7A;
  padding: 38px 24px;
  text-align: center;
}
.locations-cta h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.locations-cta p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #333;
  margin: 0 0 18px;
}
.locations-cta__btn {
  display: inline-block;
  background: #1a1a1a;
  color: #CAAB7A;
  padding: 13px 34px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s;
}
.locations-cta__btn:hover { background: #000; transform: translateY(-1px); }

/* Mobile */
@media (max-width: 900px) {
  .locations-hero { padding: 40px 18px 30px; }
  .locations-hero__top { grid-template-columns: 1fr; }
  .locations-hero__top h1 { font-size: 32px; text-align: center; }
  .locations-hero__mascot { justify-self: center; }
  .locations-hero__mascot img { width: 240px; }
  .locations-hero__search { padding: 18px 18px; }
  .locations-hero__search h3 { font-size: 19px; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .locations-grid-section { padding: 36px 16px; }
  .location-card__body { padding: 16px 18px 18px; }
  .location-card__body h2 { font-size: 19px; }
  .locations-seo { padding: 36px 18px; }
  .locations-seo__inner h2 { font-size: 22px; }
  .locations-seo__inner p { font-size: 14.5px; }
  .locations-cta { padding: 30px 18px; }
  .locations-cta h2 { font-size: 20px; }
}

@media (max-width: 600px) {
  .locations-hero__top h1 { font-size: 26px; }
  .locations-grid { grid-template-columns: 1fr; gap: 16px; }
  .location-card__map { aspect-ratio: 4/3; }
}
