/* ========================================================================== */
/* ЗМІННІ (VARIABLES) - УНІФІКОВАНА ПАЛІТРА */
/* ========================================================================== */
:root {
  /* Шрифти */
  --main-font: "Inter", sans-serif;
  --title-font: "Playfair Display", serif;

  /* Основні кольори */
  --emerald-green: #1b4a5c;
  /* Atlantic teal-navy — асоціація з океаном/туманом NL, не generic "luxury green" */
  --emerald-dark: #0c2530;
  /* Темний акцент для ховерів */
  --gold-luxury: #b5703c;
  /* Теплий мідний акцент (copper) замість жовтого золота */
  --gold-light: #f2e3d3;
  /* Світліший теплий мідний тон */

  /* Текст */
  --heading-text: #111827;
  /* Майже чорний для заголовків */
  --dark-text: #1f2937;
  /* Темно-сірий для тексту */
  --text-muted: #4b5563;
  /* Світліший сірий */
  --white: #ffffff;

  /* Фони */
  --bg-body: #f9fafb;
  /* "Off-white" - професійний фон сторінки */
  --bg-glass: rgba(255, 255, 255, 0.85);

  /* Інтерфейс */
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
  --btn-shadow: 0 4px 15px rgba(27, 74, 92, 0.25);
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-pill: 50px;
}

/* ========================================================================== */
/* БАЗОВІ НАЛАШТУВАННЯ (RESET) */
/* ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font);
  color: var(--dark-text);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

ul {
  list-style: none;
}

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

/* Типографіка */
h1,
h2,
h3,
h4 {
  font-family: var(--title-font);
  color: var(--heading-text);
  line-height: 1.2;
}

.section-title {
  font-family: var(--title-font);
  font-size: 2.5rem;
  color: var(--emerald-green);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--gold-luxury);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
}


/* ==================================================================================== */
/* HEADER — EDITORIAL MASTHEAD                                                          */
/* ==================================================================================== */


/* ========== WRAPPER ========== */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* ========== BAR ========== */
.header {
  width: 100%;
  margin: 0 auto;
  max-width: 1320px;
  background: var(--emerald-dark);
  border-bottom: 1px solid rgba(181, 112, 60, 0.35);
  padding: 20px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  transition:
    padding 0.35s ease,
    box-shadow 0.35s ease;
}

.fixed-header.scrolled .header {
  padding: 13px 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

/* ========== LOGO / BRAND MARK ========== */
.h-logo-a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold-luxury);
  border-radius: 50%;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold-luxury);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.h-logo-a:hover .brand-mark {
  transform: rotate(-8deg) scale(1.08);
}

.brand-name {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
  color: var(--white);
  white-space: nowrap;
}

/* ========== DESKTOP NAV ========== */
.h-nav-div nav {
  display: flex;
  justify-content: center;
}

.h-nav-list {
  display: flex;
  gap: 36px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.h-nav-list-wrap {
  display: contents;
}

.h-nav-list a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.h-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-luxury);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.h-nav-list a:hover,
.h-nav-list a.active {
  color: var(--white);
}

.h-nav-list a:hover::after,
.h-nav-list a.active::after {
  width: 100%;
}

/* ========== DESKTOP CONTACT ========== */
.h-contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* ========== PHONE — plain, always visible ========== */
.h-contact-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.h-contact-tel i {
  font-size: 0.85rem;
  color: var(--gold-luxury);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.h-contact-tel-number {
  display: inline;
}

.h-contact-tel:hover {
  color: var(--white);
}

.h-contact-tel:hover i {
  transform: rotate(14deg);
}

/* ========== CTA BUTTON — solid, confident ========== */
.h-contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-luxury);
  color: var(--emerald-dark);
  padding: 10px 22px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition:
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.h-contact-btn:hover {
  background: #c98449;
  transform: translateY(-2px);
}

.h-contact-btn:active {
  transform: translateY(0);
}

.h-contact-btn .btn-icon {
  transition: transform 0.3s ease;
}

.h-contact-btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ========== BURGER ========== */
.burger {
  display: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 1002;
  padding: 0;
  position: relative;
}

.burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.burger.is-open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== BACKDROP ========== */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ========== MOBILE NAV WRAPPER (hidden by default) ========== */
.mobile-contacts-group {
  display: none;
}

.mobile-menu-brand {
  display: none;
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

/* ---- Tablet & Mobile (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
  }

  .h-contact {
    justify-self: end;
  }

  .fixed-header.scrolled .header {
    padding: 12px 20px;
  }

  .h-contact-tel span.h-contact-tel-number {
    display: none;
  }

  /* ---------- PANEL ---------- */
  .h-nav-div {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(86vw, 360px);
    background: var(--emerald-dark);
    border-left: 1px solid rgba(181, 112, 60, 0.35);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 36px;
    padding-top: max(28px, env(safe-area-inset-top));
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .h-nav-div.is-open {
    transform: translateX(0);
  }

  /* Brand mark — keeps page context visible while the overlay is open */
  .mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-bottom: 8px;
  }

  .mobile-menu-brand .brand-name {
    font-size: 1rem;
  }

  .h-nav-div nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
  }

  .h-nav-list-wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .h-nav-list {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    width: 100%;
    margin: 0;
  }

  .h-nav-list a {
    font-size: 0.95rem;
  }

  .mobile-contacts-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    flex-shrink: 0;
    padding-top: 24px;
  }

  .mob-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .mob-btn.call {
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
  }

  .mob-btn.quote {
    background: var(--gold-luxury);
    color: var(--emerald-dark);
  }

  .burger {
    display: flex;
  }

  .h-contact {
    display: none;
  }
}

@media (max-width: 480px) {
  .h-nav-div {
    width: 100vw;
  }
}

@media (prefers-reduced-motion: reduce) {

  .fixed-header,
  .header,
  .h-nav-list a,
  .h-contact-tel,
  .h-contact-btn,
  .burger__line,
  .menu-backdrop,
  .h-nav-div {
    transition: none !important;
    animation: none !important;
  }
}


