/* ═══════════════════════════════════════════════════════════════
   EpoxyFloorUAE.com — Premium Light Theme Stylesheet
   Theme: Clean white / light blue / gold — UAE premium look
═══════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:           #ffffff;
  --bg-alt:       #f5f7fc;
  --bg-blue:      #eef4fe;
  --bg-dark:      #0d1f3c;

  /* Brand colours */
  --blue:         #1565c0;
  --blue-mid:     #1976d2;
  --blue-light:   #1e88e5;
  --blue-pale:    #e3edf9;
  --blue-glow:    rgba(21,101,192,0.18);
  --gold:         #e08a00;
  --gold-light:   #f5a623;
  --gold-pale:    #fff4dc;
  --orange:       #e65c04;
  --wa-green:     #25d366;
  --wa-dark:      #128c7e;

  /* Text */
  --text:         #0d1f3c;
  --text-2:       #243a5e;
  --text-muted:   #5a6a82;
  --text-light:   #8a9ab8;

  /* Borders & shadows */
  --border:       #d8e2f0;
  --border-light: #eaeff8;
  --shadow-xs:    0 1px 4px rgba(21,101,192,0.06);
  --shadow-sm:    0 3px 12px rgba(21,101,192,0.09);
  --shadow:       0 8px 32px rgba(21,101,192,0.13);
  --shadow-lg:    0 20px 56px rgba(21,101,192,0.16);
  --shadow-gold:  0 6px 24px rgba(224,138,0,0.22);

  /* Layout */
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --transition:   0.32s cubic-bezier(0.4,0,0.2,1);
  --font:         'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.65; overflow-x: hidden; cursor: none; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font); font-size: 1rem; outline: none; }
@media (hover: none) { body { cursor: auto; } }

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }
::selection { background: var(--blue); color: #fff; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(21,101,192,0.2);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ─── TEXT GRADIENT ──────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #0a3d8f 0%, #c47000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  box-shadow: 0 4px 18px var(--blue-glow);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 8px 28px var(--blue-glow); }

.btn--whatsapp {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.28);
}
.btn--whatsapp:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.38); }

.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline-blue:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn--sm  { padding: 9px 18px; font-size: 0.84rem; }
.btn--lg  { padding: 16px 34px; font-size: 1.03rem; }
.btn--block { display: flex; width: 100%; }

/* Ripple */
.btn .ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ─── BADGES ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.77rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-2);
  box-shadow: var(--shadow-xs);
}
.badge--gold {
  background: var(--gold-pale);
  border-color: rgba(224,138,0,0.3);
  color: var(--gold);
}

/* ─── IMAGE PLACEHOLDERS ─────────────────────────────────────── */
.img-placeholder {
  position: relative;
  background: linear-gradient(135deg, #dce8f8 0%, #c8dbf4 50%, #dce8f8 100%);
  border: 2px dashed #90b4d8;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.img-placeholder__label {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 0.77rem;
  font-weight: 600;
  color: #3a6090;
  line-height: 1.7;
  padding: 16px;
  background: rgba(255,255,255,0.88);
  border-radius: 10px;
}
.img-placeholder__label i { font-size: 1.5rem; color: var(--blue); display: block; margin-bottom: 6px; }
.img-placeholder__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 2.4s infinite;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.img-placeholder--hero   { min-height: 460px; width: 100%; border-radius: var(--radius-lg); }
.img-placeholder--about  { min-height: 420px; }
.img-placeholder--ba     { min-height: 380px; width: 100%; border-radius: 0; border: none; }
.img-placeholder--ba-after { background: linear-gradient(135deg, #c8e6c9, #a5d6a7, #c8e6c9); border-color: #6aaa6a; }
.img-placeholder--ba-after .img-placeholder__label { color: #2e6b2e; }
.img-placeholder--gallery{ min-height: 260px; border-radius: 0; border: none; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  transform: translate(-50%,-50%);
  transition: transform 0.08s;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 2px solid rgba(21,101,192,0.4);
  transform: translate(-50%,-50%);
  transition: transform 0.18s, width 0.28s, height 0.28s;
}
body.cursor-hover .cursor-ring { width: 52px; height: 52px; border-color: rgba(224,138,0,0.5); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ─── PRELOADER ──────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }

.preloader__logo-img { height: 72px; width: auto; max-width: 260px; object-fit: contain; }

.preloader__taglines { height: 22px; position: relative; overflow: hidden; width: 280px; }
.preloader__tag {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.4s;
}
.preloader__tag.active { opacity: 1; transform: translateY(0); }

.preloader__bar-wrap { width: 240px; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.preloader__bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--blue), var(--gold)); border-radius: 2px; transition: width 0.1s linear; }
.preloader__percent { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.1em; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  padding: 10px 0;
  transition: var(--transition), transform 0.4s;
}
.header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
  padding: 8px 0;
}
.header.hidden { transform: translateY(-100%); }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }

