@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700;800&family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:        #1565C0;
  --brand-dark:   #0D47A1;
  --brand-light:  #1E88E5;
  --brand-pale:   #E3F2FD;
  --accent:       #42A5F5;
  --dark:         #0f0f0f;
  --dark-2:       #161616;
  --dark-3:       #222222;
  --light:        #f4f1ec;
  --white:        #fdfcfa;
  --text:         #1a1a1a;
  --text-muted:   #666666;
  --border:       rgba(0,0,0,0.1);
  --radius:       4px;
  --radius-lg:    10px;
  --shadow:       0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.18);
  --transition:   0.25s ease;
  --font-display: 'Bebas Neue', sans-serif;
  --blue:         #1565C0;
  --blue-dark:    #0D47A1;
  --blue-light:   #E3F2FD;
  --blue-glow:    rgba(21,101,192,0.35);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', 'Inter', -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.1;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 7rem);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 0.025em;
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
}
.hero-headline em {
  font-style: normal;
  color: var(--yellow);
}
.hl-st, .hl-ct { display: block; }

h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 600; letter-spacing: 0; }
h4 { text-transform: uppercase; letter-spacing: 0.1em; }

p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(21,101,192,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.btn-full { width: 100%; justify-content: center; }
.btn-cta-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.btn-cta-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* ── NAV ──────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin: 0 auto;
}
.nav-links a {
  display: block;
  padding: 8px 18px;
  color: rgba(255,255,255,0.75);
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: white; background: rgba(255,255,255,0.08); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.nav-phone {
  color: rgba(255,255,255,0.65);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.nav-phone:hover { color: white; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #060e1f;
}
.hero-slide {
  position: absolute;
  inset: -6px; /* compensate so blurred edges don't show */
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(3px);
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4,8,20,0.97) 0%, rgba(4,8,20,0.82) 40%, rgba(4,8,20,0.45) 70%, rgba(4,8,20,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 28px 120px;
  width: 100%;
}
.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 80px;
  margin-bottom: 28px;
}
.hero-title-col { flex: 0 0 auto; }
.hero-logo-block { margin-top: 56px; }

.hero-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.hero-logo-wrapper {
  position: relative;
  display: inline-block;
  width: 380px;
}
.hero-logo-anim {
  width: 100%;
  height: auto;
  display: block;
}
.hero-logo-canvas {
  display: block;
  width: 100%;
  height: auto;
}
.hero-services-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

/* ── CERT STRIP ── */
.hero-cert-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: #0d1e38;
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 2;
}
.hero-cert-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cert-item svg { color: #f0b429; flex-shrink: 0; }
.cert-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cert-divider { display: none; }
  .hero-cert-inner { gap: 16px 24px; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #60a5fa;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #60a5fa;
  flex-shrink: 0;
}
.hero-tag span { display: none; }
.hero h1 {
  font-family: 'Bebas Neue', 'DM Sans', sans-serif;
  font-size: clamp(3.8rem, 9vw, 7rem);
  line-height: 0.88;
  color: white;
  letter-spacing: 0.025em;
  margin: 14px 0 16px;
}
.hero h1 em { font-style: normal; color: #60a5fa; }
.hero-sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}
.hero-trust-bar {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.trust-bar-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.trust-bar-val {
  display: block;
  font-family: 'Bebas Neue', 'DM Sans', sans-serif;
  font-size: 1.7rem;
  color: #f0b429;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.trust-bar-lbl {
  font-size: 0.67rem;
  font-weight: 700;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.trust-bar-div {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-pill {
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-pill::before { display: none; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ───────────────────── */
.page-hero {
  position: relative;
  height: 44vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b1120 0%, #0f2040 50%, #0b1a35 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 28px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #60a5fa;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  color: white;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin: 0;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.page-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 540px;
  line-height: 1.65;
  margin: 0;
}
.page-hero-accent { color: #60a5fa; }
.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}
.page-hero-wave svg { width: 100%; display: block; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-top: 4px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ── SECTIONS ─────────────────────────────────── */
.section { padding: 100px 28px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-dark { background: var(--dark-2); color: white; }
.section-dark p { color: rgba(255,255,255,0.6); }
.section-light { background: var(--light); }
.section-blue { background: var(--brand-dark); color: white; }
.section-blue p { color: rgba(255,255,255,0.75); }
.section-tag {
  display: inline-block;
  background: rgba(21,101,192,0.11);
  color: var(--brand);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.section-dark .section-tag,
.section-blue .section-tag { color: #90CAF9; }
.section-header { margin-bottom: 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 580px; font-size: 1.05rem; }
.section-dark .section-header h2 { color: white; }
.section-blue .section-header h2 { color: white; }

/* ── SERVICE CARDS (home overview) ───────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 540px;
  position: relative;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  cursor: pointer;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s ease;
}
.service-card:nth-child(1) .service-card-bg {
  background-image: url('../../JJs images/WhatsApp Image 2026-05-02 at 18.18.40 (8).jpeg');
  background-color: #0a2060;
  background-size: cover;
  background-position: center;
}
.service-card:nth-child(2) .service-card-bg {
  background-image: url('../../JJs images/WhatsApp Image 2026-05-02 at 18.32.43 (4).jpeg');
  background-color: #0d0d1f;
  background-size: cover;
  background-position: center;
}
.service-card:nth-child(3) .service-card-bg {
  background-image: url('../../JJs images/IMG_9578.jpeg');
  background-color: #131820;
  background-size: cover;
  background-position: center;
}
.service-card:nth-child(4) .service-card-bg {
  background-image: url('../../JJs images/WhatsApp Image 2026-05-02 at 18.32.43 (15).jpeg');
  background-color: #0d0d0d;
  background-size: cover;
  background-position: center;
}
.service-card:hover .service-card-bg { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  transition: var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(13,71,161,0.88) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.services-grid::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 30px;
  color: white;
}
.service-card-icon {
  width: 46px; height: 46px;
  background: rgba(21,101,192,0.3);
  border: 1px solid rgba(66,165,245,0.35);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: var(--transition);
  color: #90CAF9;
}
.service-card:hover .service-card-icon { background: var(--brand); border-color: var(--brand-light); }
.service-card-content h3 { font-size: 1.2rem; margin-bottom: 8px; color: white; }
.service-card-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}
.service-card:hover .service-card-desc { max-height: 80px; opacity: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #90CAF9;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }
.service-card-link:hover { color: white; }

/* ── STATS BAR ────────────────────────────────── */
.stats-bar { background: linear-gradient(135deg, #0D47A1 0%, #1565C0 60%, #1976D2 100%); padding: 20px 28px; }
.stats-inner {
  max-width: 1280px;
  margin: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { display: flex; align-items: center; gap: 16px; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.stat-info { display: flex; flex-direction: column; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-icon { color: #90CAF9; opacity: 0.7; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.15); }

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials {
  background: var(--white);
  padding: 100px 0 80px;
}
.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.testimonials-inner h2 { margin-bottom: 10px; }
.testimonials-inner > p { margin: 0 auto 36px; max-width: 520px; }

.t-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 64px;
}
.t-overall-stars {
  color: #FBBF24;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 6px;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(251,191,36,0.45));
}
.t-overall-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.t-score-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.t-score-denom {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}
.t-overall-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(0,0,0,0.38);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* carousel */
.t-carousel {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  padding: 20px 0 28px;
}
.t-viewport {
  overflow: hidden;
}
.t-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 8px 0;
}
.t-slide {
  flex-shrink: 0;
  width: min(520px, 78vw);
  background: rgba(21,101,192,0.07);
  border: 1px solid rgba(21,101,192,0.12);
  border-radius: 24px;
  padding: 44px 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  transform: scale(0.9);
  opacity: 0.45;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.55s ease,
              background 0.55s ease,
              border-color 0.55s ease;
  cursor: pointer;
}
.t-slide--active {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1);
  opacity: 1;
  cursor: default;
  box-shadow: 0 12px 48px rgba(21,101,192,0.38);
}
.t-quote-mark {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  line-height: 0.7;
  color: var(--brand);
  opacity: 0.25;
  user-select: none;
  align-self: flex-start;
  transition: color 0.55s ease, opacity 0.55s ease;
}
.t-slide--active .t-quote-mark {
  color: white;
  opacity: 0.3;
}
.t-quote {
  font-size: clamp(0.95rem, 2vw, 1.18rem);
  color: var(--text);
  line-height: 1.72;
  font-style: italic;
  transition: color 0.55s ease;
}
.t-slide--active .t-quote { color: rgba(255,255,255,0.93); }
.t-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.t-stars { color: #FBBF24; font-size: 1.5rem; letter-spacing: 4px; filter: drop-shadow(0 1px 4px rgba(251,191,36,0.4)); }
.t-score-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.38);
  letter-spacing: 0.05em;
  transition: color 0.55s ease;
}
.t-slide--active .t-score-badge { color: rgba(255,255,255,0.6); }
.t-job-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(21,101,192,0.09);
  color: var(--brand);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.55s ease, color 0.55s ease;
}
.t-slide--active .t-job-badge {
  background: rgba(255,255,255,0.18);
  color: white;
}
.t-verified {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.55s ease;
}
.t-slide--active .t-verified { color: rgba(255,255,255,0.45); }
.t-slide--active .t-verified svg { fill: rgba(255,255,255,0.45); }

/* nav row */
.t-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}
.t-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--white);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.t-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  box-shadow: 0 4px 18px var(--blue-glow);
}

/* dots */
.t-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.t-dot--active {
  background: var(--brand);
  width: 24px;
  border-radius: 4px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 640px) {
  .t-slide { padding: 32px 28px 28px; }
}

/* ── ABOUT WAVE DIVIDER ───────────────────────── */
.about-wave {
  display: block;
  margin-bottom: -2px;
  line-height: 0;
}
.about-wave svg {
  width: 100%;
  height: 72px;
  display: block;
}

/* ── ABOUT SPLIT ──────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; background: #0f172a; }
.about-image-panel {
  position: relative;
  min-height: 500px;
  background-image: url('../../JJs images/IMG_9465.jpeg');
  background-color: #0D47A1;
  background-size: cover;
  background-position: center;
}
.about-image-panel-label {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 18px;
  color: rgba(255,255,255,0.8);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-text-panel {
  background: #0f172a;
  padding: 80px 60px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text-panel .section-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.12);
}
.about-text-panel p { color: rgba(255,255,255,0.62); margin-bottom: 20px; line-height: 1.8; }
.about-text-panel h2 { color: white; margin-bottom: 20px; }
.creds-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 4px; }
.creds-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.creds-list li svg { color: #60a5fa; flex-shrink: 0; }

/* ── WASTE PROMO ──────────────────────────────── */
.waste-promo {
  background: var(--dark);
  padding: 100px 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.waste-promo-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.waste-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 6px 16px;
  color: rgba(255,255,255,0.45);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 20px;
}
.waste-promo h2 { color: white; margin-bottom: 16px; }
.waste-promo > .waste-promo-inner > div > p { color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.waste-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.waste-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}
.waste-item:hover { background: rgba(255,255,255,0.07); color: white; }
.waste-item svg { color: #90CAF9; flex-shrink: 0; }
.waste-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}
.waste-preview-bar {
  background: #1e1e1e;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.waste-preview-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.waste-preview-dots span {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.waste-preview-url {
  flex: 1;
  background: #2a2a2a;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', monospace;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.waste-preview-open {
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.waste-preview-open:hover { color: white; }
.waste-preview-frame-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #fff;
}
.waste-preview-frame-wrap iframe {
  width: 200%;
  height: 200%;
  border: none;
  display: block;
  transform: scale(0.5);
  transform-origin: top left;
  pointer-events: none;
}

/* ── CTA SECTION ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 50%, #1976D2 100%);
  padding: 90px 28px;
  text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 44px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 64px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand-desc {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.7;
}
.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: white; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.footer-contact-row svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-light); }
.footer-contact-row a { transition: var(--transition); }
.footer-contact-row a:hover { color: white; }
.footer-sister {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 10px 16px;
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  transition: var(--transition);
  margin-top: 12px;
  width: 100%;
}
.footer-sister:hover { background: rgba(255,255,255,0.08); color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: white; }

/* ── SERVICES PAGE ────────────────────────────── */
.services-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border);
  gap: 1px;
}
.sov-card {
  background: var(--white);
  padding: 44px 32px;
  text-align: center;
  transition: var(--transition);
  display: block;
  cursor: pointer;
  border: none;
}
.sov-card:hover { background: var(--brand); }
.sov-card:hover h3,
.sov-card:hover p { color: rgba(255,255,255,0.9); }
.sov-card:hover .sov-icon { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); color: white; }
.sov-icon {
  width: 56px; height: 56px;
  background: var(--brand-pale);
  border: 1px solid rgba(21,101,192,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--brand);
  transition: var(--transition);
}
.sov-card h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--text); transition: var(--transition); }
.sov-card p { font-size: 0.84rem; transition: var(--transition); }

.service-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.service-section-bg {
  position: absolute;
  inset: -8px;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.02);
}
.service-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
#refurb .service-section-bg {
  background-image: url('../../JJs images/WhatsApp Image 2026-05-02 at 18.18.40 (7).jpeg');
  background-color: #091a40;
  background-size: cover;
  background-position: center;
}
#plumbing .service-section-bg {
  background-image: url('../../JJs images/WhatsApp Image 2026-05-02 at 18.32.43 (5).jpeg');
  background-color: #080d18;
  background-size: cover;
  background-position: center;
}
#bathrooms .service-section-bg {
  background-image: url('../../JJs images/IMG_7664.jpeg');
  background-color: #0e1520;
  background-size: cover;
  background-position: center;
}
#maintenance .service-section-bg {
  background-image: url('../../JJs images/WhatsApp Image 2026-05-02 at 18.32.43 (14).jpeg');
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
}
.service-section-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 28px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-section.reverse .service-section-content { direction: rtl; }
.service-section.reverse .service-section-content > * { direction: ltr; }
.service-section-text h2 { color: white; margin-bottom: 8px; }
.service-section-text .section-tag { margin-bottom: 8px; }
.service-section-text p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #42A5F5;
  flex-shrink: 0;
}
.service-panel {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 45%, #1e88e5 100%);
  border: 1px solid rgba(66,165,245,0.25);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 12px 48px rgba(13,71,161,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
}
.service-panel-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.service-panel h3 { color: white; font-size: 1.3rem; }
.service-panel p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* ── ABOUT PAGE ───────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-block {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-image: url('../../JJs images/WhatsApp Image 2026-05-02 at 18.18.40 (13).jpeg');
  background-color: #0D47A1;
  background-size: cover;
}
.about-image-block-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.about-image-overlay-text {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-image-overlay-sub { color: rgba(255,255,255,0.55); font-size: 0.84rem; margin-top: 4px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), var(--shadow); transform: translateY(-4px); }
.why-grid > .why-card:first-child { background: var(--brand-pale); border-color: rgba(21,101,192,0.18); }
.why-icon {
  width: 48px; height: 48px;
  background: var(--brand-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 20px;
}
.why-card h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--text); }

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.area-item {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: var(--transition);
}
.area-item:hover { background: var(--brand-pale); color: var(--brand); }
.area-item svg { color: var(--brand); flex-shrink: 0; }

