/* ================================================
   ALLIANCE GROUP — STRUCTURE. SAFETY. STANDARDS.
   CSS v1.0 | Brisbane, QLD
   ================================================ */

/* ── Design Tokens ── */
:root {
  --teal:       #1A819A;
  --teal-dark:  #12607A;
  --teal-light: #2AADC8;
  --blue:       #1A99DC;
  --navy:       #002233;
  --navy-mid:   #0D3B5C;
  --dark:       #0A1520;
  --dark-card:  #0F1E2D;
  --mid:        #1A2D40;
  --light:      #F4F4F4;
  --white:      #FFFFFF;
  --text-dark:  #1C1C1C;
  --text-mid:   #444;
  --text-light: rgba(255,255,255,0.75);

  --font-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius:   8px;
  --radius-lg: 16px;
  --shadow:   0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.22);

  --transition: 0.3s ease;
  --nav-h: 80px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.bg-dark { background: var(--dark); }
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-tag.light { color: var(--teal-light); }
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-intro { color: var(--text-mid); max-width: 600px; font-size: 1.1rem; margin-top: 8px; }
.section-intro.light { color: var(--text-light); }
.section-header.center { text-align: center; }
.section-header.center .section-intro { margin: 12px auto 0; }
.teal-divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  border-radius: 2px;
  margin: 16px 0 28px;
}
.teal-divider.center { margin: 16px auto 28px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(26,129,154,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-dark), var(--navy-mid));
  box-shadow: 0 6px 24px rgba(26,129,154,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--teal);
}
.btn-outline-light:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

/* ── Scroll Reveal ── */
[data-animate], .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.in-view, [data-animate].in-view {
  opacity: 1 !important;
  transform: translate(0,0) !important;
}
.reveal-up.in-view { transition-delay: var(--delay, 0s); }

