@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cairo&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --ink: #111827;
  --deep: #3b6d71;
  --muted: #667085;
  --paper: #f6f8fb;
  --white: #ffffff;
  --cyan: #0ea5b7;
  --magenta: #d62976;
  --yellow: #f5b82e;
  --green: #2aa86b;
  --line: #e2e8f0;
  --shadow: 0 20px 50px rgba(17, 24, 39, .16);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
body.lang-en { font-family: Arial, sans-serif; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

/* ── Progress bar ── */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow), var(--green));
  transform: scaleX(0);
  transform-origin: right;
  z-index: 80;
}

/* ── Topbar ── */
.topbar {
  background: var(--deep);
  color: #d8edf4;
  font-size: 14px;
}
.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Header / Nav ── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--deep);
}
.brand-logo {
  width: 124px;
  height: 54px;
  object-fit: contain;
  padding: 4px 0;
}
.links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.links a {
  display: block;
  padding: 9px 12px;
  color: #334155;
  border-radius: var(--radius);
  font-weight: 800;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.links a:hover, .links a.active {
  background: #e0f2fe;
  color: #075985;
  transform: translateY(-1px);
}

/* ── Language Toggle Button ── */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--deep);
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-btn:hover {
  background: #e0f2fe;
  border-color: var(--cyan);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14,165,183,.15);
}
.lang-btn .lang-icon {
  font-size: 16px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Mobile Menu Button ── */
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--cyan);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(14, 165, 183, .24);
  transition: transform .22s ease, box-shadow .22s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.34), transparent);
  transform: translateX(120%);
  transition: transform .6s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(14,165,183,.30); }
.btn:hover::before { transform: translateX(-120%); }
.btn.secondary {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: none;
}
.btn.dark {
  background: var(--deep);
  box-shadow: 0 14px 30px rgba(22,33,59,.25);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #0f172a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 6s ease;
}
.hero-bg.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,20,36,.86) 0%, rgba(7,20,36,.62) 48%, rgba(7,20,36,.35) 100%),
    linear-gradient(180deg, rgba(7,20,36,.18), rgba(7,20,36,.82));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 100%);
  padding: 118px 0 126px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #e7faff;
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.spark {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(245,184,46,.22);
}

h1, h2, h3, p { letter-spacing: 0; }
h1 { margin: 18px 0 14px; font-size: 68px; line-height: 1.1; max-width: 820px; }
.lead { max-width: 680px; margin: 0 0 28px; color: rgba(255,255,255,.86); font-size: 20px; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ── Hero Strip ── */
.hero-strip {
  position: absolute;
  z-index: 3;
  right: 0; left: 0; bottom: 22px;
  overflow: hidden;
  pointer-events: none;
}
.strip-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.sub-menu li{
  list-style-type: none; /* Removes the bullet points */
  margin: 5px;
  float: left;
}
.strip-item {
  width: 230px; height: 155px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.1);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}
.strip-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ── Sections ── */
section { padding: 82px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--magenta);
  font-weight: 900;
  font-size: 14px;
}
.section-kicker::before {
  content: "";
  width: 28px; height: 3px;
  background: currentColor;
  border-radius: 99px;
}
h2 { margin: 0; font-size: 42px; line-height: 1.24; color: var(--deep); }
.section-head p { max-width: 480px; margin: 0; color: var(--muted); }
.muted { color: var(--muted); }

/* ── Stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -42px;
  position: relative;
  z-index: 5;
}
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.stat strong { display: block; color: var(--cyan); font-size: 32px; line-height: 1.2; }
.stat span { color: #475569; font-weight: 800; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 330px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(17,24,39,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card img {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  object-fit: cover;
  transition: transform .65s ease;
  cursor: zoom-in;
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,24,39,.12), rgba(17,24,39,.88));
}
.service-card:hover { box-shadow: var(--shadow); }
.service-card:hover img { transform: scale(1.08); }
.service-body { position: absolute; z-index: 2; right: 0; left: 0; bottom: 0; padding: 22px; }
.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  margin-bottom: 12px;
  background: var(--yellow);
  color: #3f2f00;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}
.service-card h3 { margin: 0 0 8px; font-size: 24px; line-height: 1.25; }
.service-card p { margin: 0; color: rgba(255,255,255,.82); }

/* ── Story Band ── */
.story-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.story-media { position: relative; min-height: 470px; }
.story-photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 8px solid var(--white);
  background: var(--line);
}
.story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
.story-photo.large { width: 72%; height: 390px; right: 0; top: 0; }
.story-photo.small { width: 48%; height: 230px; left: 0; bottom: 0; }
.badge-card {
  position: absolute;
  right: 28px; bottom: 34px;
  width: 172px;
  border-radius: var(--radius);
  padding: 18px;
  background: var(--deep);
  color: var(--white);
  box-shadow: var(--shadow);
}
.badge-card strong { display: block; font-size: 34px; color: var(--yellow); line-height: 1; }
.story-copy p { margin: 14px 0 0; color: var(--muted); font-size: 17px; }
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0; margin: 24px 0 0;
  list-style: none;
}
.feature-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 12px 14px;
  font-weight: 800;
  color: #344054;
}
.feature-list li::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  margin-left: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ── Products Band ── */
.products-band { background: #101827; color: var(--white); overflow: hidden; }
.products-band h2 { color: var(--white); }
.products-band .section-head p { color: #cbd5e1; }
.filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.filter-btn {
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.filter-btn:hover { transform: translateY(-2px); }
.filter-btn.active { background: var(--yellow); color: #352806; }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.work-card {
  position: relative;
  display: block;
  min-height: 260px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: #22314b;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  transition: transform .25s ease, opacity .25s ease;
  cursor: zoom-in;
}
.work-card.is-hidden { display: none; }
.work-card img {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  object-fit: cover;
  transition: transform .6s ease, filter .3s ease;
}
.work-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.82));
}
.work-card:hover img { transform: scale(1.09); filter: saturate(1.12); }
.work-caption { position: absolute; z-index: 2; right: 16px; left: 16px; bottom: 15px; }
.work-caption strong { display: block; color: var(--white); font-size: 18px; }
.work-caption span { color: #cbd5e1; font-size: 14px; }

/* ── Quote ── */
.quote-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: start; }
.quote-result, .quote-panel, .contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(17,24,39,.08);
}
.quote-result {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
  position: sticky;
  top: 98px;
  overflow: hidden;
}
.quote-result::before {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 240px; height: 240px;
  background: linear-gradient(45deg, var(--cyan) 0 25%, var(--magenta) 25% 50%, var(--yellow) 50% 75%, var(--green) 75%);
  transform: rotate(14deg);
  opacity: .14;
}
.quote-result span { position: relative; z-index: 1; color: var(--muted); font-weight: 800; }
.price { position: relative; z-index: 1; display: block; color: var(--cyan); font-size: 64px; line-height: 1; font-weight: 900; }
.quote-panel, .contact-panel { padding: 24px; }

/* ── Form Fields ── */
.field { display: grid; gap: 7px; margin-bottom: 16px; }
label { color: #334155; font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(14,165,183,.13);
}

/* ── Gallery Strip ── */
.gallery-strip { padding: 0 0 82px; background: var(--paper); overflow: hidden; }
.gallery-row {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryMove 34s linear infinite;
}
.gallery-row:hover { animation-play-state: paused; }
.gallery-shot {
  width: 330px; height: 218px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17,24,39,.08);
  background: var(--white);
  cursor: zoom-in;
}
.gallery-shot img { width: 100%; height: 100%; object-fit: cover; }
@keyframes galleryMove {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: step; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 192px;
  box-shadow: 0 12px 30px rgba(17,24,39,.06);
  counter-increment: step;
}
.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: var(--yellow);
  color: #3d2c00;
  font-weight: 900;
}
.step h3 { margin: 0 0 8px; font-size: 22px; }
.step p { margin: 0; color: var(--muted); }

/* ── Contact Band ── */
.contact-band {
  background: linear-gradient(135deg, rgba(14,165,183,.12), rgba(214,41,118,.10)), var(--white);
  border-top: 1px solid var(--line);
}
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.contact-cards { display: grid; gap: 12px; margin-top: 22px; }
.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(17,24,39,.06);
}
.mini-card strong { display: block; margin-bottom: 4px; color: var(--deep); }