/* ── CONTACT PAGE ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: white;
  position: sticky;
  top: 92px;
}
.contact-info-card h3 { color: white; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(21,101,192,0.2);
  border: 1px solid rgba(21,101,192,0.35);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90CAF9;
  flex-shrink: 0;
}
.contact-detail-text span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-family: 'Oswald', sans-serif;
}
.contact-detail-text a { color: white; transition: var(--transition); }
.contact-detail-text a:hover { color: #90CAF9; }
.contact-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 24px 0; }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 32px; color: var(--text); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.76rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-family: inherit;
  color: var(--text);
  background: var(--light);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-overview { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-section-content { grid-template-columns: 1fr; gap: 40px; }
  .service-section.reverse .service-section-content { direction: ltr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-logo-wrapper { width: 260px; }
  .hero-services-label { font-size: 2rem; }
  .hero-top { gap: 24px; }
  .hero-logo-block { margin-top: 52px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .testimonials { padding: 70px 0 56px; }
  .about-split { grid-template-columns: 1fr; }
  .about-text-panel { padding: 60px 32px; }
  .waste-promo-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}
@media (max-width: 640px) {
  .section { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-overview { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-direction: row; justify-content: center; }
  .stat-item:not(:first-child) { display: none; }
  .stat-divider { display: none; }
  .hero-top { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 24px; }
  .hero-title-col { width: 100%; text-align: center; }
  .hero-tag { justify-content: center; }
  .hl-st { font-size: clamp(1.4rem, 8vw, 3.4rem); white-space: nowrap; }
  .hl-ct { font-size: clamp(2.4rem, 13vw, 5.5rem); }
  .hero-intro-logo-wrapper { width: min(82vw, 720px); }
  .hero-intro-eyebrow { font-size: 0.78rem; gap: 14px; }
  .hero-intro-eyebrow::before, .hero-intro-eyebrow::after { width: 20px; }
  .hero-intro-tagline { font-size: clamp(1.3rem, 5vw, 4.5rem); letter-spacing: 0.08em; }
  .hero-logo-block { flex-direction: column; align-items: center; margin-top: 0; width: 100%; }
  .hero-logo-wrapper { width: min(320px, 75vw); }
  .hero-services-label { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .waste-services-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .page-hero { height: 40vh; min-height: 280px; }
  .page-hero-content h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .why-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile nav open state */