/* ==================================================================================================================================================== */
/* HERO - SECTION */
/* ==================================================================================================================================================== */

/* ---------- SECTION ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--bg-body);
  color: var(--heading-text);
  padding: 0 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ========== GRID LAYOUT ========== */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "kicker   media"
    "title    media"
    "subtitle media"
    "cta      media"
    "trust    media";
  align-items: center;
  column-gap: 48px;
  row-gap: 0;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 130px 0 90px;
  z-index: 2;
  position: relative;
}

/* ========== KICKER ========== */
.hero-kicker {
  grid-area: kicker;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--main-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-green);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeInUp 0.7s ease-out 0.1s forwards;
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-luxury);
  flex-shrink: 0;
}

/* ========== HEADLINE ========== */
.hero-title {
  grid-area: title;
  text-align: start;
  font-family: var(--title-font);
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--heading-text);
}

.hero-line-1,
.hero-line-2 {
  display: block;
}

.hero-line-2 {
  margin-top: 6px;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  animation: wordReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(24px) skewY(1deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}

.hero-title .word[data-delay="0"] {
  animation-delay: 0.40s;
}

.hero-title .word[data-delay="100"] {
  animation-delay: 0.50s;
}

.hero-title .word[data-delay="200"] {
  animation-delay: 0.60s;
}

.hero-title .word[data-delay="300"] {
  animation-delay: 0.70s;
}

.hero-title .word[data-delay="400"] {
  animation-delay: 0.80s;
}

.gold-text {
  color: var(--gold-luxury);
}

/* ========== SUBTITLE ========== */
.hero-subtitle {
  grid-area: subtitle;
  text-align: start;
  font-family: var(--main-font);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  margin-top: 28px;
  margin-bottom: 36px;
  color: var(--text-muted);
  max-width: 480px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

/* ========== CTA BUTTONS ========== */
.hero-btn-container {
  grid-area: cta;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 1em 1.9em;
  border-radius: 10px;
  border: none;
  background: var(--emerald-green);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(27, 74, 92, 0.28);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-luxury);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}

.hero-btn:hover::before {
  transform: scaleX(1);
}

.hero-btn span,
.hero-btn .btn-arrow {
  position: relative;
  z-index: 1;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(181, 112, 60, 0.35);
}

.hero-btn .btn-arrow {
  transition: transform 0.35s ease;
}

.hero-btn:hover .btn-arrow {
  transform: translateX(5px);
}

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

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-text);
  text-decoration: none;
  padding: 1em 0.4em;
  transition: var(--transition);
}

.hero-btn-secondary i {
  color: var(--gold-luxury);
}

.hero-btn-secondary:hover {
  color: var(--emerald-green);
}

/* ========== MICRO-TRUST STRIP ========== */
.hero-microtrust {
  grid-area: trust;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.hero-microtrust li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--main-font);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.hero-microtrust li i {
  color: var(--emerald-green);
  font-size: 0.7rem;
}

.microtrust-divider {
  width: 1px;
  height: 12px;
  background: rgba(17, 24, 39, 0.15);
  margin: 0 12px;
  display: block;
}

/* ========== MEDIA COLUMN ========== */
.hero-media {
  grid-area: media;
  position: relative;
  height: clamp(420px, 60vh, 620px);
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

.hero-media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(17, 24, 39, 0.25);
}

.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-media:hover .hero-media-img {
  transform: scale(1);
}

.hero-media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.hero-media::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--gold-luxury);
  border-radius: 18px;
  z-index: -1;
}

.hero-proof-card {
  position: absolute;
  bottom: -48px;
  /* left: -28px; */
  left: -80px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 22px 18px;
  max-width: 240px;
  box-shadow: 0 20px 40px -10px rgba(17, 24, 39, 0.2);
  opacity: 0;
  animation: fadeInUp 0.7s ease-out 1.3s forwards;
}

.hero-proof-quote-icon {
  color: var(--gold-luxury);
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 8px;
  display: block;
}

.hero-proof-text {
  font-family: var(--title-font);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--heading-text);
  line-height: 1.4;
  margin-bottom: 8px;
}

.hero-proof-name {
  font-family: var(--main-font);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

/* ========== SHARED KEYFRAMES ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "subtitle"
      "cta"
      "trust"
      "media";
    gap: 0;
    padding: 120px 4px 80px;
  }

  .hero-title {
    margin-bottom: 20px;
  }

  .hero-subtitle {
    margin-top: 0;
    margin-bottom: 28px;
  }

  .hero-btn-container {
    margin-bottom: 32px;
  }

  .hero-microtrust {
    margin-bottom: 48px;
  }

  .hero-media {
    height: 320px;
    margin-bottom: 56px;
  }

  .hero-media::before {
    display: none;
  }

  .hero-proof-card {
    left: 16px;
    bottom: -20px;
    max-width: 200px;
    padding: 16px 18px 14px;
  }
}

@media (max-width: 540px) {
  .hero-kicker,
  .hero-line-1,
  .hero-line-2,
  .hero-subtitle {
    text-align: center;
  }

  .hero-kicker {
    justify-content: center;
    width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-btn-container {
    justify-content: center;
    width: 100%;
  }

  .hero-microtrust {
    justify-content: center;
  }

  .hero-proof-card {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  .hero-title .word,
  .hero-kicker,
  .hero-subtitle,
  .hero-btn-container,
  .hero-microtrust,
  .hero-media,
  .hero-proof-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


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


.about-section {
  position: relative;
  background: var(--bg-body);
  padding: 100px 24px;
  overflow: hidden;
}

.about-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ========== SECTION HEADER — same kicker language as hero ========== */
.section-header {
  margin-bottom: 44px;
  max-width: 640px;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--main-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-green);
  margin-bottom: 14px;
}

.about-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-luxury);
  flex-shrink: 0;
}

.about-title {
  font-family: var(--title-font);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--heading-text);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 56px;
}

