/* =====================================================================
   MultiCon Pakistan — Auto Parts Workshop & Store
   Design system: LIGHT theme — white + indigo accent
   Fonts: Bebas Neue (display), Rajdhani (sub/tech), Inter (body)
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* surfaces (light) */
  --bg:          #ffffff;
  --bg-2:        #f4f5fc;   /* alt section */
  --surface:     #ffffff;
  --surface-2:   #f7f8fe;
  --surface-3:   #eef0fb;
  --border:      rgba(49, 46, 129, .12);
  --border-2:    rgba(49, 46, 129, .22);

  /* accent — indigo (token names kept as "green" for compatibility) */
  --green:       #4f46e5;   /* primary indigo */
  --green-2:     #6366f1;   /* lighter indigo */
  --green-soft:  rgba(79, 70, 229, .10);
  --green-dark:  #4338ca;
  --green-glow:  rgba(79, 70, 229, .32);
  --indigo-tint: #eef0ff;

  /* text */
  --text:        #1e1b4b;   /* deep indigo navy (headings/body) */
  --muted:       #5b6172;   /* muted body */
  --muted-2:     #9aa1b4;   /* faint */
  --white:       #ffffff;
  --on-accent:   #ffffff;   /* text on indigo */

  --radius:      14px;
  --radius-sm:   10px;
  --radius-lg:   22px;
  --shadow:      0 18px 44px -20px rgba(49, 46, 129, .26);
  --shadow-sm:   0 8px 24px -14px rgba(49, 46, 129, .22);
  --shadow-green:0 18px 44px -16px var(--green-glow);

  --container:   1240px;
  --nav-h:       76px;

  --ease:        cubic-bezier(.2,.7,.2,1);

  --ff-display:  'Bebas Neue', 'Anton', sans-serif;
  --ff-tech:     'Rajdhani', sans-serif;
  --ff-body:     'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--green); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.grid { display: grid; gap: 24px; }
.center { text-align: center; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 400; line-height: .98; letter-spacing: .5px; color: var(--text); }
.eyebrow {
  font-family: var(--ff-tech);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 26px; height: 2px; background: var(--green); display: inline-block; }

.section-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin: 14px 0 0;
  text-transform: uppercase;
}
.section-title .hl { color: var(--green); }
.section-sub { color: var(--muted); max-width: 620px; margin: 18px auto 0; font-size: 1.02rem; }
.section-head { margin-bottom: 56px; }
.section-head.center .section-sub { margin-inline: auto; }

.text-grad {
  background: linear-gradient(100deg, var(--green-2), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-tech);
  font-weight: 700; font-size: 15px; letter-spacing: 1px; text-transform: uppercase;
  padding: 15px 28px; border-radius: var(--radius-sm);
  transition: transform .2s var(--ease), background .25s, box-shadow .25s, color .25s, border-color .25s;
  cursor: pointer; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green); color: var(--on-accent); box-shadow: 0 10px 26px -10px var(--green-glow); }
.btn--primary:hover { background: var(--green-dark); box-shadow: 0 16px 32px -10px var(--green-glow); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border-2); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); background: var(--green-soft); }
.btn--dark { background: var(--surface-2); color: var(--text); border: 1.5px solid var(--border); }
.btn--dark:hover { border-color: var(--green); color: var(--green); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 16px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--text);
  color: #e7e8f5;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--ff-tech);
  font-size: 14px; font-weight: 500; letter-spacing: .3px;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 16px; }
