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

:root {
  --bg-primary: #f6fbff;
  --bg-secondary: #eef6fb;
  --surface: #ffffff;
  --surface-soft: #f9fcff;
  --text-primary: #101b22;
  --text-secondary: #526575;
  --accent-primary: #156fbd;
  --accent-secondary: #54b9e9;
  --accent-warm: #f4b63f;
  --gradient-accent: linear-gradient(135deg, #1b9bd8 0%, #156fbd 100%);
  --gradient-soft: linear-gradient(145deg, #ffffff 0%, #eef8ff 48%, #dceeff 100%);
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(21, 111, 189, 0.14);
  --shadow-soft: 0 24px 70px rgba(16, 35, 54, 0.12);
  --border-radius-lg: 18px;
  --border-radius-xl: 28px;
  --spacing-section: clamp(4rem, 10vw, 8rem);
  --container-width: 1400px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.fa-solid,
.fa-brands {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fa-solid {
  font-family: "Fa Solid 900";
}

.fa-brands {
  font-family: "Fa Brands 400";
}

.fa-check-circle::before { content: "\f058"; }
.fa-arrow-right::before { content: "\f061"; }
.fa-phone::before { content: "\f095"; }
.fa-house::before { content: "\f015"; }
.fa-building::before { content: "\f1ad"; }
.fa-truck::before { content: "\f0d1"; }
.fa-water::before { content: "\f773"; }
.fa-solar-panel::before { content: "\f5ba"; }
.fa-leaf::before { content: "\f06c"; }
.fa-star::before { content: "\f005"; }
.fa-facebook::before { content: "\f39e"; }
.fa-instagram::before { content: "\f16d"; }
.fa-x-twitter::before { content: "\e61f"; }
.fa-tiktok::before { content: "\e07b"; }
.fa-threads::before { content: "\e618"; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==================================
   HEADER & NAV
   ================================== */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 247, 253, 0.9));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(21, 111, 189, 0.12);
  transition: all 0.3s ease;
}

/* ==================================
   HEADER & NAVBAR WITH SCROLL SQUEEZE
   ================================== */
.navbar-2 {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(166, 207, 232, 0.35) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 20px rgba(18, 52, 80, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 1000 !important;
  padding: 12px 0 !important;
}

.navbar-2 .nav-block {
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  transition: all 0.4s ease !important;
}

@media (min-width: 992px) {
  /* Squeezed state on desktop when scrolled */
  .navbar-2.scrolled {
    top: 20px !important;
    width: 95% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 20px !important;
    border: 1px solid rgba(166, 207, 232, 0.55) !important;
    box-shadow: var(--shadow-soft) !important;
    background: rgba(255, 255, 255, 0.94) !important;
    padding: 10px 0 !important;
  }
  
  .navbar-2.scrolled .nav-block {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 991px) {
  .navbar-2 {
    padding: 10px 0 !important;
  }
  
  .navbar-2 .nav-block {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Squeezed state on mobile when scrolled */
  .navbar-2.scrolled {
    top: 10px !important;
    width: calc(100% - 28px) !important;
    left: 14px !important;
    right: 14px !important;
    margin: 0 auto !important;
    border-radius: 16px !important;
    border: 1px solid rgba(166, 207, 232, 0.4) !important;
    box-shadow: var(--shadow-soft) !important;
    padding: 8px 0 !important;
  }
  
  .navbar-2.scrolled .nav-block {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.modern-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.modern-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #102236;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modern-logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: #172b3a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--accent-primary);
}

.nav-cta {
  background: var(--gradient-accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
}

/* ==================================
   HERO SECTION
   ================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  background:
    radial-gradient(circle at 82% 34%, rgba(84, 185, 233, 0.22), transparent 30rem),
    radial-gradient(circle at 12% 24%, rgba(26, 168, 255, 0.18), transparent 26rem),
    linear-gradient(135deg, #082f5f 0%, #0b4f9f 48%, #102236 100%);
}

/* Three-row project gallery behind the home hero. */
.hero-image-marquee {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 14px);
  padding: clamp(8px, 1vw, 14px) 0;
  opacity: 0.44;
  pointer-events: none;
  overflow: hidden;
}

.hero-image-marquee::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 47, 95, 0.76), rgba(8, 47, 95, 0.3) 48%, rgba(16, 34, 54, 0.62)),
    linear-gradient(180deg, rgba(8, 47, 95, 0.3), rgba(16, 34, 54, 0.52));
}

.hero-image-row {
  min-height: 0;
  flex: 1 1 0;
  overflow: hidden;
}

.hero-image-track,
.hero-image-group {
  display: flex;
  height: 100%;
  gap: clamp(8px, 1vw, 14px);
}

.hero-image-track {
  width: max-content;
  gap: 0;
  animation: hero-image-scroll 58s linear infinite;
  will-change: transform;
}

.hero-image-group {
  flex: none;
  padding-right: clamp(8px, 1vw, 14px);
}

.hero-image-row:nth-child(2) .hero-image-track {
  animation-direction: reverse;
  animation-duration: 66s;
}

.hero-image-row:nth-child(3) .hero-image-track {
  animation-duration: 62s;
}

.hero-image-group img {
  width: clamp(190px, 22vw, 330px);
  height: 100%;
  flex: none;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

@keyframes hero-image-scroll {
  to { transform: translateX(-50%); }
}

.hero-section > .hero-glow {
  z-index: 1;
}

.hero-section > .hero-content {
  z-index: 2;
}

@media (max-width: 767px) {
  .hero-image-marquee {
    opacity: 0.38;
  }

  .hero-image-group img {
    width: clamp(150px, 54vw, 230px);
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-track {
    animation-play-state: paused;
  }
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(84, 185, 233, 0.22) 0%, rgba(84, 185, 233, 0) 64%);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  text-align: left;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 4.5vw, 4.5rem);
}

.hero-copy {
  max-width: 720px;
}

.hero-pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-title span {
  display: block;
  color: #ffffff;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-inline: 0;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  max-width: 680px;
  margin: 0 0 2rem;
  padding: 0;
  color: #fff;
  list-style: none;
  font-weight: 700;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-benefits i {
  color: #ffd15c;
  flex: 0 0 auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.btn-primary {
  background: #ffd15c;
  color: #102236;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: #ffdc7d;
}

.quote-nav-button,
.navbar-2 .quote-nav-button {
  background: #f4b63f !important;
  border-color: #f4b63f !important;
  color: #102236 !important;
  box-shadow: 0 8px 22px rgba(180, 116, 0, 0.22) !important;
}

.quote-nav-button .text-button-2 {
  color: #102236 !important;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.7;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--accent-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-action {
  margin-top: 2.25rem;
  text-align: center;
}

.outline-link,
.btn-warm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.outline-link {
  border: 1px solid rgba(21, 111, 189, 0.25);
  padding: 0.9rem 1.25rem;
  color: var(--accent-primary);
  background: #fff;
}

.btn-warm {
  margin-top: 1.75rem;
  padding: 1rem 1.4rem;
  color: #102236;
  background: #ffd15c;
  box-shadow: 0 14px 32px rgba(180, 116, 0, 0.18);
}

.outline-link:hover,
.btn-warm:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16, 35, 54, 0.12);
}

/* Homepage proof, process, trust, service areas, and FAQ */
.work-section,
.process-section,
.trust-section,
.areas-section,
.faq-section {
  padding: var(--spacing-section) 0;
}

.work-section {
  background: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 1rem;
}

.work-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
  background: #dceeff;
  box-shadow: 0 18px 46px rgba(16, 35, 54, 0.12);
}

.work-card-tall {
  grid-row: span 2;
}

.work-card-wide {
  grid-column: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-card:hover img {
  transform: scale(1.035);
}

.work-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.25rem 1.1rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(5, 24, 39, 0.9));
}

.work-card figcaption strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
}

.work-card figcaption span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.process-section {
  background: linear-gradient(180deg, #eef7fc, #f8fcff);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-height: 230px;
  padding: 1.75rem;
  border: 1px solid rgba(21, 111, 189, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 35, 54, 0.07);
}

.process-grid li > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 1.4rem;
  place-items: center;
  border-radius: 50%;
  color: #102236;
  background: #ffd15c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.process-grid p,
.trust-copy p,
.areas-copy p,
.faq-intro p {
  color: var(--text-secondary);
}

.trust-section {
  color: #fff;
  background: linear-gradient(135deg, #082f5f, #0b4f9f 55%, #102236);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.trust-copy .eyebrow {
  color: #ffd15c;
}

.trust-copy .section-title {
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 3.6rem);
}

.trust-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 118px;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
}

