﻿/*!
Theme Name:   Move Five Shipping
Theme URI:    https://ehousemovers.com
Description:  Fully independent custom WordPress theme for Move Five Shipping Dubai. No parent dependency. Compatible with Elementor, Contact Form 7 and Chaty.
Author:       Move Five
Author URI:   https://movefive.com
Version:      1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  ehousemovers
Tags:         custom-logo, custom-menu, full-width-template, footer-widgets, responsive-layout
*/

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens — Move Five Brand)
   ============================================================ */
:root {
  /* Brand Colors — Move Five lime-green / charcoal palette */
  --eh-primary:       #7BBF30;   /* Move Five lime green — primary brand */
  --eh-primary-dark:  #5FA020;   /* darker hover state */
  --eh-primary-light: #EEF8E0;   /* very light green tint */
  --eh-gold:          #4A4A4A;   /* Move Five charcoal — labels, dividers */
  --eh-gold-light:    #EFEFEF;   /* light gray tint */

  /* Neutral Palette */
  --eh-text:          #2a2a2a;   /* body text */
  --eh-muted:         #666666;   /* secondary text */
  --eh-white:         #ffffff;
  --eh-light-bg:      #f8f8f8;   /* light section backgrounds */
  --eh-rose-bg:       #F4FAEd;   /* subtle green-tinted section bg */
  --eh-border:        #e5e5e5;   /* dividers, borders */

  /* Footer */
  --eh-footer-bg:     #1a1a1a;
  --eh-footer-text:   #999999;
  --eh-footer-link:   #cccccc;

  /* Typography */
  --eh-font:          'Roboto', sans-serif;

  /* Layout */
  --eh-container:     1280px;
  --eh-section-pad:   80px;
  --eh-section-pad-sm:50px;

  /* Shape */
  --eh-radius:        4px;
  --eh-radius-md:     8px;
  --eh-radius-full:   100px;

  /* Shadows */
  --eh-shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --eh-shadow:        0 4px 16px rgba(0,0,0,.10);
  --eh-shadow-card:   0 2px 8px rgba(0,0,0,.06);

  /* Transitions */
  --eh-t:             0.2s ease;

  /* Elementor global color overrides */
  --e-global-color-primary:    #7BBF30;
  --e-global-color-secondary:  #5FA020;
  --e-global-color-text:       #2a2a2a;
  --e-global-color-accent:     #4A4A4A;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--eh-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--eh-text);
  background-color: var(--eh-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--eh-font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--eh-text);
  margin-top: 0;
}

p { margin-top: 0; }

/* ============================================================
   3. LINKS & BUTTONS
   ============================================================ */
a { color: var(--eh-primary); text-decoration: none; transition: color var(--eh-t); }
a:hover, a:focus { color: var(--eh-primary-dark); }

.eh-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--eh-primary);
  color: var(--eh-white) !important;
  border: 2px solid var(--eh-primary);
  border-radius: var(--eh-radius);
  padding: 13px 28px;
  font-family: var(--eh-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  line-height: 1.3;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--eh-t), border-color var(--eh-t), box-shadow var(--eh-t);
}

.eh-btn:hover {
  background-color: var(--eh-primary-dark);
  border-color: var(--eh-primary-dark);
  color: var(--eh-white) !important;
}

.eh-btn--outline {
  background-color: transparent;
  color: var(--eh-primary) !important;
  border-color: var(--eh-primary);
}

.eh-btn--outline:hover {
  background-color: var(--eh-primary);
  color: var(--eh-white) !important;
}

.eh-btn--outline-white {
  background-color: transparent;
  color: var(--eh-white) !important;
  border-color: var(--eh-white);
}

.eh-btn--outline-white:hover {
  background-color: var(--eh-white);
  color: var(--eh-primary) !important;
}

/* Elementor button override */
.elementor-button,
.wp-block-button__link {
  background-color: var(--eh-primary) !important;
  border-color: var(--eh-primary) !important;
}

.elementor-button:hover,
.wp-block-button__link:hover {
  background-color: var(--eh-primary-dark) !important;
  border-color: var(--eh-primary-dark) !important;
}

/* ============================================================
   4. LAYOUT HELPERS
   ============================================================ */
.eh-container {
  width: 100%;
  max-width: var(--eh-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding     { padding: var(--eh-section-pad) 0; }
.section-padding-sm  { padding: var(--eh-section-pad-sm) 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   5. SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--eh-white);
  border-bottom: 1px solid var(--eh-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* CSS fallback offset for inner pages — overridden by JS measurement in header.php */
#page { padding-top: 80px; }
body.home #page { padding-top: 0; }

/* Hero section absorbs header height so no white gap appears on home */
body.home .eh-hero { padding-top: var(--hdr-h, 80px); }

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* -- Left contact buttons -- */
.header-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #25d366;
  border-radius: 50%;
  color: var(--eh-white) !important;
  text-decoration: none;
  transition: background-color var(--eh-t), transform var(--eh-t);
  flex-shrink: 0;
}

.header-wa-btn:hover {
  background-color: #1ebe5d;
  color: var(--eh-white) !important;
  transform: scale(1.05);
}

.header-wa-btn svg { display: block; width: 20px; height: 20px; fill: currentColor; }

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: var(--eh-primary);
  color: var(--eh-white) !important;
  padding: 10px 18px;
  border-radius: var(--eh-radius-full);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--eh-t);
  white-space: nowrap;
}

.header-phone-btn:hover {
  background-color: var(--eh-primary-dark);
  color: var(--eh-white) !important;
}

.header-phone-btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* -- Center logo -- */
.site-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-logo a, .site-logo .custom-logo-link { display: block; }

.site-logo img {
  height: 52px;
  width: auto;
  max-width: 220px;
}

.site-logo .site-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--eh-primary);
  text-decoration: none;
  letter-spacing: -.3px;
}

/* -- Right actions -- */
.site-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--eh-primary);
  color: var(--eh-white) !important;
  padding: 11px 22px;
  border-radius: var(--eh-radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--eh-t);
}

.header-cta-btn:hover {
  background-color: var(--eh-primary-dark);
  color: var(--eh-white) !important;
}

/* Language dropdown */
/* ── Language switcher ── */
.header-lang {
  position: relative;
  display: inline-flex;
  flex-direction: column;
}

.header-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--eh-text);
  cursor: pointer;
  background-color: var(--eh-white);
  white-space: nowrap;
  transition: border-color var(--eh-t), background-color var(--eh-t);
}

.header-lang__btn:hover { border-color: var(--eh-primary); background-color: #fdf7f7; }

.header-lang__btn svg { width: 14px; height: 14px; flex-shrink: 0; fill: currentColor; }

.header-lang__chevron {
  transition: transform 0.2s ease;
}

.header-lang__btn[aria-expanded="true"] .header-lang__chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.header-lang__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background-color: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 9999;
}

.header-lang__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-lang__option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--eh-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.header-lang__option:hover { background-color: #fdf7f7; color: var(--eh-primary); }
.header-lang__option.is-active { color: var(--eh-primary); font-weight: 700; }

.header-lang__flag { font-size: 16px; line-height: 1; }

/* ── RTL / Arabic overrides ── */
.lang-ar {
  font-family: 'Cairo', 'Roboto', sans-serif;
}

.lang-ar .header-lang__dropdown { right: auto; left: 0; }
.lang-ar .header-lang__option   { text-align: right; }

/* Flip flex rows */
.lang-ar .eh-promo-form__grid,
.lang-ar .eh-diff__grid,
.lang-ar .eh-coverage__header,
.lang-ar .site-header__inner,
.lang-ar .header-contacts { flex-direction: row-reverse; }

/* Hero grid RTL: reverse column order and flip content padding */
.lang-ar .eh-hero__inner { direction: rtl; }
.lang-ar .eh-hero__content-wrap {
  padding: 72px max(24px, calc((100vw - var(--eh-container)) / 2 + 24px)) 72px 48px;
}

/* Text alignment */
.lang-ar .eh-hero__content-wrap,
.lang-ar .eh-hero__content,
.lang-ar .eh-svc-card,
.lang-ar .eh-why-card,
.lang-ar .eh-diff__content,
.lang-ar .eh-diff__item-body,
.lang-ar .eh-pricing__note-body,
.lang-ar .eh-faq__trigger,
.lang-ar .eh-faq__answer { text-align: right; }

/* Ticker reversal */
.lang-ar .eh-ticker__track { direction: rtl; }

/* Timeline step tags */
.lang-ar .eh-hiw__step--left .eh-hiw__step-tag { justify-content: flex-start; }
.lang-ar .eh-hiw__step--right .eh-hiw__step-tag { justify-content: flex-end; }
.lang-ar .eh-hiw__step--left .eh-hiw__card  { text-align: left; }
.lang-ar .eh-hiw__step--right .eh-hiw__card { text-align: right; }

/* FAQ trigger icon alignment */
.lang-ar .eh-faq__trigger { flex-direction: row-reverse; }
.lang-ar .eh-faq__answer  { padding: 0 66px 0 22px; }

/* Coverage tag direction */
.lang-ar .eh-coverage__tags { direction: rtl; }

/* Diff list */
.lang-ar .eh-diff__item { flex-direction: row-reverse; }

/* Hamburger toggle */
.eh-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
  cursor: pointer;
  padding: 9px 10px;
  color: var(--eh-text);
  transition: color var(--eh-t), background-color var(--eh-t), border-color var(--eh-t);
}

