:root {
  --primary-gold: #ffd700;
  --primary-gold-dark: #e6c200;
  --accent-dark: #111111;
  --text-main: #2d3436;
  --text-light: #636e72;
  --emergency-red: #d63031;
  --section-grey: #f8f9fa;
  --white: #ffffff;
  --border-light: #eeeeee;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--white);
  color: var(--text-main);
  line-height: 1.7;
  padding-bottom: 90px;
  -webkit-font-smoothing: antialiased;
}

.top-rating-bar {
  background: var(--accent-dark);
  color: var(--white);
  text-align: center;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.top-rating-link {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 8px;
}

.top-rating-bar i {
  color: var(--primary-gold);
  margin-right: 4px;
}

.top-rating-link:hover,
.top-rating-link:focus {
  color: var(--primary-gold);
}

.emergency-bar {
  background: var(--emergency-red);
  color: var(--white);
  text-align: center;
  padding: 10px;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(214, 48, 49, 0.3);
}

.site-header {
  background: var(--white);
  padding: 15px 24px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--accent-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo:hover,
.logo:focus {
  color: var(--accent-dark);
}

.logo span {
  color: var(--primary-gold);
  background: var(--accent-dark);
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 4px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  background: var(--accent-dark);
  color: var(--primary-gold);
  border: none;
  border-radius: 8px;
  font-size: 1.3rem;
  cursor: pointer;
}

.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 10px 24px 18px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

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

.main-nav a {
  display: block;
  color: var(--accent-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--emergency-red);
}

section {
  padding: 24px;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 35px;
  color: var(--accent-dark);
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary-gold);
  margin: 10px auto 0;
}

.hero {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 50px;
  background: var(--white);
  overflow: hidden;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--accent-dark);
  font-weight: 900;
}

.hero h1 .highlight {
  color: var(--primary-gold);
  font-size: 2.55rem;
  display: block;
  margin-top: 5px;
  text-transform: uppercase;
  font-style: italic;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.location-highlight {
  color: var(--accent-dark);
  background: var(--primary-gold);
  padding: 2px 10px 4px;
  border-radius: 8px;
  margin-left: 0;
  margin-top: 12px;
  text-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.location-highlight i {
  font-size: 0.75em;
}

.eta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dark);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.eta-pill strong {
  color: #00e676;
}

.eta-pill i {
  color: var(--primary-gold);
}

.hero-image-block {
  margin: 30px 0;
  background: var(--white);
}

.hero-img-element {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
  height: auto;
}

@keyframes phoneShake {
  0%,
  50%,
  100% {
    transform: rotate(0deg);
  }

  10%,
  30% {
    transform: rotate(-15deg);
  }

  20%,
  40% {
    transform: rotate(15deg);
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--primary-gold);
  color: var(--accent-dark);
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.2rem;
  width: 100%;
  max-width: 400px;
  text-transform: uppercase;
  border: 2px solid var(--primary-gold);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.btn-primary i {
  animation: phoneShake 2s infinite ease-in-out;
}

.desktop-call-text {
  display: none;
}

.mobile-call-text {
  display: inline;
}

.btn-primary:active {
  transform: scale(0.98);
}

.features {
  background: var(--white);
}

.feature-card {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow);
}

.feature-card i {
  color: #2ecc71;
  font-size: 1.4rem;
}

.feature-card strong {
  font-weight: 900;
  color: var(--accent-dark);
}

.services,
.areas-section,
.faq,
.map-section {
  background: var(--section-grey);
  border-top: 1px solid var(--border-light);
}

.how-it-works,
.why-choose-section,
.reviews-section {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

.services-grid,
.areas-grid,
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card,
.area-box,
.why-card {
  background: var(--white);
  padding: 26px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.service-card i,
.area-box i,
.why-card i {
  font-size: 2.2rem;
  color: var(--accent-dark);
  margin-bottom: 15px;
  display: block;
}

.why-card i {
  color: #2ecc71;
}

.service-card h3,
.area-box h3 {
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.service-card p,
.area-box p,
.step-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.section-photo {
  margin: 0 0 26px;
}

.section-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.step-card {
  background: var(--white);
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.step-num {
  background: var(--primary-gold);
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.faq-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-list {
  width: 100%;
}

.faq-item {
  background: var(--white);
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.faq-trigger {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
  background: #fafafa;
  padding: 0 20px;
}

.faq-item.active .faq-content {
  max-height: 260px;
  padding: 20px;
}

.faq-item.active i {
  transform: rotate(180deg);
  color: var(--primary-gold);
}

.reviews-map-section {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 45px 24px;
}

.reviews-map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.reviews-panel,
.map-panel {
  min-width: 0;
}

.reviews-panel .elfsight-app-fffc128e-126b-4bec-8ceb-28f9de0c5ef9 {
  max-width: 100%;
  margin: 0 auto;
}

.map-section {
  padding: 45px 24px;
}

.map-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-info {
  padding: 22px;
  text-align: center;
}

.map-info h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.map-info p {
  color: var(--text-light);
  font-size: 0.95rem;
}

#google-map {
  width: 100%;
  height: 320px;
  display: block;
}

.map-info-box {
  font-family: "Roboto", sans-serif;
  width: 200px;
  max-width: 200px;
  box-sizing: border-box;
  color: var(--text-main);
  overflow: visible;
  padding: 0;
}

.gm-style-iw-c {
  padding: 12px !important;
  max-width: 250px !important;
}

.gm-style-iw,
.gm-style-iw-d {
  overflow: visible !important;
  max-height: none !important;
}

.gm-style-iw-d {
  padding: 0 !important;
  margin: 0 !important;
}

.map-info-box strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent-dark);
  margin-bottom: 4px;
}

.map-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-gold);
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 7px;
  white-space: nowrap;
}

.map-rating span {
  color: var(--text-main) !important;
  font-size: 0.78rem !important;
  margin-bottom: 0 !important;
  line-height: 1 !important;
}

.map-info-box > span {
  display: block;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--text-light);
  margin-bottom: 10px;
  white-space: normal;
}

.map-info-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto;
  min-width: 92px;
  background: var(--primary-gold);
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 900;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 0.88rem;
  line-height: 1;
}