.header__logo-img { height: 82px; width: auto; max-width: 280px; object-fit: contain; }

.header__nav { display: flex; align-items: center; gap: 28px; }

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 14px; }

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.header__hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ─── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  padding: 8px;
  transition: color var(--transition);
}
.mobile-menu__close:hover { color: var(--blue); }
.mobile-menu__logo img { height: 64px; width: auto; max-width: 220px; object-fit: contain; }
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.mobile-nav-link { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--text-muted); transition: color var(--transition); }
.mobile-nav-link:hover { color: var(--blue); }
.mobile-menu__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 116px;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg-shape {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,0.07) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero__bg-shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,138,0,0.07) 0%, transparent 70%);
  top: auto; right: auto;
  bottom: -100px; left: -100px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.75;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.hero__trust-cards { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.trust-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.trust-card__icon { font-size: 1.4rem; color: var(--blue); }
.trust-card__num { font-size: 1.3rem; font-weight: 800; color: var(--text); font-family: var(--font-display); line-height: 1; }
.trust-card__label { font-size: 0.73rem; color: var(--text-muted); }

.hero__image { position: relative; }
.hero__image-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}
.hero__image-badge i { font-size: 1.2rem; }

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  background: var(--bg-blue);
  border-top: 1px solid var(--border-light);
  border-bottom: 3px solid var(--blue);
  padding: 26px 0;
}
.trust-strip__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--text-2); white-space: nowrap; }
.trust-item__icon { font-size: 1.15rem; color: var(--blue); }

/* ─── STATS ──────────────────────────────────────────────────── */
.stats { padding: 80px 0; background: var(--bg-alt); }
.stats__inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: var(--shadow); }
.stat-card__icon { font-size: 1.8rem; color: var(--blue); margin-bottom: 12px; }
.stat-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card__label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__image { position: relative; }
.about__image-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  padding: 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
  min-width: 110px;
}
.about__badge-num { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; }
.about__badge-text { font-size: 0.75rem; font-weight: 600; opacity: 0.92; }

.about__content .section-title { text-align: left; margin-bottom: 16px; }
.about__content .section-label { margin-bottom: 12px; }
.about__content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
.about__checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.about__checklist li { font-size: 0.93rem; color: var(--text-2); display: flex; align-items: center; gap: 10px; }
.about__checklist li i { color: var(--blue); font-size: 1rem; flex-shrink: 0; }

/* ─── SERVICES ───────────────────────────────────────────────── */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.hidden { display: none; }