.eh-menu-toggle:hover {
  color: var(--eh-primary);
  border-color: var(--eh-primary);
  background-color: var(--eh-primary-light);
}

.eh-menu-toggle svg { display: block; width: 20px; height: 20px; fill: currentColor; }

/* ============================================================
   6. FULL-SCREEN MEGA-MENU OVERLAY
   ============================================================ */
.mega-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background-color: var(--eh-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
  overflow-y: auto;
}

.mega-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mega menu header bar */
.mega-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}

.mega-menu__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mega-menu__logo .site-name {
  color: var(--eh-white);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.3px;
}

.mega-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--eh-radius);
  cursor: pointer;
  color: var(--eh-white);
  transition: background-color var(--eh-t), border-color var(--eh-t);
}

.mega-menu__close:hover { background-color: rgba(255,255,255,.1); border-color: var(--eh-white); }
.mega-menu__close svg { width: 20px; height: 20px; fill: currentColor; }

/* Mega menu body — 3-column grid */
.mega-menu__body {
  flex: 1;
  padding: 44px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
}

.mega-col { padding-right: 40px; border-right: 1px solid rgba(255,255,255,.1); }
.mega-col:last-child { border-right: none; padding-right: 0; }

.mega-col__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eh-gold);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  display: block;
}

.mega-col__links { list-style: none; margin: 0; padding: 0; }

.mega-col__links li { margin-bottom: 14px; }

.mega-col__links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color var(--eh-t), padding-left var(--eh-t);
  display: block;
}

.mega-col__links a:hover {
  color: var(--eh-white);
  padding-left: 6px;
}

/* Contact items in mega menu */
.mega-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.mega-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.12);
  flex-shrink: 0;
}

.mega-contact-icon.wa { background-color: #25d366; }

.mega-contact-icon svg { width: 16px; height: 16px; fill: var(--eh-white); }

.mega-contact-item a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  letter-spacing: .5px;
  text-transform: none;
  transition: color var(--eh-t);
}

.mega-contact-item a:hover { color: var(--eh-white); }

/* Mega menu footer copyright */
.mega-menu__footer {
  padding: 16px 40px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}

/* ============================================================
   7. MAIN CONTENT
   ============================================================ */
.site-content { min-height: 60vh; }

/* Inner page header (non-Elementor pages) */
.page-header-bar {
  background-color: var(--eh-rose-bg);
  border-bottom: 1px solid var(--eh-border);
  padding: 52px 0 36px;
}

.page-header-bar .entry-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 0;
}

/* Standard content wrap */
.entry-content-wrap { padding: 60px 0; }

/* ============================================================
   8. ELEMENTOR COMPAT
   ============================================================ */
.elementor-page .entry-content-wrap,
.page-template-full-width .entry-content-wrap,
.page-template-page-templates-full-width .entry-content-wrap {
  padding: 0 !important;
  max-width: none !important;
}

/* ============================================================
   9. BLOG ARCHIVE
   ============================================================ */
.blog-archive { padding: var(--eh-section-pad) 0; }

.blog-archive .archive-heading {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 40px;
}

.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.post-card {
  background-color: var(--eh-white);
  border-radius: var(--eh-radius-md);
  overflow: hidden;
  border: 1px solid var(--eh-border);
  box-shadow: var(--eh-shadow-card);
  transition: box-shadow var(--eh-t), transform var(--eh-t);
  display: flex;
  flex-direction: column;
}

.post-card:hover { box-shadow: var(--eh-shadow); transform: translateY(-2px); }

.post-card__thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--eh-light-bg);
}

.post-card__thumbnail img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}

.post-card:hover .post-card__thumbnail img { transform: scale(1.04); }

.post-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card__meta {
  font-size: 12px;
  color: var(--eh-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.post-card__meta .post-cat {
  background-color: var(--eh-primary-light);
  color: var(--eh-primary);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.post-card__title { font-size: 18px; font-weight: 700; color: var(--eh-text); margin-bottom: 10px; line-height: 1.4; }
.post-card__title a { color: inherit; text-decoration: none; transition: color var(--eh-t); }
.post-card__title a:hover { color: var(--eh-primary); }

.post-card__excerpt { font-size: 14px; color: var(--eh-muted); line-height: 1.7; flex: 1; margin-bottom: 16px; }

.post-card__link {
  font-size: 14px; font-weight: 600; color: var(--eh-primary);
  display: inline-flex; align-items: center; gap: 4px;
  text-decoration: none; transition: gap var(--eh-t), color var(--eh-t);
}

.post-card__link:hover { gap: 8px; color: var(--eh-primary-dark); }

/* Pagination */
.blog-pagination { margin-top: 48px; display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.blog-pagination .nav-links { display: flex; gap: 6px; flex-wrap: wrap; }

.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 8px;
  border-radius: var(--eh-radius); border: 1px solid var(--eh-border);
  font-size: 14px; font-weight: 500; color: var(--eh-text);
  text-decoration: none; transition: all var(--eh-t);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background-color: var(--eh-primary); border-color: var(--eh-primary); color: var(--eh-white);
}

/* ============================================================
   10. SINGLE POST
   ============================================================ */
.single-wrap { padding: 56px 0 72px; }

.single-post__meta {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 14px; font-size: 13px; color: var(--eh-muted); margin-bottom: 18px;
}

.single-post__meta .post-cat {
  background-color: var(--eh-primary-light); color: var(--eh-primary);
  padding: 3px 10px; border-radius: 20px; font-weight: 600;
  font-size: 12px; text-transform: uppercase; letter-spacing: .5px;
}

.single-post__title { font-size: clamp(26px, 4vw, 40px); font-weight: 700; line-height: 1.25; margin-bottom: 28px; }

.single-post__thumbnail { border-radius: var(--eh-radius-md); overflow: hidden; margin-bottom: 40px; }
.single-post__thumbnail img { width: 100%; height: auto; max-height: 480px; object-fit: cover; }

.single-post__content p { font-size: 16px; line-height: 1.8; margin-bottom: 22px; }
.single-post__content h2 { font-size: 24px; font-weight: 700; margin: 36px 0 14px; }
.single-post__content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; }
.single-post__content ul, .single-post__content ol { margin-bottom: 22px; padding-left: 22px; list-style: disc; }
.single-post__content ol { list-style: decimal; }
.single-post__content li { margin-bottom: 7px; line-height: 1.7; }
.single-post__content img { border-radius: var(--eh-radius-md); margin: 24px 0; }
.single-post__content blockquote {
  border-left: 4px solid var(--eh-primary); margin: 28px 0; padding: 16px 22px;
  background-color: var(--eh-primary-light); border-radius: 0 var(--eh-radius) var(--eh-radius) 0;
  font-style: italic; color: var(--eh-muted);
}

/* Author box */
.author-box {
  margin-top: 44px; padding: 26px; background-color: var(--eh-light-bg);
  border-radius: var(--eh-radius-md); border: 1px solid var(--eh-border);
  display: flex; gap: 18px; align-items: flex-start;
}

.author-box__avatar img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; }
.author-box__name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.author-box__role { font-size: 12px; color: var(--eh-primary); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.author-box__bio { font-size: 14px; color: var(--eh-muted); line-height: 1.6; margin: 0; }

/* Post nav */
.post-nav {
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--eh-border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

.post-nav__item {
  padding: 18px 20px; background-color: var(--eh-light-bg);
  border-radius: var(--eh-radius-md); border: 1px solid var(--eh-border);
  transition: border-color var(--eh-t);
}

.post-nav__item:hover { border-color: var(--eh-primary); }
.post-nav__item--next { text-align: right; }
.post-nav__label { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--eh-muted); display: block; margin-bottom: 5px; }
.post-nav__item a { font-size: 14px; font-weight: 600; color: var(--eh-text); text-decoration: none; transition: color var(--eh-t); }
.post-nav__item a:hover { color: var(--eh-primary); }

/* ============================================================
   11. SIDEBAR
   ============================================================ */
.widget-area { position: sticky; top: 100px; }

.widget {
  background-color: var(--eh-white); border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius-md); padding: 22px; margin-bottom: 22px;
}

.widgettitle, .widget-title {
  font-size: 15px; font-weight: 700; color: var(--eh-text);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--eh-primary); display: block;
}

.widget ul li { padding: 6px 0; border-bottom: 1px solid var(--eh-border); font-size: 14px; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--eh-text); transition: color var(--eh-t); }
.widget ul li a:hover { color: var(--eh-primary); }

/* ============================================================
   12. SEARCH & 404
   ============================================================ */
.search-results-wrap { padding: var(--eh-section-pad) 0; }

.search-form-header {
  background-color: var(--eh-light-bg); border-radius: var(--eh-radius-md);
  border: 1px solid var(--eh-border); padding: 28px 32px; margin-bottom: 36px;
}

.eh-search-form { display: flex; gap: 10px; }