.topbar-left { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; color: #b9bce0; }
.topbar-item svg { width: 15px; height: 15px; color: var(--green-2); flex: none; }
.topbar-item b { color: #fff; font-weight: 700; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 30px; height: 30px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); border-radius: 7px; color: #c7caea;
  transition: .2s var(--ease);
}
.topbar-social a:hover { background: var(--green); color: #fff; border-color: var(--green); }
.topbar-social svg { width: 15px; height: 15px; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 8px 30px -16px rgba(49,46,129,.3); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--ff-tech); font-weight: 600; font-size: 15.5px; letter-spacing: .6px;
  text-transform: uppercase; color: var(--text);
  padding: 10px 14px; border-radius: 8px; position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 8px; border: 1px solid var(--border); color: var(--text); }
.nav-toggle svg { width: 24px; height: 24px; margin: auto; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
  background: var(--bg); border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform .35s var(--ease);
  z-index: 60; padding: 26px 24px; display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto; box-shadow: -20px 0 50px -30px rgba(49,46,129,.4);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--ff-tech); font-weight: 600; font-size: 18px; text-transform: uppercase;
  padding: 14px 12px; border-radius: 8px; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu a:hover { color: var(--green); }
.mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mobile-head img { height: 46px; }
.mobile-close { width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 8px; color: var(--text); }
.mobile-close svg { width: 22px; height: 22px; margin: auto; }
.backdrop { position: fixed; inset: 0; background: rgba(30,27,75,.45); opacity: 0; visibility: hidden; transition: .3s; z-index: 55; }
.backdrop.open { opacity: 1; visibility: visible; }

/* ---------- Hero (branded banner slider) ---------- */
.hero {
  position: relative; width: 100%;
  aspect-ratio: 1916 / 821;
  max-height: 86vh;
  background: #0a0d12;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .8s var(--ease);
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dots button { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.45); transition: .25s; }
.hero-dots button.active { background: var(--green-2); width: 32px; border-radius: 100px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35);
  background: rgba(10,12,18,.4); color: #fff; display: grid; place-items: center; transition: .25s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--green); color: #fff; border-color: var(--green); }
.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow.prev { left: 18px; } .hero-arrow.next { right: 18px; }

/* button group helper (reused across sections) */
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Feature strip ---------- */
.feature-strip { position: relative; z-index: 4; margin-top: -54px; }
.feature-strip .grid { grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.fs-item { padding: 28px 26px; display: flex; align-items: center; gap: 16px; border-right: 1px solid var(--border); transition: background .25s; }
.fs-item:last-child { border-right: none; }
.fs-item:hover { background: var(--surface-2); }
.fs-icon { width: 54px; height: 54px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }
.fs-icon svg { width: 28px; height: 28px; }
.fs-item h4 { font-family: var(--ff-tech); font-weight: 700; font-size: 18px; letter-spacing: .4px; text-transform: uppercase; }
.fs-item p { font-size: 13.5px; color: var(--muted); line-height: 1.4; }

/* ---------- About ---------- */
.about-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); border: 1px solid var(--border); width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.about-badge {
  position: absolute; bottom: -26px; right: -10px;
  background: var(--green); color: #fff; border-radius: var(--radius);
  padding: 22px 28px; box-shadow: var(--shadow-green); text-align: center;
}
.about-badge b { font-family: var(--ff-display); font-size: 3.2rem; line-height: 1; display: block; }
.about-badge span { font-family: var(--ff-tech); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin: 26px 0 30px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-family: var(--ff-tech); font-weight: 600; font-size: 16px; }
.about-list svg { width: 22px; height: 22px; color: var(--green); flex: none; }
.lead { font-size: 1.08rem; color: var(--muted); }

/* ---------- Services ---------- */
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 30px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.service-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--green);
  transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleY(1); }
.service-icon {
  width: 70px; height: 70px; border-radius: 16px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green); margin-bottom: 24px; transition: .3s var(--ease);
}
.service-card:hover .service-icon { background: var(--green); color: #fff; }
.service-icon svg { width: 36px; height: 36px; }
.service-card h3 { font-size: 1.7rem; text-transform: uppercase; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: .98rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-family: var(--ff-tech); font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-size: 14px; color: var(--green);
}
.service-link svg { width: 18px; height: 18px; transition: transform .25s; }
.service-card:hover .service-link svg { transform: translateX(5px); }

/* ---------- Categories ---------- */
.cat-grid { grid-template-columns: repeat(3, 1fr); }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 16/11; display: flex; align-items: flex-end; box-shadow: var(--shadow-sm);
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,12,41,.92) 6%, rgba(15,12,41,.25) 64%, transparent); }
.cat-card:hover img { transform: scale(1.07); }
.cat-body { position: relative; z-index: 2; padding: 26px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cat-body h3 { font-size: 1.55rem; text-transform: uppercase; color: #fff; }
.cat-body span { font-family: var(--ff-tech); font-size: 13px; color: var(--green-2); letter-spacing: 1px; text-transform: uppercase; }
.cat-go { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; flex: none; transition: .25s; }
.cat-card:hover .cat-go { transform: rotate(-45deg); }
.cat-go svg { width: 22px; height: 22px; }

/* ---------- Why ---------- */
.why { background:
    linear-gradient(180deg, var(--indigo-tint), var(--bg-2)); }
.why-grid { grid-template-columns: repeat(4,1fr); }
.why-card { text-align: center; padding: 34px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); transition: .3s var(--ease); }
.why-card:hover { border-color: var(--green); transform: translateY(-5px); box-shadow: var(--shadow); }
.why-icon { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); border: 1px solid rgba(79,70,229,.22); }
.why-icon svg { width: 38px; height: 38px; }
.why-card h3 { font-size: 1.45rem; text-transform: uppercase; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: .94rem; }

/* ---------- Stats ---------- */
.stats { border-block: 1px solid var(--border); background: linear-gradient(120deg, var(--green-dark), var(--green)); }
.stats-grid { grid-template-columns: repeat(4,1fr); }
.stat { text-align: center; padding: 16px; }
.stat b { font-family: var(--ff-display); font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; color: #fff; display: block; }
.stat span { font-family: var(--ff-tech); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.82); font-size: 14px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.18); }

