/*
MAINTAINER NOTES
1. CSS is organized by: variables, base/reset, layout, header/nav, hero, shared card patterns,
   section-specific styles, footer/mobile UI, utilities, and responsive rules.
2. Design tokens and reusable variables live in :root at the top of the file.
3. Responsive rules are grouped at the bottom under the media query sections.
*/

/* ========================================
   VARIABLES
======================================== */

:root {
  --color-primary: #2E7D6E;
  --color-primary-deep: #215E53;
  --color-secondary: #7CC9B7;
  --color-accent: #F4B860;
  --color-accent-deep: #A56A19;
  --color-bg: #F8FCFB;
  --color-surface: #FFFFFF;
  --color-surface-soft: #F3F8F6;
  --color-text: #1F2A2A;
  --color-muted: #5F6B6B;
  --color-border: #DCE8E4;
  --color-success: #1B7F5A;
  --shadow-xs: 0 8px 22px rgba(31, 42, 42, 0.045);
  --shadow-sm: 0 16px 34px rgba(31, 42, 42, 0.07);
  --shadow-md: 0 26px 58px rgba(31, 42, 42, 0.11);
  --shadow-lg: 0 40px 96px rgba(31, 42, 42, 0.14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-pill: 999px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --container: 1180px;
  --header-height: 84px;
}

/* ========================================
   BASE / RESET
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(124, 201, 183, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(244, 184, 96, 0.1), transparent 22%),
    linear-gradient(180deg, #f8fcfb 0%, #f4faf8 44%, #f7fbfa 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(46, 125, 110, 0.28);
  outline-offset: 3px;
}

/* ========================================
   LAYOUT
======================================== */

.container {
  width: min(calc(100% - 1.5rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(4.4rem, 7vw, 7rem) 0;
}

.section + .section {
  margin-top: -0.2rem;
}

.section.about,
.section.contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.14));
}

.section.services,
.section.testimonials {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(124, 201, 183, 0.035) 50%, rgba(255, 255, 255, 0.04));
}

.hero-grid,
.split-layout,
.contact-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.4rem);
}

.split-layout {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.92fr);
  align-items: start;
}

/* ========================================
   ACCESSIBILITY / UTILITIES
======================================== */

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1001;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   HEADER / NAVIGATION
======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 232, 228, 0.7);
  background: rgba(248, 252, 251, 0.84);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 252, 251, 0.95);
  border-bottom-color: rgba(220, 232, 228, 0.94);
  box-shadow: 0 14px 36px rgba(31, 42, 42, 0.09);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.45rem;
}

.brand-mark img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.brand-text strong {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.brand-text span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: auto;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  border: 1px solid rgba(220, 232, 228, 0.95);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-xs);
}

.language-toggle-button {
  min-width: 2.85rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.72rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-muted);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.language-toggle-button:hover {
  color: var(--color-primary);
}

.language-toggle-button.is-active {
  background: rgba(124, 201, 183, 0.18);
  color: var(--color-primary-deep);
  box-shadow: inset 0 0 0 1px rgba(124, 201, 183, 0.3);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(220, 232, 228, 0.95);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  box-shadow: var(--shadow-xs);
}

.menu-toggle-lines {
  position: relative;
  width: 1.2rem;
  height: 0.9rem;
  display: inline-block;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after,
.menu-toggle-lines {
  background:
    linear-gradient(currentColor, currentColor) center 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center 50% / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center 100% / 100% 2px no-repeat;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 0.98rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  color: var(--color-muted);
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--color-primary);
  background: rgba(124, 201, 183, 0.16);
  border-color: rgba(124, 201, 183, 0.3);
  transform: translateY(-1px);
}

/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.98rem 1.42rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #328571, #25695d);
  color: #fff;
  box-shadow: 0 18px 34px rgba(46, 125, 110, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #2d7a69, #20594f);
  box-shadow: 0 22px 38px rgba(46, 125, 110, 0.24);
}

.btn-secondary {
  border-color: rgba(220, 232, 228, 0.98);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-primary);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(46, 125, 110, 0.25);
}

.btn-full {
  width: 100%;
}

/* ========================================
   HERO
======================================== */

.hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2.2rem;
}