.eh-search-form input[type="search"] {
  flex: 1; border: 1px solid var(--eh-border); border-radius: var(--eh-radius);
  padding: 11px 16px; font-size: 15px; font-family: var(--eh-font);
  outline: none; transition: border-color var(--eh-t), box-shadow var(--eh-t);
  background-color: var(--eh-white); color: var(--eh-text);
}

.eh-search-form input[type="search"]:focus {
  border-color: var(--eh-primary);
  box-shadow: 0 0 0 3px rgba(123,191,48,.15);
}

.eh-search-form button {
  background-color: var(--eh-primary); color: var(--eh-white); border: none;
  border-radius: var(--eh-radius); padding: 11px 22px; font-size: 15px;
  font-weight: 600; font-family: var(--eh-font); cursor: pointer;
  transition: background-color var(--eh-t); white-space: nowrap;
}

.eh-search-form button:hover { background-color: var(--eh-primary-dark); }

.search-result-item { padding: 22px 0; border-bottom: 1px solid var(--eh-border); }
.search-result-item:last-child { border-bottom: none; }
.search-result-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.search-result-item h3 a { color: var(--eh-text); text-decoration: none; transition: color var(--eh-t); }
.search-result-item h3 a:hover { color: var(--eh-primary); }
.search-result-item .result-url { font-size: 12px; color: var(--eh-primary); margin-bottom: 6px; }
.search-result-item p { font-size: 14px; color: var(--eh-muted); line-height: 1.7; margin-bottom: 0; }

.error-404-wrap { padding: 100px 0; text-align: center; }
.error-404-wrap .error-code { font-size: clamp(80px, 15vw, 160px); font-weight: 800; color: var(--eh-primary); line-height: 1; margin-bottom: 0; opacity: .12; }
.error-404-wrap h1 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-top: -20px; margin-bottom: 14px; }
.error-404-wrap .error-desc { font-size: 16px; color: var(--eh-muted); max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }
.error-404-wrap .error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   13. CONTACT FORM 7
   ============================================================ */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%; padding: 10px 14px; font-size: 15px; font-family: var(--eh-font);
  border: 1px solid var(--eh-border); border-radius: var(--eh-radius);
  background-color: var(--eh-white); color: var(--eh-text);
  transition: border-color var(--eh-t), box-shadow var(--eh-t); appearance: none;
}

.wpcf7-form input:focus, .wpcf7-form textarea:focus, .wpcf7-form select:focus {
  border-color: var(--eh-primary); outline: none;
  box-shadow: 0 0 0 3px rgba(123,191,48,.15);
}

.wpcf7-form input[type="submit"] {
  background-color: var(--eh-primary) !important; color: var(--eh-white) !important;
  border: none !important; border-radius: var(--eh-radius) !important;
  padding: 12px 28px !important; font-size: 16px !important; font-weight: 600 !important;
  cursor: pointer; width: 100% !important; font-family: var(--eh-font) !important;
  transition: background-color var(--eh-t) !important;
}

.wpcf7-form input[type="submit"]:hover { background-color: var(--eh-primary-dark) !important; }
.wpcf7-not-valid-tip { color: #ef4444; font-size: 13px; margin-top: 4px; display: block; }
.wpcf7-mail-sent-ok { background: #f0fdf4; border: 1px solid #86efac; color: #166534; padding: 12px 16px; border-radius: var(--eh-radius); font-size: 14px; margin-top: 10px; }
.wpcf7-mail-sent-ng, .wpcf7-validation-errors { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; padding: 12px 16px; border-radius: var(--eh-radius); font-size: 14px; margin-top: 10px; }

/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--eh-footer-bg);
  color: var(--eh-footer-text);
}

.footer-main {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-main__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Footer brand column */
.footer-brand {}

.footer-logo { margin-bottom: 16px; }

.footer-logo img {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-logo .site-name {
  color: var(--eh-white);
  font-size: 18px;
  font-weight: 800;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--eh-footer-text);
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background-color: rgba(255,255,255,.08);
  color: var(--eh-footer-link); font-size: 15px;
  text-decoration: none;
  transition: background-color var(--eh-t), color var(--eh-t);
}

.footer-social a:hover { background-color: var(--eh-primary); color: var(--eh-white); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* Footer column titles */
.site-footer .footer-col-title,
.site-footer .widget-title,
.site-footer .widgettitle {
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--eh-white) !important;
  margin-bottom: 18px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
  display: block !important;
}

/* Footer links */
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 9px; font-size: 14px; }

.site-footer ul li a {
  color: var(--eh-footer-link); text-decoration: none;
  transition: color var(--eh-t), padding-left var(--eh-t); display: inline-block;
}

.site-footer ul li a:hover { color: var(--eh-white); padding-left: 3px; }

/* Offices sub-heading */
.footer-office-heading {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--eh-white); margin: 18px 0 10px;
}

.footer-office-heading:first-of-type { margin-top: 0; }

.footer-office-item {
  display: flex; align-items: flex-start; gap: 9px;
  margin-bottom: 8px; font-size: 13px; color: var(--eh-footer-text);
}

.footer-office-item svg { width: 14px; height: 14px; fill: var(--eh-primary); flex-shrink: 0; margin-top: 2px; }

.footer-office-item a { color: var(--eh-footer-link); text-decoration: none; transition: color var(--eh-t); }
.footer-office-item a:hover { color: var(--eh-white); }

/* Footer widget default */
.footer-widget { background: none !important; border: none !important; padding: 0 !important; margin: 0 !important; }

/* Footer bottom bar */
.footer-bottom { padding: 18px 0; }

.footer-bottom__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}

.footer-bottom__copy { font-size: 13px; color: var(--eh-footer-text); }
.footer-bottom__copy a { color: var(--eh-footer-link); text-decoration: none; }
.footer-bottom__copy a:hover { color: var(--eh-white); }

.footer-bottom__right {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}

.footer-payment-icons { display: flex; align-items: center; gap: 6px; }
.footer-payment-icons img { height: 22px; width: auto; opacity: .7; }

.footer-managed {
  font-size: 12px; color: var(--eh-footer-text);
}

.footer-managed a { color: var(--eh-footer-text); text-decoration: underline; transition: color var(--eh-t); }
.footer-managed a:hover { color: var(--eh-white); }

/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --eh-section-pad: 60px; }

  .footer-main__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }

  .mega-menu__body { grid-template-columns: repeat(2, 1fr); }
  .mega-col:nth-child(2) { border-right: none; }

  .post-nav { grid-template-columns: 1fr; }
  .post-nav__item--next { text-align: left; }
}

@media (max-width: 768px) {
  :root {
    --eh-section-pad: 50px;
    --eh-section-pad-sm: 32px;
  }

  /* Keep 3-column layout so logo stays centered */
  .site-header__inner { grid-template-columns: auto 1fr auto; }

  /* Hide language selector and desktop CTA on mobile */
  .header-lang { display: none !important; }
  .header-phone-btn .btn-label { display: none; }
  .header-phone-btn { padding: 10px; }
  .header-cta-btn { display: none !important; }

  .site-logo { justify-content: center; }

  .footer-main__grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .footer-bottom__right { justify-content: center; }

  .mega-menu__body { grid-template-columns: 1fr; gap: 32px; padding: 28px 22px; }
  .mega-menu__header { padding: 16px 22px; }
  .mega-col { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 24px; }
  .mega-col:last-child { border-bottom: none; }
  .mega-menu__footer { padding: 14px 22px; }

  .eh-search-form { flex-direction: column; }
  .error-404-wrap .error-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .eh-container { padding-left: 16px; padding-right: 16px; }
  .header-contacts { gap: 6px; }
  .header-wa-btn { width: 38px; height: 38px; }
  .header-phone-btn { padding: 8px 12px; font-size: 12px; }
}

/* ============================================================
   16. PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .mega-menu-overlay { display: none !important; }
}

/* ============================================================
   17. HERO SECTION (Homepage)
   ============================================================ */
.eh-hero {
  background-color: #faf9f6;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 18px,
    rgba(0,0,0,.022) 18px,
    rgba(0,0,0,.022) 19px
  );
  overflow: hidden;
}

.eh-hero__inner {
  position: relative;
  min-height: 617px;
}

/* Left panel */
.eh-hero__content-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 617px;
  width: 37%;
  min-width: 380px;
  padding: 24px 48px 24px max(24px, calc((100vw - var(--eh-container)) / 2 + 24px));
}

.eh-hero__content {
  width: 100%;
}

/* Main heading */
.eh-hero__title {
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--eh-text);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

/* Rotating word container — ghost sets the width, words animate over it */
.eh-hero__rotator {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
}

.eh-hero__word-ghost {
  visibility: hidden;
  display: inline-block;
  white-space: nowrap;
}

.eh-hero__word {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  color: var(--eh-primary);
  pointer-events: none;
}

.eh-hero__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
}

.eh-hero__word.is-visible .eh-hero__letter {
  animation: eh-letter-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i) * 55ms);
}

.eh-hero__word.is-leaving .eh-hero__letter {
  animation: eh-letter-out 0.3s ease-in forwards;
  animation-delay: calc(var(--ri) * 40ms);
}

