/* ==========================================================================
   Sahaj Group of Services — main stylesheet
   Theme: fire red / safety orange / charcoal
   ========================================================================== */

:root {
  --red: #e4353f;
  --red-dark: #c02830;
  --orange: #f5921e;
  --dark: #171c26;
  --dark-2: #222939;
  --text: #333a47;
  --muted: #6b7280;
  --light: #f7f8fa;
  --white: #ffffff;
  --grad: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  --shadow: 0 10px 30px rgba(23, 28, 38, .10);
  --shadow-lg: 0 18px 50px rgba(23, 28, 38, .18);
  --radius: 16px;
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { font-family: var(--font); color: var(--text); line-height: 1.65; background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--dark); line-height: 1.25; font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: .5rem; }
h3 { font-size: 1.12rem; }
.center { text-align: center; }
.container { width: min(1180px, 92%); margin-inline: auto; }
.container.narrow { width: min(860px, 92%); }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.accent { color: var(--red); }
.accent-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.section-kicker {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red); margin-bottom: .6rem;
}
.section-kicker.center { display: block; text-align: center; }

/* ---------- Flat SVG icons ---------- */
.ic { display: inline-block; width: 30px; height: 30px; vertical-align: middle; }
.ic-inline { width: 1.1em; height: 1.1em; vertical-align: -.2em; margin-right: .3em; }
.service-icon .ic { width: 30px; height: 30px; }
.industry-icon .ic { width: 42px; height: 42px; }
.why-icon .ic { width: 30px; height: 30px; }
.stat-icon .ic { width: 38px; height: 38px; }
.section-sub { color: var(--muted); max-width: 620px; margin: .4rem auto 0; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-pulse, .ember, .ring, .orbit { display: none; }
  .glow, .chip, .fire-badge .flame, .ticker-track { animation: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 28, 38, .07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem 0; }
.brand { display: flex; align-items: center; gap: .65rem; }
.brand img { width: 52px; height: 52px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { color: var(--dark); font-size: 1.15rem; letter-spacing: .04em; }
.brand-text small { color: var(--muted); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav a { color: var(--dark); font-weight: 500; font-size: .95rem; position: relative; padding: .3rem 0; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--grad); border-radius: 2px; transition: width .3s ease;
}
.main-nav a:not(.nav-cta):hover::after, .main-nav a.active:not(.nav-cta)::after { width: 100%; }
.nav-cta {
  background: var(--grad); color: var(--white) !important; padding: .55rem 1.25rem !important;
  border-radius: 999px; font-weight: 600; box-shadow: 0 6px 18px rgba(228, 53, 63, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(228, 53, 63, .45); }

.back-nav a { font-weight: 600; color: var(--dark); }
.back-nav a:hover { color: var(--red); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--dark); margin: 5px 0; border-radius: 3px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (custom animated banner) ---------- */
.hero {
  position: relative; color: var(--white); overflow: hidden;
  background:
    radial-gradient(1100px 560px at 88% -10%, rgba(228, 53, 63, .38), transparent 62%),
    radial-gradient(900px 520px at -8% 112%, rgba(245, 146, 30, .30), transparent 60%),
    linear-gradient(160deg, #10141d 0%, #171c26 55%, #24101a 100%);
}
/* faint blueprint grid over the dark background */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(820px 520px at 68% 42%, #000, transparent 78%);
  mask-image: radial-gradient(820px 520px at 68% 42%, #000, transparent 78%);
}
.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(75px); opacity: .45; }
.glow-1 { width: 430px; height: 430px; background: var(--red); top: -130px; right: -90px; animation: glowFloat 9s ease-in-out infinite alternate; }
.glow-2 { width: 350px; height: 350px; background: var(--orange); bottom: -150px; left: -110px; animation: glowFloat 12s ease-in-out infinite alternate-reverse; }
@keyframes glowFloat { to { transform: translateY(40px) scale(1.12); } }

/* rising embers */
.ember {
  position: absolute; bottom: -12px; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); opacity: 0; box-shadow: 0 0 10px 3px rgba(245, 146, 30, .55);
  animation: emberRise linear infinite;
}
.e1 { left: 6%;  animation-duration: 7.5s; animation-delay: .2s; }
.e2 { left: 16%; animation-duration: 9s;   animation-delay: 2.4s; width: 5px; height: 5px; }
.e3 { left: 30%; animation-duration: 8s;   animation-delay: 1.1s; }
.e4 { left: 44%; animation-duration: 10s;  animation-delay: 3.6s; width: 4px; height: 4px; }
.e5 { left: 58%; animation-duration: 7s;   animation-delay: .8s; }
.e6 { left: 72%; animation-duration: 9.5s; animation-delay: 2s;  width: 5px; height: 5px; }
.e7 { left: 84%; animation-duration: 8.5s; animation-delay: 4.2s; }
.e8 { left: 94%; animation-duration: 11s;  animation-delay: 1.6s; width: 4px; height: 4px; }
@keyframes emberRise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  8%   { opacity: .9; }
  100% { transform: translateY(-92vh) scale(.25); opacity: 0; }
}

.hero-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 1fr;
  align-items: center; gap: 2.5rem; padding: clamp(4rem, 9vw, 6.5rem) 0;
}
.hero-content { max-width: 640px; }

/* right-side animated flame badge + floating chips */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 400px; }
.fire-badge {
  position: relative; width: min(300px, 56vw); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 36%, rgba(245, 146, 30, .20), rgba(228, 53, 63, .08) 58%, transparent 72%);
  border: 1px solid rgba(255, 255, 255, .13);
}
.fire-badge .flame {
  width: 118px; filter: drop-shadow(0 12px 34px rgba(228, 53, 63, .55));
  animation: flameBob 3s ease-in-out infinite;
}
@keyframes flameBob { 50% { transform: translateY(-10px) scale(1.05); } }
.ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(245, 146, 30, .45); animation: ringPulse 3.2s ease-out infinite; }
.ring-2 { animation-delay: 1.6s; }
@keyframes ringPulse {
  0%   { transform: scale(.72); opacity: 1; }
  100% { transform: scale(1.38); opacity: 0; }
}
.orbit {
  position: absolute; inset: -26px; border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, .22);
  animation: orbitSpin 26s linear infinite;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.chip {
  position: absolute; z-index: 2; white-space: nowrap;
  background: rgba(255, 255, 255, .10); border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(8px); padding: .5rem 1rem; border-radius: 999px;
  font-size: .8rem; font-weight: 600; color: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
  animation: chipFloat 5s ease-in-out infinite;
}
.chip-1 { top: 4%; left: 2%; animation-delay: 0s; }
.chip-2 { top: 30%; right: -3%; animation-delay: 1.3s; }
.chip-3 { bottom: 24%; left: -4%; animation-delay: 2.1s; }
.chip-4 { bottom: 1%; right: 6%; animation-delay: .7s; }
@keyframes chipFloat { 50% { transform: translateY(-12px); } }
.hero-badge {
  display: inline-block; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25);
  padding: .4rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 500; margin-bottom: 1.2rem; backdrop-filter: blur(4px);
}
.hero h1 { color: var(--white); font-size: clamp(1.9rem, 5vw, 3.3rem); font-weight: 800; margin-bottom: .8rem; }
.hero-tagline { font-family: 'Merriweather', Georgia, serif; font-style: italic; color: #ffd166; font-size: clamp(1.05rem, 2.4vw, 1.35rem); margin-bottom: .9rem; }
.hero-sub { color: rgba(255, 255, 255, .85); max-width: 600px; margin-bottom: 1.8rem; font-size: clamp(.95rem, 2vw, 1.05rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.btn {
  display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: 1rem;
  padding: .85rem 1.7rem; border-radius: 999px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: #25d366; color: var(--white); box-shadow: 0 8px 24px rgba(37, 211, 102, .4); }
.btn-primary:hover { box-shadow: 0 12px 30px rgba(37, 211, 102, .55); }
.btn-outline { border: 2px solid rgba(255, 255, 255, .6); color: var(--white); }
.btn-outline:hover { background: rgba(255, 255, 255, .12); }
.btn-light { background: var(--white); color: var(--red); box-shadow: var(--shadow); }
.btn-ghost { border: 2px solid rgba(255, 255, 255, .7); color: var(--white); }
.btn-ghost:hover { background: rgba(255, 255, 255, .14); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2rem; font-size: .9rem; color: rgba(255, 255, 255, .92); font-weight: 500; }

/* ---------- Services ticker ---------- */
.ticker { background: var(--grad); color: var(--white); overflow: hidden; padding: .72rem 0; }
.ticker-track { display: inline-flex; white-space: nowrap; animation: tickerMove 30s linear infinite; will-change: transform; }
.ticker-track span { font-weight: 600; font-size: .92rem; letter-spacing: .03em; margin-right: 3.2rem; }
.ticker-track span::before { content: "◆"; font-size: .6em; opacity: .75; margin-right: .9rem; vertical-align: .15em; }
@keyframes tickerMove { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------- Stats ---------- */
.stats { background: var(--white); padding: clamp(2.5rem, 6vw, 4rem) 0 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat-card {
  position: relative; overflow: hidden; text-align: center;
  background: var(--white); border: 1px solid rgba(23, 28, 38, .08); border-radius: var(--radius);
  padding: 1.6rem 1.2rem 1.4rem; box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-icon { font-size: 1.9rem; display: block; margin-bottom: .35rem; }
.stat-value {
  display: block; line-height: 1.15; font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-card p { color: var(--muted); font-size: .88rem; margin-top: .2rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; right: -14px; bottom: -20px; background: var(--grad); color: var(--white);
  border-radius: var(--radius); padding: 1rem 1.3rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .8rem;
}
.about-badge strong { font-size: 1.7rem; font-weight: 800; }
.about-badge span { font-size: .75rem; line-height: 1.35; }
.about-text p { margin-bottom: 1rem; }
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.4rem; }
.vm-card { background: var(--light); border-left: 4px solid var(--orange); border-radius: 10px; padding: 1.1rem 1.2rem; }
.vm-card h3 { margin-bottom: .35rem; font-size: 1rem; }
.vm-card p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- Services ---------- */
.services { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 2.5rem; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 1.7rem 1.4rem;
  box-shadow: var(--shadow); border-top: 4px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-top-color: var(--red); }
.service-icon {
  width: 56px; height: 56px; display: grid; place-items: center; font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(228, 53, 63, .1), rgba(245, 146, 30, .12));
  border-radius: 14px; margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: .5rem; }
.service-card p { font-size: .88rem; color: var(--muted); }

/* ---------- Industries ---------- */
.industries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.industry {
  text-align: center; background: var(--white); border: 1px solid rgba(23, 28, 38, .08);
  border-radius: var(--radius); padding: 1.5rem .8rem; transition: transform .3s ease, box-shadow .3s ease;
}
.industry:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.industry-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.industry strong { font-size: 1.4rem; font-weight: 800; color: var(--red); display: block; }
.industry p { font-size: .82rem; color: var(--muted); margin-top: .2rem; }

/* ---------- Why Choose Us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.why-item {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--white); border: 1px solid rgba(23, 28, 38, .08); border-left: 4px solid var(--orange);
  border-radius: var(--radius); padding: 1.3rem 1.2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-left-color: var(--red); }
.why-icon { font-size: 1.6rem; line-height: 1.2; }
.why-item h3 { font-size: 1rem; margin-bottom: .3rem; }
.why-item p { font-size: .86rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { background: var(--light); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.5rem; }
.gallery-item { display: block; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; transition: transform .5s ease; }
.gallery-item::after {
  content: "+"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 3rem; font-weight: 300; color: var(--white);
  background: rgba(23, 28, 38, .4); opacity: 0; transition: opacity .35s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 2.2rem .95rem .75rem;
  background: linear-gradient(transparent, rgba(10, 12, 18, .88));
  color: var(--white); font-size: .85rem; font-weight: 600; letter-spacing: .01em;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(10, 12, 18, .92);
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 80vh; width: auto; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox p { color: rgba(255, 255, 255, .85); margin-top: .9rem; font-size: .95rem; text-align: center; }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.4rem; background: rgba(255, 255, 255, .12);
  border: 0; color: var(--white); font-size: 1.3rem; width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
}
.lightbox-close:hover { background: var(--red); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 1;
  background: rgba(255, 255, 255, .12); border: 0; color: var(--white);
  font-size: 1.4rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }
.lightbox-nav:hover { background: var(--red); }
/* Touch devices navigate by swipe — no arrow buttons */
@media (hover: none) and (pointer: coarse), (max-width: 640px) {
  .lightbox-nav { display: none; }
}

/* ---------- Testimonials ---------- */
.testi-track {
  display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 2.2rem .2rem 1rem; scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 min(380px, 86vw); scroll-snap-align: start;
  background: var(--white); border: 1px solid rgba(23, 28, 38, .08); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; box-shadow: var(--shadow); position: relative;
}
.testi-card::before {
  content: "❝"; position: absolute; top: -18px; left: 20px; font-size: 2.4rem; line-height: 1;
  color: var(--orange); background: var(--white); padding: 0 .4rem; border-radius: 8px;
}
.testi-card p { font-size: .93rem; margin-bottom: 1rem; }
.testi-card footer { font-size: .85rem; font-weight: 600; color: var(--dark); }
.testi-card cite { color: var(--muted); font-weight: 500; }
.testi-nav { display: flex; justify-content: center; gap: .7rem; margin-top: .6rem; }
.testi-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(23, 28, 38, .15);
  background: var(--white); font-size: 1.1rem; cursor: pointer; color: var(--dark);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.testi-nav button:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

/* ---------- Clients ---------- */
.clients { background: var(--dark); }
.clients .section-kicker { color: var(--orange); }
.clients h2 { color: var(--white); }
.clients-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 1rem; margin-top: 2.2rem; }
.clients-strip li {
  color: rgba(255, 255, 255, .85); font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; padding: .5rem 1.2rem;
  transition: border-color .3s ease, color .3s ease;
}
.clients-strip li:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white); border: 1px solid rgba(23, 28, 38, .1); border-radius: 12px;
  margin-top: 1rem; overflow: hidden; box-shadow: 0 4px 14px rgba(23, 28, 38, .05);
}
.faq-item:first-of-type { margin-top: 2.2rem; }
.faq-item summary {
  cursor: pointer; font-weight: 600; color: var(--dark); padding: 1.1rem 3rem 1.1rem 1.3rem;
  list-style: none; position: relative; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--red); transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { color: var(--red); }
.faq-item p { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: .93rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); color: var(--white); padding: clamp(3rem, 7vw, 4.5rem) 0; }
.cta-inner { text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, .9); margin: .5rem 0 1.6rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; align-content: start; }
.contact-card {
  font-style: normal; background: var(--light); border-radius: var(--radius); padding: 1.4rem 1.3rem;
  border-left: 4px solid var(--red); transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card h3 { font-size: .98rem; margin-bottom: .5rem; }
.contact-card p { font-size: .87rem; color: var(--muted); margin-bottom: .4rem; }
.contact-card a { font-weight: 600; font-size: .92rem; word-break: break-word; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255, 255, 255, .8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem; padding: 3.5rem 0 2.5rem; }
.footer-brand img { background: var(--white); border-radius: 14px; padding: 6px; margin-bottom: 1rem; }
.footer-brand p, .footer-contact p { font-size: .9rem; }
.site-footer h4 { color: var(--white); margin-bottom: .9rem; font-size: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { color: rgba(255, 255, 255, .75); font-size: .9rem; transition: color .25s ease, padding-left .25s ease; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact a { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 1.1rem 0; text-align: center; font-size: .82rem; color: rgba(255, 255, 255, .55); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
  transition: transform .3s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%; background: #25d366;
  animation: wa-pulse 2s ease-out infinite; z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ---------- Privacy policy page ---------- */
.legal-page { padding: clamp(3rem, 7vw, 4.5rem) 0; }
.legal-page h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: .4rem; }
.legal-updated { color: var(--muted); font-size: .88rem; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.25rem; margin: 2rem 0 .6rem; }
.legal-page p, .legal-page li { font-size: .95rem; color: var(--text); margin-bottom: .6rem; }
.legal-page ul { list-style: disc; padding-left: 1.4rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  /* dropdown panel anchored below the sticky header
     (position:absolute, not fixed — the header's backdrop-filter
     makes it the containing block for fixed descendants) */
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: .6rem 1.4rem 1.4rem; gap: 0;
    box-shadow: 0 24px 44px rgba(23, 28, 38, .18);
    border-top: 1px solid rgba(23, 28, 38, .07);
    opacity: 0; visibility: hidden; transform: translateY(-12px); pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .main-nav a:not(.nav-cta) {
    font-size: 1.02rem; padding: .85rem .2rem;
    border-bottom: 1px solid rgba(23, 28, 38, .07);
  }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .main-nav .nav-cta { margin-top: 1rem; text-align: center; justify-content: center; }
  .back-nav a { font-weight: 600; color: var(--dark); }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 10px; bottom: -18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero-visual { display: none; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
  .hero-trust { flex-direction: column; gap: .5rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .cta-band .hero-actions { flex-direction: column; align-items: center; }
  .cta-band .btn { width: auto; min-width: 220px; }
}