/* ========== MEDIA SIDE ========== */
.about-media {
  position: relative;
  height: clamp(320px, 34vw, 420px);
}

.about-media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(17, 24, 39, 0.25);
}

.about-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.about-media:hover .about-media-img {
  transform: scale(1);
}

.about-media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.about-media::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--gold-luxury);
  border-radius: 18px;
  z-index: -1;
}

.about-stat-card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px -10px rgba(17, 24, 39, 0.2);
}

.about-stat-number {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-luxury);
  flex-shrink: 0;
}

.about-stat-label {
  font-family: var(--main-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--text-muted);
  text-transform: uppercase;
}

.about-stat-label span {
  color: var(--heading-text);
}

/* ========== CONTENT SIDE ========== */
.about-desc {
  font-family: var(--main-font);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 560px;
}

.about-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
}

.about-features .feature-item:first-child {
  border-top: none;
  padding-top: 0;
}

.feature-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  font-size: 1rem;
  color: var(--gold-luxury);
  margin-top: 3px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-text strong {
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-text);
}

.feature-text span {
  font-family: var(--main-font);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== SCROLL-REVEAL ========== */
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-item:nth-child(1).visible { transition-delay: 0.05s; }
.feature-item:nth-child(2).visible { transition-delay: 0.15s; }
.feature-item:nth-child(3).visible { transition-delay: 0.25s; }

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

@media (max-width: 900px) {
  .about-section {
    padding: 90px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .about-media {
    height: 320px;
  }

  .about-media::before {
    display: none;
  }

  .about-stat-card {
    left: 16px;
    bottom: -20px;
    padding: 16px 20px;
  }

  .about-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 540px) {
  .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-kicker {
    justify-content: center;
    width: 100%;
  }

  .about-stat-card {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left,
  .reveal-right,
  .feature-item {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==================================================================================================================================================== */
/* SERVICES SECTION — TABS LAYOUT                                                                                                                       */
/* ==================================================================================================================================================== */

.services-section {
  position: relative;
  background: var(--bg-body);
  padding: 100px 24px;
  overflow: hidden;
}

.services-container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ========== SECTION HEADER ========== */
.services-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 640px;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--main-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-green);
  margin-bottom: 14px;
}

.services-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-luxury);
  flex-shrink: 0;
}

.services-title {
  font-family: var(--title-font);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--heading-text);
}

/* ========== GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ========== CARD ========== */
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(181, 112, 60, 0.35);
  box-shadow: 0 16px 32px -12px rgba(17, 24, 39, 0.12);
  transform: translateY(-3px);
}

.service-card--featured {
  border: 1.5px solid var(--gold-luxury);
}

.service-card__badge {
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--emerald-dark);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.service-card__icon {
  font-size: 1.5rem;
  color: var(--gold-luxury);
  margin-bottom: 16px;
}

.service-card__title {
  font-family: var(--title-font);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--heading-text);
  margin-bottom: 8px;
}

.service-card__desc {
  font-family: var(--main-font);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-card__features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--main-font);
  font-size: 0.84rem;
  color: var(--heading-text);
  line-height: 1.4;
}

.service-card__features li i {
  color: var(--emerald-green);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.service-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--main-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-luxury);
  cursor: pointer;
  align-self: flex-start;
  transition: gap 0.25s ease;
}

.service-card__link i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.service-card__link:hover {
  gap: 10px;
}

.service-card__link:hover i {
  transform: translateX(2px);
}

/* ========== SHARED CTA BELOW GRID ========== */
.services-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  text-align: center;
}

.services-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--emerald-green);
  color: var(--white);
  padding: 0.95em 2em;
  border-radius: 10px;
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(27, 74, 92, 0.25);
  transition: var(--transition);
}

.services-cta__btn:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(27, 74, 92, 0.3);
}

.services-cta__btn:hover i {
  transform: translateX(4px);
}

.services-cta__btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.services-cta__note {
  font-family: var(--main-font);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

@media (max-width: 760px) {
  .services-section {
    padding: 80px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card__link,
  .service-card__link i,
  .services-cta__btn {
    transition: none !important;
  }
}

/* ====================================================================================================== */
/* HOW IT WORKS */
/* ====================================================================================================== */

.hiw {
  padding: 100px 20px;
  background: var(--bg-body);
  overflow: hidden;
}

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

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 640px;
}

.hiw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--main-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-green);
  margin-bottom: 14px;
}

.hiw-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-luxury);
  flex-shrink: 0;
}

.hiw-title {
  font-family: var(--title-font);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--heading-text);
}

/* ========== TRACK ========== */
.hiw__track {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  position: relative;
}