@keyframes eh-letter-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes eh-letter-out {
  from { opacity: 1; transform: translateY(0);     }
  to   { opacity: 0; transform: translateY(-18px); }
}

/* Tagline beneath animated title */
.eh-hero__tagline {
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 700;
  color: var(--eh-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  opacity: .65;
}

/* Description */
.eh-hero__desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  max-width: 460px;
  margin-bottom: 32px;
}

/* CTA */
.eh-hero__actions {
  margin-bottom: 44px;
}

.eh-hero__cta-primary {
  padding: 16px 38px;
  font-size: 14px;
  letter-spacing: 0.8px;
  border-radius: var(--eh-radius-full);
}

/* Stats row */
.eh-hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.eh-hero__stat {
  display: flex;
  flex-direction: column;
  padding: 0 14px;
}

.eh-hero__stat:first-child { padding-left: 0; }

.eh-hero__stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--eh-text);
  line-height: 1;
  display: block;
}

.eh-hero__stat-label {
  font-size: 11px;
  color: #666;
  margin-top: 5px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.eh-hero__stat-sep {
  display: block;
  width: 1.5px;
  height: 42px;
  background: rgba(0,0,0,.15);
  flex-shrink: 0;
}

/* Right panel: absolutely positioned, EasyTruck-style */
.eh-hero__media {
  position: absolute;
  right: 0;
  top: 0;
  width: 63%;
  max-width: 1200px;
  aspect-ratio: 1200 / 617;
  overflow: hidden;
}

.eh-hero__slider {
  position: absolute;
  inset: 0;
}

.eh-hero__img--slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.eh-hero__img--active {
  opacity: 1;
}

/* Hero responsive */
@media (max-width: 960px) {
  .eh-hero__inner {
    min-height: auto;
  }
  .eh-hero__content-wrap {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 56px 24px;
  }
  .eh-hero__media {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    aspect-ratio: unset;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .eh-hero__media { display: none; }
  .eh-hero__content-wrap { padding: 44px 24px 52px; }
  .eh-hero__cta-primary { width: 100%; justify-content: center; text-align: center; }
}

/* ============================================================
   18. TICKER BAR
   ============================================================ */
.eh-ticker {
  background-color: var(--eh-primary);
  overflow: hidden;
  padding: 11px 0;
}

.eh-ticker__track {
  display: flex;
  overflow: hidden;
}

/* JS sets transform; flex keeps both copies side-by-side */
.eh-ticker__inner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  will-change: transform;
}

.eh-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.eh-ticker__dot {
  color: rgba(255,255,255,.35);
  font-size: 10px;
  line-height: 1;
}

.eh-ticker__num {
  color: var(--eh-gold);
  font-weight: 700;
}

.eh-ticker__label { color: rgba(255,255,255,.88); }

/* ============================================================
   19. PROMO CARD + QUOTE FORM
   ============================================================ */
.eh-promo-form__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

/* Promo card */
.eh-promo-card {
  background-color: var(--eh-primary);
  border-radius: var(--eh-radius-md);
  padding: 52px 38px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eh-promo-card__circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.eh-promo-card__circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(0,0,0,.15);
}

.eh-promo-card__circle--lg {
  width: 240px;
  height: 240px;
  right: -50px;
  top: 8%;
}

.eh-promo-card__circle--sm {
  width: 130px;
  height: 130px;
  right: 50px;
  bottom: 12%;
}

.eh-promo-card__body { position: relative; z-index: 1; }

.eh-promo-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--eh-gold);
  margin-bottom: 14px;
}

.eh-promo-card__percent {
  font-size: clamp(52px, 6.5vw, 76px);
  font-weight: 800;
  color: var(--eh-white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.eh-promo-card__sub {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--eh-white);
  margin-bottom: 0;
}

.eh-promo-card__divider {
  display: block;
  width: 44px;
  height: 2px;
  background-color: var(--eh-gold);
  border-radius: 2px;
  margin: 20px 0;
}

.eh-promo-card__note {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 30px;
}

.eh-promo-card__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.eh-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: var(--eh-radius);
  text-decoration: none;
  transition: all var(--eh-t);
  border: 2px solid transparent;
}

.eh-promo-btn--white {
  background-color: var(--eh-white);
  color: var(--eh-primary) !important;
  border-color: var(--eh-white);
}

.eh-promo-btn--white:hover {
  background-color: transparent;
  color: var(--eh-white) !important;
}

.eh-promo-btn--outline {
  background-color: transparent;
  color: var(--eh-white) !important;
  border-color: rgba(255,255,255,.55);
}

.eh-promo-btn--outline:hover {
  border-color: var(--eh-white);
  background-color: rgba(255,255,255,.08);
}

/* Quote box */
.eh-quote-box {
  background-color: var(--eh-white);
  border-radius: var(--eh-radius-md);
  padding: 44px 40px;
  box-shadow: var(--eh-shadow);
  border: 1px solid var(--eh-border);
}

.eh-quote-box__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
  color: var(--eh-text);
}

.eh-quote-box__title-accent { color: var(--eh-primary); }

.eh-quote-box__underline {
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--eh-gold);
  border-radius: 2px;
  margin: 0 auto 28px;
}

/* Form rows */
.eh-qf__row { margin-bottom: 16px; }

.eh-qf__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.eh-qf__group { display: flex; flex-direction: column; gap: 5px; }

.eh-qf__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--eh-text);
}

.eh-qf__optional {
  font-weight: 400;
  color: var(--eh-muted);
  font-size: 12px;
}

.eh-qf__input,
.eh-qf__textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--eh-font);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
  background-color: var(--eh-white);
  color: var(--eh-text);
  transition: border-color var(--eh-t), box-shadow var(--eh-t);
  -webkit-appearance: none;
  appearance: none;
}

.eh-qf__input:focus,
.eh-qf__textarea:focus {
  border-color: var(--eh-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(123,191,48,.15);
}

.eh-qf__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23666666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 36px;
  cursor: pointer;
}

.eh-qf__textarea {
  resize: vertical;
  min-height: 88px;
}

.eh-qf__submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* Promo + form responsive */
@media (max-width: 960px) {
  .eh-promo-form__grid { grid-template-columns: 1fr; }
  .eh-promo-card { min-height: auto; }
}

@media (max-width: 600px) {
  .eh-qf__row--2col { grid-template-columns: 1fr; }
  .eh-quote-box { padding: 28px 20px; }
  .eh-promo-card { padding: 36px 24px; }
  .eh-promo-card__btns { flex-direction: column; }
  .eh-promo-btn { justify-content: center; }
}

/* ============================================================
   20. APARTMENT MOVING SERVICES SECTION
   ============================================================ */
.eh-services { background-color: var(--eh-rose-bg); }

/* Section header */
.eh-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.eh-section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--eh-text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.eh-section-title--accent { color: var(--eh-primary); }

.eh-section-divider {
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--eh-gold);
  border-radius: 2px;
  margin: 0 auto 18px;
}

.eh-section-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--eh-muted);
  margin: 0;
}

.eh-section-desc a {
  color: var(--eh-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.eh-section-desc a:hover { color: var(--eh-primary-dark); }

/* Services grid */
.eh-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Service card — full background image with gradient overlay */
.eh-svc-card {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: var(--eh-radius-md);
  overflow: hidden;
  min-height: 300px;
  background-color: #1a2035;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eh-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* Dark gradient overlay */
.eh-svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.50) 55%,
    rgba(0,0,0,0.18) 100%
  );
  transition: background 0.3s ease;
}

.eh-svc-card:hover .eh-svc-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.60) 55%,
    rgba(0,0,0,0.25) 100%
  );
}

/* Card body stacked at bottom */
.eh-svc-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: 24px;
}

/* Icon */
.eh-svc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--eh-radius-md);
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.eh-svc-card:hover .eh-svc-card__icon {
  background: var(--eh-primary);
  border-color: var(--eh-primary);
}

.eh-svc-card__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  display: block;
}

/* Card title */
.eh-svc-card__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Card description */
.eh-svc-card__desc {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin: 0 0 14px;
}

/* See Services link */
.eh-svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--eh-gold);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.eh-svc-card__link:hover {
  color: #fff;
  gap: 9px;
}

.eh-svc-card__link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Bottom CTAs */
.eh-services__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Services responsive */
@media (max-width: 900px) {
  .eh-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .eh-services__grid { grid-template-columns: 1fr; }
  .eh-services__actions { flex-direction: column; align-items: stretch; }
  .eh-services__actions .eh-btn { text-align: center; justify-content: center; }
}

/* ============================================================
   21. WHY CHOOSE US SECTION
   ============================================================ */
.eh-why { background-color: #1a1a1a; }

/* Centred header */
.eh-why__header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px;
}

.eh-why__title {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: .5px;
}

.eh-why__title--accent {
  color: var(--eh-primary);
}

.eh-why__intro {
  font-size: 15px;
  line-height: 1.8;
  color: #aaaaaa;
  margin: 0 0 14px;
}