.hero-shell {
  position: relative;
  padding: clamp(1.3rem, 2vw, 1.7rem);
  border: 1px solid rgba(220, 232, 228, 0.75);
  border-radius: calc(var(--radius-lg) + 8px);
  background:
    radial-gradient(circle at top left, rgba(124, 201, 183, 0.2), transparent 24%),
    radial-gradient(circle at 92% 16%, rgba(244, 184, 96, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38));
  box-shadow: 0 26px 60px rgba(31, 42, 42, 0.07);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 1.1rem auto auto 1.1rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: rgba(124, 201, 183, 0.08);
  filter: blur(6px);
  pointer-events: none;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: calc(var(--radius-lg) + 2px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-grid::after {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: calc(51% - 1px);
  width: 1px;
  background: linear-gradient(180deg, rgba(220, 232, 228, 0), rgba(220, 232, 228, 0.85), rgba(220, 232, 228, 0));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  padding: clamp(1.2rem, 1.7vw, 1.55rem) clamp(1.25rem, 1.8vw, 1.7rem) clamp(1.2rem, 1.65vw, 1.5rem) 0;
  align-self: center;
}

.hero-copy::after {
  content: none;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.88rem;
  border: 1px solid rgba(124, 201, 183, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(124, 201, 183, 0.16);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 9.5ch;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  text-wrap: balance;
}

.hero-service-line {
  margin: 0 0 0.85rem;
  color: var(--color-primary-deep);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-title-strong {
  font-weight: 800;
}

.hero-title-soft {
  font-weight: 600;
  color: rgba(31, 42, 42, 0.76);
  margin-left: -0.08em;
}

.hero-title-separator {
  display: block;
  width: 4.6rem;
  height: 2px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(46, 125, 110, 0.42), rgba(124, 201, 183, 0.22) 55%, rgba(244, 184, 96, 0.08) 78%, rgba(244, 184, 96, 0));
}

.hero-lead,
.section-text {
  max-width: 62ch;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.hero-lead {
  max-width: 31rem;
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.72;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-trust-note {
  margin: 0.8rem 0 0;
  color: rgba(33, 94, 83, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-actions .btn-primary {
  min-width: 188px;
  box-shadow: 0 20px 36px rgba(46, 125, 110, 0.22);
}

.hero-actions .btn-secondary {
  min-width: 176px;
  background: rgba(255, 255, 255, 0.88);
}

.contact-quick-item,
.contact-detail-card {
  padding: 0.96rem 1rem 1rem;
  border: 1px solid rgba(220, 232, 228, 0.86);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 249, 0.95));
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-quick-item:hover,
.contact-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(124, 201, 183, 0.38);
}

.contact-quick span,
.contact-details span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.contact-quick a,
.contact-details a {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.98rem;
  word-break: break-word;
}

.contact-quick p,
.contact-details p {
  margin: 0;
  font-weight: 600;
}

.contact-quick-item:first-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 251, 248, 0.98)),
    linear-gradient(135deg, rgba(124, 201, 183, 0.08), transparent 55%);
  border-color: rgba(124, 201, 183, 0.28);
}

.contact-quick-item:last-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 251, 247, 0.97)),
    linear-gradient(135deg, rgba(244, 184, 96, 0.07), transparent 60%);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0 0.35rem 1.25rem;
}

.hero-image-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  width: min(100%, 32rem);
  padding: 3.2rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.12));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -1.2rem -1.3rem 2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(31, 42, 42, 0.08);
  filter: blur(18px);
  z-index: -1;
}

.hero-logo-visual {
  width: min(100%, 21.5rem);
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.94;
  transform-origin: center;
  animation: hero-logo-float 5.6s ease-in-out infinite;
}

@keyframes hero-logo-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.035);
  }
}

/* ========================================
   SECTION HEADINGS / SHARED TYPOGRAPHY
======================================== */

.trust-strip {
  padding-top: 0.25rem;
  padding-bottom: 0.9rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(220, 232, 228, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.trust-item strong {
  font-size: 0.93rem;
  line-height: 1.35;
}

.trust-icon {
  width: 1.55rem;
  height: 1.55rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(244, 184, 96, 0.12);
  color: rgba(165, 106, 25, 0.8);
  font-size: 0.85rem;
  line-height: 1;
}

.section-heading,
.contact-copy {
  position: relative;
}

.section-heading h2,
.contact-copy h2 {
  margin-top: 0.95rem;
  max-width: 14ch;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  text-wrap: balance;
}

.section-heading .section-text,
.contact-copy .section-text {
  margin-top: 1.05rem;
  line-height: 1.78;
}

.section-heading .section-text + .section-text {
  margin-top: 0.9rem;
}

.section-heading-centered {
  text-align: center;
}

.section-heading-centered h2,
.section-heading-centered .section-text {
  margin-right: auto;
  margin-left: auto;
}

/* ========================================
   SHARED CARD PATTERNS
======================================== */

.info-card,
.service-card,
.testimonial-card,
.checklist-card,
.contact-form-card,
.area-banner {
  border: 1px solid rgba(220, 232, 228, 0.9);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 251, 0.96));
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.info-card:hover,
.service-card:hover,
.testimonial-card:hover,
.checklist-card:hover,
.contact-form-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124, 201, 183, 0.34);
}

