/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* === TOKENS === */
:root {
  --green:        #2C3E6B;
  --green-hover:  #3d5a9e;
  --green-pale:   #eef0f8;
  --orange:       #f39c12;
  --orange-hover: #d68910;
  --grey-dark:    #2d3436;
  --grey-mid:     #636e72;
  --grey-light:   #f5f5f5;
  --border:       #e0e0e0;
  --white:        #ffffff;
  --radius:       8px;
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.10);
}

/* === BASE === */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-dark);
  background: var(--white);
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY === */
h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
h3 {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--green);
  margin: 2rem 0 0.6rem;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul { margin: 0.6rem 0 1rem 1.4rem; }
ul li { margin-bottom: 0.4rem; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 70px 0; }
.section--grey { background: var(--grey-light); }

/* === HEADER === */

.main-navigation .primary-menu-container > ul > li.menu-item > a {
	padding-left: inherit;
	padding-right: inherit;
}
.header-navigation .menu {
    gap: 6em;
}
.main-navigation .primary-menu-container > ul > li.menu-item.current-menu-item > a, .main-navigation .primary-menu-container > ul > li.menu-item > a:hover {
    color: var(--global-palette9);
}
li.menu-item > a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}
li.menu-item > a {
    padding: 8px 14px !important;
    border-radius: var(--radius);
}
.header-navigation[class*=header-navigation-dropdown-animation-fade]:not(.click-to-open) ul li:hover>ul, .header-navigation[class*=header-navigation-dropdown-animation-fade]:not(.click-to-open) ul li.menu-item--toggled-on>ul {
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 300;
}
.header-navigation .header-menu-container ul ul li.menu-item > a:hover {
    background: none;
}
.header-navigation .header-menu-container ul ul li.menu-item > a {
    display: block;
    padding: 11px 18px;
    font-size: 0.93rem;
    color: var(--grey-dark)
#2d3436
;
    transition: background 0.15s ease, color 0.15s ease;
}
.header-navigation .header-menu-container ul ul li.menu-item.current-menu-item > a {
    color: var(--grey-dark) #2d3436;
    background: none;
}
.header-navigation .header-menu-container ul ul li.menu-item > a:hover {
    color: #1b5e4a;
}
.header-navigation .header-menu-container ul ul li.menu-item:hover {
    background: var(--global-palette-btn);
    border-radius: var(--radius);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}
.header-navigation ul ul.sub-menu>li:last-child, .header-navigation ul ul.submenu>li:last-child {
    margin-bottom: 0px;
}

.site-header {
  background: var(--green);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-size: 1.25rem; font-weight: 800;
  letter-spacing: 0.5px; color: var(--white);
}
.logo span { color: var(--orange); }
.header-phone {
  background: var(--orange);
  color: var(--white);
  font-weight: 600; font-size: 0.95rem;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background 0.3s ease;
}
.header-phone:hover { background: var(--orange-hover); }
/* === NAV === */
.main-nav { flex: 1; display: flex; align-items: center; padding-left: 2rem; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; width: 100%; justify-content: space-evenly; }
.nav-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius);
  background: none; border: none; cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.nav-arrow { font-size: 0.72rem; transition: transform 0.25s ease; display: inline-block; }
.nav-item--dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  list-style: none; margin: 0; padding: 6px 0;
  min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 300;
}
.nav-dropdown li a {
  display: block; padding: 11px 18px;
  font-size: 0.93rem; color: var(--grey-dark);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown li a:hover { background: var(--green-pale); color: var(--green); }
.nav-item--dropdown.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item--dropdown.open .nav-arrow { transform: rotate(180deg); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--white); line-height: 0;
}
.header-right { display: flex; align-items: center; gap: 0.75rem; }

@media (max-width: 767px) {
  .main-nav {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--green); border-top: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1rem 1rem; box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    flex: unset; padding-left: 1rem;
  }
  .main-nav.open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-link { justify-content: space-between; width: 100%; padding: 12px 8px; color: rgba(255,255,255,0.9); }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    background: rgba(0,0,0,0.12); padding: 4px 0; display: none; min-width: unset;
  }
  .nav-item--dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li a { color: rgba(255,255,255,0.82); padding: 10px 20px; font-size: 0.9rem; }
  .nav-dropdown li a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
  .nav-toggle { display: block; }
}

/* === HERO === */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 60px 1.5rem;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero > div { width: 100%; }
.hero h1 { color: var(--white); max-width: 820px; margin: 0 auto 1rem; }
.hero-tagline {
  font-size: 1rem; font-weight: 600; letter-spacing: 0.5px;
  color: var(--orange); text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.15rem; opacity: 0.88;
  max-width: 540px; margin: 0 auto 2.5rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 16px 40px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn-primary  { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-hover); }