.eh-why__intro a {
  color: var(--eh-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.eh-why__intro a:hover { color: var(--eh-primary-dark); }

.eh-why__tagline {
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.eh-why__tagline--accent {
  color: var(--eh-primary);
}

/* 2-column card grid */
.eh-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Why card */
.eh-why-card {
  background-color: #242729;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--eh-radius-md);
  padding: 26px 28px 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--eh-t), transform var(--eh-t), border-color var(--eh-t);
}

.eh-why-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,.4);
  transform: translateY(-2px);
  border-color: rgba(123,191,48,.25);
}

.eh-why-card:hover .eh-why-card__icon {
  background-color: var(--eh-primary);
  transition: background-color 0.25s ease;
}

.eh-why-card:hover .eh-why-card__icon svg {
  fill: #fff;
  transition: fill 0.25s ease;
}

.eh-why-card:active {
  transform: scale(0.97);
  border-color: var(--eh-primary);
  box-shadow: 0 2px 10px rgba(123,191,48,.18);
}

/* Top row: icon + number */
.eh-why-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.eh-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(123,191,48,0.18);
  border-radius: var(--eh-radius-md);
  flex-shrink: 0;
  transition: background-color 0.25s ease;
}

.eh-why-card__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--eh-primary);
  display: block;
  transition: fill 0.25s ease;
}

.eh-why-card__num {
  font-size: 58px;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  letter-spacing: -2px;
  line-height: 1;
  align-self: flex-start;
}

.eh-why-card__title {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.45;
}

.eh-why-card__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #999999;
  margin: 0;
}

/* ---- Ripple click effect (shared by .eh-why-card & .eh-svc-card) ---- */
.eh-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(139, 26, 26, 0.13);
  transform: scale(0);
  animation: eh-ripple-expand 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes eh-ripple-expand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Service cards get the same press + ripple treatment */
.eh-svc-card:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(0,0,0,.30);
}

/* Why section responsive */
@media (max-width: 900px) {
  .eh-why__header { margin-bottom: 36px; }
}

@media (max-width: 700px) {
  .eh-why__grid { grid-template-columns: 1fr; }
  .eh-why-card__num { font-size: 44px; }
}

/* ============================================================
   22. WHY APARTMENT MOVES ARE DIFFERENT
   ============================================================ */
.eh-diff { background-color: var(--eh-white); }

.eh-diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- Left: decorated image column ---- */
.eh-diff__media {
  position: sticky;
  top: 90px; /* clears the fixed header */
  padding: 36px 20px 36px 36px;
}

/* Gold L-bracket in top-left */
.eh-diff__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  border-top: 2px solid var(--eh-gold);
  border-left: 2px solid var(--eh-gold);
  border-radius: 6px 0 0 0;
  pointer-events: none;
}

/* Image wrapper */
.eh-diff__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  line-height: 0; /* removes inline gap below img */
}

.eh-diff__img {
  width: 100%;
  height: auto;
  min-height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* "DUBAI TOWERS" pill badge — top-right of image, overlapping border */
.eh-diff__badge {
  position: absolute;
  top: 22px;
  right: -16px;
  background-color: var(--eh-gold);
  color: var(--eh-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: var(--eh-radius-full);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  white-space: nowrap;
  z-index: 2;
}

/* ---- Right: text column ---- */
.eh-diff__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--eh-gold);
  margin-bottom: 14px;
}

.eh-diff__title {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--eh-text);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: .2px;
}

.eh-diff__title--accent {
  display: block;
  color: var(--eh-primary);
}

.eh-diff__divider {
  display: block;
  width: 44px;
  height: 3px;
  background-color: var(--eh-gold);
  border-radius: 2px;
  margin-bottom: 28px;
}

.eh-diff__desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--eh-muted);
  margin-bottom: 36px;
}

.eh-diff__rule {
  border: none;
  border-top: 1px solid var(--eh-border);
  margin: 0 0 0;
}

/* ---- Team intro + checkmark qualities list ---- */
.eh-diff__team-intro {
  font-size: 14.5px;
  color: var(--eh-text);
  font-weight: 600;
  margin: 20px 0 10px;
}

.eh-diff__qualities {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eh-diff__qualities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--eh-text);
  line-height: 1.5;
}

.eh-diff__qualities li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: var(--eh-primary-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%237bbf30' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- Scroll-reveal list items ---- */
.eh-diff__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eh-diff__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0 20px 12px;
  border-bottom: 1px solid var(--eh-border);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: border-color 0.25s ease;
}

/* Hover state */
.eh-diff__item:hover {
  border-left-color: var(--eh-primary);
}

.eh-diff__item:hover .eh-diff__item-icon {
  background-color: var(--eh-primary);
  border-color: var(--eh-primary);
}

.eh-diff__item:hover .eh-diff__item-icon svg {
  fill: #fff;
}

.eh-diff__item:hover .eh-diff__item-title {
  color: var(--eh-primary);
}

.eh-diff__item-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.eh-diff__item-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--eh-gold);
  line-height: 1;
}

.eh-diff__item-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--eh-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.eh-diff__item-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--eh-primary);
  display: block;
  transition: fill 0.25s ease;
}

.eh-diff__item-body { flex: 1; }

.eh-diff__item-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--eh-text);
  margin: 0 0 6px;
  transition: color 0.25s ease;
}

.eh-diff__item-desc {
  font-size: 13px;
  line-height: 1.72;
  color: var(--eh-muted);
  margin: 0;
}

/* Scroll reveal — initial hidden state */
.eh-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease var(--reveal-delay, 0ms),
              transform 0.5s ease var(--reveal-delay, 0ms);
}

.eh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image column stays at top when list makes right column taller */
.eh-diff__grid { align-items: start; }

/* Diff section responsive */
@media (max-width: 960px) {
  .eh-diff__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }
  .eh-diff__badge { right: 0; }
  .eh-diff__media {
    position: relative; /* disable sticky on single-column layout */
    top: auto;
    padding: 32px 0 44px 28px;
  }
}

@media (max-width: 480px) {
  .eh-diff__media { padding: 28px 0 40px 20px; }
  .eh-diff__badge {
    right: 0;
    font-size: 10px;
    padding: 9px 20px;
    letter-spacing: 2px;
  }
  .eh-diff__item { gap: 14px; }
  .eh-diff__item-icon { width: 38px; height: 38px; }
}

/* ============================================================
   23. TRANSPARENT PRICING TABLE
   ============================================================ */
.eh-pricing { background-color: var(--eh-white); }

/* Centred section header */
.eh-pricing__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}

.eh-pricing__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--eh-gold);
  margin-bottom: 14px;
}

.eh-pricing__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--eh-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.eh-pricing__title--accent { color: var(--eh-primary); }

.eh-pricing__divider {
  display: block;
  width: 44px;
  height: 3px;
  background-color: var(--eh-gold);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.eh-pricing__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--eh-muted);
  margin: 0;
}

/* Table wrapper — rounded border */
.eh-pricing__table-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e4d8d8;
}

/* Table base */
.eh-pricing__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* Header row */
.eh-pricing__table thead tr {
  background-color: var(--eh-primary);
}

.eh-pricing__table thead th {
  padding: 18px 22px;
  color: var(--eh-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  text-align: left;
  vertical-align: middle;
  border-right: 1px solid rgba(255,255,255,.12);
}

.eh-pricing__table thead th:last-child { border-right: none; }

.eh-pricing__th-sub {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,.65);
  margin-top: 3px;
  text-transform: uppercase;
}

/* Body rows */
.eh-pricing__table tbody tr {
  border-bottom: 1px solid #ece6e6;
  transition: background-color 0.25s ease;
}

.eh-pricing__table tbody tr:last-child { border-bottom: none; }

.eh-pricing__table tbody tr:hover { background-color: rgba(123,191,48,.06); }

/* Left accent bar via inset shadow on first cell */
.eh-pricing__table tbody tr:hover td:first-child {
  box-shadow: inset 3px 0 0 var(--eh-primary);
}

/* Apartment name turns crimson on row hover */
.eh-pricing__table tbody tr:hover .eh-pricing__apt {
  color: var(--eh-primary) !important;
  transition: color 0.25s ease;
}

.eh-pricing__table tbody td {
  padding: 20px 22px;
  color: var(--eh-muted);
  vertical-align: middle;
  border-right: 1px solid #ece6e6;
}

.eh-pricing__table tbody td:last-child { border-right: none; }

/* Apartment name cell — bold */
.eh-pricing__apt {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--eh-text) !important;
  transition: color 0.25s ease;
}

/* Price cell — crimson bold */
.eh-pricing__price {
  font-weight: 700;
  color: var(--eh-primary) !important;
  white-space: nowrap;
}

/* ---- Disclaimer note box ---- */
.eh-pricing__note {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 28px;
  background-color: #faf6f0;
  border: 1px solid var(--eh-gold);
  border-radius: 12px;
  padding: 32px 36px 32px 56px;
}

/* Large decorative tick — positioned left, overlapping the border */
.eh-pricing__note-tick {
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--eh-white);
  border: 2px solid var(--eh-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eh-pricing__note-tick svg {
  width: 22px;
  height: 22px;
  fill: var(--eh-gold);
  display: block;
}

.eh-pricing__note-body { flex: 1; }

.eh-pricing__note-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--eh-text);
  margin: 0 0 12px;
}