.service-card__icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}
.service-card__icon-wrap--gold { background: var(--gold-pale); color: var(--gold); }
.service-card:hover .service-card__icon-wrap { background: var(--blue); color: #fff; transform: scale(1.05); }
.service-card:hover .service-card__icon-wrap--gold { background: var(--gold); color: #fff; }

.service-card__body { display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card__body p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.65; flex: 1; }

.service-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.service-tags span {
  font-size: 0.71rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--blue-pale);
  color: var(--blue);
  border: 1px solid rgba(21,101,192,0.18);
}

/* ─── FILTER TABS ────────────────────────────────────────────── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active {
  background: var(--blue);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px var(--blue-glow);
}

/* ─── BEFORE / AFTER ─────────────────────────────────────────── */
.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  height: 420px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before { z-index: 1; }
.ba-after  { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-before .img-placeholder, .ba-after .img-placeholder { height: 100%; }

.ba-label {
  position: absolute;
  bottom: 18px;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 4;
}
.ba-label--before { left: 18px; background: rgba(0,0,0,0.55); color: #fff; }
.ba-label--after  { right: 18px; background: var(--blue); color: #fff; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: col-resize;
}
.ba-handle__line { width: 3px; flex: 1; background: linear-gradient(180deg, transparent, #fff, transparent); }
.ba-handle__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255,255,255,0.6);
}

/* ─── BENEFITS ───────────────────────────────────────────────── */
.benefits__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: var(--shadow); }
.benefit-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  margin: 0 auto 14px;
  transition: var(--transition);
}
.benefit-card:hover .benefit-card__icon { background: var(--blue); color: #fff; }
.benefit-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.benefit-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ─── WHY US ─────────────────────────────────────────────────── */
.why-us__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card:hover::after { transform: scaleX(1); }
.why-card__icon { font-size: 1.6rem; color: var(--blue); margin-bottom: 10px; }
.why-card__num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 10px; }
.why-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.why-card p { font-size: 0.81rem; color: var(--text-muted); line-height: 1.6; }

/* ─── PROCESS ────────────────────────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  z-index: 0;
}
.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.timeline__marker {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px var(--bg-alt), var(--shadow-sm);
}
.timeline__marker span { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--blue); }
.timeline__content h3 { font-size: 0.84rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.timeline__content p { font-size: 0.77rem; color: var(--text-muted); line-height: 1.6; }

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item.hidden { display: none; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item .img-placeholder { height: 100%; }
.gallery-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(13,31,60,0.75));
  font-size: 0.8rem;
  color: #fff;
  z-index: 2;
}
.gallery-item__caption span { color: #90caf9; font-weight: 700; }

/* Gallery gradient cards (no images) */
.gallery-item--dark { border: none; }
.gallery-item__gradient {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item__gradient--industrial { background: linear-gradient(135deg, #0d2040, #1565c0 70%); }
.gallery-item__gradient--parking    { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.gallery-item__info { text-align: center; color: #fff; }
.gallery-item__info i { font-size: 2.5rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; display: block; }
.gallery-item__info h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.gallery-item__info p { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ─── INDUSTRIES ─────────────────────────────────────────────── */
.industries__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  text-align: center;
}
.industry-card:hover { border-color: var(--blue); background: var(--blue-pale); color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.industry-card__icon { font-size: 1.8rem; color: var(--blue); }

/* ─── FLOOR FINDER ───────────────────────────────────────────── */
.finder__widget {
  max-width: 740px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.finder__widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}
.finder__progress-bar { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 32px; overflow: hidden; }
.finder__progress { height: 100%; background: linear-gradient(90deg, var(--blue), var(--gold)); border-radius: 2px; width: 25%; transition: width 0.5s ease; }
.finder__step { display: none; }
.finder__step.active { display: block; }
.finder__step h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 22px; }
.finder__options { display: flex; flex-wrap: wrap; gap: 10px; }
.finder-opt {
  padding: 11px 20px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.finder-opt i { font-size: 1rem; color: var(--blue); }
.finder-opt:hover { border-color: var(--blue); background: var(--blue-pale); color: var(--blue); }
.finder-opt.selected { background: var(--blue); border-color: transparent; color: #fff; }
.finder-opt.selected i { color: #fff; }

.finder__result { display: none; text-align: center; }
.finder__result.active { display: block; }
.finder__result-icon { font-size: 2.8rem; color: #4caf50; margin-bottom: 14px; }
.finder__result h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.finder__result p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.75; font-size: 1rem; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testi-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-card__stars { color: var(--gold); font-size: 0.88rem; letter-spacing: 3px; }
.testi-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; font-style: italic; flex: 1; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.88rem; color: #fff; flex-shrink: 0;
}
.testi-card__name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testi-card__role { font-size: 0.76rem; color: var(--text-muted); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 14px;
  transition: color var(--transition);
}
.faq-item__q:hover { color: var(--blue); }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.3s, background var(--transition), color var(--transition);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); background: var(--blue); color: #fff; border-color: transparent; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-item__a { max-height: 400px; }
.faq-item__a p { padding: 0 22px 18px; color: var(--text-muted); line-height: 1.75; font-size: 0.93rem; }

/* ─── SERVICE AREAS ──────────────────────────────────────────── */
.areas__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.area-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
}
.area-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.area-card__icon { font-size: 1.8rem; color: var(--blue); }
.area-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); }
.area-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; flex: 1; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,0.2) 0%, transparent 70%);
  top: -250px; right: -100px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,138,0,0.12) 0%, transparent 70%);
  bottom: -200px; left: -50px;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__text { flex: 1; min-width: 280px; }
.cta-banner__text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-banner__text p { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 520px; line-height: 1.75; }
.cta-banner__btns { display: flex; flex-wrap: wrap; gap: 14px; flex-shrink: 0; }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__info .section-title { text-align: left; }
.contact__info .section-label { display: block; margin-bottom: 12px; }
.contact__info > p { color: var(--text-muted); margin-bottom: 28px; }

.contact__details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.contact-detail:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.contact-detail__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.contact-detail__icon--wa   { background: var(--wa-green); }
.contact-detail__icon--blue { background: var(--blue); }
.contact-detail__icon--gold { background: var(--gold); }
.contact-detail__icon--grey { background: var(--text-muted); }
.contact-detail strong { display: block; font-size: 0.79rem; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
.contact-detail span { font-size: 0.92rem; font-weight: 600; color: var(--text); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.contact__wa-fallback {
  padding: 18px;
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__wa-fallback i { font-size: 1.3rem; color: var(--wa-green); }
.contact__wa-fallback p { font-size: 0.88rem; color: var(--text-muted); }

/* ─── FORM ───────────────────────────────────────────────────── */
.contact__form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-steps { display: flex; align-items: center; gap: 0; margin-bottom: 28px; }
.form-step-indicator {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.form-step-indicator.active { background: var(--blue); border-color: transparent; color: #fff; box-shadow: 0 4px 12px var(--blue-glow); }
.form-step-indicator.done { background: #4caf50; border-color: transparent; color: #fff; }
.form-step-divider { flex: 1; height: 2px; background: var(--border); }

.form-page { display: none; }
.form-page.active { display: block; }
.form-page h3 { font-size: 1.03rem; font-weight: 700; color: var(--text); margin-bottom: 20px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 12px 14px;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}
.form-group textarea { resize: vertical; }
.form-row { display: flex; gap: 10px; justify-content: flex-end; }

.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.active { display: block; }
.form-success__icon { font-size: 3rem; color: #4caf50; margin-bottom: 14px; }
.form-success h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.93rem; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.8); }
.footer__top { padding: 72px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__top-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 36px; }

.footer__col--brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo-img { height: 90px; width: auto; max-width: 280px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.95; }
.footer__col--brand p { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer__social a:hover { background: var(--blue); border-color: transparent; color: #fff; }

.footer__col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer__col ul li a:hover { color: #90caf9; }

.footer__contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: rgba(255,255,255,0.5); }
.footer__contact-list li i { color: var(--blue-light); font-size: 0.9rem; flex-shrink: 0; }
.footer__contact-list li a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer__contact-list li a:hover { color: #90caf9; }

.footer__bottom { padding: 18px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ─── FLOATING BUTTONS ───────────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: #fff;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.float-wa__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.55); opacity: 0; } }

.float-call {
  position: fixed;
  bottom: 30px; right: 98px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px var(--blue-glow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(21,101,192,0.4); }

.back-to-top {
  position: fixed;
  bottom: 100px; right: 30px;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--blue); color: #fff; border-color: transparent; box-shadow: var(--shadow); }

/* ─── MOBILE BOTTOM BAR ──────────────────────────────────────── */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-bottom-bar__btn {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  gap: 7px;
  transition: var(--transition);
}
.mobile-bottom-bar__btn--call { background: var(--blue); color: #fff; }
.mobile-bottom-bar__btn--wa   { background: var(--wa-green); color: #fff; }

/* ─── REAL IMAGES ───────────────────────────────────────────── */
.hero__real-img {
  width: 100%;
  min-height: 460px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.about__real-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.ba-real-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-real-img { transform: scale(1.05); }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

/* 1200px — Tablet large */
@media (max-width: 1200px) {
  .stats__inner      { grid-template-columns: repeat(3, 1fr); }
  .benefits__grid    { grid-template-columns: repeat(4, 1fr); }
  .why-us__grid      { grid-template-columns: repeat(4, 1fr); }
  .services__grid    { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid     { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid{ grid-template-columns: repeat(2, 1fr); }
  .industries__grid  { grid-template-columns: repeat(4, 1fr); }
  .footer__top-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 24px; }
  .areas__grid       { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .timeline::before { display: none; }
  .timeline__step { padding: 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-xs); }
}

/* 992px — Tablet */
@media (max-width: 992px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .header__actions .btn--primary { display: none; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__image { display: none; }
  .hero__badge-row, .hero__cta, .hero__trust-cards { justify-content: center; }
  .about__inner { grid-template-columns: 1fr; }
  .about__image { max-width: 500px; margin: 0 auto; }
  .about__content .section-title, .about__content .section-label { text-align: center; }
  .about__checklist { align-items: flex-start; max-width: 360px; margin-left: auto; margin-right: auto; }
  .about__content { text-align: center; }
  .about__content .btn { margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
  .why-us__grid   { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .areas__grid    { grid-template-columns: repeat(2, 1fr); }
  .industries__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__top-inner { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: span 2; }
  .float-wa   { bottom: 84px; right: 14px; }
  .float-call { bottom: 84px; right: 82px; }
  .back-to-top{ bottom: 148px; right: 14px; }
  .mobile-bottom-bar { display: flex; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__btns { justify-content: center; }
}

/* 768px — Mobile */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding-top: 100px; padding-bottom: 70px; }
  .hero__trust-cards { flex-direction: column; align-items: center; }
  .stats__inner   { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid  { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item--wide { grid-column: span 1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .areas__grid    { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .ba-slider { height: 300px; }
  .finder__widget { padding: 28px 20px; }
  .footer__top-inner { grid-template-columns: 1fr; }
  .footer__col--brand { grid-column: span 1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* 480px — Small mobile */
@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .benefits__grid { grid-template-columns: 1fr; }
  .why-us__grid   { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__inner   { grid-template-columns: 1fr 1fr; }
  .form-row { flex-direction: column; }
  .container { padding: 0 16px; }
  .float-wa  { width: 50px; height: 50px; font-size: 1.3rem; }
  .float-call{ width: 50px; height: 50px; font-size: 1.2rem; right: 74px; }
}