.btn-outline  { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green); }
.btn-green    { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-hover); }
.btn-outline-green { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline-green:hover { background: var(--green-hover); color: var(--white); border-color: var(--green-hover); }

/* === WHY CARDS === */
.why-cards { display: grid; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px)  { .why-cards { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .why-cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-cards--4 { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.3s ease;
}
.why-card:hover { box-shadow: var(--shadow-hover); }
.why-icon { width: 48px; height: 48px; margin-bottom: 1.2rem; color: var(--green); }
.why-card h3 { margin-top: 0; font-size: 1.05rem; }
.why-card p  { font-size: 0.95rem; color: var(--grey-mid); margin: 0; }

/* === SERVICE CARDS === */
.service-cards { display: grid; gap: 2rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-hover); }
.service-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-card-body { padding: 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { font-size: 1.1rem; margin: 0 0 0.6rem; }
.service-card-body p  { font-size: 0.94rem; color: var(--grey-mid); margin-bottom: 1.2rem; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--green); font-size: 0.93rem; font-weight: 600;
  transition: color 0.2s ease;
}
.service-link:hover { color: var(--green-hover); }

/* === MAP === */
.map-wrapper {
  border-radius: var(--radius); border: 1px solid var(--border);
  overflow: hidden; margin-top: 2rem;
}
.map-wrapper iframe { display: block; width: 100%; height: 380px; border: none; }
.zones-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.zone-tag {
  background: var(--green-pale); color: var(--green);
  border: 1px solid #b5c3e0;
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
}

/* === REVIEWS === */
.reviews-header {
  display: flex; align-items: center; gap: 2rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.rating-score { font-size: 2.5rem; font-weight: 800; color: var(--green); line-height: 1; }
.rating-sep { font-size: 1.5rem; color: var(--grey-mid); line-height: 1; }
.rating-stars { color: #f39c12; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-rating { display: flex; align-items: center; gap: 0.6rem; }
.reviews-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease;
}
.review-card:hover { box-shadow: var(--shadow-hover); }
.review-top { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.9rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-date { font-size: 0.8rem; color: var(--grey-mid); }
.review-stars { color: #f39c12; font-size: 0.9rem; margin-bottom: 0.5rem; letter-spacing: 1px; }
.review-service {
  display: inline-block; font-size: 0.78rem; color: var(--green); font-weight: 600;
  background: var(--green-pale); border: 1px solid #b5c3e0;
  padding: 2px 10px; border-radius: 50px; margin-bottom: 0.8rem;
}
.review-text { font-size: 0.93rem; color: var(--grey-dark); line-height: 1.6; }
.reviews-cta { margin-top: 2rem; text-align: center; }
.reviews-cta a {
  color: var(--green); font-weight: 600; font-size: 0.95rem;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.reviews-cta a:hover { color: var(--green-hover); }

/* === CAROUSEL === */
.reviews-carousel { display: flex; align-items: center; gap: 1rem; }
.reviews-viewport { overflow: hidden; flex: 1; }
.reviews-track { display: flex; gap: 1.5rem; transition: transform 0.4s ease; }
.carousel-btn {
    padding: unset;
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--green); transition: background 0.2s ease, border-color 0.2s ease;
}
.carousel-btn:hover, .carousel-btn:focus, .carousel-btn:active {
    background-color:  var(--green-pale);
   color: var(--green);
}
.carousel-btn:hover:not(:disabled) { background: var(--green-pale); border-color: var(--green); }
.carousel-btn:disabled { opacity: 0.3; cursor: default; }

/* === CONTACT === */
.contact-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 768px)  { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
.contact-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 1.6rem;
}
.contact-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.contact-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.contact-item h3 { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--grey-mid); margin: 0 0 0.25rem; }
.contact-item p  { font-size: 1.05rem; font-weight: 600; color: var(--grey-dark); margin: 0; }
.contact-item a  { color: var(--green); font-weight: 700; font-size: 1.15rem; }
.contact-item a:hover { color: var(--green-hover); }
.contact-item small { display: block; font-size: 0.85rem; color: var(--grey-mid); font-weight: 400; margin-top: 0.2rem; }
.contact-ctas { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 0.4rem; }
.btn-contact-phone {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--orange); color: var(--white);
  font-size: 1.1rem; font-weight: 700;
  padding: 18px 28px; border-radius: var(--radius);
  transition: background 0.3s ease;
}
.btn-contact-phone:hover { background: var(--orange-hover); }
.btn-contact-email {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: transparent; color: var(--green);
  border: 2px solid var(--green);
  font-size: 1rem; font-weight: 600;
  padding: 15px 28px; border-radius: var(--radius);
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-contact-email:hover { background: var(--green); color: var(--white); }

/* === INFO PANEL === */
.info-panel { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 24px 26px;
  border-left: 4px solid var(--green);
}
.info-card h3 { font-size: 0.95rem; margin: 0 0 0.4rem; }
.info-card p  { font-size: 0.93rem; color: var(--grey-mid); margin: 0; }

/* === ZONE TAGS (page contact) === */
.zone-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.5rem; }

/* === STEPS === */
.steps-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px)  { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px)  { .steps-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .steps-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.step-card:hover { box-shadow: var(--shadow-hover); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-card h3 { margin-top: 0; font-size: 0.98rem; color: var(--green); min-height: 2.6rem; }
.step-card p  { font-size: 0.93rem; color: var(--grey-mid); margin: 0; }

/* === STAT STRIP === */
.stat-strip { background: var(--green); color: var(--white); padding: 40px 1.5rem; }
.stat-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; text-align: center;
}
.stat-item strong { display: block; font-size: 2rem; font-weight: 800; }
.stat-item span   { font-size: 0.9rem; opacity: 0.82; }

/* === CONTENT PHOTO GRID === */
.content-photo-grid { display: grid; gap: 6rem; align-items: center; }
@media (min-width: 768px) { .content-photo-grid { grid-template-columns: 1fr 1fr; } }
.photo-col { display: flex; flex-direction: column; align-self: stretch; }
.section-photo { border-radius: var(--radius); border: 1px solid var(--border); width: 100%; }
.section-photo--43      { aspect-ratio: 4 / 3; object-fit: cover; }
.section-photo--portrait { aspect-ratio: 2 / 3; object-fit: cover; }
@media (min-width: 768px) {
  .photo-col .section-photo--43,
  .photo-col .section-photo--portrait {
    flex: 1; aspect-ratio: unset; min-height: 280px;
  }
}
.photo-caption { font-size: 0.84rem; color: var(--grey-mid); margin-top: 0.6rem; font-style: italic; }

/* === INTRO GRID === */
.intro-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .intro-grid { grid-template-columns: 1fr 1fr; } }
.intro-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-pale); color: var(--green);
  font-weight: 600; font-size: 0.88rem;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 1.2rem;
}
.intro-photo {
  border-radius: var(--radius); border: 1px solid var(--border);
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}