.trust-card > i {
  width: 42px;
  color: #ffd15c;
  font-size: 2rem;
  text-align: center;
  flex: 0 0 auto;
}

.trust-card-logo img {
  width: 66px;
  height: 42px;
  padding: 0.35rem;
  object-fit: contain;
  border-radius: 7px;
  background: #fff;
  flex: 0 0 auto;
}

.trust-card strong,
.trust-card span {
  display: block;
}

.trust-card strong {
  margin-bottom: 0.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.trust-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.4;
}

.areas-section {
  background: #fff;
}

.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.areas-map {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(21, 111, 189, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(28deg, transparent 48%, rgba(21, 111, 189, 0.08) 49%, rgba(21, 111, 189, 0.08) 51%, transparent 52%),
    linear-gradient(115deg, transparent 48%, rgba(21, 111, 189, 0.07) 49%, rgba(21, 111, 189, 0.07) 51%, transparent 52%),
    #eef7fc;
  box-shadow: 0 24px 70px rgba(16, 35, 54, 0.1);
}

.areas-map::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -27%;
  left: -10%;
  height: 44%;
  border-radius: 50% 50% 0 0;
  background: #c7e8f8;
  transform: rotate(-4deg);
}

.map-water {
  position: absolute;
  right: 8%;
  bottom: 8%;
  z-index: 1;
  color: #397da0;
  font-size: 0.72rem;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-dot {
  position: absolute;
  z-index: 2;
  padding: 0.38rem 0.62rem 0.38rem 1.45rem;
  border: 1px solid rgba(21, 111, 189, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(16, 35, 54, 0.09);
  color: #18364d;
  font-size: 0.72rem;
  font-weight: 800;
}

.map-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0.58rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-primary);
  transform: translateY(-50%);
}

.map-dot-toronto { left: 46%; top: 68%; }
.map-dot-etobicoke { left: 22%; top: 66%; }
.map-dot-north-york { left: 43%; top: 46%; }
.map-dot-scarborough { right: 27%; top: 55%; }
.map-dot-east-york { right: 38%; top: 64%; }
.map-dot-mississauga { left: 7%; top: 75%; }
.map-dot-vaughan { left: 32%; top: 27%; }
.map-dot-richmond { left: 54%; top: 18%; }
.map-dot-markham { right: 32%; top: 34%; }
.map-dot-pickering { right: 9%; top: 50%; }
.map-dot-ajax { right: 3%; top: 41%; }
.map-dot-whitby { right: 7%; top: 31%; }
.map-dot-oshawa { right: 12%; top: 20%; }
.map-dot-bowmanville { right: 3%; top: 9%; }

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.area-links a,
.area-links span {
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(21, 111, 189, 0.14);
  border-radius: 999px;
  color: #174c75;
  background: #f3faff;
  font-weight: 700;
  font-size: 0.88rem;
}

.area-links a:hover {
  border-color: var(--accent-primary);
  background: #e8f5fd;
}

.areas-note {
  padding-top: 1rem;
  border-top: 1px solid rgba(21, 111, 189, 0.12);
  font-size: 0.92rem;
}

.areas-note a {
  color: var(--accent-primary);
  font-weight: 800;
}

.faq-section {
  background: linear-gradient(180deg, #f6fbff, #eef7fc);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro .outline-link {
  margin-top: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid rgba(21, 111, 189, 0.13);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 35, 54, 0.06);
}

.faq-list summary {
  position: relative;
  padding: 1.25rem 3.5rem 1.25rem 1.3rem;
  cursor: pointer;
  list-style: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 1.25rem;
  color: var(--accent-primary);
  font-size: 1.55rem;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: '–';
}