.map-info-box a:hover,
.map-info-box a:focus {
  background: var(--primary-gold-dark);
}

.main-footer {
  background: #050505;
  color: #b2bec3;
  padding: 60px 24px 10px;
  text-align: center;
  border-top: 1px solid #222;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 5px;
  display: inline-block;
}

.footer-brand span {
  color: var(--primary-gold);
}

.footer-tagline {
  color: var(--primary-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 35px;
  opacity: 0.9;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin-bottom: 32px;
}

.footer-nav a {
  color: #dfe6e9;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--primary-gold);
}

.footer-item {
  display: block;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  padding: 24px 18px;
}

.footer-item h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-link-text {
  color: var(--white);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-item.whatsapp-card {
  border-color: rgba(37, 211, 102, 0.8);
}

.footer-item.whatsapp-card:hover,
.footer-item.whatsapp-card:focus {
  border-color: #25d366;
}

.footer-item.whatsapp-card:hover .footer-link-text,
.footer-item.whatsapp-card:focus .footer-link-text {
  color: #25d366;
}

.legal-block {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 28px;
  padding-bottom: 110px;
  font-size: 0.82rem;
  color: #dfe6e9;
  line-height: 1.8;
}

.legal-block p {
  margin-bottom: 14px;
  display: block;
}

.legal-block a,
.legal-block strong,
.copyright-text,
.privacy-link-wrap {
  color: var(--white) !important;
  font-weight: 700;
}

.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--accent-dark);
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-footer.show-sticky {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }

  .sticky-footer,
  .sticky-footer.show-sticky {
    display: none !important;
  }

  .hero,
  .features,
  .services,
  .how-it-works,
  .areas-section,
  .why-choose-section,
  .faq,
  .reviews-section,
  .map-section,
  .reviews-map-section,
  .main-footer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-header {
    padding: 18px 32px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo span {
    padding: 3px 8px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav,
  .main-nav.nav-open {
    display: flex;
    position: static;
    width: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    align-items: center;
    gap: 22px;
  }

  .main-nav a {
    display: inline-block;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: none;
    position: relative;
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--emergency-red);
    transition: width 0.2s ease;
  }

  .main-nav a:hover::after,
  .main-nav a:focus::after {
    width: 100%;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "text img"
      "btn img";
    align-items: center;
    text-align: left;
    padding: 80px 48px 90px;
    gap: 56px;
    border-bottom: 1px solid var(--border-light);
  }

  .hero-text-block {
    grid-area: text;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 3.6vw, 4rem);
    letter-spacing: -1.5px;
    max-width: 560px;
    margin-top: 0;
  }

  .location-highlight {
    margin-left: 0;
  }

  .hero h1 .highlight {
    font-size: clamp(3.2rem, 4.1vw, 4.5rem);
  }

  .hero-text-block p {
    max-width: 420px;
  }

  .hero-image-block {
    grid-area: img;
    margin: 0;
  }

  .hero-img-element {
    max-width: 620px;
  }

  .hero .btn-primary {
    grid-area: btn;
    width: auto;
    padding: 18px 52px;
    justify-self: start;
    font-size: 1.25rem;
    margin-top: -42px;
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.28);
  }

  .desktop-call-text {
    display: inline;
  }

  .mobile-call-text {
    display: none;
  }

  .btn-primary:hover,
  .btn-primary:focus {
    background: var(--primary-gold-dark);
    border-color: var(--primary-gold-dark);
    transform: translateY(-2px);
  }

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

  .feature-card {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    margin-bottom: 0;
    height: 100%;
    min-height: 150px;
    border: 1px solid var(--border-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .feature-card:hover,
  .service-card:hover,
  .area-box:hover,
  .why-card:hover,
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 215, 0, 0.45);
  }

  .services {
    padding: 75px 48px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-areas:
      "title title"
      "photo cards";
    align-items: center;
    gap: 34px 42px;
  }

  .services .section-title {
    grid-area: title;
    margin-bottom: 10px;
  }

  .services .section-photo {
    grid-area: photo;
    margin: 0;
  }

  .services-grid {
    grid-area: cards;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card,
  .area-box {
    min-height: auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 18px;
    text-align: left;
    align-items: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .service-card i,
  .area-box i {
    font-size: 2rem;
    margin-bottom: 0;
    grid-row: span 2;
  }

  .section-photo img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  }

  .how-it-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
      "title title title title"
      "step1 step2 photo photo"
      "step3 step4 photo photo";
    gap: 22px;
    padding: 75px 48px;
    align-items: stretch;
  }

  .how-it-works .section-title {
    grid-area: title;
    margin-bottom: 10px;
  }

  .how-it-works .section-photo {
    grid-area: photo;
    margin: 0;
  }

  .how-it-works .step-card:nth-of-type(2) {
    grid-area: step1;
  }

  .how-it-works .step-card:nth-of-type(3) {
    grid-area: step2;
  }

  .how-it-works .step-card:nth-of-type(4) {
    grid-area: step3;
  }

  .how-it-works .step-card:nth-of-type(5) {
    grid-area: step4;
  }

  .step-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    min-height: 190px;
    margin-bottom: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .step-num {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .areas-section {
    padding: 75px 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    grid-template-areas:
      "title title"
      "intro intro"
      "photo areas";
    align-items: center;
    gap: 34px 42px;
  }

  .areas-section .section-title {
    grid-area: title;
    margin-bottom: 0;
  }

  .areas-section > p {
    grid-area: intro;
    margin-bottom: 0 !important;
  }

  .areas-section .section-photo {
    grid-area: photo;
    margin: 0;
  }

  .areas-grid {
    grid-area: areas;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0;
  }

  .why-choose-section,
  .faq,
  .reviews-section,
  .map-section,
  .reviews-map-section {
    padding: 70px 48px;
  }

  .reviews-map-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
  }

  .reviews-panel,
  .map-panel,
  .map-card {
    height: 100%;
  }

  .map-card {
    max-width: 1000px;
    margin: 0 auto;
  }

  #google-map {
    height: 420px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }

  .why-card {
    min-height: 155px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 36px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .faq-photo {
    max-width: none;
    margin: 0;
    height: 100%;
  }

  .faq-photo img {
    height: 100%;
    min-height: 430px;
    object-fit: cover;
  }

  .faq-item {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  }

  .faq-trigger:hover {
    background: rgba(255, 215, 0, 0.08);
  }

  .reviews-section > div {
    max-width: 1000px;
  }

  .reviews-panel .elfsight-app-fffc128e-126b-4bec-8ceb-28f9de0c5ef9 {
    max-width: 100%;
  }

  .main-footer {
    padding: 75px 48px 38px;
  }

  .footer-brand {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }

  .footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
  }

  .footer-grid {
    max-width: 1000px;
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer-nav {
    margin-bottom: 36px;
    gap: 28px;
  }

  .footer-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--white);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.2s ease, background 0.2s ease,
      transform 0.2s ease;
  }

  .footer-item:hover,
  .footer-item:focus {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
  }

  .footer-item.whatsapp-card:hover,
  .footer-item.whatsapp-card:focus {
    border-color: #25d366;
  }

  .footer-link-text {
    font-size: 1.15rem;
    font-weight: 700;
  }

  .legal-block {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 28px;
    padding-bottom: 0;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.7fr 1.1fr;
    gap: 25px;
    align-items: center;
    text-align: left;
  }

  .legal-block p {
    margin-top: 0 !important;
  }

  .legal-block p:nth-child(2),
  .legal-block p:nth-child(3) {
    text-align: center;
  }

  .legal-block p:nth-child(4) {
    text-align: right;
  }
  /* About Us page */