/* === TYPE TAGS === */
.type-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 1.4rem; }
.tag {
  background: var(--green-pale); color: var(--green);
  border: 1px solid #b5c3e0;
  padding: 4px 14px; border-radius: 50px;
  font-size: 0.83rem; font-weight: 600;
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  border-left: 4px solid var(--green);
  background: var(--grey-light);
  padding: 1.2rem 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.highlight-box p { font-size: 0.97rem; }

/* === FAQ === */
.faq-btn:hover, .faq-btn:active, .faq-btn:focus {
    background: var(--green) !important;
}
.faq-layout { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .faq-layout { grid-template-columns: 1fr 380px; } }
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-btn {
  width: 100%; background: var(--grey-light);
  border: none; cursor: pointer;
  padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  text-align: left;
  font-size: 1rem; font-weight: 600; color: var(--grey-dark);
  transition: background 0.2s ease;
}
.faq-btn:hover { background: #efefef; }
.faq-btn[aria-expanded="true"] { background: var(--green); color: var(--white); }
.faq-arrow { flex-shrink: 0; font-size: 0.85rem; transition: transform 0.3s ease; display: inline-block; }
.faq-btn[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
  background: var(--white);
  font-size: 0.96rem; color: var(--grey-dark);
  padding: 0 22px;
}
.faq-body.open { max-height: 400px; padding: 18px 22px; }
.faq-photo { border-radius: var(--radius); border: 1px solid var(--border); width: 100%; object-fit: cover; }
.faq-photo-caption { font-size: 0.84rem; color: var(--grey-mid); margin-top: 0.6rem; font-style: italic; text-align: center; }

/* === CTA SECTION === */
.cta-section { background: var(--green); color: var(--white); padding: 80px 1.5rem; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { opacity: 0.88; max-width: 700px; margin: 0 auto 2rem; }
.cta-tel        { font-size: 1.5rem; font-weight: 800; margin-bottom: 2rem; }
.cta-tel a      { color: var(--orange); }
.cta-btns       { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* === FOOTER === */
.site-bottom-footer-inner-wrap.site-footer-row.site-footer-row-columns-1.site-footer-row-column-layout-row.site-footer-row-tablet-column-layout-default.site-footer-row-mobile-column-layout-row.ft-ro-dir-row.ft-ro-collapse-normal.ft-ro-t-dir-default.ft-ro-m-dir-default.ft-ro-lstyle-plain{
  display: none;
}
footer {
  background: var(--green);
  color: rgba(255,255,255,0.85);
  padding: 60px 1.5rem;
  font-size: 0.92rem;
}
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer ul li { margin-bottom: 0.5rem; }
footer a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
footer a:hover { color: var(--white); }
.footer-brand { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.footer-brand span { color: var(--orange); }
.zones-line {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.82rem; margin-top: 0.8rem;
}
.footer-bottom {
  max-width: 1200px; margin: 2.5rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  text-align: center; font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
  .hero           { padding: 70px 1.2rem; }
  .section        { padding: 50px 0; }
  .btn            { padding: 14px 28px; font-size: 0.95rem; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .contact-block  { padding: 28px 22px; }
  .stat-grid      { grid-template-columns: 1fr; gap: 1rem; }
  .stat-item strong { font-size: 1.5rem; }
}

.faq-item:has(.faq-btn[aria-expanded="true"]) .faq-body {
  max-height: 1000px;
  overflow: visible;
  padding: 18px 22px;
}
.faq-body.open {
  max-height: 1000px !important;
  padding: 18px 22px !important;
}

/* === TOKENS (redéclaration pour priorité) === */
:root {
  --green:        #2C3E6B;
  --green-hover:  #3d5a9e;
  --green-pale:   #eef0f8;
  --orange:       #f39c12;
  --orange-hover: #d68910;
  --grey-dark:    #2d3436;
  --grey-mid:     #636e72;
  --white:        #ffffff;
  --border:       #e0e0e0;
  --radius:       8px;
}

/* ==============================
   HEADER (redéclaration complète)
/* === NAV === */
.main-nav { flex: 1; display: flex; align-items: center; padding-left: 2rem; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; width: 100%; justify-content: space-evenly; }
.nav-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius);
  background: none; border: none; cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.nav-arrow { font-size: 0.72rem; transition: transform 0.25s ease; display: inline-block; }
.nav-item--dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  list-style: none; margin: 0; padding: 6px 0;
  min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 300;
}
.nav-dropdown li a {
  display: block; padding: 11px 18px;
  font-size: 0.93rem; color: var(--grey-dark);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown li a:hover { background: var(--green-pale); color: var(--green); }
.nav-item--dropdown.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item--dropdown.open .nav-arrow { transform: rotate(180deg); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--white); line-height: 0;
}
.header-right { display: flex; align-items: center; gap: 0.75rem; }

@media (max-width: 767px) {
  .main-nav {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--green); border-top: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1rem 1rem; box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    flex: unset; padding-left: 1rem;
  }
  .main-nav.open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-link { justify-content: space-between; width: 100%; padding: 12px 8px; color: rgba(255,255,255,0.9); }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    background: rgba(0,0,0,0.12); padding: 4px 0; display: none; min-width: unset;
  }
  .nav-item--dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li a { color: rgba(255,255,255,0.82); padding: 10px 20px; font-size: 0.9rem; }
  .nav-dropdown li a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
  .nav-toggle { display: block; }
}
/* ==============================
   NAVIGATION (redéclaration complète)
   ============================== */
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 2rem;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-evenly;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.nav-arrow {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-item--dropdown {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 300;
}
.nav-dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 0.93rem;
  color: var(--grey-dark);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown li a:hover {
  background: var(--green-pale);
  color: var(--green);
}
.nav-item--dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-item--dropdown.open .nav-arrow {
  transform: rotate(180deg);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
  line-height: 0;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--green);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    flex: unset;
    padding-left: 1rem;
  }
  .main-nav.open {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 12px 8px;
    color: rgba(255,255,255,0.9);
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.12);
    padding: 4px 0;
    display: none;
    min-width: unset;
  }
  .nav-item--dropdown.open .nav-dropdown {
    display: block;
  }
  .nav-dropdown li a {
    color: rgba(255,255,255,0.82);
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .nav-dropdown li a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
  }
  .nav-toggle {
    display: block;
  }
}

/* ==============================
   FOOTER
   ============================== */
footer a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
footer a:hover {
  opacity: 0.7;
}
.zones-line {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  margin-top: 0.8rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}