.eh-pricing__note-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--eh-muted);
  margin: 0 0 24px;
}

.eh-pricing__note-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 1px;
}

.eh-pricing__note-cta svg {
  width: 18px;
  height: 18px;
}

/* Responsive — horizontal scroll on small screens */
@media (max-width: 768px) {
  .eh-pricing__table-wrap { border-radius: 10px; overflow-x: auto; }
  .eh-pricing__table { min-width: 560px; }
  .eh-pricing__table thead th,
  .eh-pricing__table tbody td { padding: 14px 16px; }
}

@media (max-width: 480px) {
  .eh-pricing__table { min-width: 480px; font-size: 13px; }
}

/* ============================================================
   24. COVERAGE SECTION
   ============================================================ */
.eh-coverage { background-color: var(--eh-white); }

/* Centred main heading */
.eh-coverage__center-header {
  text-align: center;
  margin-bottom: 52px;
}
.eh-coverage__main-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--eh-text);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.eh-coverage__main-divider {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--eh-primary);
  border-radius: 2px;
  margin: 0 auto;
}

/* Coverage blocks */
.eh-coverage__block {
  text-align: center;
  margin-bottom: 48px;
  padding: 36px;
  border-radius: 14px;
  background: var(--eh-light-bg);
  border: 1px solid var(--eh-border);
}
.eh-coverage__block:last-child { margin-bottom: 0; }

.eh-coverage__block--dark {
  background: var(--eh-primary);
  border-color: var(--eh-primary);
}

.eh-coverage__block-title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--eh-text);
  margin-bottom: 12px;
}
.eh-coverage__block--dark .eh-coverage__block-title { color: #fff; }

.eh-coverage__block-divider {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--eh-primary);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.eh-coverage__block--dark .eh-coverage__block-divider { background: rgba(255,255,255,0.5); }

/* Tags */
.eh-coverage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.eh-coverage__tags--centered { justify-content: center; }

.eh-coverage__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  line-height: 1;
  border: 1px solid var(--eh-border);
  background: var(--eh-white);
  color: var(--eh-text);
  transition: background var(--eh-t), color var(--eh-t), border-color var(--eh-t);
}
.eh-coverage__tag:hover {
  background: var(--eh-primary);
  border-color: var(--eh-primary);
  color: #fff;
}
.eh-coverage__tag:hover svg { fill: #fff; }

.eh-coverage__block--dark .eh-coverage__tag {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.eh-coverage__block--dark .eh-coverage__tag:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
}
.eh-coverage__block--dark .eh-coverage__tag:hover svg { fill: #fff; }

.eh-coverage__tag svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: var(--eh-primary);
  transition: fill var(--eh-t);
}
.eh-coverage__block--dark .eh-coverage__tag svg { fill: rgba(255,255,255,0.8); }

@media (max-width: 600px) {
  .eh-coverage__block { padding: 24px 16px; }
  .eh-coverage__tag { font-size: 12px; padding: 7px 13px; }
}

/* ============================================================
   25. HOW IT WORKS — VERTICAL TIMELINE
   ============================================================ */
.eh-hiw { background-color: var(--eh-white); }

/* ---- Centred header ---- */
.eh-hiw__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.eh-hiw__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--eh-gold);
  margin-bottom: 14px;
}

.eh-hiw__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--eh-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.eh-hiw__title--accent { color: var(--eh-primary); }

.eh-hiw__divider {
  display: block;
  width: 44px;
  height: 3px;
  background-color: var(--eh-gold);
  border-radius: 2px;
  margin: 0 auto 22px;
}

.eh-hiw__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--eh-muted);
  margin: 0;
}

/* ---- Timeline container ---- */
.eh-hiw__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 64px;
}

/* Vertical centre line */
.eh-hiw__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--eh-gold) 0%, var(--eh-primary) 100%);
  transform: translateX(-50%);
  z-index: 0;
}

/* ---- Each step row ---- */
.eh-hiw__step {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Card — shared */
.eh-hiw__card {
  flex: 1;
  background-color: #fdf8f4;
  border-radius: 14px;
  padding: 28px 32px 32px;
  position: relative;
  overflow: hidden;
  min-width: 0; /* prevent flex blowout */
}

/* Left card — right-aligned text */
.eh-hiw__step--left .eh-hiw__card { text-align: right; }

/* Right card — left-aligned text */
.eh-hiw__step--right .eh-hiw__card { text-align: left; }

/* Spacer fills the opposite empty side */
.eh-hiw__gap {
  flex: 1;
  min-width: 0;
}

/* ---- Centre node ---- */
.eh-hiw__node {
  width: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.eh-hiw__circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--eh-gold);
  background-color: var(--eh-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--eh-gold);
  line-height: 1;
  box-shadow: 0 0 0 5px var(--eh-white); /* clear line behind circle */
}

/* ---- Step tag (label + dash) ---- */
.eh-hiw__step-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.eh-hiw__step--left  .eh-hiw__step-tag { justify-content: flex-end; }
.eh-hiw__step--right .eh-hiw__step-tag { justify-content: flex-start; }

.eh-hiw__tag-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--eh-gold);
  white-space: nowrap;
}

.eh-hiw__tag-dash {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--eh-gold);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ---- Step title ---- */
.eh-hiw__step-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--eh-text);
  margin: 0 0 12px;
  line-height: 1.3;
}

/* ---- Step description ---- */
.eh-hiw__step-desc {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--eh-muted);
  margin: 0;
}

/* ---- Faint watermark number ---- */
.eh-hiw__watermark {
  position: absolute;
  bottom: -8px;
  right: 14px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(123,191,48,.09);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -3px;
}

.eh-hiw__step--right .eh-hiw__watermark {
  right: auto;
  left: 14px;
}

/* ---- Bottom CTAs ---- */
.eh-hiw__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  /* Collapse to single column, line on far left */
  .eh-hiw__timeline::before {
    left: 27px;
    transform: none;
  }

  .eh-hiw__step,
  .eh-hiw__step--left,
  .eh-hiw__step--right {
    flex-direction: row;
    align-items: flex-start;
  }

  /* On mobile all steps: [node][card], no gap */
  .eh-hiw__gap { display: none; }

  .eh-hiw__node { width: 54px; padding-top: 4px; }

  .eh-hiw__circle { width: 44px; height: 44px; font-size: 16px; }

  .eh-hiw__step--left .eh-hiw__card,
  .eh-hiw__step--right .eh-hiw__card {
    text-align: left;
    order: 1; /* card always after node */
  }

  .eh-hiw__step--left  .eh-hiw__node { order: 0; }
  .eh-hiw__step--right .eh-hiw__node { order: 0; }

  .eh-hiw__step--left  .eh-hiw__step-tag { justify-content: flex-start; }

  .eh-hiw__watermark { font-size: 56px; }
}

@media (max-width: 480px) {
  .eh-hiw__card { padding: 22px 20px 26px; }
  .eh-hiw__header { margin-bottom: 48px; }
}

/* ============================================================
   26. FAQ ACCORDION
   ============================================================ */

/* Diagonal stripe background */
.eh-faq {
  background-color: #f4f2f2;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,.025) 0,
    rgba(0,0,0,.025) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 10px 10px;
}

/* ---- Centred header ---- */
.eh-faq__header {
  text-align: center;
  margin-bottom: 52px;
}

.eh-faq__title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--eh-text);
  line-height: 1.15;
  margin-bottom: 18px;
}

.eh-faq__title--accent { color: var(--eh-primary); }

.eh-faq__divider {
  display: block;
  width: 44px;
  height: 3px;
  background-color: var(--eh-gold);
  border-radius: 2px;
  margin: 0 auto;
}

/* ---- Two-column grid ---- */
.eh-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Column card */
.eh-faq__col {
  background-color: var(--eh-white);
  border-radius: 14px;
  overflow: hidden;
}

/* ---- Individual FAQ item ---- */
.eh-faq__item {
  border-bottom: 1px solid #ece6e6;
}

.eh-faq__item:last-child { border-bottom: none; }

/* Trigger button */
.eh-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.eh-faq__trigger:hover { background-color: #fdf7f7; }

/* Crimson toggle icon */
.eh-faq__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background-color: var(--eh-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eh-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: background-color 0.2s ease;
}

.eh-faq__icon-x { display: none; }
.eh-faq__icon-plus { display: block; }

/* Question text */
.eh-faq__question {
  font-size: 14px;
  font-weight: 700;
  color: var(--eh-text);
  line-height: 1.45;
  flex: 1;
  transition: color 0.2s ease;
}

/* Answer panel — hidden by default */
.eh-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px 0 66px; /* 66px = icon width + gap + trigger left padding */
}

.eh-faq__answer p {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--eh-muted);
  margin: 0 0 20px;
}

/* ---- Open state ---- */
.eh-faq__item.is-open .eh-faq__icon-plus { display: none; }
.eh-faq__item.is-open .eh-faq__icon-x    { display: block; }

.eh-faq__item.is-open .eh-faq__question  { color: var(--eh-primary); }

.eh-faq__item.is-open .eh-faq__answer {
  max-height: 400px;
}