/* ════════════════════════════════
   NAVIGATION
════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  height: var(--nav-h);
}
.navbar.scrolled {
  background: rgba(10, 21, 32, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-svg { width: 48px; height: 42px; flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-name strong { font-weight: 800; color: var(--teal-light); }
.logo-tagline {
  font-family: var(--font-head);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--teal-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 2px 12px rgba(26,129,154,0.4);
}
.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(26,129,154,0.6) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10, 21, 32, 0.98);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 12px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.04em;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-cta {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white) !important;
  border-radius: var(--radius);
  text-align: center;
  padding: 14px !important;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 21, 32, 0.92) 0%,
    rgba(10, 21, 32, 0.75) 50%,
    rgba(26,129,154,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: calc(var(--nav-h) + 40px) 32px 80px;
  margin: 0 auto;
  width: 100%;
  left: 0;
  right: 0;
  padding-left: max(32px, calc((100vw - 1200px) / 2));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.hero-line {
  display: block;
  color: var(--white);
  font-weight: 900;
  line-height: 1.05;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.4s; }
.hero-line:nth-child(2) { animation-delay: 0.6s; }
.hero-line:nth-child(3) { animation-delay: 0.8s; }
.hero-line-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--teal-light);
}
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.4s forwards;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal-light);
  margin-left: 2px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  z-index: 2;
  animation: bounce 2s ease infinite;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════
   ACCREDITATIONS STRIP
════════════════════════════════ */
.accreditations {
  background: var(--light);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 28px 0;
}
.accred-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  text-align: center;
  margin-bottom: 20px;
}
.accred-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.accred-item { display: flex; align-items: center; padding: 0 32px; }
.accred-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.12);
}
.accred-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.accred-whs {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: #1a1a1a;
}
.whs-check { color: var(--teal); margin-right: 2px; }
.whs-qld { font-size: 0.7rem; vertical-align: super; color: var(--teal); }
.accred-tafe {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
}
.tafe-qld { font-size: 0.8rem; font-weight: 400; color: var(--teal); }
.accred-baseline {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  line-height: 1.2;
  text-align: center;
}
.baseline-sub-text { font-size: 0.6rem; letter-spacing: 0.08em; color: var(--teal); }
.accred-standards {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.08em;
}
.accred-sub {
  font-size: 0.65rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--teal), var(--navy-mid));
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(26,129,154,0.4);
}
.badge-float-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.badge-float-text {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 4px;
}
.about-text {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.value-icon {
  width: 44px; height: 44px;
  background: rgba(26,129,154,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.value-icon svg { width: 22px; height: 22px; }
.value-item h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.value-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,129,154,0.25);
  border-color: rgba(26,129,154,0.3);
}
.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,30,45,0.9) 100%);
}
.service-img-dark {
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-large svg { width: 80px; height: 80px; }
.service-card-content { padding: 28px 28px 32px; }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(26,129,154,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card-content h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.service-card-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-list {
  margin-bottom: 20px;
}
.service-list li {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.05em;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 14px; color: var(--white); }

/* ════════════════════════════════
   WHY US
════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}
.why-item {
  padding: 36px 28px;
  border: 1px solid rgba(26,129,154,0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  background: var(--white);
}
.why-item:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(26,129,154,0.12);
  transform: translateY(-4px);
}
.why-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}
.why-item h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.why-item p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ════════════════════════════════
   PROJECTS
════════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 56px;
}
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.project-card-large img { height: 440px; }
.project-card-large { grid-row: span 2; }
.project-card:hover img { transform: scale(1.05); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,21,32,0.95) 0%, rgba(10,21,32,0.3) 60%, transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(8px);
  transition: transform var(--transition);
}
.project-card:hover .project-overlay { transform: translateY(0); }
.project-tag {
  display: inline-block;
  background: rgba(26,129,154,0.85);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  width: fit-content;
}
.project-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.project-overlay p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-light);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.project-card:hover .project-link {
  opacity: 1;
  transform: translateY(0);
}
.projects-cta {
  text-align: center;
  margin-top: 52px;
}

/* ════════════════════════════════
   TEAM
════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 60px;
}
.team-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-avatar { position: relative; height: 160px; }
.avatar-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-placeholder svg { width: 80px; height: 80px; }
.team-info { padding: 20px; }
.team-info h3 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.team-role {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 10px;
}
.team-bio { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

.team-image-full {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.team-image-full img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top;
}
.team-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,21,32,0.85), transparent);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  padding: 20px;
  text-align: center;
}

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-top: 52px;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  flex: 0 0 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.testimonial-stars {
  color: #F5A623;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
blockquote p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
}
.testimonial-author span {
  color: var(--teal-light);
  font-size: 0.82rem;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.dot.active {
  background: var(--teal-light);
  transform: scale(1.3);
}

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-intro {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(26,129,154,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-detail-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-detail-item a,
.contact-detail-item span { color: var(--text-mid); font-size: 0.95rem; }
.contact-detail-item a:hover { color: var(--teal); }
.contact-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(26,129,154,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.form-group label span { color: var(--teal); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,129,154,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  background: rgba(26,129,154,0.08);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 600;
}
.form-success.show { display: flex; }
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--dark); }
.footer-top { padding: 72px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-logo-svg { width: 44px; height: 38px; }
.footer-logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-logo-text strong { font-weight: 800; color: var(--teal-light); }
.footer-tagline {
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
}
.footer-about {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--teal-light); }
.footer-contact-col p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-contact-col a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-contact-col a:hover { color: var(--teal-light); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,129,154,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,129,154,0.5); }
.back-to-top svg { width: 20px; height: 20px; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  .about-grid { gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; }
  .about-badge-float { right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card-large { grid-row: span 1; }
  .project-card-large img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  .hero-content { padding-left: 24px; padding-right: 24px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .accred-logos { flex-direction: column; gap: 16px; }
  .accred-divider { width: 40px; height: 1px; }
  .testimonial-card { padding: 28px; }
  blockquote p { font-size: 0.95rem; }
}

/* ════════════════════════════════
   SUBPAGE & LEGAL STYLES
════════════════════════════════ */
.subpage-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.subpage-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.subpage-subtitle {
  color: var(--teal-light);
  font-size: 1.05rem;
  max-width: 700px;
}
.legal-container {
  max-width: 900px;
}
.legal-card {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}
.legal-card h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light);
}
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}
.legal-card ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.legal-card ul li {
  list-style: disc;
  color: var(--text-mid);
  margin-bottom: 8px;
  line-height: 1.7;
}
.legal-card code {
  background: var(--light);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--navy-mid);
}
.contact-box-legal {
  background: #f0f7f9;
  border-left: 4px solid var(--teal);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 16px;
}
.contact-box-legal p { margin-bottom: 6px; }
.contact-box-legal a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; }

