/* ============================================
   Gianella Cleanest Service - Landing
   Domain: gianellacleanest.com
   ============================================ */

:root {
  /* Brand - from logo */
  --navy: #0a3d62;
  --navy-light: #1e5f85;
  --turquoise: #38ada9;
  --water: #78e08f;
  --green: #2ecc71;
  --green-band: #27ae60;
  --sand: #f6e58d;
  --sunset: #f8b500;
  --white: #ffffff;
  --off-white: #f8fafb;
  --gray-100: #f1f3f5;
  --gray-300: #dee2e6;
  --gray-600: #868e96;
  --gray-800: #343a40;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & layout */
  --container: min(92%, 1140px);
  --section-padding: clamp(3rem, 6vw, 5rem);
  --header-height: 72px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 20px rgba(10, 61, 98, 0.08);
  --shadow-hover: 0 8px 30px rgba(10, 61, 98, 0.12);

  /* Animations */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;
  --duration-slow: 0.85s;
}

/* ----- Keyframes ----- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--off-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--navy-light);
  text-decoration: underline;
}

.container {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ----- Header ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s var(--ease-out);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 160px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

.nav a:hover {
  color: var(--turquoise);
  text-decoration: none;
}

.btn-nav {
  padding: 0.5rem 1rem;
  background: var(--green-band);
  color: var(--white) !important;
  border-radius: var(--radius);
}

.btn-nav:hover {
  background: var(--green);
  text-decoration: none !important;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lang-btn {
  padding: 0.35rem 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  background: transparent;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.lang-btn:hover {
  color: var(--navy);
  border-color: var(--navy-light);
  background: var(--gray-100);
}

.lang-btn.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .menu-toggle span {
    transition: transform 0.2s, opacity 0.2s;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--green-band);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-submit {
  width: 100%;
  max-width: 320px;
  margin-top: 0.5rem;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image .hero-bg {
  background: var(--navy);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 61, 98, 0.55) 0%,
    rgba(10, 61, 98, 0.7) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Hero entrance animation */
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-cta,
.hero-content .hero-phone {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration) var(--ease-out-expo), transform var(--duration) var(--ease-out-expo);
}

body.loaded .hero-content .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

body.loaded .hero-content .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

body.loaded .hero-content .hero-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

body.loaded .hero-content .hero-phone {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 560px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-image .btn-hero {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.hero-image .btn-hero:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.hero-phone {
  font-weight: 600;
  font-size: 1.125rem;
}

.hero-phone a {
  color: var(--white);
}

.hero-phone a:hover {
  color: var(--sand);
  text-decoration: none;
}

.hero-phone .sep {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ----- Sections ----- */
.section {
  padding: var(--section-padding) 0;
}

.section-form {
  background: var(--white);
  box-shadow: var(--shadow);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  color: var(--gray-600);
  margin: 0 0 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Scroll reveal animations ----- */
[data-reveal] .section-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration) var(--ease-out-expo), transform var(--duration) var(--ease-out-expo);
}

[data-reveal] .section-intro {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration) var(--ease-out-expo), transform var(--duration) var(--ease-out-expo);
}

[data-reveal].in-view .section-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

[data-reveal].in-view .section-intro {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* Form section */
.section-form .quote-form {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-out-expo), transform var(--duration-slow) var(--ease-out-expo);
}

.section-form.in-view .quote-form {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Services: image + cards stagger */
.section-services .services-visual {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration) var(--ease-out-expo), transform var(--duration) var(--ease-out-expo);
}

.section-services.in-view .services-visual {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.section-services .service-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease-out-expo), transform var(--duration) var(--ease-out-expo), box-shadow 0.2s;
}

.section-services.in-view .service-card {
  opacity: 1;
  transform: translateY(0);
}

.section-services.in-view .service-card:nth-child(1) { transition-delay: 0.1s; }
.section-services.in-view .service-card:nth-child(2) { transition-delay: 0.18s; }
.section-services.in-view .service-card:nth-child(3) { transition-delay: 0.26s; }
.section-services.in-view .service-card:nth-child(4) { transition-delay: 0.34s; }
.section-services.in-view .service-card:nth-child(5) { transition-delay: 0.42s; }

/* Why us: image + list stagger */
.section-why .why-visual {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration) var(--ease-out-expo), transform var(--duration) var(--ease-out-expo);
}