/* FAQ responsive */
@media (max-width: 860px) {
  .eh-faq__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .eh-faq__trigger { padding: 16px 16px; gap: 12px; }
  .eh-faq__answer  { padding: 0 16px 0 58px; }
  .eh-faq__question { font-size: 13px; }
}

/* ============================================================
   27. QUOTE WIZARD & CONTACT PAGE  (.mq-*)
   ============================================================ */

.mq-page {
  background: #fff;
  min-height: 70vh;
  padding-bottom: 80px;
}

/* ── Wizard container ── */
.mq-wizard {
  max-width: 660px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.mq-wizard__header {
  margin-bottom: 36px;
}

.mq-wizard__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--eh-text, #1a1a1a);
  margin: 0 0 10px;
  line-height: 1.2;
}

.mq-wizard__sub {
  font-size: .95rem;
  color: var(--eh-muted, #666);
  margin: 0;
  line-height: 1.6;
}

/* ── Progress bar ── */
.mq-progress {
  height: 3px;
  background: #e8e8e8;
  border-radius: 2px;
  margin-bottom: 48px;
  overflow: hidden;
}

.mq-progress__bar {
  height: 100%;
  background: var(--eh-primary);
  border-radius: 2px;
  width: 50%;
  transition: width .4s ease;
}

/* ── Step visibility ── */
.mq-step { display: none; }
.mq-step.is-active { display: block; }

/* ── Question block ── */
.mq-question {
  margin-bottom: 36px;
}

.mq-question__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--eh-text, #1a1a1a);
  margin: 0 0 18px;
  line-height: 1.4;
  display: block;
}

.mq-optional {
  font-weight: 400;
  color: var(--eh-muted, #999);
  font-size: .88rem;
  margin-left: 4px;
}

/* ── Pill toggle buttons ── */
.mq-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mq-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 10px 22px;
  border: 1.5px solid #d0d0d0;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--eh-text, #1a1a1a);
  cursor: pointer;
  transition: background var(--eh-t,.2s), border-color var(--eh-t,.2s), color var(--eh-t,.2s);
  user-select: none;
  background: #fff;
}

.mq-pill-btn input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.mq-pill-btn:hover {
  border-color: var(--eh-primary);
  color: var(--eh-primary);
}

.mq-pill-btn.is-active {
  background: var(--eh-primary);
  border-color: var(--eh-primary);
  color: #fff;
  font-weight: 600;
}

/* ── Underline inputs ── */
.mq-input-line {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #d0d0d0;
  background: transparent;
  font-size: .95rem;
  font-family: inherit;
  color: var(--eh-text, #1a1a1a);
  padding: 10px 0;
  outline: none;
  box-sizing: border-box;
  transition: border-bottom-color var(--eh-t,.2s);
}

.mq-input-line:focus {
  border-bottom-color: var(--eh-primary);
}

.mq-input-line::placeholder {
  color: #b8b8b8;
}

.mq-input-line-wrap {
  position: relative;
}

.mq-input-line-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  color: #b0b0b0;
}

.mq-input-line-icon svg {
  width: 18px;
  height: 18px;
  fill: #b0b0b0;
}

/* ── Underline select ── */
.mq-select-line {
  border: none;
  border-bottom: 1.5px solid #d0d0d0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23888'/%3E%3C/svg%3E") no-repeat right center;
  background-size: 20px;
  appearance: none;
  -webkit-appearance: none;
  font-size: .95rem;
  font-family: inherit;
  color: var(--eh-text, #1a1a1a);
  padding: 10px 28px 10px 0;
  outline: none;
  cursor: pointer;
  width: 100%;
  transition: border-bottom-color var(--eh-t,.2s);
  box-sizing: border-box;
}

.mq-select-line:focus {
  border-bottom-color: var(--eh-primary);
}

/* ── Location row (country + location side-by-side) ── */
.mq-location-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1.5px solid #d0d0d0;
  transition: border-bottom-color var(--eh-t,.2s);
}

.mq-location-row:focus-within {
  border-bottom-color: var(--eh-primary);
}

.mq-location-row .mq-select-line {
  border-bottom: none;
  border-right: 1.5px solid #e0e0e0;
  padding-right: 32px;
}

.mq-location-row .mq-input-line {
  border-bottom: none;
  padding-left: 14px;
}

/* ── Textarea ── */
.mq-textarea-line {
  width: 100%;
  border: 1.5px solid #d8d8d8;
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--eh-text, #1a1a1a);
  padding: 14px 16px;
  outline: none;
  resize: vertical;
  min-height: 110px;
  transition: border-color var(--eh-t,.2s);
  box-sizing: border-box;
  line-height: 1.6;
}

.mq-textarea-line:focus {
  border-color: var(--eh-primary);
}

.mq-textarea-line::placeholder {
  color: #b8b8b8;
  font-size: .85rem;
}

/* ── Phone row ── */
.mq-phone-row {
  display: flex;
  align-items: flex-end;
  border-bottom: 1.5px solid #d0d0d0;
  transition: border-bottom-color var(--eh-t,.2s);
}

.mq-phone-row:focus-within {
  border-bottom-color: var(--eh-primary);
}

.mq-phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px 10px 0;
  font-size: .9rem;
  font-weight: 700;
  color: var(--eh-text, #1a1a1a);
  border-right: 1.5px solid #e0e0e0;
  white-space: nowrap;
  flex-shrink: 0;
}

.mq-phone-row .mq-input-line {
  border-bottom: none;
  padding-left: 14px;
}

/* ── Error states ── */
.mq-question.has-error .mq-input-line,
.mq-question.has-error .mq-phone-row,
.mq-question.has-error .mq-location-row {
  border-bottom-color: #d93025;
}

.mq-error-msg {
  color: #d93025;
  font-size: .82rem;
  margin: 6px 0 0;
  display: block;
}

/* ── Button row ── */
.mq-btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
}

/* ── Next / Submit button ── */
.mq-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--eh-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 36px;
  font-size: .95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--eh-t,.2s), transform .1s;
  letter-spacing: .02em;
}

.mq-next-btn:hover {
  background: #6aaa26;
  color: #fff;
}

.mq-next-btn:active {
  transform: scale(.97);
}

/* ── Back button ── */
.mq-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--eh-muted, #888);
  font-size: .88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  transition: color var(--eh-t,.2s);
}

.mq-back-btn:hover {
  color: var(--eh-text, #1a1a1a);
}

/* ── Form wrapper ── */
.mq-form {
  display: block;
}

/* ── Success state ── */
.mq-success {
  text-align: center;
  padding: 72px 20px;
}

.mq-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--eh-primary);
  border-radius: 50%;
  margin-bottom: 24px;
}

.mq-success__icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.mq-success h2 {
  font-size: 1.6rem;
  color: var(--eh-text, #1a1a1a);
  margin: 0 0 10px;
}

.mq-success p {
  color: var(--eh-muted, #666);
  margin: 0 0 28px;
}

/* ── Contact info strip ── */
.cu-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin-bottom: 44px;
}

.cu-info-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--eh-text, #1a1a1a);
  text-decoration: none;
  transition: color var(--eh-t,.2s);
}

.cu-info-item:hover { color: var(--eh-primary); }

.cu-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--eh-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.cu-info-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .mq-wizard { padding: 36px 16px 60px; }
  .mq-location-row {
    grid-template-columns: 1fr;
    border-bottom: none;
  }
  .mq-location-row .mq-select-line {
    border-right: none;
    border-bottom: 1.5px solid #d0d0d0;
  }
  .mq-location-row .mq-input-line {
    border-bottom: 1.5px solid #d0d0d0;
    padding-left: 0;
  }
  .mq-location-row:focus-within .mq-select-line,
  .mq-location-row:focus-within .mq-input-line {
    border-bottom-color: var(--eh-primary);
  }
  .mq-pill-btn { padding: 9px 16px; }
}

@media (max-width: 400px) {
  .mq-next-btn { padding: 13px 24px; font-size: .88rem; }
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */

/* Hero banner */
.svc-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.50) 100%);
}
.svc-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.svc-breadcrumb a {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color var(--eh-t);
}
.svc-breadcrumb a:hover { color: var(--eh-primary); }
.svc-breadcrumb span:not([aria-hidden]) { color: #fff; font-weight: 600; }
.svc-hero__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.svc-hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 580px;
}
.svc-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Intro section */
.svc-intro { background: var(--eh-white); }
.svc-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.svc-intro__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--eh-text);
}
.svc-intro__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.svc-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--eh-rose-bg);
  border-left: 3px solid var(--eh-primary);
  padding: 14px 16px;
  border-radius: var(--eh-radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--eh-text);
}
.svc-highlight svg {
  width: 22px;
  height: 22px;
  fill: var(--eh-primary);
  flex-shrink: 0;
}