/* ════════════════════════════════
   ASBESTOS & PRODUCT STYLES
════════════════════════════════ */
.asbestos-hero {
  padding: 160px 0 90px;
  background: linear-gradient(135deg, rgba(10,21,32,0.95), rgba(13,59,92,0.92)), url('../images/hero.jpg') center/cover;
  color: var(--white);
  text-align: center;
}
.asbestos-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  max-width: 950px;
  margin: 16px auto 20px;
}
.asbestos-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 750px;
  margin: 0 auto 36px;
}
.asbestos-hero .hero-actions {
  justify-content: center;
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.asbestos-trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-badge-item {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-light);
  background: rgba(26,129,154,0.18);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(26,129,154,0.3);
}

.service-img-asbestos {
  background: linear-gradient(135deg, #0D3B5C, #1A819A);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
}
.service-tag-badge {
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ── Product Grid ── */
.bg-light { background: #f8fafb; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card.featured-product {
  border: 2px solid var(--teal);
  box-shadow: 0 8px 32px rgba(26,129,154,0.15);
}
.product-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--navy-mid);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-badge-featured {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card-header h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.product-category {
  font-size: 0.82rem;
  color: var(--teal-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.product-price {
  margin: 12px 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light);
}
.price-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.price-tax {
  font-size: 0.78rem;
  color: var(--text-mid);
}
.product-features {
  margin-bottom: 28px;
  flex-grow: 1;
}
.product-features li {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.5;
}
.product-buy-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* ── Calculator / Booking Section ── */
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.calc-guarantee-box {
  background: #f0f7f9;
  border-left: 4px solid var(--teal);
  padding: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 24px;
}
.calc-guarantee-box h4 {
  color: var(--navy);
  margin-bottom: 12px;
}
.calc-guarantee-box ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.calc-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* ── FAQ Section ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.faq-item {
  background: var(--dark-card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.faq-item h4 {
  color: var(--teal-light);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.faq-item p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .calc-wrapper { grid-template-columns: 1fr; }
  .legal-card { padding: 32px 24px; }
  .calc-form-container { padding: 28px 20px; }
}

/* ================================================
   COMPLIANCE SHIELD™ — Section Styles
   ================================================ */

/* Nav highlight dot for Compliance Shield link */
.nav-highlight {
  position: relative;
}
.nav-highlight::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -6px;
  width: 6px;
  height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
}
@keyframes shieldPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Shield Section */
.shield-section {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #0A1520 0%, #0D2035 100%);
  position: relative;
  overflow: hidden;
}
.shield-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26,129,154,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.shield-section .section-label {
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-head);
  text-align: center;
  margin-bottom: 12px;
}
.shield-section .section-title {
  text-align: center;
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-weight: 800;
}
.shield-section .section-title span {
  background: linear-gradient(90deg, var(--teal-light), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shield-section .section-sub {
  text-align: center;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Shield Grid — 4 pillar cards */
.shield-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.shield-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(42,173,200,0.2);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.shield-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.shield-card:hover {
  transform: translateY(-6px);
  border-color: rgba(42,173,200,0.5);
  box-shadow: 0 20px 60px rgba(26,129,154,0.2);
}
.shield-card:hover::before {
  opacity: 1;
}
.shield-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26,129,154,0.25), rgba(26,153,220,0.15));
  border: 1px solid rgba(42,173,200,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.pillar-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(42,173,200,0.08);
  line-height: 1;
  font-family: var(--font-head);
  pointer-events: none;
}
.shield-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 8px;
}
.shield-card > p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.shield-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shield-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.83rem;
  line-height: 1.45;
}
.shield-card-list li::before {
  content: '✓';
  color: var(--teal-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Shield CTA banner */
.shield-banner {
  background: linear-gradient(135deg, rgba(26,129,154,0.18), rgba(26,153,220,0.12));
  border: 1px solid rgba(42,173,200,0.25);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.shield-banner-text h3 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.shield-banner-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 520px;
}
.shield-banner .btn {
  flex-shrink: 0;
}

/* ================================================
   RISK CHECKER WIDGET — Section Styles
   ================================================ */

.risk-checker-section {
  padding: 88px 0;
  background: #0A1520;
  position: relative;
}
.risk-checker-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(26,129,154,0.09) 0%, transparent 60%);
  pointer-events: none;
}

.checker-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .checker-container { grid-template-columns: 1fr; }
}

/* Left: intro text */
.checker-intro .section-label {
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: 12px;
}
.checker-intro h2 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.checker-intro h2 span {
  background: linear-gradient(90deg, var(--teal-light), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.checker-intro p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 0.97rem;
}
.checker-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.checker-trust-badges span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.86rem;
}
.checker-trust-badges span::before {
  content: '';
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right: the step card */
.checker-steps-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(42,173,200,0.2);
  border-radius: 20px;
  padding: 40px 36px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.checker-steps-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--teal));
  background-size: 200% auto;
  animation: shimmerBar 3s linear infinite;
}
@keyframes shimmerBar {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.checker-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.checker-progress-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: all 0.4s ease;
}
.checker-progress-dot.active {
  background: var(--teal-light);
  transform: scale(1.2);
}
.checker-progress-dot.done {
  background: var(--teal);
}
.checker-progress-label {
  margin-left: auto;
  color: var(--text-light);
  font-size: 0.8rem;
}