.about-hero {
  background: var(--white);
  text-align: center;
  padding-top: 45px;
  padding-bottom: 50px;
}

.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-hero h1 {
  font-size: 2.35rem;
  line-height: 1.1;
  color: var(--accent-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.about-hero h1 span {
  color: var(--primary-gold);
  text-transform: uppercase;
  font-style: italic;
  display: block;
  font-size: 2.7rem;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.about-hero p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 24px;
}

.content-section {
  background: var(--section-grey);
  border-top: 1px solid var(--border-light);
}

.content-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.text-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.text-card h2,
.text-card h3 {
  color: var(--accent-dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.text-card p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.text-card p:last-child {
  margin-bottom: 0;
}

.values-section {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

.values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.value-card {
  background: var(--white);
  padding: 26px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.value-card i {
  font-size: 2.2rem;
  color: var(--accent-dark);
  margin-bottom: 15px;
  display: block;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--accent-dark);
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.cta-section {
  background: var(--section-grey);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.cta-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 900;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.cta-box p {
  color: var(--text-light);
  margin-bottom: 22px;
}

@media (min-width: 1024px) {
  .about-hero,
  .content-section,
  .values-section,
  .cta-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero {
    text-align: left;
    padding: 80px 48px 90px;
    border-bottom: 1px solid var(--border-light);
  }

  .about-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }

  .about-hero h1 {
    font-size: clamp(2.9rem, 3.6vw, 4rem);
    letter-spacing: -1.5px;
  }

  .about-hero h1 span {
    font-size: clamp(3.2rem, 4.1vw, 4.5rem);
  }

  .about-hero p {
    margin-left: 0;
    max-width: 470px;
  }

  .about-hero .btn-primary {
    width: auto;
    padding: 18px 52px;
    font-size: 1.2rem;
  }

  .content-section,
  .values-section,
  .cta-section {
    padding: 75px 48px;
  }

  .content-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .text-card {
    margin-bottom: 0;
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .value-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 215, 0, 0.45);
  }
}
}

/* Town name badge - keep long town names on one line */
.location-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  white-space: nowrap;
  line-height: 1;
  font-size: clamp(1.45rem, 7vw, 2.2rem);
  padding: 8px 14px 10px;
}

.location-highlight i {
  flex: 0 0 auto;
  font-size: 0.78em;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .hero h1 .highlight {
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 1.05;
  }

  .hero h1 .highlight .location-highlight {
    font-size: clamp(1.6rem, 8.6vw, 2.15rem);
    max-width: calc(100vw - 48px);
    white-space: nowrap;
    padding: 9px 14px 10px;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 380px) {
  .hero h1 .highlight .location-highlight {
    font-size: clamp(1.35rem, 8vw, 1.85rem);
    padding: 8px 12px 9px;
    gap: 7px;
  }
}

/* SEO location link sections - styled to match main website cards */
.location-directory {
  grid-column: 1 / -1;
  margin: 42px auto 0;
  width: 100%;
  max-width: 1120px;
}

.location-directory .section-title {
  margin-bottom: 12px;
}

.location-directory-intro {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
}

.location-directory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 22px;
}

.location-directory-card,
.location-directory > div > div {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.location-directory-card::before,
.location-directory > div > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-gold);
}

.location-directory-card h3,
.location-directory > div > div h3 {
  color: var(--accent-dark);
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-directory-card h3::before,
.location-directory > div > div h3::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-gold);
  background: var(--accent-dark);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  flex: 0 0 34px;
}

.location-pill-list,
.nearby-pill-list,
.location-directory-card div,
.location-directory > div > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-pill,
.location-directory a,
.nearby-location-links .area-box {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--section-grey);
  border: 1px solid var(--border-light);
  color: var(--accent-dark) !important;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  box-shadow: none;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.location-pill::after,
.location-directory a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.72rem;
  margin-left: 8px;
  color: var(--primary-gold);
}