/* Content sections grid */
.svc-sections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.svc-section-card {
  background: var(--eh-white);
  border-radius: var(--eh-radius-md);
  padding: 36px 32px;
  box-shadow: var(--eh-shadow-card);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow var(--eh-t), transform var(--eh-t);
}
.svc-section-card:hover {
  box-shadow: var(--eh-shadow);
  transform: translateY(-3px);
}
.svc-section-card__icon {
  width: 52px;
  height: 52px;
  background: var(--eh-primary-light);
  border-radius: var(--eh-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-section-card__icon svg {
  width: 26px;
  height: 26px;
  fill: var(--eh-primary);
}
.svc-section-card__body { flex: 1; min-width: 0; }
.svc-section-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--eh-text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.svc-section-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--eh-muted);
  margin: 0;
}

/* CTA banner */
.svc-cta-banner {
  background: var(--eh-primary);
}
.svc-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.svc-cta-banner__text h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.svc-cta-banner__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.svc-cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.svc-cta-banner .eh-btn {
  background: #fff;
  color: var(--eh-primary) !important;
  border-color: #fff;
}
.svc-cta-banner .eh-btn:hover {
  background: var(--eh-primary-dark);
  color: #fff !important;
  border-color: var(--eh-primary-dark);
}
.svc-cta-banner .eh-btn--outline {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.6);
}
.svc-cta-banner .eh-btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 960px) {
  .svc-intro__grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-sections__grid { grid-template-columns: 1fr; }
  .svc-cta-banner__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .svc-intro__highlights { grid-template-columns: 1fr; }
  .svc-hero__ctas { flex-direction: column; }
  .svc-cta-banner__actions { flex-direction: column; width: 100%; }
  .svc-section-card { flex-direction: column; }
}

/* Services list section (Air Cargo & similar) */
.svc-list-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.svc-list-section__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--eh-text);
  margin-bottom: 14px;
  line-height: 1.25;
}
.svc-list-section__divider {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--eh-primary);
  border-radius: 2px;
  margin-bottom: 20px;
}
.svc-list-section__content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--eh-muted);
  margin: 0;
}

/* Checklist */
.svc-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--eh-white);
  padding: 16px 20px;
  border-radius: var(--eh-radius-md);
  box-shadow: var(--eh-shadow-card);
  font-size: 15px;
  font-weight: 500;
  color: var(--eh-text);
  line-height: 1.5;
}
.svc-checklist__icon {
  width: 28px;
  height: 28px;
  background: var(--eh-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-checklist__icon svg {
  width: 16px;
  height: 16px;
  fill: var(--eh-primary);
}

@media (max-width: 960px) {
  .svc-list-section__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Closing statement block (Storage page) */
.svc-closing {
  background: var(--eh-white);
  text-align: center;
  padding-top: 0;
}
.svc-closing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.svc-closing__icon {
  width: 64px;
  height: 64px;
  background: var(--eh-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-closing__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--eh-primary);
}
.svc-closing__quote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--eh-text);
  margin: 0;
  font-style: normal;
  position: relative;
  padding: 0 20px;
}
.svc-closing__quote::before {
  content: '\201C';
  font-size: 2em;
  color: var(--eh-primary);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}
.svc-closing__quote::after {
  content: '\201D';
  font-size: 2em;
  color: var(--eh-primary);
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 4px;
}

/* Dual checklist layout (Local Moving page) */
.svc-dual-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 960px) {
  .svc-dual-lists { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* Hero — uses trucks image as background */
.about-hero {
  background-image: url('images/hero2.png');
}

/* Stats bar */
.about-stats {
  background: var(--eh-primary);
  padding: 32px 0;
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.about-stat strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.about-stat span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin-top: 4px;
}

/* Section shared */
.about-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--eh-primary);
  margin-bottom: 12px;
}
.about-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: var(--eh-text);
  line-height: 1.25;
  margin-bottom: 14px;
}
.about-divider {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--eh-primary);
  border-radius: 2px;
  margin-bottom: 22px;
}
.about-section p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--eh-muted);
  margin: 0;
}

/* Two-column section grid */
.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-section__grid--reverse { direction: rtl; }
.about-section__grid--reverse > * { direction: ltr; }

/* Image with frame decoration */
.about-section__media {
  position: relative;
}
.about-section__frame {
  position: absolute;
  inset: -14px -14px auto auto;
  width: 70%;
  height: 70%;
  border: 3px solid var(--eh-primary);
  border-radius: var(--eh-radius-md);
  z-index: 0;
  pointer-events: none;
}
.about-section__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--eh-radius-md);
  overflow: hidden;
}
.about-section__img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.about-section__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--eh-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--eh-radius-full);
  letter-spacing: .5px;
}

/* Qualities list */
.about-qualities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.about-quality {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--eh-text);
}
.about-quality svg {
  width: 18px;
  height: 18px;
  fill: var(--eh-primary);
  flex-shrink: 0;
}

/* Trust section */
.about-trust { background: var(--eh-white); }
.about-trust__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.about-trust__header .about-divider { margin: 14px auto 22px; }
.about-trust__intro {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--eh-muted);
}
.about-trust__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-trust-card {
  background: var(--eh-light-bg);
  border-radius: var(--eh-radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--eh-t), transform var(--eh-t);
}
.about-trust-card:hover {
  box-shadow: var(--eh-shadow);
  transform: translateY(-4px);
}
.about-trust-card__icon {
  width: 60px;
  height: 60px;
  background: var(--eh-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.about-trust-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--eh-primary);
}
.about-trust-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--eh-text);
  margin-bottom: 10px;
}
.about-trust-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--eh-muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .about-stats__grid { grid-template-columns: repeat(3, 1fr); }
  .about-section__grid,
  .about-section__grid--reverse { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .about-section__media { order: -1; }
  .about-trust__cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about-qualities { grid-template-columns: 1fr; }
}

/* ============================================================
   GOOGLE REVIEWS SECTION  (.eh-reviews*)
   ============================================================ */
.eh-reviews {
  background-color: var(--eh-white);
}

.eh-reviews__heading {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--eh-text);
  text-align: center;
  margin: 0 0 48px;
  letter-spacing: .2px;
}

/* Horizontal layout: summary | slider */
.eh-reviews__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* ── Left summary panel ── */
.eh-reviews__summary {
  flex: 0 0 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.eh-reviews__biz-logo .site-logo { display: block; }
.eh-reviews__biz-logo img {
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

.eh-reviews__biz-name {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--eh-text);
  line-height: 1.4;
  margin: 4px 0 0;
}

/* Shared star component */
.eh-stars { display: inline-flex; gap: 2px; }
.eh-star   { font-size: 22px; color: #FBBC04; line-height: 1; }
.eh-star--empty { color: #ddd; }
.eh-star--half  { color: #FBBC04; }

.eh-reviews__count {
  font-size: 12.5px;
  color: var(--eh-muted);
  margin: 0;
}

.eh-reviews__write-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--eh-text);
  border: 1.5px solid #c8c8c8;
  border-radius: var(--eh-radius);
  text-decoration: none;
  transition: border-color var(--eh-t), color var(--eh-t);
}
.eh-reviews__write-btn:hover {
  border-color: var(--eh-primary);
  color: var(--eh-primary);
}

/* ── Right slider wrapper ── */
.eh-reviews__slider-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.eh-reviews__nav {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid #ccc;
  background: var(--eh-white);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eh-text);
  transition: border-color var(--eh-t), color var(--eh-t);
  padding: 0;
  line-height: 1;
}
.eh-reviews__nav:hover  { border-color: var(--eh-primary); color: var(--eh-primary); }
.eh-reviews__nav:disabled { opacity: .35; cursor: default; }

.eh-reviews__viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.eh-reviews__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* ── Individual review card ── */
.eh-reviews__card {
  flex: 0 0 calc((100% - 32px) / 3);
  background: #f7f7f7;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eh-reviews__card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.eh-reviews__avatar-wrap { flex-shrink: 0; }

.eh-reviews__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.eh-reviews__avatar-init {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #5c6bc0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.eh-reviews__author-info {
  flex: 1;
  min-width: 0;
}

.eh-reviews__author-name {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--eh-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eh-reviews__time {
  display: block;
  font-size: 11.5px;
  color: var(--eh-muted);
  margin-top: 2px;
}

.eh-reviews__g-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}
.eh-reviews__g-icon svg { display: block; }

.eh-reviews__card-stars {
  display: flex;
  align-items: center;
  gap: 5px;
}
.eh-reviews__card-stars .eh-star { font-size: 17px; }

.eh-reviews__verified {
  display: inline-flex;
  align-items: center;
  cursor: default;
}
.eh-reviews__verified svg { display: block; }

.eh-reviews__card-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--eh-muted);
  margin: 0;
  flex: 1;
}

.eh-reviews__read-more {
  font-size: 12px;
  color: #888;
  font-weight: 500;
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.eh-reviews__read-more:hover { color: var(--eh-primary); text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .eh-reviews__card { flex: 0 0 calc((100% - 16px) / 2); }
}

@media (max-width: 860px) {
  .eh-reviews__inner { flex-direction: column; align-items: stretch; gap: 32px; }
  .eh-reviews__summary {
    flex: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
  }
  .eh-reviews__biz-logo { flex: 0 0 auto; }
  .eh-reviews__biz-name { flex: 1 1 100%; }
}

@media (max-width: 580px) {
  .eh-reviews__card { flex: 0 0 100%; }
}