.section-why.in-view .why-visual {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.section-why .trust-list li {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity var(--duration) var(--ease-out-expo), transform var(--duration) var(--ease-out-expo);
}

.section-why.in-view .trust-list li {
  opacity: 1;
  transform: translateX(0);
}

.section-why.in-view .trust-list li:nth-child(1) { transition-delay: 0.15s; }
.section-why.in-view .trust-list li:nth-child(2) { transition-delay: 0.23s; }
.section-why.in-view .trust-list li:nth-child(3) { transition-delay: 0.31s; }
.section-why.in-view .trust-list li:nth-child(4) { transition-delay: 0.39s; }
.section-why.in-view .trust-list li:nth-child(5) { transition-delay: 0.47s; }
.section-why.in-view .trust-list li:nth-child(6) { transition-delay: 0.55s; }

/* Areas: map + list */
.section-areas .map-wrap {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-out-expo), transform var(--duration-slow) var(--ease-out-expo);
}

.section-areas .areas-list li {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--duration) var(--ease-out-expo), transform var(--duration) var(--ease-out-expo);
}

.section-areas.in-view .map-wrap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.section-areas.in-view .areas-list li:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.section-areas.in-view .areas-list li:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.42s; }
.section-areas.in-view .areas-list li:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.49s; }
.section-areas.in-view .areas-list li:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.56s; }
.section-areas.in-view .areas-list li:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.63s; }

/* CTA section reveal */
.section-cta .cta-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease-out-expo), transform var(--duration) var(--ease-out-expo);
}

.section-cta.in-view .cta-card {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Form ----- */
.quote-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--gray-800);
}

.required {
  color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(56, 173, 169, 0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  min-height: 1.4em;
}

.form-status.success {
  color: var(--green-band);
}

.form-status.error {
  color: #c0392b;
}

/* ----- Services ----- */
.section-services {
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.services-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 61, 98, 0.88) 0%,
    rgba(30, 95, 133, 0.82) 35%,
    rgba(56, 173, 169, 0.8) 65%,
    rgba(39, 174, 96, 0.86) 100%
  );
  z-index: 1;
}

.section-services .services-container {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.section-services .services-title {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.services-subtitle {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
  margin-top: 2rem;
}

.services-content {
  order: 2;
  min-width: 0;
}

.services-visual {
  order: 1;
  min-width: 0;
}

@media (min-width: 1024px) {
  .services-layout {
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
  }

  .services-content {
    order: 1;
  }

  .services-visual {
    order: 2;
    margin-top: 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .services-grid .service-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    max-width: calc((100% - 3rem) / 3);
  }
}

.services-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  background: var(--gray-100);
  height: 380px;
}

@media (min-width: 1024px) {
  .services-image-wrap {
    height: 440px;
  }
}

.services-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  background: var(--white);
  padding: 1.5rem 1.375rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.15s;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--navy);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--navy);
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-band);
  flex: 1;
  min-width: 0;
}

.service-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--gray-600);
  font-size: 0.9875rem;
  line-height: 1.55;
  flex: 1;
}

.service-card li {
  margin-bottom: 0.4rem;
}

.service-card li:last-child {
  margin-bottom: 0;
}

.service-badge {
  align-self: flex-start;
  margin-bottom: 0.6rem;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(39, 174, 96, 0.12);
  color: var(--green-band);
}

.service-badge--accent {
  background: rgba(56, 173, 169, 0.12);
  color: var(--turquoise);
}

.service-card--green h3 {
  border-bottom-color: var(--green-band);
}

.service-card--turquoise h3 {
  border-bottom-color: var(--turquoise);
}

.service-card--blue h3 {
  border-bottom-color: #1e5f85;
}

.service-card--navy h3 {
  border-bottom-color: var(--navy);
}

.service-card--gold h3 {
  border-bottom-color: var(--sand);
}

/* ----- Why Us ----- */
.section-why {
  background: var(--white);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .why-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .why-visual {
    order: 1;
  }

  .why-content {
    order: 2;
  }
}

.why-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: var(--gray-100);
}

.why-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.why-content .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}

@media (max-width: 767px) {
  .why-content .section-title {
    text-align: center;
  }

  .trust-list {
    margin-left: auto;
    margin-right: auto;
  }
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 520px;
}

.trust-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.trust-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green-band);
  font-weight: 700;
}

/* ----- Areas ----- */
.section-areas {
  background: var(--off-white);
}

/* Coverage map - modern, non-Google look */
.map-wrap {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--gray-300);
  background: var(--white);
}