/* Steps */
.checker-step {
  display: none;
  animation: fadeInStep 0.4s ease;
}
.checker-step.active {
  display: block;
}
@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.checker-step h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.checker-step .step-sub {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.option-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pill-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  text-align: left;
  cursor: pointer;
  width: 100%;
}
.pill-btn:hover {
  background: rgba(42,173,200,0.1);
  border-color: rgba(42,173,200,0.4);
  color: var(--white);
}
.pill-btn.selected {
  background: rgba(26,129,154,0.2);
  border-color: var(--teal-light);
  color: var(--white);
}
.pill-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Result card */
.checker-result-card {
  display: none;
  animation: fadeInStep 0.5s ease;
}
.checker-result-card.visible {
  display: block;
}
.result-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.risk-meter {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.risk-badge.high {
  background: rgba(220,53,69,0.15);
  border: 1px solid rgba(220,53,69,0.5);
  color: #ff6b6b;
}
.risk-badge.medium {
  background: rgba(255,140,0,0.15);
  border: 1px solid rgba(255,140,0,0.5);
  color: #ffaa44;
}
.risk-badge.low {
  background: rgba(0,180,100,0.12);
  border: 1px solid rgba(0,180,100,0.4);
  color: #2ecc71;
}
.result-title-text {
  flex: 1;
}
.result-title-text h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.result-title-text p {
  color: var(--text-light);
  font-size: 0.83rem;
  line-height: 1.5;
}
.result-body { margin-bottom: 20px; }
.result-body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  line-height: 1.65;
}
.result-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 14px;
}
.check-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-row span:last-child {
  color: rgba(255,255,255,0.7);
  font-size: 0.84rem;
  line-height: 1.45;
}
.result-action-box {
  background: linear-gradient(135deg, rgba(26,129,154,0.2), rgba(26,153,220,0.12));
  border: 1px solid rgba(42,173,200,0.3);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.result-action-box p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.5;
  flex: 1;
}
.result-action-box .btn-sm {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 0.88rem;
}
.reset-checker-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  cursor: pointer;
  display: block;
  margin-top: 12px;
  text-align: center;
  width: 100%;
  transition: color 0.2s ease;
}
.reset-checker-btn:hover { color: var(--teal-light); }

/* Responsive shield grid */
@media (max-width: 1100px) {
  .shield-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .shield-grid { grid-template-columns: 1fr; }
  .shield-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .checker-steps-card { padding: 28px 20px; }
}



/* ==========================================================================
   COMPLIANCE SHIELD™ REVIEW BANNER
   ========================================================================== */