/* ========================================
   ABOUT
======================================== */

.about-card-stack {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.info-card {
  padding: 1.65rem;
}

.about-stats {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 248, 0.98)),
    linear-gradient(135deg, rgba(124, 201, 183, 0.08), transparent 45%);
}

.about-stats h3,
.contact-form-card h3 {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.about-stats dl {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.about-stats dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(220, 232, 228, 0.72);
}

.about-stats dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-stats dt {
  color: var(--color-muted);
}

.about-stats dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.about-image-card {
  min-height: 245px;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.about-space-image {
  width: 100%;
  height: 100%;
  min-height: 245px;
  display: block;
  object-fit: contain;
}

.small-image-placeholder {
  min-height: 245px;
  display: grid;
  place-items: center;
  padding: 1.9rem;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(46, 125, 110, 0.92), rgba(124, 201, 183, 0.84));
}

.small-image-placeholder span {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.small-image-placeholder small {
  max-width: 16rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

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

.service-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.services .section-heading {
  max-width: 48rem;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 250, 0.96));
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(124, 201, 183, 0.7), rgba(124, 201, 183, 0));
  opacity: 0.75;
}

.service-card:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 248, 0.97)),
    linear-gradient(135deg, rgba(124, 201, 183, 0.05), transparent 55%);
}

.service-card:nth-child(3n) .service-icon {
  background: linear-gradient(180deg, rgba(244, 184, 96, 0.2), rgba(244, 184, 96, 0.08));
  color: #87591b;
}

.service-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1.15rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(124, 201, 183, 0.22), rgba(124, 201, 183, 0.09));
  color: var(--color-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  font-size: 1.3rem;
}

.service-card h3 {
  margin: 0 0 0.72rem;
  font-size: 1.12rem;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.72;
}

/* ========================================
   WHY CHOOSE US
======================================== */

.why .checklist-card {
  padding: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 248, 0.97)),
    linear-gradient(135deg, rgba(124, 201, 183, 0.06), transparent 55%);
}

.why .section-heading {
  padding-top: 0.6rem;
}

.checklist {
  display: grid;
  gap: 1.05rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 2.4rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.45rem;
  height: 1.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(46, 125, 110, 0.13);
  color: var(--color-primary);
  font-weight: 800;
}

/* ========================================
   AREAS
======================================== */

.areas {
  overflow: hidden;
}

.areas::before {
  content: "";
  position: absolute;
  inset: 2.4rem 0 2.4rem;
  background:
    radial-gradient(circle at 15% 50%, rgba(124, 201, 183, 0.08), transparent 24%),
    radial-gradient(circle at 84% 34%, rgba(244, 184, 96, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14));
  border-top: 1px solid rgba(220, 232, 228, 0.55);
  border-bottom: 1px solid rgba(220, 232, 228, 0.55);
  pointer-events: none;
}

.areas .container {
  position: relative;
}

.areas .section-heading {
  max-width: 54rem;
  margin: 0 auto;
}

.areas .section-heading h2 {
  max-width: 100%;
  font-size: clamp(2.3rem, 4.2vw, 3.9rem);
}

.areas .section-heading .section-text {
  max-width: 48rem;
}

.area-banner {
  margin-top: 2rem;
  padding: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 249, 0.99)),
    linear-gradient(135deg, rgba(124, 201, 183, 0.06), transparent 55%);
  box-shadow: 0 20px 42px rgba(31, 42, 42, 0.06);
}

.area-banner::before {
  content: "Υπηρεσίες καθαρισμού στην Αττική";
  flex-basis: 100%;
  display: block;
  margin-bottom: 0.15rem;
  color: var(--color-primary-deep);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.area-chip {
  padding: 0.76rem 1.08rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(124, 201, 183, 0.14);
  background: rgba(124, 201, 183, 0.12);
  color: var(--color-primary);
  font-weight: 700;
}

/* ========================================
   TESTIMONIALS
======================================== */

.testimonial-grid {
  margin-top: 2.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.testimonial-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 250, 0.96));
}

.testimonial-card:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 248, 0.97)),
    linear-gradient(135deg, rgba(124, 201, 183, 0.05), transparent 55%);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(124, 201, 183, 0.7), rgba(124, 201, 183, 0));
  opacity: 0.75;
}