/* ========== STEP ========== */
.hiw__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hiw__step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NODE ========== */
.hiw__node {
  position: relative;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon circle */
.hiw__icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(14, 79, 59, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(14, 79, 59, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 2;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.hiw__icon i {
  font-size: 1.7rem;
  color: var(--emerald-green);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hiw__step:hover .hiw__icon {
  transform: translateY(-4px);
  border-color: rgba(14, 79, 59, 0.25);
  box-shadow:
    0 10px 32px rgba(14, 79, 59, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

.hiw__step:hover .hiw__icon i {
  transform: scale(1.12);
}

/* Step number badge */
.hiw__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--gold-luxury);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 50%;
  margin-top: -8px;
  position: relative;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.35);
}

/* ========== CONNECTOR ========== */
.hiw__connector {
  position: absolute;
  top: 43px;
  left: calc(50% + 43px + 16px);
  right: calc(-50% + 43px + 16px);
  height: 1px;
  z-index: 1;
}

.hiw__connector-line {
  width: 100%;
  height: 2px;
  background: rgba(14, 79, 59, 0.1);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.hiw__connector-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--emerald-green), var(--gold-luxury));
  border-radius: 1px;
  transition: width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hiw__connector-fill.filled {
  width: 100%;
}

.hiw__step--last .hiw__connector {
  display: none;
}

/* ========== BODY ========== */
.hiw__body {
  margin-top: 24px;
  padding: 0 16px;
}

.hiw__step-title {
  font-family: var(--title-font);
  font-size: 1.35rem;
  color: var(--heading-text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.hiw__step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ========== TAGS ========== */
.hiw__tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.hiw__tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--emerald-green);
  background: rgba(14, 79, 59, 0.06);
  border: 1px solid rgba(14, 79, 59, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}

.hiw__tags span i {
  font-size: 0.68rem;
}

/* ========== CTA ========== */
.hiw__cta {
  text-align: center;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.hiw__cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.hiw__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 10px;
  background: var(--emerald-green);
  color: var(--white);
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(14, 79, 59, 0.22);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.hiw__btn:hover {
  background: var(--emerald-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14, 79, 59, 0.3);
}

.hiw__btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.hiw__btn:hover i {
  transform: translateX(5px);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {

  .hiw__step,
  .hiw__cta,
  .hiw__icon,
  .hiw__connector-fill,
  .hiw__btn {
    transition: none !important;
  }

  .hiw__step,
  .hiw__cta {
    opacity: 1 !important;
    transform: none !important;
  }

  .hiw__connector-fill {
    width: 100% !important;
  }
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

@media (max-width: 900px) {
  .hiw {
    padding: 80px 20px;
  }

  .hiw .section-header {
    margin-left: auto;
    margin-right: auto;
  }

  .hiw__track {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .hiw__connector {
    display: none;
  }

  .hiw__step {
    padding-bottom: 0;
  }

  .hiw__step .hiw__node::after {
    content: '';
    display: block;
    width: 1px;
    height: 44px;
    margin: 12px auto 0;
    background: linear-gradient(to bottom,
        rgba(14, 79, 59, 0.3),
        rgba(212, 175, 55, 0.2));
    border-radius: 1px;
  }

  .hiw__body {
    margin-top: 20px;
    margin-bottom: 28px;
    padding: 0 24px;
  }

  .hiw__step:hover .hiw__icon {
    transform: none;
  }

  .hiw__cta {
    margin-top: 40px;
  }
}

@media (max-width: 540px) {
  .hiw .section-header {
    text-align: center;
  }
}

/* ---- Small phones (≤ 480px) ---- */
@media (max-width: 480px) {
  .hiw {
    padding: 64px 16px 72px;
  }

  .hiw__icon {
    width: 74px;
    height: 74px;
  }

  .hiw__icon i {
    font-size: 1.45rem;
  }

  .hiw__step-title {
    font-size: 1.2rem;
  }

  .hiw__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==================================================================================================================================================== */
/* LOCATION SECTION */
/* ==================================================================================================================================================== */

.location-section {
  padding: 100px 20px 80px;
  background: var(--bg-body);
  overflow: hidden;
}

.loc-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 640px;
}

.location-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--main-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-green);
  margin-bottom: 14px;
}

.location-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-luxury);
  flex-shrink: 0;
}

.location-title {
  font-family: var(--title-font);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--heading-text);
}

/* ========== TRACK ========== */
.hiw__track {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  position: relative;
}

/* ========== GRID ========== */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

/* ========== LEFT — INFO ========== */
.loc-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.loc-info__desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.loc-highlight {
  font-weight: 700;
  color: var(--gold-luxury);
  position: relative;
  white-space: nowrap;
}

.loc-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-luxury);
  border-radius: 2px;
  opacity: 0.4;
}

/* ========== CITY PILLS ========== */
.loc-cities {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loc-cities__title {
  font-family: var(--title-font);
  font-size: 1.05rem;
  color: var(--heading-text);
  font-weight: 600;
}

.loc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

.loc-pills__indicator {
  position: absolute;
  background: var(--emerald-green);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
  box-shadow: 0 4px 16px rgba(27, 74, 92, 0.25);
  pointer-events: none;
  opacity: 0;
}

.loc-pills__indicator.ready {
  opacity: 1;
}

/* Pill */
.loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border: 1.5px solid rgba(17, 24, 39, 0.12);
  border-radius: 50px;
  background: var(--white);
  color: var(--text-muted);
  font-family: var(--main-font);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.loc-pill i {
  font-size: 0.75rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.loc-pill:hover:not(.active) {
  border-color: var(--emerald-green);
  color: var(--emerald-green);
  background: rgba(27, 74, 92, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 74, 92, 0.1);
}

.loc-pill:hover:not(.active) i {
  transform: scale(1.2);
  color: var(--gold-luxury);
}

.loc-pill.active {
  background-color: var(--emerald-green);
  color: white;
  border-color: transparent;
}

.loc-pill.active i {
  color: var(--gold-luxury);
  animation: locPulse 2s ease-in-out infinite;
}

.loc-pill:focus-visible {
  outline: 2px solid var(--gold-luxury);
  outline-offset: 2px;
}

@keyframes pillBounce {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(0.92);
  }

  70% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.loc-pill.clicked {
  animation: pillBounce 0.4s ease;
}

@keyframes locPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

/* ========== QUOTE BUTTON ========== */
.loc-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9em 1.7em;
  background: var(--emerald-green);
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 10px 24px rgba(27, 74, 92, 0.25);
  transition: var(--transition);
}

.loc-quote-btn:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(27, 74, 92, 0.3);
}

.loc-quote-btn strong {
  color: var(--gold-luxury);
}

.loc-quote-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.loc-quote-btn:hover i {
  transform: translateX(4px);
}

/* ========== AREA HINT ========== */
.loc-area-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 12px 20px;
  background: rgba(181, 112, 60, 0.06);
  border-radius: 12px;
  border: 1.5px solid rgba(181, 112, 60, 0.15);
  width: fit-content;
}

.loc-area-hint i {
  color: var(--gold-luxury);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.loc-area-hint a {
  color: var(--emerald-green);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(27, 74, 92, 0.3);
  text-underline-offset: 2px;
  transition:
    color 0.3s ease,
    text-decoration-color 0.3s ease;
}

.loc-area-hint a:hover {
  color: var(--gold-luxury);
  text-decoration-color: var(--gold-luxury);
}

/* ========== RIGHT — MAP ========== */
.loc-map {
  position: relative;
  height: clamp(360px, 38vw, 460px);
}

.loc-map::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--gold-luxury);
  border-radius: 18px;
  z-index: -1;
}