.faq-list details p {
  padding: 0 1.3rem 1.3rem;
  color: var(--text-secondary);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(21, 111, 189, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.hero-video-panel {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  width: min(100%, 520px);
  aspect-ratio: 3 / 4;
  height: auto;
  justify-self: end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-video-wash {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(21, 111, 189, 0.22));
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-badge {
  background: rgba(234, 246, 255, 0.94);
  border-radius: 999px;
  color: #082f5f;
  width: clamp(132px, 12vw, 184px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  position: absolute;
  right: 8%;
  box-shadow: 0 20px 54px rgba(16, 27, 34, 0.18);
}

.hero-badge strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .9;
}

.hero-badge span {
  max-width: 110px;
  font-size: clamp(.76rem, 1vw, .95rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero-badge-top {
  top: 7%;
}

.hero-badge-bottom {
  right: 14%;
  bottom: 7%;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================================
   SERVICES SECTION
   ================================== */
.services-section {
  padding: var(--spacing-section) 0;
  background: var(--surface);
  border-radius: var(--border-radius-xl);
  margin: 0 1rem;
  width: calc(100% - 2rem);
  box-shadow: inset 0 1px 0 rgba(21, 111, 189, 0.08);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.service-card {
  background: var(--surface-soft);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(16, 35, 54, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(21, 111, 189, 0.28);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-content {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--glass-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  border: 1px solid var(--glass-border);
}

.service-card:hover .service-icon {
  background: #fff7e1;
  border-color: rgba(244, 182, 63, 0.38);
  color: #a56900;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-primary);
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-link:hover {
  gap: 1rem;
}

/* ==================================
   REVIEWS CAROUSEL
   ================================== */
.reviews-section {
  padding: var(--spacing-section) 0;
  overflow: hidden;
  width: 100%;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 182, 63, 0.12), transparent 25rem),
    linear-gradient(180deg, #f6fbff 0%, #eef7fc 100%);
}

.review-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.review-carousel::-webkit-scrollbar {
  display: none;
}

.review-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0 2rem 1rem;
}

.review-card {
  flex: 0 0 min(420px, 82vw);
  min-height: 320px;
  scroll-snap-align: center;
  background: #fff;
  border: 1px solid rgba(21, 111, 189, 0.12);
  border-radius: 22px;
  padding: 2.25rem;
  box-shadow: 0 24px 70px rgba(16, 35, 54, 0.11);
}

.review-stars {
  color: var(--accent-warm);
  display: flex;
  gap: 0.3rem;
  margin-bottom: 2rem;
}

.review-card p {
  color: var(--text-secondary);
  font-size: 1.14rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.review-card strong {
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.04rem;
}

/* ==================================
   GALLERY MARQUEE
   ================================== */
.gallery-section {
  padding: var(--spacing-section) 0;
  overflow: hidden;
  width: 100%;
  background: #fff;
}

.marquee-container {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-container:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(calc(-50% - 1rem));
  }
}

.gallery-item {
  width: 400px;
  height: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 42px rgba(16, 35, 54, 0.14);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ==================================
   FOOTER
   ================================== */
.modern-footer {
  background: linear-gradient(145deg, #0d283f 0%, #071924 100%);
  padding: 6rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
  border-radius: 0;
  width: 100%;
  box-shadow: none;
  
  /* Zoom Push-up Animation Base State */
  opacity: 0;
  transform: translateY(100px) scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.1s ease-out;
}

.modern-footer.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.footer-areas {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.footer-areas h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: #fff;
}

.footer-areas p {
  color: rgba(232, 244, 255, 0.72);
  line-height: 1.9;
}

.footer-areas a {
  color: rgba(232, 244, 255, 0.88);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-areas a:hover {
  color: #fff;
}

.footer-areas span {
  color: rgba(232, 244, 255, 0.36);
  margin: 0 0.45rem;
}

.footer-areas .footer-area-name {
  color: rgba(232, 244, 255, 0.88);
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.15fr 1.25fr 1.35fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}

.footer-logo img {
  width: 300px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  color: rgba(232, 244, 255, 0.78);
  margin-top: 1.5rem;
  max-width: 520px;
  font-size: 1.15rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-links a,
.footer-links span {
  color: rgba(232, 244, 255, 0.76);
  font-weight: 500;
  font-size: 1.08rem;
  overflow-wrap: anywhere;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-trust p {
  color: rgba(232, 244, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.55;
  margin-top: 1rem;
}

.footer-trust-assets {
  display: grid;
  gap: 1rem;
}

.footer-certificate {
  display: block;
}

.footer-certificate img {
  width: 100%;
  max-width: 230px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem;
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-badges img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(232, 244, 255, 0.72);
  font-size: 1rem;
}

.copyright a {
  color: rgba(232, 244, 255, 0.9);
  text-decoration: none;
}

.copyright a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  color: rgba(232, 244, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav-links {
    display: none;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .services-section {
    margin: 0;
    border-radius: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-areas {
    padding: 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
  }
  .review-track {
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .review-card {
    border-radius: 26px;
    min-height: 300px;
    padding: 1.75rem;
  }
}

/* Mobile-first home page refinement */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
}

.container {
  width: 100%;
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.hero-section {
  min-height: auto;
  align-items: flex-start;
  padding: 112px 0 52px;
  overflow: hidden;
}

.hero-content {
  max-width: 100%;
  text-align: left;
}

.hero-split {
  grid-template-columns: 1fr;
  gap: 34px;
}

.hero-pill {
  max-width: 100%;
  margin-bottom: 18px;
  padding: 9px 13px;
  font-size: 0.78rem;
  line-height: 1.25;
}

.hero-title {
  font-size: clamp(2.35rem, 10.8vw, 3.05rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.hero-desc {
  max-width: 34rem;
  margin-bottom: 26px;
  font-size: 1rem;
  line-height: 1.62;
}

.hero-actions {
  width: 100%;
  flex-direction: column;
  gap: 12px;
}

.hero-video-panel {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  justify-self: center;
}

.hero-badge {
  width: 118px;
}

.btn-primary,
.btn-secondary {
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 15px 18px;
  font-size: 1rem;
  text-align: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
  padding-top: 0;
  border-top: 0;
}

.stat-item {
  min-width: 0;
  border: 1px solid rgba(21, 111, 189, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 8px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(16, 35, 54, 0.08);
}

.stat-item h4 {
  font-size: clamp(1.35rem, 7vw, 1.75rem);
  line-height: 1;
}

.stat-item p {
  margin-top: 5px;
  font-size: 0.65rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.services-section,
.reviews-section,
.gallery-section {
  padding: 56px 0;
}

.services-section {
  margin: 0;
  border-radius: 0;
}

.section-header {
  margin-bottom: 28px;
  text-align: left;
}

.section-title {
  font-size: clamp(2rem, 9vw, 2.75rem);
  line-height: 1.06;
}

.services-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  padding: 0;
}

.service-card {
  border-radius: 16px;
  padding: 22px;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  font-size: 1.45rem;
}

.service-card h3 {
  font-size: 1.22rem;
}

.service-card p {
  margin-bottom: 18px;
  font-size: 0.96rem;
  line-height: 1.58;
}

.review-carousel {
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
  scroll-padding-left: 16px;
  -webkit-mask-image: none;
  mask-image: none;
}

.review-track {
  gap: 12px;
  padding: 0 0 10px;
}

.review-card {
  flex-basis: min(84vw, 340px);
  min-height: 280px;
  border-radius: 16px;
  padding: 22px;
  scroll-snap-align: start;
}

.review-stars {
  margin-bottom: 18px;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.58;
}

.gallery-section .section-header {
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 28px !important;
}

.marquee-container {
  gap: 12px;
  max-width: none;
  animation-duration: 42s;
}

.gallery-item {
  width: min(76vw, 300px);
  height: min(58vw, 225px);
  min-height: 190px;
  border-radius: 16px;
}

.modern-footer {
  padding: 54px 0 28px;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 34px;
}

.footer-logo img {
  width: min(240px, 78vw);
}

.footer-brand p,
.footer-links a,
.footer-links span {
  font-size: 1rem;
}

.footer-areas {
  border-radius: 16px;
  padding: 18px;
}

.footer-bottom {
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

@media (min-width: 480px) {
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-section {
    padding-top: 124px;
  }

  .hero-actions {
    max-width: 460px;
  }

  .services-section,
  .reviews-section,
  .gallery-section {
    padding: 68px 0;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: var(--container-width);
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-section {
    min-height: 92vh;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 76px;
  }

  .section-header {
    text-align: center;
  }

  .hero-content {
    text-align: left;
  }

  .hero-split {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
    gap: 40px;
  }

  .hero-actions {
    max-width: none;
    flex-direction: row;
    justify-content: flex-start;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
    min-width: 210px;
  }

  .hero-stats {
    max-width: 760px;
    gap: 18px;
    margin: 52px 0 0;
  }

  .stat-item {
    padding: 20px 14px;
  }

  .stat-item h4 {
    font-size: 2.35rem;
  }

  .stat-item p {
    font-size: 0.82rem;
  }

  .services-section,
  .reviews-section,
  .gallery-section {
    padding: var(--spacing-section) 0;
  }

  .services-section {
    margin: 0 1rem;
    border-radius: var(--border-radius-xl);
  }

  .section-header {
    margin-bottom: 64px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 0 32px;
  }

  .service-card {
    padding: 34px 28px;
  }

  .review-carousel {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }

  .review-track {
    gap: 24px;
    padding: 0 32px 16px;
  }

  .review-card {
    flex-basis: min(420px, 70vw);
    min-height: 320px;
    border-radius: 22px;
    padding: 36px;
    scroll-snap-align: center;
  }

  .gallery-section .section-header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .gallery-item {
    width: 360px;
    height: 270px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

@media (min-width: 1100px) {
  .hero-section {
    min-height: 100vh;
  }

  .hero-content {
    max-width: var(--container-width);
  }

  .hero-title {
    font-size: clamp(4rem, 6vw, 5.5rem);
  }

  .hero-desc {
    font-size: 1.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
  }

  .service-card {
    padding: 48px 32px;
  }

  .gallery-item {
    width: 400px;
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1.15fr 1.25fr 1.35fr;
    gap: 4rem;
  }
}

/* ==================================
   REVIEWS & INSTAGRAM FEED PAGE
   ================================== */
.reviews-page-hero {
  padding: 10rem 2rem 5rem 2rem;
  background: radial-gradient(circle at 10% 20%, rgba(21, 111, 189, 0.08), transparent 40rem),
              linear-gradient(185deg, #eef8ff 0%, #ffffff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reviews-hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.reviews-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #102236;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.reviews-subtitle {
  font-size: 1.15rem;
  color: #4a5d6e;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.reviews-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.reviews-stat-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(166, 207, 232, 0.45);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(18, 52, 80, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.reviews-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(18, 52, 80, 0.08);
}

.reviews-stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: #156fbd;
  line-height: 1;
}

.reviews-stat-stars {
  color: #ffb800;
  font-size: 1.25rem;
  display: flex;
  gap: 0.25rem;
}

.reviews-stat-label {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #102236;
}

.reviews-stat-desc {
  font-size: 0.85rem;
  color: #6a7c8d;
}

/* Instagram Feed Section */
.instagram-feed-section {
  padding: 6rem 2rem;
  background: #ffffff;
}

.section-header-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header-centered .hero-pill {
  display: inline-flex;
  margin-bottom: 1rem;
}

.section-header-centered h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #102236;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header-centered p {
  color: #5d6e7f;
  font-size: 1.05rem;
  line-height: 1.6;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-card {
  background: #ffffff;
  border: 1px solid rgba(166, 207, 232, 0.35);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(18, 52, 80, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.instagram-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(18, 52, 80, 0.08);
  border-color: rgba(21, 111, 189, 0.3);
}

.instagram-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(220, 235, 245, 0.6);
}

.instagram-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.instagram-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #156fbd, #54b9e9);
  padding: 2px;
}

.instagram-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.instagram-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.instagram-handle {
  font-weight: 700;
  font-size: 0.9rem;
  color: #102236;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.instagram-verified {
  color: #3897f0;
  font-size: 0.85rem;
}

.instagram-location {
  font-size: 0.75rem;
  color: #6a7c8d;
}

.instagram-logo-icon {
  color: #e1306c;
  font-size: 1.25rem;
}

.instagram-card-body {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background: #f0f7fc;
  cursor: pointer;
}

.instagram-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-card:hover .instagram-thumbnail {
  transform: scale(1.08);
}

.instagram-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 34, 54, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
  z-index: 2;
}

.instagram-card:hover .instagram-video-overlay {
  background: rgba(16, 34, 54, 0.3);
}

.instagram-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #156fbd;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(16, 34, 54, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-play-btn i {
  margin-left: 4px; /* Align play triangle */
}

.instagram-card:hover .instagram-play-btn {
  transform: scale(1.15);
  background: #ffffff;
  color: #102236;
  box-shadow: 0 15px 35px rgba(16, 34, 54, 0.3);
}

.instagram-card-footer {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.instagram-interactions {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: #4a5d6e;
  font-weight: 600;
}

.instagram-interactions span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.instagram-interactions i {
  font-size: 1rem;
}

.instagram-caption {
  font-size: 0.9rem;
  color: #334455;
  line-height: 1.5;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.instagram-hashtags {
  color: #156fbd;
  font-weight: 500;
}

.instagram-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #156fbd, #0c5799);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(21, 111, 189, 0.25);
  margin-top: auto;
}

.instagram-action-btn:hover {
  background: linear-gradient(135deg, #102236, #1b3754);
  box-shadow: 0 6px 20px rgba(16, 34, 54, 0.3);
  transform: translateY(-2px);
}

/* Google Reviews Grid */
.google-reviews-section {
  padding: 6rem 2rem;
  background: #f0f7fc;
  border-top: 1px solid rgba(166, 207, 232, 0.3);
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.google-review-card {
  background: #ffffff;
  border: 1px solid rgba(166, 207, 232, 0.4);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(18, 52, 80, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(18, 52, 80, 0.06);
}

.google-review-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 5rem;
  color: rgba(21, 111, 189, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.google-reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #156fbd;
  font-size: 1.1rem;
  border: 2px solid rgba(166, 207, 232, 0.4);
}

.google-reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.google-reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #102236;
}

.google-review-date {
  font-size: 0.75rem;
  color: #7a8c9d;
}

.google-review-rating {
  color: #ffb800;
  font-size: 0.95rem;
  display: flex;
  gap: 0.2rem;
}

.google-review-text {
  font-size: 0.95rem;
  color: #4a5d6e;
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}

.google-platform-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5d6e7f;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(220, 235, 245, 0.6);
  padding-top: 0.85rem;
}

.google-platform-badge img {
  width: 16px;
  height: 16px;
}

/* ==================================
   PROJECTS PAGE SLIDER CAROUSEL
   ================================== */
.projects-gallery-grid {
  display: flex !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  gap: 16px !important;
  padding-bottom: 20px !important;
  width: 100% !important;
  margin: 0 !important;
}

.projects-gallery-grid::-webkit-scrollbar {
  height: 8px !important;
  display: block !important;
}

.projects-gallery-grid::-webkit-scrollbar-track {
  background: rgba(166, 207, 232, 0.2) !important;
  border-radius: 10px !important;
}

.projects-gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(21, 111, 189, 0.4) !important;
  border-radius: 10px !important;
}

.projects-gallery-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(21, 111, 189, 0.6) !important;
}

.projects-gallery-grid .w-lightbox {
  flex: 0 0 calc(25% - 12px) !important;
  min-width: 220px !important;
  min-height: 180px !important;
  height: 180px !important;
  scroll-snap-align: start !important;
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(11, 49, 82, 0.1) !important;
  margin: 0 !important;
}

.projects-gallery-grid img {
  min-height: 100% !important;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  border-radius: 12px !important;
}

@media (max-width: 991px) {
  .projects-gallery-grid .w-lightbox {
    flex: 0 0 calc(33.333% - 11px) !important;
    min-height: 160px !important;
    height: 160px !important;
  }
}

@media (max-width: 576px) {
  .projects-gallery-grid .w-lightbox {
    flex: 0 0 calc(50% - 8px) !important;
    min-height: 140px !important;
    height: 140px !important;
  }
}

/* Final shared navigation polish: keep every page on the iShine blue system. */
:root {
  --ishine-blue-900: #082f5f;
  --ishine-blue-800: #0b4f9f;
  --ishine-blue-700: #0d66c2;
  --ishine-blue-600: #147fd1;
  --ishine-blue-500: #1aa8ff;
  --ishine-blue-050: #f6fbff;
  --ishine-ink: #102236;
  --ishine-border: #cce5f7;
  --ishine-shadow: 0 18px 46px rgba(11, 79, 159, 0.13);
}

.navbar,
.navbar-2 {
  z-index: 9999 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 8px 24px !important;
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ishine-border) !important;
  border-radius: 0 !important;
  background: linear-gradient(135deg, #ffffff 0%, var(--ishine-blue-050) 54%, #ddefff 100%) !important;
  box-shadow: 0 10px 34px rgba(11, 79, 159, 0.09) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar::before,
.navbar-2::before {
  content: "Registered, Insured & Bonded | $5M Liability";
  color: var(--ishine-blue-800);
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid #d7ecfb;
  justify-content: center;
  align-items: center;
  margin: 0 0 8px;
  padding: 0 0 7px;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  display: flex;
}

.navbar .nav-block,
.navbar-2 .nav-block {
  width: min(1320px, 100%) !important;
  min-height: 68px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.navbar .brand,
.navbar-2 .brand,
.navbar .brand.w--current,
.navbar-2 .brand.w--current {
  width: 218px;
  max-width: 218px;
  height: 68px;
  min-height: 0;
  padding: 0;
}

.navbar .brand img,
.navbar-2 .brand img,
.navbar .brand img.image-89,
.navbar-2 .brand img.image-89,
.navbar .logo,
.navbar-2 .logo,
.navbar .image-89,
.navbar-2 .image-89 {
  width: 100%;
  max-width: 210px;
  height: 100%;
  max-height: 62px;
  object-fit: contain;
  opacity: 1 !important;
  position: static;
  display: block;
}

.navbar .nav,
.navbar-2 .nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.navbar .nav-link,
.navbar-2 .nav-link,
.navbar .dropdown-toggle,
.navbar-2 .dropdown-toggle {
  color: var(--ishine-ink) !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  min-height: 42px;
  padding: 12px 11px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.navbar .text-button,
.navbar-2 .text-button,
.navbar .link-27,
.navbar-2 .link-27 {
  color: inherit !important;
  letter-spacing: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.navbar .nav-link:hover,
.navbar-2 .nav-link:hover,
.navbar .nav-link.w--current,
.navbar-2 .nav-link.w--current,
.navbar .dropdown-toggle:hover,
.navbar-2 .dropdown-toggle:hover,
.navbar .dropdown.w--open .dropdown-toggle,
.navbar-2 .dropdown.w--open .dropdown-toggle {
  opacity: 1;
  color: var(--ishine-blue-800) !important;
  background-color: #e5f4ff;
  box-shadow: inset 0 0 0 1px #bfdef4;
}

.navbar .nav-link.w--current,
.navbar-2 .nav-link.w--current {
  box-shadow: inset 0 0 0 1px #aed8f4, 0 8px 20px rgba(11, 112, 201, 0.11);
}

.navbar .dropdown-list,
.navbar-2 .dropdown-list,
.navbar .dropdown-list-block,
.navbar-2 .dropdown-list-block {
  border-radius: 14px;
  background: linear-gradient(145deg, var(--ishine-blue-900) 0%, var(--ishine-blue-800) 100%) !important;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(8, 47, 95, 0.22);
}

.navbar .dropdown-list.w--open,
.navbar-2 .dropdown-list.w--open {
  min-width: 276px;
  margin-top: 12px;
  left: -34px;
}

.navbar .dropdown-link,
.navbar-2 .dropdown-link {
  color: #f7fbff !important;
  letter-spacing: .045em;
  border-radius: 9px;
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.15;
}

.navbar .dropdown-link:hover,
.navbar-2 .dropdown-link:hover,
.navbar .dropdown-link.w--current,
.navbar-2 .dropdown-link.w--current {
  opacity: 1;
  color: #fff !important;
  background-color: rgba(26, 168, 255, 0.2);
  transform: translateX(2px);
}

.navbar .nav-button-2,
.navbar-2 .nav-button-2,
.navbar .nav-button,
.navbar-2 .nav-button {
  background: linear-gradient(135deg, var(--ishine-blue-500) 0%, var(--ishine-blue-700) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(11, 112, 201, 0.18);
}

.navbar .nav-button-2.black,
.navbar-2 .nav-button-2.black {
  background: linear-gradient(135deg, var(--ishine-blue-900) 0%, var(--ishine-blue-800) 100%) !important;
}

.navbar .nav-button-2:hover,
.navbar-2 .nav-button-2:hover,
.navbar .nav-button:hover,
.navbar-2 .nav-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(11, 112, 201, 0.23);
}

.navbar .text-button-2,
.navbar-2 .text-button-2,
.navbar .text-button-2 strong,
.navbar-2 .text-button-2 strong {
  color: #fff !important;
}

@media (min-width: 992px) and (max-width: 1180px) {
  .navbar .brand,
  .navbar-2 .brand,
  .navbar .brand.w--current,
  .navbar-2 .brand.w--current {
    width: 180px;
    max-width: 180px;
  }

  .navbar .brand img,
  .navbar-2 .brand img,
  .navbar .logo,
  .navbar-2 .logo,
  .navbar .image-89,
  .navbar-2 .image-89 {
    max-width: 174px;
  }

  .navbar .nav-link,
  .navbar-2 .nav-link,
  .navbar .dropdown-toggle,
  .navbar-2 .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .navbar,
  .navbar-2 {
    padding: 8px 14px !important;
    background: linear-gradient(135deg, #ffffff 0%, var(--ishine-blue-050) 100%) !important;
  }

  .navbar::before,
  .navbar-2::before {
    margin-bottom: 6px;
    padding-bottom: 6px;
    text-align: center;
    font-size: 10px;
    line-height: 1.35;
  }

  .navbar .nav-block,
  .navbar-2 .nav-block {
    min-height: 58px;
  }

  .navbar .brand,
  .navbar-2 .brand,
  .navbar .brand.w--current,
  .navbar-2 .brand.w--current {
    width: 172px;
    max-width: 172px;
    height: 56px;
  }

  .navbar .brand img,
  .navbar-2 .brand img,
  .navbar .logo,
  .navbar-2 .logo,
  .navbar .image-89,
  .navbar-2 .image-89 {
    max-width: 168px;
    max-height: 52px;
  }

  .navbar .menu-button,
  .navbar-2 .menu-button {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    position: static !important;
    transform: none !important;
    border: 1px solid #b9ddf4;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff 0%, #e9f6ff 100%);
    box-shadow: 0 10px 24px rgba(11, 79, 159, 0.13);
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .navbar .menu-button::before,
  .navbar-2 .menu-button::before,
  .navbar .menu-button::after,
  .navbar-2 .menu-button::after,
  .navbar .menu-button .icon-menu::before,
  .navbar-2 .menu-button .icon-menu::before {
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--ishine-blue-800);
    border-radius: 999px;
    position: absolute;
    left: 12px;
    transition: transform 180ms ease, top 180ms ease, opacity 160ms ease, background-color 180ms ease;
  }

  .navbar .menu-button::before,
  .navbar-2 .menu-button::before {
    top: 14px;
  }

  .navbar .menu-button .icon-menu::before,
  .navbar-2 .menu-button .icon-menu::before {
    top: 21px;
  }

  .navbar .menu-button::after,
  .navbar-2 .menu-button::after {
    top: 28px;
  }

  .navbar .menu-button .icon-menu,
  .navbar-2 .menu-button .icon-menu {
    color: transparent;
    font-size: 0;
    line-height: 0;
  }

  .navbar .menu-button.w--open,
  .navbar-2 .menu-button.w--open {
    background: linear-gradient(135deg, var(--ishine-blue-800), var(--ishine-blue-600));
    border-color: var(--ishine-blue-600);
  }

  .navbar .menu-button.w--open::before,
  .navbar-2 .menu-button.w--open::before,
  .navbar .menu-button.w--open::after,
  .navbar-2 .menu-button.w--open::after,
  .navbar .menu-button.w--open .icon-menu::before,
  .navbar-2 .menu-button.w--open .icon-menu::before {
    background-color: #fff;
  }

  .navbar .menu-button.w--open::before,
  .navbar-2 .menu-button.w--open::before {
    top: 21px;
    transform: rotate(45deg);
  }

  .navbar .menu-button.w--open .icon-menu::before,
  .navbar-2 .menu-button.w--open .icon-menu::before {
    opacity: 0;
  }

  .navbar .menu-button.w--open::after,
  .navbar-2 .menu-button.w--open::after {
    top: 21px;
    transform: rotate(-45deg);
  }

  .w-nav-overlay {
    width: auto !important;
    top: 86px !important;
    left: 12px !important;
    right: 12px !important;
    overflow: visible;
  }

  .w-nav-overlay .nav-menu,
  .nav-menu[data-nav-menu-open] {
    position: static !important;
    inset: auto !important;
    transform: none !important;
  }

  .navbar .nav-menu,
  .navbar-2 .nav-menu {
    width: 100%;
    max-height: calc(100dvh - 106px);
    border: 1px solid #cbe4f6;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #eef8ff 100%) !important;
    padding: 10px;
    overflow-y: auto;
    box-shadow: var(--ishine-shadow);
  }

  .navbar .nav-link,
  .navbar-2 .nav-link,
  .navbar .dropdown-toggle,
  .navbar-2 .dropdown-toggle {
    width: 100%;
    min-height: 50px;
    border-radius: 12px;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 14px;
    text-align: left;
    font-size: 14px;
    display: flex;
  }

  .navbar .dropdown-toggle,
  .navbar-2 .dropdown-toggle {
    justify-content: space-between;
  }

  .navbar .dropdown,
  .navbar-2 .dropdown {
    width: 100%;
  }

  .navbar .dropdown-list.w--open,
  .navbar-2 .dropdown-list.w--open,
  .nav-menu[data-nav-menu-open] .dropdown-list.w--open,
  .w-nav-overlay .dropdown-list.w--open {
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    position: static;
    left: auto;
  }

  .navbar .dropdown-list,
  .navbar-2 .dropdown-list,
  .navbar .dropdown-list-block,
  .navbar-2 .dropdown-list-block,
  .nav-menu[data-nav-menu-open] .dropdown-list,
  .w-nav-overlay .dropdown-list,
  .nav-menu[data-nav-menu-open] .dropdown-list-block,
  .w-nav-overlay .dropdown-list-block {
    border-radius: 14px;
    background: #e5f4ff !important;
    box-shadow: none;
  }

  .navbar .dropdown-link,
  .navbar-2 .dropdown-link,
  .navbar .dropdown-link.w--current,
  .navbar-2 .dropdown-link.w--current,
  .nav-menu[data-nav-menu-open] .dropdown-link,
  .w-nav-overlay .dropdown-link,
  .nav-menu[data-nav-menu-open] .dropdown-link.w--current,
  .w-nav-overlay .dropdown-link.w--current {
    min-height: 44px;
    color: var(--ishine-blue-900) !important;
    background-color: transparent;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .navbar .dropdown-link:hover,
  .navbar-2 .dropdown-link:hover,
  .nav-menu[data-nav-menu-open] .dropdown-link:hover,
  .w-nav-overlay .dropdown-link:hover {
    background-color: #fff;
    color: var(--ishine-blue-700) !important;
    transform: none;
  }

  .navbar .div-block-45,
  .navbar-2 .div-block-45 {
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    margin-left: 0;
    gap: 8px;
    flex-direction: column;
    display: flex;
  }

  .navbar .div-block-45 .nav-button-2,
  .navbar-2 .div-block-45 .nav-button-2,
  .navbar .div-block-45 .nav-button-2.black,
  .navbar-2 .div-block-45 .nav-button-2.black {
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    justify-content: center;
    padding: 14px 18px;
  }
}

@media (max-width: 479px) {
  .navbar,
  .navbar-2 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .navbar .brand,
  .navbar-2 .brand,
  .navbar .brand.w--current,
  .navbar-2 .brand.w--current {
    width: 150px;
    max-width: 150px;
  }

  .navbar .brand img,
  .navbar-2 .brand img,
  .navbar .logo,
  .navbar-2 .logo,
  .navbar .image-89,
  .navbar-2 .image-89 {
    max-width: 146px;
  }

  .hero-video-panel {
    max-width: 100%;
  }
}

/* Top trust marquee with insurance and safety credentials */
.site-trust-marquee {
  position: relative;
  z-index: 10000;
  background: linear-gradient(135deg, #082f5f 0%, #0b4f9f 46%, #147fd1 100%);
  color: #fff;
  width: 100vw;
  margin-top: -14px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 12px 32px rgba(8, 47, 95, .2);
}

.site-trust-marquee-shell {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(1420px, 100%);
  min-height: 58px;
  margin: 0 auto;
  padding: 9px 24px;
  display: grid;
}

.site-trust-intro {
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #eaf6ff;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.site-trust-slider {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.site-trust-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: siteTrustSlide 34s linear infinite;
}

.site-trust-marquee:hover .site-trust-track {
  animation-play-state: paused;
}

.site-trust-card {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}

.site-trust-card strong,
.site-trust-card span {
  color: #fff;
  letter-spacing: .02em;
  white-space: nowrap;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.site-trust-card span {
  color: #e9f7ff;
  font-weight: 700;
}

.site-trust-card-logo {
  background: #fff;
  border-color: rgba(255, 255, 255, .68);
  padding-left: 13px;
}

.site-trust-card-logo img {
  border-radius: 0;
  width: auto;
  height: 24px;
  max-width: 122px;
  object-fit: contain;
  display: block;
}

.site-trust-card-logo span {
  color: #082f5f;
}

.site-trust-note {
  color: #d9efff;
  max-width: 260px;
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.25;
}

.navbar::before,
.navbar-2::before {
  display: none !important;
}

@keyframes siteTrustSlide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 991px) {
  .site-trust-marquee {
    margin-top: 0;
  }

  .site-trust-marquee-shell {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    padding: 6px 10px 8px;
  }

  .site-trust-intro {
    display: block;
    text-align: center;
    white-space: normal;
    font-size: 10px;
    letter-spacing: .06em;
    line-height: 1.3;
  }

  .site-trust-note {
    display: none;
  }

  .site-trust-track {
    animation-duration: 28s;
    gap: 8px;
  }
}

@media (max-width: 479px) {
  .site-trust-marquee-shell {
    padding: 5px 8px;
  }

  .site-trust-card {
    min-height: 34px;
    padding: 6px 11px;
  }

  .site-trust-card-logo img {
    height: 20px;
    max-width: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-trust-track {
    animation: none;
    transform: none;
  }
}

/* Service detail heroes: remove hero imagery and keep a clean blue brand band. */
.service-detail-page .section-top-img {
  min-height: clamp(360px, 46vh, 520px);
  background:
    radial-gradient(circle at 18% 20%, rgba(84, 185, 233, 0.22), transparent 26rem),
    radial-gradient(circle at 82% 40%, rgba(26, 168, 255, 0.18), transparent 30rem),
    linear-gradient(135deg, #082f5f 0%, #0b4f9f 48%, #102236 100%);
}

.service-detail-page .block-top-img {
  min-height: inherit;
  background-image: none;
  padding: clamp(100px, 14vw, 150px) 24px clamp(56px, 8vw, 84px);
}

.service-detail-page .section-top-img .image-28 {
  display: none !important;
}

.service-detail-page .section-top-img .heading-hero {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.commercial-instagram-video {
  position: relative;
  width: min(100%, 540px);
  height: 560px;
  margin: 30px auto 42px;
  overflow: hidden;
  border: 1px solid rgba(21, 111, 189, 0.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(16, 35, 54, 0.1);
}

.commercial-instagram-video iframe {
  width: 100%;
  height: 720px;
  min-height: 720px;
  border: 0;
  display: block;
}

/* Cover Instagram like / engagement footer inside the embed */
.commercial-instagram-video::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 118px;
  background: #fff;
  pointer-events: auto;
  z-index: 2;
}

@media (max-width: 767px) {
  .service-detail-page .section-top-img {
    min-height: 310px;
  }

  .service-detail-page .block-top-img {
    padding: 82px 18px 46px;
  }

  .commercial-instagram-video {
    width: 100%;
    height: 520px;
    margin: 24px 0 34px;
  }

  .commercial-instagram-video iframe {
    height: 680px;
    min-height: 680px;
  }

  .commercial-instagram-video::after {
    height: 110px;
  }
}

/* Services index heading polish */
.services-index-page .section-top {
  background:
    radial-gradient(circle at 15% 12%, rgba(84, 185, 233, 0.12), transparent 26rem),
    radial-gradient(circle at 82% 30%, rgba(21, 111, 189, 0.1), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f2f9ff 54%, #ffffff 100%);
}

.services-index-page .block-heading.top {
  width: 100%;
  margin-bottom: 56px;
}

.services-index-page .block-heading-text {
  align-items: center;
  text-align: center;
}

.services-index-page .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(84, 185, 233, 0.4);
  border-radius: 999px;
  background: rgba(21, 111, 189, 0.06);
  padding: 9px 16px;
  box-shadow: none;
}

.services-index-page .line-subtitle {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #54b9e9, #1aa8ff);
}

.services-index-page .text-subtitle {
  color: #156fbd;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.services-index-page .heading-hero.dark {
  max-width: 850px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  color: #0d283f;
  letter-spacing: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .96;
}

.services-index-page .heading-hero.dark::after {
  content: "";
  width: min(160px, 34vw);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(84, 185, 233, 0) 0%, #54b9e9 48%, rgba(26, 168, 255, 0) 100%);
  margin: 24px auto 0;
  display: block;
}

.services-index-page .grid-services {
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  align-items: stretch;
  gap: 18px;
}

.services-index-page .services-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  opacity: 1 !important;
  min-height: 640px;
  border: 1px solid rgba(21, 111, 189, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(84, 185, 233, 0.12), transparent 13rem),
    radial-gradient(circle at 86% 100%, rgba(21, 111, 189, 0.08), transparent 17rem),
    linear-gradient(155deg, #ffffff 0%, #f7fbff 48%, #eef7ff 100%);
  color: #526575;
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: 0 22px 64px rgba(16, 35, 54, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.services-index-page .services-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 36%),
    linear-gradient(135deg, rgba(84, 185, 233, 0.08), transparent 42%);
  z-index: -1;
}

.services-index-page .services-page:nth-child(2),
.services-index-page .services-page:nth-child(6) {
  border-color: rgba(84, 185, 233, 0.45);
  background:
    radial-gradient(circle at 12% 0%, rgba(84, 185, 233, 0.16), transparent 13rem),
    radial-gradient(circle at 78% 100%, rgba(21, 111, 189, 0.12), transparent 18rem),
    linear-gradient(155deg, #ffffff 0%, #eef7ff 44%, #e3f1ff 100%);
  box-shadow: 0 28px 74px rgba(13, 102, 194, 0.14);
}

.services-index-page .services-page:hover {
  transform: translateY(-6px);
  border-color: rgba(84, 185, 233, 0.6);
  box-shadow: 0 32px 80px rgba(8, 47, 95, 0.18);
}

.services-index-page .services-page.service-card-static {
  opacity: 1 !important;
}

.services-index-page .text-services-page h3 {
  position: relative;
  color: #0d283f;
  letter-spacing: 0;
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1.05;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.services-index-page .text-services-page h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #54b9e9, rgba(255, 255, 255, 0));
}

.services-index-page .paragraph-51 strong,
.services-index-page .paragraph-52 strong {
  color: #0d283f;
}

.services-index-page .text-services-page p {
  color: #526575;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.55;
}

.services-index-page .list {
  margin-top: 22px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.services-index-page .list-item-2 {
  position: relative;
  color: #38505f;
  margin-bottom: 11px;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.35;
}

.services-index-page .list-item-2::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #156fbd;
  font-weight: 900;
}

.services-index-page .list-item-2 strong {
  color: inherit;
  font-weight: 700;
}

.services-index-page .link-block-services {
  width: 100%;
  margin-top: auto;
  padding-top: 28px;
}

.services-index-page .block-services-page {
  color: #156fbd;
  border-radius: 999px;
  border: 1px solid rgba(84, 185, 233, 0.7);
  background: rgba(21, 111, 189, 0.06);
  min-height: 50px;
  margin-bottom: 0;
  padding: 14px 20px;
  box-shadow: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.services-index-page .link-block-services:hover .block-services-page {
  color: #ffffff;
  background: #156fbd;
  border-color: #156fbd;
  transform: translateY(-2px);
}

.services-index-page .text-service-page {
  color: #156fbd;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 800;
}

.services-index-page .link-block-services:hover .text-service-page {
  color: #ffffff;
}

.services-index-page .link-block-services .line-block {
  display: none;
}

@media (max-width: 1199px) {
  .services-index-page .grid-services {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 767px) {
  .services-index-page .section-top {
    padding-left: 18px;
    padding-right: 18px;
  }

  .services-index-page .heading-hero.dark {
    font-size: clamp(38px, 11vw, 54px);
  }

  .services-index-page .grid-services {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .services-index-page .services-page {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    border-radius: 14px;
    padding: 24px 18px;
  }

  .services-index-page .text-services-page h3 {
    font-size: clamp(25px, 8vw, 34px);
  }
}

/* Projects page: category sections while project photos are coming soon. */
.projects-index-page .section-top.vertical {
  background:
    radial-gradient(circle at 12% 12%, rgba(84, 185, 233, 0.2), transparent 30rem),
    linear-gradient(180deg, #f6fbff 0%, #eef8ff 100%);
}

.projects-index-page .block-heading.top {
  margin-bottom: 38px;
}

.projects-index-page .heading-hero.dark {
  max-width: 860px;
  color: #082f5f;
  letter-spacing: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
}

.projects-index-page .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(21, 111, 189, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 9px 16px;
  box-shadow: 0 14px 34px rgba(16, 35, 54, 0.08);
}

.projects-index-page .line-subtitle {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1aa8ff, #0d66c2);
}

.projects-index-page .text-subtitle {
  color: #0b4f9f;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.projects-index-page .projects-gallery-section {
  display: none !important;
}

.projects-coming-soon {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.projects-category-panel {
  background: linear-gradient(135deg, #082f5f 0%, #0b4f9f 52%, #147fd1 100%);
  border-radius: 10px;
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  gap: clamp(22px, 4vw, 36px);
  box-shadow: 0 24px 70px rgba(8, 47, 95, 0.22);
}

.projects-category-link {
  color: #fff;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.projects-category-link:hover {
  opacity: .84;
  transform: translateX(6px);
}

.projects-sections {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.projects-placeholder-section {
  background: #fff;
  border: 1px solid rgba(21, 111, 189, 0.14);
  border-radius: 10px;
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .42fr);
  align-items: center;
  gap: 24px;
  box-shadow: 0 18px 48px rgba(16, 35, 54, 0.08);
}

.projects-kicker {
  color: #0b4f9f;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  display: block;
  margin-bottom: 10px;
}

.projects-placeholder-section h2 {
  color: #082f5f;
  letter-spacing: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  margin-bottom: 12px;
}

.projects-placeholder-section p {
  color: #526575;
  max-width: 560px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.55;
}

.projects-info-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.projects-info-list li {
  position: relative;
  color: #314554;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.projects-info-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1aa8ff, #0d66c2);
}

.projects-coming-card {
  color: #0b4f9f;
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px dashed rgba(21, 111, 189, 0.35);
  border-radius: 10px;
  background: #eef8ff;
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 20px;
  font-size: 13px;
  font-weight: 900;
}

.projects-placeholder-section.has-video {
  align-items: start;
}

.projects-video-link {
  display: inline-block;
  margin-top: 16px;
  color: #0b4f9f;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.projects-video-link:hover {
  color: #082f5f;
  text-decoration: underline;
}

.projects-instagram-video {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  border: 1px solid rgba(21, 111, 189, 0.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 35, 54, 0.08);
}

.projects-instagram-video iframe {
  width: 100%;
  height: 720px;
  min-height: 720px;
  border: 0;
  display: block;
}

/* Cover Instagram like / engagement footer inside the embed */
.projects-instagram-video::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 118px;
  background: #fff;
  pointer-events: auto;
  z-index: 2;
}

@media (max-width: 767px) {
  .projects-index-page .section-top.vertical {
    padding-left: 18px;
    padding-right: 18px;
  }

  .projects-placeholder-section {
    grid-template-columns: 1fr;
  }

  .projects-coming-card {
    min-height: 120px;
  }

  .projects-instagram-video {
    height: 520px;
  }

  .projects-instagram-video iframe {
    height: 680px;
    min-height: 680px;
  }

  .projects-instagram-video::after {
    height: 110px;
  }
}

/* Contact page boxed layout */
.contact-boxed-page .section-top {
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(84, 185, 233, 0.2), transparent 26rem),
    linear-gradient(180deg, #f6fbff 0%, #eef8ff 100%);
  margin-bottom: 0;
  padding: clamp(130px, 15vw, 185px) 24px clamp(54px, 8vw, 86px);
}

.contact-boxed-page .section-top .content.slim {
  width: min(100%, 940px);
  max-width: 940px;
  background: #fff;
  border: 1px solid rgba(21, 111, 189, 0.14);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(16, 35, 54, 0.12);
  padding: clamp(28px, 5vw, 56px);
  opacity: 1 !important;
}

.contact-boxed-page .section-top .block-heading-text {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 30px;
}

.contact-boxed-page .section-top .heading-hero.dark {
  color: #082f5f;
  font-size: clamp(36px, 5vw, 62px);
  letter-spacing: 0;
}

.contact-boxed-page .section-top .paragraph-50 {
  max-width: 680px;
}

.contact-boxed-page .section-top .form-block {
  width: 100%;
  margin: 0;
}

.contact-boxed-page .section-top .form {
  gap: 16px;
}

.contact-boxed-page .section-top .text-field,
.contact-boxed-page .section-top .textarea {
  border: 1px solid rgba(16, 35, 54, 0.16);
  border-radius: 8px;
  background: #f9fcff;
}

.contact-boxed-page .section-top .text-field:focus,
.contact-boxed-page .section-top .textarea:focus {
  border-color: #156fbd;
}

.contact-boxed-page .section-top .submit-button {
  border-radius: 8px;
}

@media (max-width: 767px) {
  .contact-boxed-page .section-top {
    padding: 112px 16px 48px;
  }

  .contact-boxed-page .section-top .content.slim {
    padding: 24px 18px;
  }

  .contact-boxed-page .section-top .form {
    grid-template-columns: 1fr;
  }
}

/* ==================================
   COMMUNITY / CHARITY CONTRIBUTION
   ================================== */
.community-section {
  padding: var(--spacing-section) 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(84, 185, 233, 0.14), transparent 28rem),
    linear-gradient(180deg, #eef7fc 0%, #f6fbff 100%);
}

.community-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr);
  gap: 2.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(21, 111, 189, 0.12);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 24px 70px rgba(16, 35, 54, 0.08);
}

.community-copy .section-title {
  margin-bottom: 1rem;
}

.community-copy p {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 42rem;
}

.community-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(21, 111, 189, 0.1);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.community-logo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16, 35, 54, 0.1);
}

.community-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

.footer-charity-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  max-width: 230px;
  transition: opacity 0.2s ease;
}

.footer-charity-logo:hover {
  opacity: 0.92;
}

.footer-charity-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-community-section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: #f4f9fc;
}

.about-community-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.about-community-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #dfe9ef;
  padding: 1.5rem;
  transition: box-shadow 0.25s ease;
}

.about-community-logo-link:hover {
  box-shadow: 0 18px 40px rgba(16, 35, 54, 0.08);
}

.about-community-logo {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .community-panel,
  .about-community-layout {
    grid-template-columns: 1fr;
  }

  .community-logo-link,
  .about-community-logo-link {
    justify-self: start;
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .community-section {
    padding: 56px 0;
  }

  .community-panel {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .community-copy p {
    font-size: 0.98rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 48px;
  }

  .about-modern-intro,
  .about-values-section,
  .about-proof-section,
  .team-roster-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .projects-index-page .section-top.vertical {
    padding-top: 96px;
  }

  .team-member-card {
    padding: 14px;
  }

  .team-photo-placeholder {
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin-bottom: 16px;
    border-radius: 12px;
  }
}

@media (max-width: 900px) {
  .trust-layout,
  .areas-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card-tall,
  .work-card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-benefits,
  .trust-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-benefits {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
  }

  .work-section,
  .process-section,
  .trust-section,
  .areas-section,
  .faq-section {
    padding: 56px 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .process-grid li {
    min-height: auto;
  }

  .areas-map {
    min-height: 500px;
  }

  .map-dot {
    font-size: 0.62rem;
  }

  .map-dot-toronto { left: 42%; }
  .map-dot-etobicoke { left: 14%; }
  .map-dot-scarborough { right: 27%; }
  .map-dot-east-york { right: 38%; top: 61%; }
  .map-dot-mississauga { left: 3%; }
  .map-dot-vaughan { left: 24%; }
  .map-dot-richmond { left: 47%; }
  .map-dot-markham { right: 29%; }
  .map-dot-pickering { right: 4%; top: 51%; }
  .map-dot-ajax { right: 1%; top: 42%; }
  .map-dot-whitby { right: 4%; top: 32%; }
  .map-dot-oshawa { right: 9%; top: 21%; }
  .map-dot-bowmanville { right: 1%; top: 9%; }
}

/* ==================================
   MOBILE NAV — single clean system
   Overrides conflicting sticky/fixed/scrolled rules.
   ================================== */
@media screen and (max-width: 991px) {
  html.ishine-menu-open,
  html.ishine-menu-open body {
    overflow: hidden !important;
  }

  .site-trust-marquee {
    position: relative;
    top: auto;
    z-index: 10020;
    margin-top: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .navbar,
  .navbar-2,
  .navbar.scrolled,
  .navbar-2.scrolled,
  .home-page .navbar-2,
  .home-page .navbar-2.scrolled,
  .team-page .navbar-2,
  .team-page .navbar-2.scrolled {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    border: 0 !important;
    border-bottom: 1px solid #d7e8f5 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(16, 35, 54, 0.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    z-index: 10010 !important;
  }

  .navbar::before,
  .navbar-2::before {
    display: none !important;
  }

  .navbar .nav-block,
  .navbar-2 .nav-block,
  .navbar.scrolled .nav-block,
  .navbar-2.scrolled .nav-block {
    width: 100% !important;
    max-width: none !important;
    min-height: 56px !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 12px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .navbar .div-block-58,
  .navbar-2 .div-block-58 {
    flex: 1 1 auto;
    min-width: 0;
  }

  .navbar .brand,
  .navbar-2 .brand,
  .navbar .brand.w--current,
  .navbar-2 .brand.w--current {
    width: min(168px, 58vw) !important;
    max-width: 168px !important;
    height: 48px !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .navbar .brand img,
  .navbar-2 .brand img,
  .navbar .image-89,
  .navbar-2 .image-89 {
    width: 100% !important;
    height: 100dvh !important;
    max-width: 168px !important;
    max-height: 48px !important;
    object-fit: contain !important;
  }

  .navbar .nav,
  .navbar-2 .nav {
    flex: 0 0 auto !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  .navbar .menu-button,
  .navbar-2 .menu-button,
  .menu-button.w-nav-button {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #c5dff2 !important;
    border-radius: 12px !important;
    background: #f3f9ff !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1 !important;
  }

  .navbar .menu-button.w--open,
  .navbar-2 .menu-button.w--open,
  .menu-button.w-nav-button.w--open {
    background: #0b4f9f !important;
    border-color: #0b4f9f !important;
  }

  .w-nav-overlay {
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10005 !important;
    background: rgba(8, 47, 95, 0.42) !important;
    padding: calc(env(safe-area-inset-top, 0px) + 118px) 12px 16px !important;
    overflow: auto !important;
    border-radius: 0 !important;
  }

  .w-nav-overlay .nav-menu,
  .nav-menu[data-nav-menu-open] {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-height: calc(100dvh - 140px) !important;
    margin: 0 !important;
    padding: 12px !important;
    border: 1px solid #d4e8f7 !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 24px 60px rgba(8, 47, 95, 0.22) !important;
    overflow-y: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .navbar .nav-link,
  .navbar-2 .nav-link,
  .navbar .dropdown-toggle,
  .navbar-2 .dropdown-toggle,
  .w-nav-overlay .nav-link,
  .w-nav-overlay .dropdown-toggle {
    width: 100% !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 14px 14px !important;
    border-radius: 10px !important;
    color: #102236 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: left !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .navbar .nav-link br,
  .navbar-2 .nav-link br,
  .w-nav-overlay .nav-link br {
    display: none !important;
  }

  .navbar .nav-link.w--current,
  .navbar-2 .nav-link.w--current,
  .navbar .nav-link:hover,
  .navbar-2 .nav-link:hover,
  .w-nav-overlay .nav-link.w--current,
  .w-nav-overlay .nav-link:hover,
  .w-nav-overlay .dropdown-toggle:hover {
    background: #eef7ff !important;
    color: #0b4f9f !important;
  }

  .navbar .dropdown,
  .navbar-2 .dropdown,
  .w-nav-overlay .dropdown {
    width: 100% !important;
  }

  .navbar .dropdown-toggle,
  .navbar-2 .dropdown-toggle,
  .w-nav-overlay .dropdown-toggle {
    position: relative !important;
    justify-content: center !important;
  }

  .navbar .dropdown-toggle .icon-dropdown,
  .navbar-2 .dropdown-toggle .icon-dropdown,
  .w-nav-overlay .dropdown-toggle .icon-dropdown {
    position: absolute !important;
    right: 14px !important;
    margin: 0 !important;
  }

  .navbar .dropdown-list,
  .navbar-2 .dropdown-list,
  .navbar .dropdown-list.w--open,
  .navbar-2 .dropdown-list.w--open,
  .w-nav-overlay .dropdown-list,
  .w-nav-overlay .dropdown-list.w--open {
    position: static !important;
    left: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 4px 0 8px !important;
    padding: 6px !important;
    border-radius: 12px !important;
    background: #f3f9ff !important;
    box-shadow: none !important;
  }

  .navbar .dropdown-list-block,
  .navbar-2 .dropdown-list-block,
  .w-nav-overlay .dropdown-list-block {
    background: transparent !important;
    box-shadow: none !important;
    display: grid !important;
    gap: 2px !important;
  }

  .navbar .dropdown-link,
  .navbar-2 .dropdown-link,
  .w-nav-overlay .dropdown-link {
    color: #0b4f9f !important;
    background: transparent !important;
    border-radius: 8px !important;
    padding: 12px 12px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
  }

  .navbar .dropdown-link:hover,
  .navbar-2 .dropdown-link:hover,
  .w-nav-overlay .dropdown-link:hover {
    background: #e3f1fc !important;
    color: #082f5f !important;
    transform: none !important;
  }

  .navbar .div-block-45,
  .navbar-2 .div-block-45,
  .w-nav-overlay .div-block-45 {
    width: 100% !important;
    margin-top: 10px !important;
    padding-top: 10px !important;
    border-top: 1px solid #e2eef7 !important;
    display: grid !important;
    gap: 8px !important;
  }

  .navbar .div-block-45 .nav-button-2,
  .navbar-2 .div-block-45 .nav-button-2,
  .w-nav-overlay .div-block-45 .nav-button-2 {
    width: 100% !important;
    min-height: 48px !important;
    justify-content: center !important;
    border-radius: 12px !important;
  }

  .navbar .nav-link.hidden,
  .navbar-2 .nav-link.hidden,
  .navbar .nav-link-2.hidden,
  .navbar-2 .nav-link-2.hidden,
  .w-nav-overlay .nav-link.hidden,
  .w-nav-overlay .nav-link-2.hidden {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .navbar,
  .navbar-2,
  .navbar.scrolled,
  .navbar-2.scrolled {
    padding: 8px 12px !important;
  }

  .navbar .brand,
  .navbar-2 .brand,
  .navbar .brand.w--current,
  .navbar-2 .brand.w--current {
    width: min(148px, 56vw) !important;
    max-width: 148px !important;
    height: 44px !important;
  }

  .w-nav-overlay {
    padding-top: calc(env(safe-area-inset-top, 0px) + 108px) !important;
  }
}