/* ---------- Booking CTA split ---------- */
.book { position: relative; overflow: hidden; }
.book-grid { grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.book-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.book-media img { width: 100%; height: 100%; object-fit: cover; }
.book-form {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--ff-tech); font-weight: 600; font-size: 13.5px; letter-spacing: .6px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface-2); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); padding: 13px 15px; font-size: 15px; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px var(--green-soft);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-top: 4px; }
.form-note svg { width: 16px; height: 16px; color: var(--green); }

/* ---------- Testimonials ---------- */
.tst-grid { grid-template-columns: repeat(3,1fr); }
.tst-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; position: relative; box-shadow: var(--shadow-sm); transition: .3s var(--ease); }
.tst-card:hover { border-color: var(--border-2); transform: translateY(-5px); box-shadow: var(--shadow); }
.tst-quote { position: absolute; top: 22px; right: 26px; font-family: var(--ff-display); font-size: 5rem; line-height: 1; color: var(--green-soft); }
.tst-stars { display: flex; gap: 3px; color: #f5a623; margin-bottom: 16px; }
.tst-stars svg { width: 19px; height: 19px; }
.tst-card p { color: var(--muted); font-size: 1rem; position: relative; z-index: 2; }
.tst-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.tst-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; font-family: var(--ff-display); font-size: 1.5rem; flex: none; border: 1px solid rgba(79,70,229,.22); }
.tst-author b { font-family: var(--ff-tech); font-weight: 700; font-size: 16px; letter-spacing: .4px; }
.tst-author span { font-size: 13px; color: var(--muted); }