.loc-map__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(17, 24, 39, 0.25);
}

.loc-map__wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: saturate(0.85) contrast(1.05);
  transition: filter 0.5s ease, opacity 0.4s ease;
}

.loc-map__wrapper:hover iframe {
  filter: saturate(1) contrast(1);
}

.loc-map__wrapper iframe.switching {
  opacity: 0;
}

.loc-map__wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 6;
}

/* ========== CITY LABEL OVERLAY ========== */
.loc-map__city-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(27, 74, 92, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.loc-map__city-label i {
  color: var(--gold-luxury);
  font-size: 0.85rem;
  animation: locPulse 2s ease-in-out infinite;
}

.loc-map__city-label.switching {
  opacity: 0;
  transform: translateY(-10px);
}

.loc-map__city-label.entering {
  animation: cityLabelEnter 0.5s ease forwards;
}

@keyframes cityLabelEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== MAP LOADER ========== */
.loc-map__loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.loc-map__loader.active {
  opacity: 1;
  visibility: visible;
}

.loc-map__loader-pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      #e8ecef 0%,
      #f3f5f7 40%,
      #e8ecef 60%,
      #f3f5f7 100%);
  background-size: 400% 100%;
  animation: skeletonPulse 1.8s ease-in-out infinite;
}

@keyframes skeletonPulse {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.loc-map__loader-icon {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.loc-map__loader-icon i {
  font-size: 2rem;
  color: var(--emerald-green);
  opacity: 0.5;
  animation: loaderBounce 1.2s ease-in-out infinite;
}

@keyframes loaderBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.loc-map__loader-icon span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ========== SCROLL REVEAL ========== */
.loc-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {

  .loc-reveal,
  .loc-pill,
  .loc-pills__indicator,
  .loc-map__wrapper iframe,
  .loc-map__city-label,
  .loc-quote-btn,
  .loc-map__loader,
  .loc-map__loader-pulse,
  .loc-map__loader-icon i {
    transition: none !important;
    animation: none !important;
  }

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

  .loc-pills__indicator {
    display: none;
  }
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

@media (max-width: 900px) {
  .location-section {
    padding: 80px 20px 60px;
  }

  .loc-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .loc-map {
    height: 300px;
    order: -1;
    /* photo-first on mobile, same pattern as hero */
  }

  .loc-map::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .loc-info__desc {
    font-size: 0.95rem;
  }

  .loc-pills {
    gap: 8px;
  }

  .loc-pill {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .loc-map {
    height: 250px;
  }

  .loc-map__city-label {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .loc-quote-btn {
    width: 100%;
    justify-content: center;
  }

  .loc-area-hint {
    font-size: 0.78rem;
  }
}

@media (max-width: 540px) {
  .location-section .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==================================================================================================================================================== */
/* FAQ SECTION — PREMIUM REDESIGN                                                                                                                       */
/* ==================================================================================================================================================== */

.faq-section {
  padding: 100px 20px 80px;
  background: var(--bg-body);
  overflow: hidden;
}

.faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

/* ========== SECTION HEADER ========== */
.services-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 640px;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--main-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-green);
  margin-bottom: 14px;
}

.faq-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-luxury);
  flex-shrink: 0;
}

.faq-title {
  font-family: var(--title-font);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--heading-text);
}



/* ========== FAQ ITEM ========== */
.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 10px 28px -10px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-left: 4px solid transparent;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-left-color 0.35s ease,
    box-shadow 0.35s ease;
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal delays */
.faq-reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.faq-reveal:nth-child(2) {
  transition-delay: 0.10s;
}

.faq-reveal:nth-child(3) {
  transition-delay: 0.15s;
}

.faq-reveal:nth-child(4) {
  transition-delay: 0.20s;
}

.faq-reveal:nth-child(5) {
  transition-delay: 0.25s;
}

.faq-item:hover {
  box-shadow: 0 14px 32px -10px rgba(17, 24, 39, 0.12);
  transform: translateY(-2px);
}

/* Active — gold left border */
.faq-item.active {
  border-left-color: var(--gold-luxury);
  box-shadow: 0 14px 36px -10px rgba(181, 112, 60, 0.18);
}

/* ========== QUESTION ROW ========== */
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

/* Number */
.faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--title-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(17, 24, 39, 0.14);
  min-width: 24px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.faq-item.active .faq-num {
  color: var(--gold-luxury);
}

/* Icon circle — single copper-tint treatment for every item, no color variants */
.faq-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(181, 112, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.faq-icon-circle i {
  font-size: 0.95rem;
  color: var(--gold-luxury);
  transition: color 0.3s ease;
}

/* Active icon state */
.faq-item.active .faq-icon-circle {
  background: var(--emerald-green);
  box-shadow: 0 4px 12px rgba(27, 74, 92, 0.2);
}

.faq-item.active .faq-icon-circle i {
  color: var(--white);
}

/* Question title */
.faq-question h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--heading-text);
  margin: 0;
  line-height: 1.4;
  font-family: var(--main-font);
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: var(--emerald-green);
}