.coverage-map {
  width: 100%;
  height: 380px;
  min-height: 280px;
  border: none;
}

/* Leaflet overrides for brand look */
.coverage-map .leaflet-tile-pane {
  filter: saturate(0.85) contrast(1.05) brightness(1.02);
}

.coverage-map .leaflet-control-zoom {
  border: none !important;
  box-shadow: var(--shadow) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
}

.coverage-map .leaflet-control-zoom a {
  color: var(--navy) !important;
  font-weight: 700 !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
}

.coverage-map .leaflet-control-zoom a:hover {
  background: var(--gray-100) !important;
  color: var(--turquoise) !important;
}

/* Custom marker style (circle with brand color) */
.coverage-map .leaflet-marker-icon {
  border: none !important;
  background: transparent !important;
}

.coverage-marker-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-band);
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.45);
  border: 2px solid var(--white);
}

.coverage-map .leaflet-popup-content-wrapper {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font-body);
}

.coverage-map .leaflet-popup-content {
  margin: 0.6rem 0.9rem;
  font-size: 0.95rem;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.areas-list li {
  background: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
}

/* ----- CTA ----- */
.section-cta {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6rem) 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.section-cta .container {
  position: relative;
  z-index: 1;
}

/* Background image + gradient via inline style in HTML; parallax on desktop */
.cta-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .cta-bg {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-bg {
    background-attachment: scroll;
  }
}

.cta-card {
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.cta-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquoise);
  opacity: 0.95;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.cta-subline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.75rem;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn-cta:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.btn-cta-icon {
  font-size: 1.1em;
  line-height: 1;
}

.btn-cta-primary {
  background: var(--green-band);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
}

.btn-cta-primary:hover {
  background: var(--green);
  box-shadow: 0 6px 28px rgba(39, 174, 96, 0.5);
  color: var(--white);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.9375rem;
}

.cta-contact-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.cta-phone-link {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.cta-phone-link:hover {
  color: var(--sand);
  text-decoration: none;
}

.cta-contact-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 380px) {
  .cta-contact {
    flex-direction: column;
    gap: 0.25rem;
  }

  .cta-contact-dot {
    display: none;
  }
}

/* ----- Footer ----- */
.footer {
  position: relative;
  background: #2c3036;
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--turquoise), var(--green-band));
  opacity: 0.9;
}

.footer-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 1rem 1.5rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-phone,
.footer-email {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.footer-phone a,
.footer-email a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-phone a:hover,
.footer-email a:hover {
  color: var(--turquoise);
}

.footer-sep {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.footer-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--sand);
  margin: 0;
  letter-spacing: 0.01em;
}

.footer-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
  font-size: 0.8125rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

@media (min-width: 520px) {
  .footer-grid {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .footer-contact {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .footer-email {
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* ----- Mobile CTA (call) - fixed bottom, full width ----- */
.cta-mobile-call {
  display: none;
}

@media (max-width: 768px) {
  .cta-mobile-call {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
    background: var(--green-band);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.2s;
  }

  .cta-mobile-call:hover,
  .cta-mobile-call:active {
    background: var(--green);
    color: var(--white);
    text-decoration: none;
  }

  body {
    padding-bottom: 72px;
  }
}

/* ----- Credits bar (after footer) ----- */
.credits-bar {
  background: #0d0d0d;
  border-top: 5px solid #b8860b;
}

.credits-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.75rem 1rem;
}

.credits-label {
  width: 100%;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

.credits-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.credits-brand:hover {
  color: var(--white);
  text-decoration: none;
}

.credits-name {
  text-decoration: underline;
  text-decoration-color: var(--green-band);
  text-underline-offset: 3px;
}

.credits-brand:hover .credits-name {
  text-decoration-color: var(--turquoise);
}

.credits-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .credits-bar-inner {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .credits-label {
    width: auto;
    margin: 0;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover,
  .service-card:hover {
    transform: none;
  }

  .hero-content .hero-title,
  .hero-content .hero-subtitle,
  .hero-content .hero-cta,
  .hero-content .hero-phone {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-reveal] .section-title,
  [data-reveal] .section-intro,
  .section-form .quote-form,
  .section-services .services-visual,
  .section-services .service-card,
  .section-why .why-visual,
  .section-why .trust-list li,
  .section-areas .map-wrap,
  .section-areas .areas-list li,
  .section-cta .cta-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