.shield-review-banner {
  background: linear-gradient(135deg, #0a2e1e 0%, #0D3B5C 100%);
  border-top: 3px solid #c49342;
  padding: 48px 0;
}

.shield-review-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.shield-review-tag {
  display: inline-block;
  background: rgba(196,147,66,0.15);
  color: #c49342;
  border: 1px solid rgba(196,147,66,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.shield-review-text h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  max-width: 560px;
}

.shield-review-text p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

.shield-review-action {
  flex-shrink: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.shield-review-price {
  font-size: 36px;
  font-weight: 900;
  color: #c49342;
  line-height: 1;
}

.shield-review-price span {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.shield-review-action small {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

@media (max-width: 768px) {
  .shield-review-inner {
    flex-direction: column;
    text-align: center;
  }
  .shield-review-text h3 { max-width: 100%; font-size: 18px; }
  .shield-review-text p  { max-width: 100%; }
}

/* ── Category & Subpage Helper Classes (Clean Strict CSS) ── */
.hero-subpage { min-height: 50vh; padding-top: 120px; }
.hero-subpage-sm { min-height: 45vh; padding-top: 120px; }
.hero-subpage-md { min-height: 55vh; padding-top: 120px; }
.hero-subpage-lg { min-height: 60vh; padding-top: 120px; }

.hero-bg-hero { background-image: url('../images/hero.jpg'); }
.hero-bg-commercial { background-image: url('../images/service-commercial.jpg'); }
.hero-bg-residential { background-image: url('../images/service-residential.jpg'); }
.hero-bg-project { background-image: url('../images/project-1.jpg'); }
.hero-bg-team { background-image: url('../images/about-team.jpg'); }

.portal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; margin-top: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.agents-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }

.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.my-24 { margin: 24px 0; }
.text-center { text-align: center; }

.btn-block { width: 100%; justify-content: center; font-size: 0.85rem; }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.nav-dot-cyan { background: #1A819A; }
.badge-new-app { 
  display: inline-block;
  padding: 4px 10px;
  background: rgba(26, 129, 154, 0.15);
  color: #1A819A;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-cost { background: #1A819A; color: #fff; }
.card-new-app { border: 1px solid rgba(26, 129, 154, 0.3); }
.icon-wrap-new-app { background: rgba(26, 129, 154, 0.1); }
.icon-stroke-cyan { stroke: #1A819A; }

.agent-card-light { 
  background: #ffffff; 
  border: 1px solid #cbd5e1; 
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.agent-card-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.agent-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #12607A;
  background: #e0f2fe;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.agent-card-title { color: #002233; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.agent-card-desc { font-size: 0.88rem; color: #334155; line-height: 1.5; }

.testimonial-card-white { background: #ffffff; padding: 32px; border-radius: 12px; box-shadow: var(--shadow); }
.testimonial-stars-gold { color: #f59e0b; margin-bottom: 12px; }
.testimonial-quote { font-style: italic; color: #334155; margin-bottom: 16px; }
.testimonial-author-flex { display: flex; align-items: center; gap: 12px; }
.author-avatar-teal { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.author-avatar-navy { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-mid); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.author-avatar-dark { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-dark); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.author-avatar-black { width: 44px; height: 44px; border-radius: 50%; background: #0f172a; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.author-role { color: #64748b; }

.ai-chip-container { max-width: 900px; margin: 24px auto 16px; text-align: center; }
.ai-chat-card-wrap { max-width: 900px; margin: 0 auto; }
.ai-header-flex { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
.ai-header-left { display: flex; align-items: center; gap: 10px; }
.ai-pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #1A819A; }
.ai-header-title { color: #ffffff; font-family: 'Plus Jakarta Sans', sans-serif; }
.ai-header-status { font-size: 0.75rem; color: #94a3b8; font-family: -apple-system, sans-serif; font-weight: 600; letter-spacing: 0.05em; }

/* ── Interactive Video Feature & Showcase Grid ── */
.interactive-video-feature {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 36px 0;
}
.video-feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
}
@media (max-width: 900px) {
  .video-feature-grid {
    grid-template-columns: 1fr;
  }
}
.video-feature-player-wrap {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.video-feature-player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-feature-content {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-light);
  background: rgba(26, 129, 154, 0.15);
  border: 1px solid rgba(42, 173, 200, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
}
.video-feature-title {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.video-feature-desc {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.video-chapter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.video-chapter-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.video-chapter-item:hover, .video-chapter-item.active {
  background: rgba(26, 129, 154, 0.12);
  border-color: rgba(42, 173, 200, 0.4);
}
.chapter-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal-light);
  background: rgba(26, 129, 154, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}
.chapter-info strong {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
  margin-bottom: 2px;
}
.chapter-info span {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Video Showcase Grid & Interactive Tabs */
.video-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 32px 0 24px;
}
.vtab-btn {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.vtab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.vtab-btn.active {
  background: var(--teal);
  border-color: var(--teal-light);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(26, 129, 154, 0.3);
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.video-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 129, 154, 0.4);
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.video-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 8px;
}
.video-card-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.video-card-desc {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.doc-proof-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.doc-proof-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 1px solid #e2e8f0;
}
.doc-proof-body {
  padding: 20px;
}

/* ══════════════════════════════════════════════════
   INTERACTIVE BEFORE & AFTER COMPARISON SYSTEM
   ══════════════════════════════════════════════════ */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 36px;
}
.before-after-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.before-after-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 129, 154, 0.4);
}
.ba-media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: #000;
  min-height: 240px;
}
.ba-pane {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.ba-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-badge-before {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(239, 68, 68, 0.9);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.ba-badge-after {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(16, 185, 129, 0.9);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.ba-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 3;
  box-shadow: 0 0 8px rgba(0,0,0,0.8);
}
.ba-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ba-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 6px;
}
.ba-card-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.ba-metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ba-metric {
  font-size: 0.78rem;
  color: #94a3b8;
}
.ba-metric strong {
  color: #ffffff;
}
.ba-points {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 18px;
  padding-left: 0;
  list-style: none;
}
.ba-points li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}
.ba-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-weight: bold;
}

/* ══════════════════════════════════════════════════
   COMMERCIAL SEARCH, KNOWLEDGE & CASE STUDY STYLES
   ══════════════════════════════════════════════════ */

/* Breadcrumbs */
.breadcrumbs-nav {
  padding: 16px 0;
  background: rgba(10, 21, 32, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}
.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumbs-item a {
  color: var(--teal-light);
  transition: color 0.2s ease;
}
.breadcrumbs-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.breadcrumbs-separator {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}
.breadcrumbs-item.current {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Service & Subpage Heroes */
.commercial-hero {
  position: relative;
  background: linear-gradient(135deg, #07131e 0%, #0d283e 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}
.commercial-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 173, 200, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
.commercial-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 129, 154, 0.18);
  border: 1px solid rgba(42, 173, 200, 0.4);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.commercial-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.18;
}
.commercial-hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 760px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Statutory Callout Box */
.statutory-callout {
  background: rgba(13, 59, 92, 0.25);
  border-left: 4px solid var(--teal-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
  margin: 32px 0;
  position: relative;
}
.statutory-callout-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.statutory-callout p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.statutory-callout.dark p {
  color: rgba(255, 255, 255, 0.85);
}

/* Key Takeaways & Definition Boxes for AI Overviews */
.key-takeaway-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin: 32px 0;
}
.key-takeaway-title {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.key-takeaway-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.key-takeaway-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}
.key-takeaway-icon {
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Suburb / Regional Coverage Matrix */
.coverage-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.coverage-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 18px;
  transition: all 0.2s ease;
}
.coverage-card:hover {
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.coverage-region-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.coverage-suburbs-list {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
}

/* Rectification & Comparison Tables */
.rectification-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.rectification-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  background: #ffffff;
}
.rectification-table th {
  background: var(--dark-card);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 2px solid var(--teal);
}
.rectification-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  vertical-align: top;
}
.rectification-table tr:nth-child(even) td {
  background: #f8fafc;
}
.rectification-table tr:hover td {
  background: rgba(42, 173, 200, 0.05);
}

/* Knowledge Article Layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  margin-top: 48px;
}
.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2d3748;
}
.article-body h2 {
  color: var(--navy);
  font-size: 1.6rem;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}
.article-body h3 {
  color: var(--navy-mid);
  font-size: 1.25rem;
  margin: 24px 0 12px;
}
.article-body p {
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  margin: 0 0 24px 24px;
}
.article-body li {
  margin-bottom: 8px;
}
.article-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.sidebar-widget-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-links a {
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: block;
}
.sidebar-links a:hover {
  color: var(--navy);
  transform: translateX(4px);
}

/* Case Study Evidence Layout */
.case-study-hero {
  background: linear-gradient(135deg, #091a29 0%, #002233 100%);
  padding: 130px 0 70px;
  color: #ffffff;
}
.case-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 32px;
}
.case-meta-item {
  display: flex;
  flex-direction: column;
}
.case-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  margin-bottom: 4px;
}
.case-meta-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}
.evidence-section {
  padding: 64px 0;
}
.evidence-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.evidence-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* FAQ Accordions */
.faq-wrap {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] {
  border-color: var(--teal-light);
  box-shadow: 0 4px 16px rgba(42, 173, 200, 0.08);
}
.faq-summary {
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  -webkit-user-select: none;
  user-select: none;
}
.faq-summary::-webkit-details-marker {
  display: none;
}
.faq-summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-summary::after {
  content: '−';
  color: var(--teal-dark);
}
.faq-content {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
  border-top: 1px solid #f1f5f9;
  margin-top: 4px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
  }
}


/* ── Dropdown Menu Support ── */
.nav-item.dropdown {
  position: relative;
}
.nav-item.dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  margin-left: 2px;
  opacity: 0.7;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: rgba(10, 21, 32, 0.98);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1100;
}
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block !important;
  padding: 10px 18px !important;
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: background 0.2s ease, color 0.2s ease !important;
  border-radius: 0 !important;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: rgba(26, 129, 154, 0.3) !important;
  color: var(--teal-light) !important;
}