/* ========== CHEVRON ========== */
.faq-chevron {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-chevron i {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.active .faq-chevron {
  background: var(--emerald-green);
  box-shadow: 0 4px 12px rgba(27, 74, 92, 0.2);
}

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

.faq-item:hover:not(.active) .faq-chevron {
  background: #e5e7eb;
}

/* ========== ANSWER ========== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer p {
  padding: 16px 24px 22px;
  /* Left padding: num(24) + gap(14) + icon(38) + gap(14) = 90px */
  padding-left: 90px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

/* ========== HIDDEN FAQs ========== */
.faq-hidden {
  display: none;
}

.faq-hidden.show {
  display: block;
}

/* ========== SHOW MORE — 10px radius, same language as other ghost buttons ========== */
.faq-show-more {
  text-align: center;
  margin-top: 24px;
}

.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.85em 1.7em;
  background: var(--white);
  border: 1.5px solid rgba(27, 74, 92, 0.25);
  border-radius: 10px;
  color: var(--emerald-green);
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
  transition: var(--transition);
}

.btn-show-more:hover {
  background: rgba(27, 74, 92, 0.06);
  border-color: var(--emerald-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 74, 92, 0.14);
}

.btn-show-more i {
  font-size: 0.7rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-show-more.expanded i {
  transform: rotate(180deg);
}

/* CSS text toggle trick */
.show-text {
  font-size: 0;
}

.show-text::before {
  font-size: 0.9rem;
}

.btn-show-more:not(.expanded) .show-text::before {
  content: "Show More Questions";
}

.btn-show-more.expanded .show-text::before {
  content: "Show Less";
}

/* ========== SCROLL REVEAL ========== */
.faq-section .faq-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {

  .faq-item,
  .faq-chevron,
  .faq-chevron i,
  .faq-icon-circle,
  .faq-answer,
  .btn-show-more,
  .faq-section .faq-reveal {
    transition: none !important;
  }

  .faq-item,
  .faq-section .faq-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 16px 60px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-q-left {
    gap: 10px;
  }

  .faq-num {
    font-size: 0.95rem;
    min-width: 18px;
  }

  .faq-icon-circle {
    width: 32px;
    height: 32px;
  }

  .faq-icon-circle i {
    font-size: 0.85rem;
  }

  .faq-question h3 {
    font-size: 0.94rem;
  }

  .faq-chevron {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 540px) {
  .faq-section .section-header {
    text-align: center;
  }

  .faq-answer p {
    padding-left: 18px;
  }
}

/* ==================================================================================================================================================== */
/* CONTACT SECTION — PREMIUM                                                                                                                            */
/* ==================================================================================================================================================== */

.contact-section {
  padding: 80px 20px 70px;
  /* padding: 100px 20px 90px; */
  background: var(--bg-body);
}

.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* ========== HEADER — kinetic word reveal, triggered on scroll ========== */
.contact-header {
  margin-bottom: 20px;
  max-width: 640px;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--main-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-green);
  margin-bottom: 14px;
}

.contact-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-luxury);
  flex-shrink: 0;
}

.contact-title {
  font-family: var(--title-font);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--heading-text);
}

.contact-title .word {
  display: inline-block;
  opacity: 0;
  animation: contactWordReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-play-state: paused;
}

.contact-header.visible .word {
  animation-play-state: running;
}

@keyframes contactWordReveal {
  from {
    opacity: 0;
    transform: translateY(20px) skewY(1deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}

.contact-title .gold-text {
  color: var(--gold-luxury);
}

/* ========== CHANNEL ROW — single full-width pill, no dividers (Concept 2) ========== */
.contact-dock {
  display: flex;
  background: var(--white);
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 4px 16px -4px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.06);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-dock.visible {
  opacity: 1;
  transform: translateY(0);
}

.cseg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--heading-text);
  transition: background 0.25s ease;
}

.cseg:hover {
  background: color-mix(in srgb, currentColor 9%, transparent);
}

.cseg__icon {
  font-size: 0.95rem;
  color: currentColor;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cseg:hover .cseg__icon {
  transform: scale(1.15);
}

.cseg__label {
  font-family: var(--main-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-text);
  white-space: nowrap;
}

.cseg--fb {
  color: #1565d8;
}

.cseg--wa {
  color: #1aab57;
}

.cseg--sms {
  color: var(--emerald-green);
}

.cseg--em {
  color: var(--gold-luxury);
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .cseg:hover {
    background: rgba(17, 24, 39, 0.06);
  }
}

/* ========== GRID — same asymmetric language as hero/about ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

/* ========== MEDIA — copper-frame-offset, identical pattern to hero/about ========== */
.contact-media {
  position: relative;
  height: clamp(300px, 34vw, 400px);
  margin-top: -40px;
}

.contact-media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(17, 24, 39, 0.25);
}

.contact-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.contact-media:hover .contact-media-frame img {
  transform: scale(1);
}

.contact-media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.contact-media::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--gold-luxury);
  border-radius: 18px;
  z-index: -1;
}

.contact-proof-card {
  position: absolute;
  bottom: -24px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 20px 40px -10px rgba(17, 24, 39, 0.2);
}

.contact-proof-card span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--main-font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heading-text);
  white-space: nowrap;
}

.contact-proof-card i {
  color: var(--emerald-green);
  font-size: 0.85rem;
}

/* ========== FORM WRAP ========== */
.contact-form-wrap {
  display: flex;
  flex-direction: column;
}

/* Live progress bar */
.cf-progress {
  height: 4px;
  background: rgba(181, 112, 60, 0.14);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

.cf-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--gold-luxury);
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ========== FORM FIELDS — white inputs floating on bg-body, no card wrapper ========== */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.cf-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.cf-wrap {
  position: relative;
}

.cf-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.78rem;
  color: rgba(27, 74, 92, 0.3);
  pointer-events: none;
  z-index: 1;
  transition: color 0.3s ease;
}

.cf-icon--top {
  top: 12px;
  transform: none;
}

.cf-caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: rgba(27, 74, 92, 0.3);
  pointer-events: none;
}