/* ---------- Brands marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--border); background: var(--bg-2); padding: 26px 0; }
.marquee-track { display: flex; gap: 70px; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--ff-display); font-size: 2rem; color: var(--muted-2); letter-spacing: 2px; white-space: nowrap; transition: color .25s; }
.marquee span:hover { color: var(--green); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- CTA banner ---------- */
.cta-band {
  background: linear-gradient(100deg, var(--green-dark), var(--green-2));
  border-radius: var(--radius-lg); padding: clamp(40px,5vw,64px); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  box-shadow: var(--shadow-green);
}
.cta-band::before { content: ""; position: absolute; right: -40px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.12); }
.cta-band h2 { color: #fff; font-size: clamp(2rem,4.5vw,3.2rem); text-transform: uppercase; position: relative; }
.cta-band p { color: rgba(255,255,255,.88); font-weight: 600; font-family: var(--ff-tech); position: relative; }
.cta-band .btn--primary { background: #fff; color: var(--green); }
.cta-band .btn--primary:hover { background: var(--indigo-tint); }

/* ---------- Footer ---------- */
.footer { background: var(--text); color: #c8cbe6; border-top: 1px solid var(--border); padding-top: 72px; }
.footer p { color: #a6abce; font-size: .95rem; }
.footer h4 { color: #fff; }
.footer img.flogo { height: 60px; margin-bottom: 18px; background: #fff; padding: 8px 12px; border-radius: 12px; }
.footer h4 { font-family: var(--ff-tech); font-weight: 700; font-size: 18px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; }
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #a6abce; display: inline-flex; align-items: center; gap: 8px; transition: color .2s, gap .2s; font-size: .96rem; }
.footer-links a:hover { color: var(--green-2); gap: 12px; }
.footer-links a svg { width: 15px; height: 15px; color: var(--green-2); }
.fcontact li { display: flex; gap: 12px; color: #a6abce; margin-bottom: 16px; font-size: .96rem; }
.fcontact svg { width: 20px; height: 20px; color: var(--green-2); flex: none; margin-top: 2px; }
.fcontact a:hover { color: var(--green-2); }
.fsocial { display: flex; gap: 10px; margin-top: 20px; }
.fsocial a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.16); border-radius: 9px; display: grid; place-items: center; color: #c8cbe6; transition: .2s; }
.fsocial a:hover { background: var(--green); color: #fff; border-color: var(--green); }
.fsocial svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom p { font-size: .9rem; color: #8f95bc; }
.footer-bottom a { color: var(--green-2); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: clamp(70px,10vw,116px) 0 clamp(56px,8vw,86px); overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(120deg, var(--indigo-tint) 0%, #ffffff 55%, var(--bg-2) 100%);
}
.page-hero::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, var(--green-soft), transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); text-transform: uppercase; }
.crumbs { display: flex; gap: 10px; align-items: center; font-family: var(--ff-tech); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; margin-top: 16px; color: var(--muted); }
.crumbs a:hover { color: var(--green); }
.crumbs .sep { color: var(--green); }

/* ---------- Shop / parts ---------- */
.shop-grid { grid-template-columns: repeat(4,1fr); }
.product {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.product:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.product-thumb { position: relative; aspect-ratio: 1/1; background: var(--surface-3); overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.product:hover .product-thumb img { transform: scale(1.06); }
.product-tag { position: absolute; top: 12px; left: 12px; background: var(--green); color: #fff; font-family: var(--ff-tech); font-weight: 700; font-size: 12px; letter-spacing: .5px; text-transform: uppercase; padding: 5px 11px; border-radius: 6px; }
.product-body { padding: 20px; }
.product-cat { font-family: var(--ff-tech); font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--green); }
.product h3 { font-family: var(--ff-tech); font-weight: 700; font-size: 18px; margin: 6px 0 12px; line-height: 1.25; }
.product-foot { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--ff-display); font-size: 1.7rem; color: var(--text); }
.product-price small { font-family: var(--ff-body); font-size: .75rem; color: var(--muted); display: block; font-weight: 400; }
.product-add { width: 44px; height: 44px; border-radius: 10px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; transition: .2s; }
.product-add:hover { background: var(--green); color: #fff; }
.product-add svg { width: 22px; height: 22px; }

.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.chip { font-family: var(--ff-tech); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; font-size: 14px; padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--border); color: var(--muted); background: var(--surface); transition: .2s; }
.chip:hover { border-color: var(--green); color: var(--green); }
.chip.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ---------- Contact ---------- */
.contact-grid { grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.info-card { display: flex; gap: 18px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); transition: .3s var(--ease); }
.info-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow); }
.info-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }
.info-icon svg { width: 28px; height: 28px; }
.info-card h4 { font-family: var(--ff-tech); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.info-card p { color: var(--muted); font-size: .98rem; }
.info-card a:hover { color: var(--green); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 30px; height: 320px; box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Process / steps ---------- */
.steps-grid { grid-template-columns: repeat(4,1fr); }
.step { text-align: center; position: relative; padding: 12px; }
.step-num { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; background: var(--surface); border: 2px solid var(--green); color: var(--green); font-family: var(--ff-display); font-size: 2.4rem; position: relative; z-index: 2; box-shadow: var(--shadow-sm); }
.step h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; }
.steps-grid .step:not(:last-child)::after { content: ""; position: absolute; top: 42px; left: 60%; width: 80%; height: 2px; background: repeating-linear-gradient(90deg, var(--border-2) 0 8px, transparent 8px 16px); z-index: 1; }

/* ---------- Specialized services gallery (poster cards) ---------- */
.flyer-grid { grid-template-columns: repeat(4, 1fr); }
.flyer-card {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.flyer-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.flyer-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,12,41,.86) 4%, rgba(15,12,41,.18) 40%, transparent 64%); opacity: .9; transition: opacity .3s; }
.flyer-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow); }
.flyer-card:hover img { transform: scale(1.05); }
.flyer-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px 16px; color: #fff; }
.flyer-cap b { display: block; font-family: var(--ff-tech); font-weight: 700; font-size: 1.15rem; letter-spacing: .3px; line-height: 1.1; }
.flyer-cap span { display: block; font-size: 12px; color: #cdd1f0; margin-top: 4px; line-height: 1.35; }
.flyer-cap .view { display: inline-flex; align-items: center; gap: 5px; margin-top: 9px; font-family: var(--ff-tech); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 11.5px; color: var(--green-2); }
.flyer-card:hover .flyer-cap .view { color: #fff; }
@media (max-width: 1080px) { .flyer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .flyer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .flyer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ---------- Back to top ---------- */
.to-top { position: fixed; right: 22px; bottom: 22px; width: 50px; height: 50px; border-radius: 12px; background: var(--green); color: #fff; display: grid; place-items: center; z-index: 40; opacity: 0; transform: translateY(16px); transition: .3s; box-shadow: var(--shadow-green); }
.to-top.show { opacity: 1; transform: none; }
.to-top svg { width: 24px; height: 24px; }

/* WhatsApp float */
.wa-float { position: fixed; left: 22px; bottom: 22px; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; z-index: 40; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .25s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .about-grid, .book-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .cat-grid, .tst-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
  .shop-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid .step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-badge { right: 14px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .topbar-left .hide-sm { display: none; }
  .feature-strip .grid { grid-template-columns: 1fr 1fr; }
  .fs-item:nth-child(2) { border-right: none; }
  .fs-item:nth-child(1), .fs-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .hero { aspect-ratio: 16 / 10; max-height: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .services-grid, .cat-grid, .tst-grid, .why-grid, .shop-grid, .stats-grid, .feature-strip .grid, .steps-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.18); }
  .feature-strip { margin-top: -30px; }
  .fs-item { border-right: none; border-bottom: 1px solid var(--border); }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }
  .book-form { padding: 26px; }
  .hero { aspect-ratio: 4 / 3; }
  .hero-arrow { width: 42px; height: 42px; }
  .topbar-left { gap: 14px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