.location-pill:hover,
.location-pill:focus,
.location-directory a:hover,
.location-directory a:focus,
.nearby-location-links .area-box:hover,
.nearby-location-links .area-box:focus {
  transform: translateY(-2px);
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--white) !important;
}

.nearby-location-links .areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.nearby-location-links .area-box {
  width: auto;
  padding: 10px 15px;
}

.nearby-location-links .area-box i,
.nearby-location-links .area-box p {
  display: none;
}

.nearby-location-links .area-box h3 {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

@media (min-width: 768px) {
  .location-directory-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    align-items: stretch;
  }

  .location-directory-card,
  .location-directory > div > div {
    min-width: 0;
  }
}

@media (min-width: 1024px) {
  .location-directory-grid {
    gap: 24px;
  }

  .location-directory-card,
  .location-directory > div > div {
    padding: 28px;
  }

  .location-pill-list,
  .nearby-pill-list,
  .location-directory-card div,
  .location-directory > div > div > div {
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .location-directory-card,
  .location-directory > div > div {
    padding: 20px;
  }

  .location-pill,
  .location-directory a,
  .nearby-location-links .area-box {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
  }

  .location-directory-card h3,
  .location-directory > div > div h3 {
    font-size: 1.15rem;
  }
}

/* Individual location pages - nearby area link section */
.nearby-location-links {
  display: block !important;
  grid-template-columns: none !important;
  grid-template-areas: none !important;
  padding: 72px 28px !important;
  background: var(--white);
  text-align: center;
}

.nearby-location-links .section-title {
  max-width: 760px;
  margin: 0 auto 12px;
}

.nearby-location-links > p {
  max-width: 680px;
  margin: 0 auto 24px !important;
  color: var(--text-light);
}

.nearby-location-links .areas-grid {
  display: flex !important;
  grid-area: auto !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 980px;
  margin: 26px auto 0 !important;
  padding: 28px;
  background: var(--section-grey);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.nearby-location-links .areas-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gold);
}

.nearby-location-links .area-box {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
  min-height: 46px;
  padding: 12px 18px !important;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--accent-dark) !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nearby-location-links .area-box::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.78rem;
  color: var(--primary-gold);
}

.nearby-location-links .area-box i,
.nearby-location-links .area-box p {
  display: none !important;
}

.nearby-location-links .area-box h3 {
  margin: 0 !important;
  color: inherit !important;
  font-size: 0.98rem !important;
  font-weight: 900 !important;
  line-height: 1.15;
}

.nearby-location-links .area-box:hover,
.nearby-location-links .area-box:focus {
  transform: translateY(-2px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white) !important;
}

@media (max-width: 640px) {
  .nearby-location-links {
    padding: 56px 18px !important;
  }

  .nearby-location-links .areas-grid {
    padding: 22px;
    gap: 10px;
    border-radius: 18px;
  }

  .nearby-location-links .area-box {
    width: 100% !important;
    justify-content: space-between;
    border-radius: 14px;
  }
}