.cf-input {
  width: 100%;
  padding: 9px 12px 9px 34px;
  font-size: 0.9rem;
  color: var(--dark-text);
  font-family: var(--main-font);
  background: var(--white);
  border: 1.5px solid rgba(17, 24, 39, 0.12);
  border-radius: 10px;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.cf-input::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

/* Focus — copper glow, echoes the gold-luxury accent used site-wide */
.cf-input:focus {
  border-color: var(--gold-luxury);
  box-shadow: 0 0 0 4px rgba(181, 112, 60, 0.12);
}

.cf-field:focus-within .cf-icon {
  color: var(--gold-luxury);
}

.cf-wrap--select .cf-input {
  cursor: pointer;
  padding-right: 28px;
}

.cf-wrap--select .cf-input option {
  background: var(--white);
  color: var(--dark-text);
}

.cf-wrap--textarea .cf-input {
  min-height: 64px;
  max-height: 130px;
  resize: none;
  line-height: 1.6;
  overflow-y: auto;
  padding-top: 9px;
}

/* States */
.cf-field.valid .cf-input {
  border-color: rgba(27, 74, 92, 0.45);
}

.cf-field.valid .cf-icon {
  color: var(--emerald-green);
}

.cf-field.invalid .cf-input {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.07);
}

.cf-field.invalid .cf-icon {
  color: #ef4444;
}

.cf-error {
  font-size: 0.68rem;
  color: #ef4444;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.cf-field.invalid .cf-error {
  opacity: 1;
  transform: translateY(0);
}

/* Autofill */
.cf-input:-webkit-autofill,
.cf-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--white) inset;
  -webkit-text-fill-color: var(--dark-text);
}

/* ========== FOOTER — trust + reCAPTCHA (left) + submit (right) ========== */
.cf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.cf-footer__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cf-footer__trust {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--main-font);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--heading-text);
}

.cf-footer__trust i {
  color: var(--emerald-green);
  font-size: 0.85rem;
}

.cf-recaptcha {
  font-size: 0.67rem;
  color: var(--text-muted);
  opacity: 0.6;
  line-height: 1.5;
  margin: 0;
}