.nav-header.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  padding: 16px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 2px;
  z-index: 999;
}
.nav-header.nav-open .nav-links a { padding: 12px 16px; font-size: 1rem; }

/* ── HERO INTRO OVERLAY ──────────────────────── */
.hero-intro {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: auto;
}

.hero-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: #60a5fa;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroIntroFade 0.7s 0.4s forwards ease;
}
.hero-intro-eyebrow::before,
.hero-intro-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.hero-intro-logo-wrapper {
  width: clamp(390px, 57vw, 720px);
  opacity: 0;
  transform: scale(0.88);
  animation: heroIntroLogoIn 1s 0.65s forwards ease;
}
.hero-intro-logo-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-intro-logo-canvas {
  width: 100%;
  height: auto;
  display: block;
}

.hero-intro-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5.25vw, 4.5rem);
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroIntroFade 0.7s 1.05s forwards ease;
}

.hero-intro-scroll {
  position: absolute;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.28);
  opacity: 0;
  animation: heroIntroFade 0.6s 1.8s forwards ease;
}
.hero-intro-scroll span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-intro-scroll svg {
  animation: heroScrollBounce 1.8s 2.5s infinite ease-in-out;
}

@keyframes heroIntroFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroIntroLogoIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* Initially hide the main hero content and cert strip */
.hero-content {
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition: opacity 0.9s 0.2s ease, transform 0.9s 0.2s ease;
}
.hero-cert-strip {
  opacity: 0;
  transition: opacity 0.7s 0.55s ease;
}