.testimonial-mark {
  display: none;
}

.testimonial-card blockquote {
  position: relative;
  margin: 0;
  padding-right: 1rem;
  color: #485353;
  font-size: 1.05rem;
  line-height: 1.85;
}

.testimonial-card figcaption {
  margin-top: 1.45rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(220, 232, 228, 0.86);
  display: grid;
  gap: 0.18rem;
}

.testimonial-card figcaption strong {
  font-size: 1rem;
  color: var(--color-primary-deep);
}

.testimonial-card figcaption span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

/* ========================================
   CONTACT / FORM
======================================== */

.contact-layout {
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 1.8rem 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(124, 201, 183, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.14));
  border-top: 1px solid rgba(220, 232, 228, 0.5);
  border-bottom: 1px solid rgba(220, 232, 228, 0.5);
  pointer-events: none;
}

.contact .container {
  position: relative;
}

.contact-copy {
  padding-top: 0.55rem;
}

.contact-details {
  margin-top: 1.65rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form-card {
  padding: 1.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(246, 251, 249, 0.985)),
    linear-gradient(135deg, rgba(124, 201, 183, 0.06), transparent 58%);
}

.contact-form-card {
  position: relative;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: linear-gradient(180deg, rgba(46, 125, 110, 0.95), rgba(124, 201, 183, 0.7));
}

.contact-form {
  display: grid;
  gap: 1.05rem;
}

.field {
  display: grid;
  gap: 0.46rem;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(220, 232, 228, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(46, 125, 110, 0.7);
  box-shadow: 0 0 0 4px rgba(124, 201, 183, 0.18);
}

.field-error {
  min-height: 1.1rem;
  color: #b33636;
  font-size: 0.85rem;
}

.form-note {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(244, 184, 96, 0.12);
  color: #755214;
  font-size: 0.91rem;
}

.form-status {
  margin: 0;
  min-height: 1.2rem;
  color: var(--color-success);
  font-weight: 700;
}

/* ========================================
   FOOTER / MOBILE ACTIONS
======================================== */

.site-footer {
  padding: 2.8rem 0 6.8rem;
  border-top: 1px solid rgba(220, 232, 228, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(248, 252, 251, 0.94));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
  align-items: start;
}

.footer-grid > div:first-child {
  max-width: 24rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 1.05rem;
}

.footer-grid span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-muted);
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: var(--color-muted);
}

.footer-grid a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  margin-top: 1.7rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(220, 232, 228, 0.84);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.mobile-contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: none;
  gap: 0.75rem;
  padding: 0.75rem 0.8rem calc(0.8rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(220, 232, 228, 0.94);
  background: rgba(248, 252, 251, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 -10px 24px rgba(31, 42, 42, 0.06);
}

.mobile-contact-link {
  flex: 1;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 800;
}

.mobile-call {
  background: linear-gradient(180deg, #328571, #25695d);
  color: #fff;
  box-shadow: 0 12px 24px rgba(46, 125, 110, 0.18);
}

.mobile-message {
  border: 1px solid rgba(220, 232, 228, 0.96);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-primary);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1090;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(220, 232, 228, 0.94);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  box-shadow: 0 12px 24px rgba(31, 42, 42, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1120px) {
  .hero-grid,
  .split-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-visual {
    max-width: 46rem;
  }

  .hero-grid::after {
    display: none;
  }

  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header-inner {
    gap: 0.8rem;
  }

  .site-nav {
    margin-left: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .language-toggle-button {
    min-width: 2.45rem;
  }

  .header-cta {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: calc(var(--header-height) - 0.35rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem;
    border: 1px solid rgba(220, 232, 228, 0.96);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-shell {
    padding: 1rem;
  }

  .hero-visual {
    padding-left: 0;
  }

  .hero-image-card {
    min-height: 420px;
    width: min(100%, 30rem);
  }

  .testimonial-card:nth-child(2) {
    transform: none;
  }

  .service-grid,
  .testimonial-grid,
  .trust-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .brand-text span {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 2.05rem;
    padding-bottom: 1.6rem;
  }

  .hero-copy {
    padding: 0.45rem;
  }

  .hero-copy::after {
    margin-top: 1rem;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-image-card {
    min-height: 320px;
    padding: 1.2rem;
  }

  .areas::before,
  .contact::before {
    inset: 1rem 0;
  }

  .mobile-contact-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 8.4rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .back-to-top {
    bottom: 5.6rem;
  }
}