.cf-recaptcha a {
  color: var(--emerald-green);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.cf-recaptcha a:hover {
  color: var(--gold-luxury);
}

/* ========== SUBMIT ========== */
.cf-submit {
  padding: 0.9em 1.8em;
  background: var(--emerald-green);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 10px 24px rgba(27, 74, 92, 0.25);
  transition: var(--transition);
}

.cf-submit:hover:not(:disabled) {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(27, 74, 92, 0.3);
}

.cf-submit:active:not(:disabled) {
  transform: translateY(-1px);
}

.cf-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cf-submit__icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.cf-submit:hover .cf-submit__icon {
  transform: translateX(4px);
}

.cf-submit__loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cf-submit.loading .cf-submit__text,
.cf-submit.loading .cf-submit__icon {
  opacity: 0;
}

.cf-submit.loading .cf-submit__loader {
  display: block;
}

/* ========== STATUS MESSAGES ========== */
.cf-msg {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.cf-msg.show {
  display: flex;
}

.cf-msg--ok {
  background: rgba(27, 74, 92, 0.06);
  border: 1.5px solid rgba(27, 74, 92, 0.18);
  color: var(--emerald-green);
}

.cf-msg--err {
  background: rgba(239, 68, 68, 0.06);
  border: 1.5px solid rgba(239, 68, 68, 0.18);
  color: #ef4444;
}

/* ========== SCROLL REVEAL (local copy — section delivered standalone) ========== */
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {

  .contact-title .word,
  .reveal-left,
  .reveal-right,
  .cf-submit,
  .cf-input,
  .cf-error,
  .cseg,
  .cseg__icon,
  .contact-dock,
  .contact-media-frame img,
  .cf-progress__bar {
    transition: none !important;
    animation: none !important;
  }

  .contact-title .word,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

@media (max-width: 900px) {
  .contact-section {
    padding: 90px 20px 80px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .contact-media {
    height: 300px;
    order: -1;
    margin-top: 0;
  }

  .contact-media::before {
    display: none;
  }

  .contact-proof-card {
    left: 16px;
    bottom: -20px;
  }
}

@media (max-width: 700px) {
  .contact-dock {
    flex-wrap: wrap;
    border-radius: 16px;
  }

  .cseg {
    flex: 1 1 45%;
    border-radius: 12px;
  }

  .cf-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cf-footer__left {
    align-items: center;
    text-align: center;
  }

  .cf-submit {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .contact-header,
  .contact-kicker {
    text-align: center;
  }

  .contact-header {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-kicker {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 72px 16px 80px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .cf-input {
    font-size: 16px;
  }
}


/* ==================================================================================================================================================== */
/* FOOTER */
/* ==================================================================================================================================================== */

.site-footer {
  background: var(--emerald-dark);
  padding: 0;
}

/* Gold accent line — kept from original */
.footer-gold-line {
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--gold-luxury) 30%,
      var(--gold-luxury) 70%,
      transparent 100%);
}

/* Single inner row */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ========== LEFT — brand ========== */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Small circular brand mark — echoes the header logo */
.footer-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold-luxury);
  border-radius: 50%;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--gold-luxury);
  flex-shrink: 0;
}

.footer-logo {
  font-family: var(--title-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2px;
}

.footer-tagline {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.3px;
}

/* ========== CENTER — hours + copyright ========== */
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.footer-hours i {
  color: var(--gold-luxury);
  font-size: 0.72rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  white-space: nowrap;
}

/* ========== RIGHT — Facebook + legal ========== */
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-fb {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-fb i {
  font-size: 1rem;
  color: #5b9cf6;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-fb:hover {
  color: var(--white);
}

.footer-fb:hover i {
  transform: scale(1.2);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {

  .footer-fb,
  .footer-fb i,
  .footer-legal a {
    transition: none !important;
  }
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

@media (max-width: 768px) {
  .footer-inner {
    padding: 20px 24px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-tagline {
    text-align: center;
  }

  .footer-center {
    order: 3;
    width: 100%;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-right {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 16px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* ====================================================================================================== */
/* FLOATING BUTTON */
/* ====================================================================================================== */

.speed-dial {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ========== MAIN TRIGGER ========== */
.sd-trigger {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--emerald-green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(27, 74, 92, 0.4);
  transition:
    background 0.3s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  flex-shrink: 0;
  z-index: 2;
}

.sd-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(27, 74, 92, 0.5);
}

/* Open state */
.speed-dial.open .sd-trigger {
  background: var(--emerald-dark);
  transform: rotate(0deg);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

/* ---- Icons: chat ↔ X ---- */
.sd-trigger__icon,
.sd-trigger__close {
  position: absolute;
  font-size: 1.3rem;
  color: var(--white);
  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Default: show chat icon */
.sd-trigger__icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.sd-trigger__close {
  opacity: 0;
  transform: scale(0.4) rotate(-90deg);
}

/* Open: swap icons */
.speed-dial.open .sd-trigger__icon {
  opacity: 0;
  transform: scale(0.4) rotate(90deg);
}

.speed-dial.open .sd-trigger__close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ---- Pulse ring — copper, echoes hero kicker dot / Areas active icon ---- */
.sd-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(181, 112, 60, 0.55);
  animation: sd-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

.speed-dial.open .sd-pulse {
  animation: none;
  opacity: 0;
}

@keyframes sd-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ========== CHILD ITEMS ========== */
.sd-item {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;

  /* Hidden by default */
  opacity: 0;
  transform: translateY(16px) scale(0.7);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

/* Staggered reveal when open */
.speed-dial.open .sd-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Stagger delays — bottom item first */
.speed-dial.open .sd-item:nth-child(1) {
  transition-delay: 0.00s;
}

.speed-dial.open .sd-item:nth-child(2) {
  transition-delay: 0.06s;
}

.speed-dial.open .sd-item:nth-child(3) {
  transition-delay: 0.12s;
}

.speed-dial.open .sd-item:nth-child(4) {
  transition-delay: 0.18s;
}

/* Closing stagger — reverse */
.speed-dial:not(.open) .sd-item:nth-child(1) {
  transition-delay: 0.12s;
}

.speed-dial:not(.open) .sd-item:nth-child(2) {
  transition-delay: 0.08s;
}

.speed-dial:not(.open) .sd-item:nth-child(3) {
  transition-delay: 0.04s;
}

.speed-dial:not(.open) .sd-item:nth-child(4) {
  transition-delay: 0.00s;
}

/* Hover bounce */
.sd-item:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

/* ---- Color themes — flat brand colors, no glossy gradients ---- */
.sd-item--fb {
  background: #1565d8;
}

.sd-item--wa {
  background: #1aab57;
}

.sd-item--sms {
  background: var(--emerald-green);
}

.sd-item--em {
  background: var(--gold-luxury);
}

/* ========== TOOLTIP ========== */
.sd-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  background: var(--emerald-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

/* Tooltip arrow */
.sd-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--emerald-dark);
}

.sd-item:hover .sd-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ========== BACKDROP — click outside to close ========== */
.sd-backdrop {
  position: fixed;
  inset: 0;
  z-index: 899;
  display: none;
}

.speed-dial.open~.sd-backdrop,
.sd-backdrop.active {
  display: block;
}

/* ========== HIDE when contact section visible ========== */
.speed-dial.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {

  .sd-trigger,
  .sd-item,
  .sd-pulse,
  .sd-tooltip,
  .speed-dial.hide {
    transition: none !important;
    animation: none !important;
  }
}



/* ==================================================================================================================================================== */
/* MODAL                                                                                                                                                */
/* ==================================================================================================================================================== */

/* ========== OVERLAY ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========== WINDOW ========== */
.modal-window {
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  position: relative;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.4s ease;
}

.modal-overlay.active .modal-window {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Emerald accent bar on top */
.modal-window::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-green), #1a7a5e 50%, var(--gold-luxury));
  border-radius: 24px 24px 0 0;
}

/* Scrollbar */
.modal-window::-webkit-scrollbar {
  width: 4px;
}

.modal-window::-webkit-scrollbar-track {
  background: transparent;
}

.modal-window::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}

/* ========== CLOSE BUTTON ========== */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-close:hover {
  background: var(--emerald-green);
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
}

/* ========== HEADER ========== */
.modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Round icon */
.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14, 79, 59, 0.08), rgba(212, 175, 55, 0.08));
  border: 1.5px solid rgba(14, 79, 59, 0.12);
  color: var(--emerald-green);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-header__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.modal-title {
  font-family: var(--title-font);
  font-size: 1.5rem;
  color: var(--heading-text);
  line-height: 1.2;
  margin: 0;
}

.modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ========== BODY ========== */
.modal-body {
  padding: 22px 28px;
}

.modal-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.92rem;
  color: var(--dark-text);
  line-height: 1.5;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(14, 79, 59, 0.03);
  transition: background 0.2s ease;
}

.modal-list li:hover {
  background: rgba(14, 79, 59, 0.07);
}

.modal-list li i {
  color: var(--emerald-green);
  font-size: 0.78rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
.modal-footer {
  padding: 4px 28px 28px;
}

.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 0;
  background: var(--emerald-green);
  color: var(--white);
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(14, 79, 59, 0.22);
  transition:
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.modal-btn i {
  font-size: 0.82rem;
  transition: transform 0.3s ease;
}

.modal-btn:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 79, 59, 0.3);
}

.modal-btn:hover i {
  transform: translateX(4px);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {

  .modal-overlay,
  .modal-window,
  .modal-close,
  .modal-btn,
  .modal-list li {
    transition: none !important;
    animation: none !important;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
  .modal-overlay {
    padding: 12px;
  }

  .modal-window {
    border-radius: 20px;
  }

  .modal-header {
    padding: 24px 20px 18px;
    gap: 14px;
  }

  .modal-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-subtitle {
    font-size: 0.82rem;
  }

  .modal-body {
    padding: 18px 20px;
  }

  .modal-footer {
    padding: 4px 20px 24px;
  }
}



/* ====================================================================================================== */
/* MEDIA QUERIES */
/* ====================================================================================================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    /* Hide desktop nav */
  }

  .burger-toggle {
    display: flex;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 40px 20px;
  }

  .floating-messenger span {
    display: none;
  }

  .floating-messenger {
    padding: 15px;
    border-radius: 50%;
  }
}

/* Анімація появи */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}