/* Revealed state */
.hero--revealed .hero-intro {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
}
.hero--revealed .hero-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.hero--revealed .hero-cert-strip {
  opacity: 1;
}

@media (max-width: 640px) {
  .hero-intro {
    justify-content: flex-start;
    padding-top: 23vh;
    padding-bottom: 56px;
    gap: 18px;
  }
  .hero-intro-logo-wrapper {
    width: min(88vw, 720px);
  }
  .hero-intro-eyebrow {
    font-size: 0.88rem;
    gap: 14px;
  }
  .hero-intro-eyebrow::before,
  .hero-intro-eyebrow::after {
    width: 20px;
  }
  .hero-intro-tagline {
    font-size: clamp(1.6rem, 6.5vw, 2.8rem);
    letter-spacing: 0.12em;
  }
  .hero-intro-scroll {
    position: static;
    margin-top: auto;
  }
}

/* ── SERVICE CARD TOUCH ACTIVE STATE ─────────────── */
@media (hover: none) {
  .service-card-bg       { transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .service-card-overlay  { transition: background 0.75s ease; }
  .service-card-icon     { transition: background 0.6s ease, border-color 0.6s ease; }
  .service-card-desc     { transition: max-height 0.65s ease, opacity 0.55s ease; }
  .service-card-link     { transition: opacity 0.55s ease, transform 0.55s ease; }

  .service-card.touch-active .service-card-bg {
    transform: scale(1.06);
  }
  .service-card.touch-active .service-card-overlay {
    background: linear-gradient(to top, rgba(13,71,161,0.88) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  }
  .service-card.touch-active .service-card-icon {
    background: var(--brand);
    border-color: var(--brand-light);
  }
  .service-card.touch-active .service-card-desc {
    max-height: 80px;
    opacity: 1;
  }
  .service-card.touch-active .service-card-link {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SCROLL REVEAL ────────────────────────────────── */
.sr-up, .sr-left, .sr-right {
  opacity: 0;
  transition: opacity 1.1s ease,
              transform 1.1s ease;
  will-change: opacity, transform;
}
.sr-up    { transform: translateY(22px); }
.sr-left  { transform: translateX(-28px); }
.sr-right { transform: translateX(28px); }

.sr-up.in-view,
.sr-left.in-view,
.sr-right.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .sr-up, .sr-left, .sr-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── SERVICE SECTION WAVE DIVIDERS ───────────── */
.service-section-bottom-wave,
.service-section-top-wave {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}
.service-section-bottom-wave { bottom: -1px; }
.service-section-top-wave    { top: -1px; }
.service-section-bottom-wave svg,
.service-section-top-wave svg { width: 100%; display: block; }

.service-divider {
  background: #ffffff;
  height: 48px;
}

/* ── GALLERY PAGE ─────────────────────────────── */

.gallery-section-inner {
  width: min(100%, 1400px);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  padding-bottom: 72px;
}

.gallery-masonry {
  column-count: 4;
  column-gap: 10px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.gallery-item:hover::after {
  background: rgba(0, 80, 200, 0.15);
}

@media (max-width: 1100px) { .gallery-masonry { column-count: 3; } }
@media (max-width: 680px)  { .gallery-masonry { column-count: 2; column-gap: 6px; } .gallery-item { margin-bottom: 6px; } }
@media (max-width: 400px)  { .gallery-masonry { column-count: 2; } }

/* ── LIGHTBOX ─────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 22, 0.96);
}

.lightbox-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  display: block;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  line-height: 1;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 64px;
  border-radius: 4px;
  font-size: 2rem;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-close:hover  { background: rgba(255,255,255,0.18); }
.lightbox-prev:hover   { background: rgba(255,255,255,0.18); transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover   { background: rgba(255,255,255,0.18); transform: translateY(-50%) translateX(2px); }

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
}

@media (max-width: 640px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev, .lightbox-next { width: 38px; height: 52px; font-size: 1.6rem; }
}