/* ── Footer ── */
.footer { background: #0b1220; color: #cbd5e1; padding: 34px 0; }
.footer .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer img {
  width: 124px; height: 52px;
  object-fit: contain;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: var(--white);
}

/* ── Back to Top ── */
.back-top {
  position: fixed;
  left: 18px; bottom: 18px;
  z-index: 60;
  width: 46px; height: 46px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--deep);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.back-top.show { display: grid; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.zoom { transform: scale(.94); }
.reveal.visible { opacity: 1; transform: translate(0, 0) scale(1); }

/* ─────────────────────────────────────────────
   LIGHTBOX / GALLERY POPUP
───────────────────────────────────────────── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 14, 28, .94);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}
.lb-overlay.open {
  display: flex;
  direction: ltr !important;
}
.lb-box {
  position: relative;
  width: min(92vw, 1080px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lb-img-wrap {
  position: relative;
  width: 100%;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: 0 28px 64px rgba(0,0,0,.7);
  object-fit: contain;
  display: block;
  transition: opacity .3s ease;
}
.lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease;
  z-index: 2;
}
.lb-close:hover { background: rgba(255,255,255,.28); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease;
  z-index: 2;
  user-select: none;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.28); }
.lb-prev { left: -58px; }
.lb-next { right: -58px; }
.lb-counter {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 800;
}
.lb-caption {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}
/* Thumbnails strip in lightbox */
.lb-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: 100%;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.3) transparent;
}
.lb-thumbs::-webkit-scrollbar { height: 4px; }
.lb-thumbs::-webkit-scrollbar-track { background: transparent; }
.lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 4px; }
.lb-thumb {
  flex-shrink: 0;
  width: 60px; height: 44px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: .55;
  border: 2px solid transparent;
  transition: opacity .2s ease, border-color .2s ease;
}
.lb-thumb:hover { opacity: .85; }
.lb-thumb.active { opacity: 1; border-color: var(--cyan); }
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 700px) {
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
  .lb-close { top: -44px; right: 4px; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ── Responsive ── */
@media (max-width: 1050px) {
  h1 { font-size: 54px; }
  h2 { font-size: 36px; }
  .services-grid, .work-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .quote-grid, .contact-grid { grid-template-columns: 1fr; }
  .quote-result { position: relative; top: auto; }
}
@media (max-width: 850px) {
  .menu-btn { display: block; }
  .nav-cta { display: none; }
  .links {
    position: fixed;
    inset: 116px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .links.open { display: flex; }
  .links a { padding: 13px 14px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .section-head { display: block; }
  .section-head p { margin-top: 10px; }
  .lang-btn span.lang-text { display: none; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 22px, var(--max)); }
  .topbar .container { justify-content: center; text-align: center; padding: 8px 0; }
  .brand-logo { width: 108px; }
  .hero { min-height: 82vh; }
  .hero-content { padding: 96px 0 128px; }
  h1 { font-size: 38px; }
  h2 { font-size: 29px; }
  .lead { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .strip-item { width: 188px; height: 98px; }
  .stats, .services-grid, .work-grid, .steps, .feature-list { grid-template-columns: 1fr; }
  .story-media { min-height: 360px; }
  .story-photo.large { width: 86%; height: 286px; }
  .story-photo.small { width: 55%; height: 160px; }
  .badge-card { width: 150px; right: 8px; bottom: 18px; }
  .price { font-size: 44px; }
  .gallery-shot { width: 248px; height: 170px; }
}

/* ── WhatsApp Float Button ── */
.wa-float {
position: fixed;
bottom: 28px;
right: 24px;
z-index: 999;
width: 60px;
height: 60px;
background: #25d366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
cursor: pointer;
text-decoration: none;
transition: transform .25s ease, box-shadow .25s ease;
animation: wa-pulse 2.4s ease-in-out infinite;
}

.wa-float:hover {
transform: scale(1.12);
box-shadow: 0 10px 34px rgba(37, 211, 102, .60);
animation: none;
}

.wa-float svg {
width: 32px;
height: 32px;
fill: #ffffff;
}

@keyframes wa-pulse {
0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
50%       { box-shadow: 0 6px 34px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.12); }
}
