:root {
  --brand-blue: #0070c0;
  --brand-blue-dark: #005a99;
  --brand-navy: #032133;
  --steel: #2f3e4a;
  --light-bg: #f4f7fa;
  --white: #ffffff;
  --text-main: #22323d;
  --text-muted: #5f6e79;
  --cta-amber: #f59e0b;
  --cta-amber-dark: #dd8d08;
  --border-soft: #dce6ee;
  --shadow-sm: 0 8px 20px rgba(3, 33, 51, 0.08);
  --shadow-md: 0 16px 32px rgba(3, 33, 51, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --section-space: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--brand-blue-dark);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(0, 112, 192, 0.75);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--steel);
  line-height: 1.2;
  letter-spacing: 0.2px;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Standard content typography for page/post body content (Classic + Elementor text widgets). */
#main-content .entry-content > * + *,
#main-content .elementor-widget-text-editor .elementor-widget-container > * + *,
#main-content .elementor-widget-theme-post-content .elementor-widget-container > * + * {
  margin-top: 1rem;
}

#main-content .entry-content h1,
#main-content .entry-content h2,
#main-content .entry-content h3,
#main-content .entry-content h4,
#main-content .entry-content h5,
#main-content .entry-content h6,
#main-content .elementor-widget-text-editor .elementor-widget-container h1,
#main-content .elementor-widget-text-editor .elementor-widget-container h2,
#main-content .elementor-widget-text-editor .elementor-widget-container h3,
#main-content .elementor-widget-text-editor .elementor-widget-container h4,
#main-content .elementor-widget-text-editor .elementor-widget-container h5,
#main-content .elementor-widget-text-editor .elementor-widget-container h6,
#main-content .elementor-widget-theme-post-content .elementor-widget-container h1,
#main-content .elementor-widget-theme-post-content .elementor-widget-container h2,
#main-content .elementor-widget-theme-post-content .elementor-widget-container h3,
#main-content .elementor-widget-theme-post-content .elementor-widget-container h4,
#main-content .elementor-widget-theme-post-content .elementor-widget-container h5,
#main-content .elementor-widget-theme-post-content .elementor-widget-container h6 {
  margin-bottom: 0.75rem;
}

#main-content .entry-content h2,
#main-content .entry-content h3,
#main-content .entry-content h4,
#main-content .elementor-widget-text-editor .elementor-widget-container h2,
#main-content .elementor-widget-text-editor .elementor-widget-container h3,
#main-content .elementor-widget-text-editor .elementor-widget-container h4,
#main-content .elementor-widget-theme-post-content .elementor-widget-container h2,
#main-content .elementor-widget-theme-post-content .elementor-widget-container h3,
#main-content .elementor-widget-theme-post-content .elementor-widget-container h4 {
  margin-top: 1.9rem;
}

#main-content .entry-content p,
#main-content .elementor-widget-text-editor .elementor-widget-container p,
#main-content .elementor-widget-theme-post-content .elementor-widget-container p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

/* Bullet lists in content should always render as primary-color checkmarks. */
#main-content .entry-content ul,
#main-content .elementor-widget-text-editor .elementor-widget-container ul,
#main-content .elementor-widget-theme-post-content .elementor-widget-container ul {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
}

#main-content .entry-content ul li,
#main-content .elementor-widget-text-editor .elementor-widget-container ul li,
#main-content .elementor-widget-theme-post-content .elementor-widget-container ul li {
  position: relative;
  padding-left: 1.6rem;
  margin: 0 0 0.5rem;
}

#main-content .entry-content ul li::before,
#main-content .elementor-widget-text-editor .elementor-widget-container ul li::before,
#main-content .elementor-widget-theme-post-content .elementor-widget-container ul li::before {
  content: "✓";
  font-weight: 700;
  color: var(--brand-blue);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1rem;
  line-height: 1;
}

.skip-link {
  position: absolute;
  top: -45px;
  left: 10px;
  z-index: 99999;
  background: var(--brand-navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 10px;
}

.section-space {
  padding: var(--section-space) 0;
}

#about-preview.section-space,
#services.section-space,
.why-section.section-space,
#projects.section-space,
.testimonials-section.section-space,
.contact-hub.section-space {
  padding: calc(var(--section-space) - 8px) 0;
}

.bg-light-blue {
  background: var(--light-bg);
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-tag {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand-blue-dark);
}

.section-title {
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-copy {
  color: var(--text-muted);
}

.top-bar {
  background: var(--brand-navy);
  color: #d8e8f6;
  font-size: 0.86rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.top-bar a,
.top-bar span {
  color: #d8e8f6;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid rgba(3, 33, 51, 0.06);
  transition: box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 22px rgba(3, 33, 51, 0.1);
  border-bottom-color: rgba(3, 33, 51, 0.12);
}

.site-header.is-compact .navbar {
  min-height: 72px;
}

.site-header.is-compact .navbar-brand img {
  width: 164px;
}

.navbar {
  min-height: 82px;
  transition: min-height 0.25s ease;
}

.nav-shell {
  align-items: center;
  gap: 0.65rem;
}

.navbar-brand img {
  width: 180px;
  height: auto;
  transition: width 0.25s ease;
}

.navbar-collapse {
  align-items: center;
  justify-content: flex-end;
}

.navbar-collapse.show {
  animation: navSlideDown 0.2s ease;
}

.navbar-nav {
  gap: 0.2rem;
}

.navbar-toggler {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 40px;
  padding: 0;
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: all 0.25s ease;
}

.navbar-toggler:hover {
  border-color: rgba(0, 112, 192, 0.45);
  color: var(--brand-blue-dark);
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--brand-blue);
}

.navbar-nav .nav-link {
  color: var(--steel);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.56rem 0.72rem;
  position: relative;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 0.38rem;
  vertical-align: 0.13em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand-blue-dark);
  background: rgba(0, 112, 192, 0.08);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 4px;
  height: 2px;
  background: var(--brand-blue);
}

.nav-mobile-cta {
  margin-top: 0.6rem;
  margin-left: 0;
}

.nav-mobile-cta .btn {
  justify-content: center;
}

.btn {
  border-radius: 10px;
  font-weight: 700;
  padding: 11px 18px;
  min-height: 44px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brand {
  background: var(--brand-blue);
  color: var(--white);
}

.btn-brand:hover {
  background: var(--brand-blue-dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-outline-brand {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: transparent;
}

.btn-outline-brand:hover {
  background: var(--brand-blue);
  color: var(--white);
}

.btn-quote {
  background: var(--cta-amber);
  color: #10212e;
}

.btn-quote:hover {
  background: var(--cta-amber-dark);
  color: #0b1822;
  box-shadow: var(--shadow-sm);
}

.della-global-btn-wrap {
  display: flex;
}

.della-global-btn-wrap.align-left {
  justify-content: flex-start;
}

.della-global-btn-wrap.align-center {
  justify-content: center;
}

.della-global-btn-wrap.align-right {
  justify-content: flex-end;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 94px;
  background: linear-gradient(145deg, #f9fcff 0%, #edf5fb 46%, #e6f1fa 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -110px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 112, 192, 0.2) 0%, rgba(0, 112, 192, 0) 70%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(3, 33, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 33, 51, 0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), transparent 72%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-weight: 700;
  color: var(--brand-blue-dark);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.4rem, 2.2vw, 3.6rem);
  color: var(--brand-navy);
  margin-bottom: 1.1rem;
  max-width: 820px;
  line-height: 1.08;
}

.hero-copy {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 660px;
  margin-bottom: 0;
}

.hero-cta-group {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.55rem;
}

.btn-hero-primary,
.btn-hero-secondary {
  min-height: 52px;
  padding: 12px 24px;
  font-size: 1rem;
}

.btn-hero-primary {
  box-shadow: var(--shadow-sm);
}

.hero-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.hero-trust-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgba(3, 33, 51, 0.045);
  border: 1px solid rgba(3, 33, 51, 0.09);
  color: var(--steel);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 7px 12px;
}

.hero-trust-points i {
  color: var(--brand-blue);
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  background:
    linear-gradient(160deg, rgba(3, 33, 51, 0.94) 0%, rgba(0, 86, 146, 0.9) 52%, rgba(0, 112, 192, 0.88) 100%);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.36) 100%);
}

.hero-media-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
}

.hero-media-content {
  position: relative;
  z-index: 2;
  color: #eff8ff;
  padding: 34px 34px 18px;
}

.hero-media-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #d8ebfb;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
}

.hero-media-content h2 {
  color: var(--white);
  font-size: 2.08rem;
  line-height: 1.14;
  max-width: 430px;
}

.hero-media-content p {
  color: #d8eefe;
  max-width: 430px;
  margin: 0;
}

.hero-media-strap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-media-strap article {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 12px 11px;
  backdrop-filter: blur(4px);
}

.hero-media-strap strong {
  color: var(--white);
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-media-strap span {
  color: #d5ebfb;
  font-size: 0.8rem;
}

.hero-section .hero-intro-1.animate__animated {
  animation-delay: 0.04s;
}

.hero-section .hero-intro-2.animate__animated {
  animation-delay: 0.1s;
}

.hero-section .hero-intro-3.animate__animated {
  animation-delay: 0.16s;
}

.hero-section .hero-intro-4.animate__animated {
  animation-delay: 0.22s;
}

.hero-section .hero-intro-5.animate__animated {
  animation-delay: 0.28s;
}

.hero-section .hero-intro-6.animate__animated {
  animation-delay: 0.18s;
}

.hero-section .animate__animated {
  --animate-duration: 0.65s;
}

.facts-strip {
  padding: 50px 0 56px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fafd 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.trust-head {
  max-width: 900px;
  margin: 0 auto 1.95rem;
}

.trust-head .section-copy {
  max-width: 680px;
  margin: 0 auto;
}

.fact-item {
  background: var(--white);
  border: 1px solid #d5e1eb;
  border-radius: var(--radius-md);
  padding: 20px 18px;
  height: 100%;
  box-shadow: 0 10px 24px rgba(3, 33, 51, 0.08);
}

.trust-stat-card {
  position: relative;
  overflow: hidden;
}

.trust-stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, #39a0ea 100%);
}

.fact-item i {
  color: var(--brand-blue);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.fact-item h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.trust-stat-card h3 {
  font-size: 1.34rem;
  margin-bottom: 0.45rem;
  color: #203341;
}

.fact-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.about-strength {
  background: #ffffff;
}

.about-strength-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #0b324a 0%, #075386 52%, #0070c0 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.about-strength-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.about-strength-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 24px 24px;
}

.about-strength-content {
  position: relative;
  z-index: 2;
  padding: 30px 30px 18px;
}

.about-strength-content img {
  width: min(370px, 100%);
}

.about-owner-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 7px 13px;
}

.about-owner-chip span {
  color: #cde7fb;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 700;
}

.about-owner-chip strong {
  color: var(--white);
  font-size: 0.95rem;
}

.about-strength-metrics {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.about-strength-metrics article {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 10px;
  padding: 11px 10px;
  backdrop-filter: blur(4px);
}

.about-strength-metrics strong {
  color: var(--white);
  display: block;
  font-size: 1.22rem;
  line-height: 1.1;
}

.about-strength-metrics span {
  color: #d4ebfb;
  font-size: 0.79rem;
}

.about-strength-points {
  margin: 1rem 0 1.25rem;
}

.about-strength-points li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.62rem;
  color: #314553;
  font-weight: 500;
}

.about-strength-points i {
  color: var(--brand-blue);
  margin-top: 5px;
}

.about-panel {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 46px;
  border: 1px solid var(--border-soft);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
  border: 1px solid #d4e1eb;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 12px 26px rgba(3, 33, 51, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(3, 33, 51, 0.16);
  border-color: rgba(0, 112, 192, 0.35);
}

.service-media {
  position: relative;
  min-height: 165px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background-size: cover;
  background-position: center;
}

/* When replacing placeholders with real media, use compressed images and keep 4:3 framing with center-crop. */

.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(3, 33, 51, 0.3) 0%, rgba(0, 112, 192, 0.2) 65%, rgba(0, 112, 192, 0.1) 100%);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.65;
}

.service-media span,
.service-media i {
  position: relative;
  z-index: 2;
}

.service-media span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #eaf6ff;
  padding: 0 10px;
}

.service-media i {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #f4fbff;
  background: rgba(3, 33, 51, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-media-civil {
  background:
    linear-gradient(140deg, #09304a 0%, #0a4f7d 55%, #1070b0 100%);
}

.service-media-sewer {
  background:
    linear-gradient(140deg, #082d44 0%, #0a456a 52%, #0b6ca7 100%);
}

.service-media-water {
  background:
    linear-gradient(140deg, #072b41 0%, #0a4a75 48%, #0981c6 100%);
}

.service-media-fitout {
  background:
    linear-gradient(140deg, #0a3148 0%, #0d557f 52%, #0a6ca6 100%);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  padding: 21px 20px 20px;
  height: 100%;
}

.service-card h3 {
  font-size: 1.58rem;
  margin-bottom: 0.65rem;
  color: #1f3341;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--brand-blue-dark);
}

.service-link i {
  transition: transform 0.2s ease;
}

.service-card:hover .service-link i {
  transform: translateX(3px);
}

.service-card:hover .service-media i {
  background: rgba(0, 112, 192, 0.35);
}

.services-swiper {
  padding-bottom: 44px;
}

.services-swiper .swiper-slide {
  height: auto;
}

.services-swiper .service-card {
  height: 100%;
}

#services .section-copy {
  max-width: 620px;
  margin: 0 auto;
}

#services .service-media {
  min-height: 198px;
}

#services .service-card-body {
  padding: 18px 18px 17px;
  gap: 0.45rem;
}

#services .service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
}

#services .service-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.45;
  min-height: 2.75em;
}

#services .services-view-all {
  margin-top: 1.55rem !important;
}

@media (min-width: 992px) {
  .services-swiper {
    padding-bottom: 0;
  }

  .services-swiper .swiper-pagination {
    display: none;
  }
}

.why-section {
  background: #f6f6f6;
  border-top: 1px solid #e4e8ed;
  border-bottom: 1px solid #e4e8ed;
}

.why-section .section-tag {
  color: var(--brand-blue-dark);
}

.why-copy {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 1.15rem;
}

.why-list li {
  color: #eaf5ff;
  margin-bottom: 0.85rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.why-list i {
  margin-top: 5px;
  color: #ffd28a;
}

.why-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #eaf5ff;
}

.why-card h3 {
  color: var(--white);
  font-size: 2rem;
}

.project-swiper {
  padding-bottom: 48px;
}

.project-gallery-section .section-copy {
  max-width: 520px;
  margin: 0 auto;
}

.project-gallery-section .section-heading {
  margin-bottom: 1.6rem;
}

.project-gallery-swiper .swiper-slide {
  height: auto;
}

.project-gallery-card {
  height: 100%;
}

.project-gallery-media {
  position: relative;
  min-height: 230px;
  border-radius: 13px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d8e4ee;
  box-shadow: 0 12px 22px rgba(3, 33, 51, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #0a3a59;
}

.project-lightbox-trigger {
  cursor: zoom-in;
}

.project-gallery-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 20%, rgba(0, 0, 0, 0.62) 100%);
  transition: background 0.3s ease;
}

.project-category,
.project-gallery-content {
  position: relative;
  z-index: 2;
}

.project-category {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.project-gallery-content {
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding: 16px;
  opacity: 0;
  transform: translateY(10px);
}

.project-gallery-content h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0;
}

.project-gallery-content p {
  color: #d6e9f7;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.project-gallery-media:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(3, 33, 51, 0.18);
}

.project-gallery-media:hover .project-gallery-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 16%, rgba(0, 0, 0, 0.74) 100%);
}

.project-gallery-media:hover .project-gallery-content {
  transform: translateY(0);
  opacity: 1;
}

.project-gallery-media:focus-within .project-gallery-content {
  transform: translateY(0);
  opacity: 1;
}

.project-title-link {
  color: #ffffff;
}

.project-title-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.project-gallery-actions {
  margin-top: 1.45rem;
}

.project-card {
  min-height: 260px;
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.35)),
    linear-gradient(130deg, #0070c0 0%, #00558e 56%, #032133 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.project-card-lg {
  min-height: 340px;
}

.project-card h3 {
  color: var(--white);
}

.project-card p {
  margin: 0;
  color: #d8eefe;
}

.project-label {
  align-self: flex-start;
  display: inline-block;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: var(--brand-blue);
}

@media (min-width: 1200px) {
  .project-gallery-swiper .swiper-pagination {
    display: none;
  }
}

.final-cta {
  background: linear-gradient(155deg, #f2f7fc 0%, #e6f0f9 100%);
}

.prefooter-cta {
  padding: 0 0 28px;
}

.cta-banner {
  border-radius: 16px;
  background: linear-gradient(136deg, #0a2f46 0%, #00558f 54%, #0070c0 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 34px rgba(3, 33, 51, 0.22);
  padding: 34px 32px;
  color: #eaf6ff;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.35rem;
  align-items: center;
}

.cta-banner .section-tag {
  color: #9dd3ff;
  margin-bottom: 0.55rem;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.3vw, 2.6rem);
  margin-bottom: 0.65rem;
}

.cta-banner p {
  margin: 0;
  color: #d5eaf8;
  max-width: 540px;
}

.cta-banner-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.cta-banner-actions .btn {
  justify-content: center;
  width: 100%;
}

.cta-email-btn {
  border-color: rgba(255, 255, 255, 0.45);
  color: #e9f5ff;
}

.cta-email-btn:hover {
  border-color: var(--white);
}

.testimonials-section {
  background: linear-gradient(180deg, #f9fcff 0%, #f1f7fc 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.testimonial-swiper {
  padding-bottom: 44px;
}

.testimonial-card {
  border: 1px solid #d8e5ef;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(3, 33, 51, 0.09);
  height: 100%;
  padding: 24px 22px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 112, 192, 0.3);
  box-shadow: 0 18px 30px rgba(3, 33, 51, 0.14);
}

.testimonial-stars {
  display: flex;
  gap: 0.24rem;
  margin-bottom: 0.8rem;
}

.testimonial-stars i {
  color: #f8b126;
  font-size: 0.95rem;
}

.testimonial-text {
  color: #314553;
  font-size: 1rem;
  margin-bottom: 0.82rem;
  line-height: 1.45;
}

.testimonials-section .section-heading {
  margin-bottom: 1.9rem;
}

.testimonial-author {
  font-size: 1.2rem;
  margin-bottom: 0.1rem;
}

.testimonial-city {
  display: inline-block;
  color: var(--brand-blue-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-swiper .swiper-pagination {
  bottom: 0;
}

.testimonial-swiper .swiper-pagination-bullet {
  background: #9db3c5;
  opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--brand-blue);
}

.contact-hub-head {
  max-width: 860px;
  margin: 0 auto 1.7rem;
}

.contact-hub-head .section-copy {
  max-width: 620px;
  margin: 0 auto;
}

.contact-info-panel {
  height: 100%;
  border: 1px solid #d3e0ea;
  border-radius: 14px;
  background: #ffffff;
  padding: 24px 22px;
  box-shadow: 0 12px 25px rgba(3, 33, 51, 0.09);
}

.contact-info-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 0.95rem;
}

.contact-info-list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.contact-info-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: #304351;
}

.contact-info-list i {
  margin-top: 5px;
  color: var(--brand-blue);
}

.contact-info-list a {
  color: #1f5f90;
  font-weight: 600;
}

.contact-primary-item {
  font-weight: 700;
}

.contact-primary-link {
  font-size: 1.06rem;
  letter-spacing: 0.1px;
}

.contact-direct-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 0.35rem 0 0.85rem;
}

.contact-direct-actions .btn {
  justify-content: center;
  min-height: 46px;
}
.service-area-map-panel {
  height: 100%;
}

.service-area-map-visual {
  position: relative;
  height: 100%;
  min-height: 520px;
  border-radius: 14px;
  border: 1px solid #d3e0ea;
  overflow: hidden;
  background-color: #e3e4e7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 12px 25px rgba(3, 33, 51, 0.09);
  display: flex;
  align-items: stretch;
}

.service-area-map-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.26);
  z-index: 1;
}

.service-area-map-overlay {
  position: relative;
  z-index: 2;
  margin: 14px;
  max-width: 72%;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 18px 20px 20px;
  color: #1e4d8f;
}

.service-area-map-overlay h3 {
  margin-bottom: 10px;
  color: #1e4d8f;
  font-size: clamp(1.55rem, 2.15vw, 1.95rem);
  line-height: 1.15;
}

.service-area-map-overlay ul {
  list-style: disc;
  margin-left: 20px;
  color: #1e4d8f;
}

.service-area-map-overlay li {
  margin-bottom: 7px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
}

.contact-quote-form {
  height: 100%;
  border-color: #cfdee9;
  box-shadow: 0 14px 27px rgba(3, 33, 51, 0.11);
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.quote-form h3,
.quote-form h2 {
  margin-bottom: 0.4rem;
}

.quote-form p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.contact-hub .quote-form p {
  margin-bottom: 0.9rem;
}

.contact-hub .quote-form .row {
  --bs-gutter-y: 0.75rem;
}

.quote-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cfdbe6;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  font-size: 0.96rem;
  color: var(--steel);
  background: var(--white);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 112, 192, 0.14);
}

.page-hero {
  background: linear-gradient(145deg, #f8fbfe 0%, #edf5fb 52%, #e5f0f9 100%);
  padding: 84px 0 72px;
  border-bottom: 1px solid var(--border-soft);
}

.page-hero-global {
  position: relative;
  overflow: hidden;
  background-image: var(--della-banner-image, none), linear-gradient(145deg, #f8fbfe 0%, #edf5fb 52%, #e5f0f9 100%);
  background-size: cover, auto;
  background-position: center center, center center;
}

.page-hero-global::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(248, 251, 254, 0.9) 0%, rgba(237, 245, 251, 0.84) 48%, rgba(229, 240, 249, 0.78) 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.della-breadcrumbs {
  margin-bottom: 0.65rem;
}

.della-breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.della-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.della-breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.35rem;
  color: #8aa1b6;
}

.della-breadcrumbs a {
  color: var(--brand-blue);
}

.della-breadcrumbs span {
  color: var(--text-muted);
}

.page-title {
  font-size: clamp(1.95rem, 4.1vw, 3.4rem);
  color: var(--brand-navy);
  max-width: 900px;
}

.page-copy {
  max-width: 760px;
  color: var(--text-muted);
}

.check-list li {
  margin-bottom: 0.7rem;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.check-list i {
  color: var(--brand-blue);
  margin-top: 6px;
}

.value-card,
.process-card,
.portfolio-card,
.service-detail-card,
.contact-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 26px 22px;
  height: 100%;
}

.value-card,
.process-card,
.portfolio-card {
  box-shadow: var(--shadow-sm);
}

.value-card i,
.contact-card i {
  color: var(--brand-blue);
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.timeline-wrap {
  display: grid;
  gap: 1rem;
}

.timeline-wrap article {
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--brand-blue);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}

.timeline-wrap span {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
  text-transform: uppercase;
}

.service-detail-head {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.service-detail-head i {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--brand-blue);
  background: rgba(0, 112, 192, 0.1);
}

.process-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(0, 112, 192, 0.12);
  color: var(--brand-blue);
  margin-bottom: 0.7rem;
}

.contact-card h2 {
  font-size: 1.45rem;
}

.contact-side-panel {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.project-featured-panel {
  padding: 0;
  overflow: hidden;
}

.project-featured-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.project-details-card {
  position: sticky;
  top: 110px;
}

.project-meta-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.project-meta-list li i {
  width: 18px;
  margin-top: 4px;
  color: var(--brand-blue);
}

.project-meta-list li span {
  color: var(--text-muted);
}

.contact-side-panel ul li {
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.contact-side-panel hr {
  margin: 1.25rem 0;
  border-color: var(--border-soft);
}

.map-embed {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--border-soft);
}

.map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
}

.della-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 20, 34, 0.9);
  padding: 24px;
}

.della-lightbox.is-open {
  display: flex;
}

.della-lightbox-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.della-lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 88px);
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.34);
}

.della-lightbox-btn {
  position: absolute;
  border: 0;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease;
}

.della-lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.della-lightbox-close {
  top: 10px;
  right: 10px;
}

.della-lightbox-prev {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.della-lightbox-next {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.site-footer {
  position: relative;
  background:
    linear-gradient(160deg, #031a29 0%, #032133 42%, #05314b 100%);
  color: #cfdeea;
  padding: 76px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #0070c0 0%, #33a1eb 40%, #f59e0b 100%);
}

.footer-main {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 0.95rem;
}

.footer-about {
  margin: 0;
  max-width: 360px;
  color: #b7cddd;
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.95rem;
  letter-spacing: 0.25px;
}

.site-footer ul li {
  margin-bottom: 0.55rem;
}

.site-footer a {
  color: #c3d7e5;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-links li a {
  color: #c3d7e5;
  font-weight: 500;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 2px;
}

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #c3d7e5;
}

.footer-contact span {
  color: #c3d7e5;
}

.footer-contact i {
  margin-top: 5px;
  color: #84c9ff;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #d7ebfa;
  background: rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
  color: #9fb8c9;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
}

.reveal.is-visible {
  opacity: 1;
}

body.elementor-editor-active .reveal,
body.elementor-editor-preview .reveal {
  opacity: 1;
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Homepage and utility refinements */
.navbar-nav .dropdown-menu {
  border: 1px solid #d7e4ef;
  border-radius: 10px;
  box-shadow: 0 14px 24px rgba(3, 33, 51, 0.12);
  padding: 0.35rem;
  min-width: 220px;
}

.navbar-nav .dropdown-item {
  border-radius: 7px;
  font-weight: 600;
  color: #264050;
  font-size: 0.92rem;
  padding: 0.52rem 0.72rem;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  color: var(--brand-blue-dark);
  background: rgba(0, 112, 192, 0.11);
}

.navbar-nav .dropdown-item.service-parent-item,
.navbar-nav .dropdown-item.service-parent-link {
  font-weight: 700;
  color: #1f3341;
}

.navbar-nav .dropdown-item-text.service-child-item,
.navbar-nav .dropdown-item.service-child-link {
  padding: 0.22rem 0.2rem 0.22rem 0.05rem;
  font-size: 0.9rem;
  color: #4f6676;
  line-height: 1.45;
}

.navbar-nav .dropdown-item.service-child-link {
  border-radius: 6px;
  font-weight: 500;
}

.services-menu-dropdown .service-parent-link,
.services-menu-dropdown .service-child-link {
  display: block;
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.services-menu-dropdown .services-mega-menu {
  min-width: 920px;
  max-width: min(94vw, 980px);
  padding: 0.9rem 1rem;
  right: 0;
  left: auto;
}

.services-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.services-mega-col {
  min-width: 0;
}

.services-mega-links {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
}

.services-mega-links li + li {
  margin-top: 0.06rem;
}

.service-sub-list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.service-sub-list li {
  position: relative;
  padding-left: 0.95rem;
  color: #4e6575;
  font-size: 0.86rem;
  line-height: 1.35;
}

.service-sub-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-blue);
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (min-width: 992px) and (max-width: 1320px) {
  .navbar-brand img {
    width: 166px;
  }

  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.53rem 0.58rem;
  }
  .navbar-nav .dropdown-menu {
    min-width: 204px;
  }

  .services-menu-dropdown .services-mega-menu {
    min-width: 860px;
  }
}

@media (max-width: 991.98px) {
  .services-menu-dropdown .services-mega-menu {
    min-width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    padding: 0.45rem;
  }

  .services-mega-grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .services-mega-col {
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #dbe5ee;
  }

  .services-mega-col:last-child {
    border-bottom: 0;
    padding-bottom: 0.05rem;
  }

  .navbar-nav .dropdown-item.service-parent-link {
    padding: 0.5rem 0.55rem;
  }

  .navbar-nav .dropdown-item.service-child-link {
    padding-left: 1.05rem;
  }
}

.hero-section {
  min-height: 690px;
  background: #041827;
  padding: 150px 0 88px !important;
}

.hero-section::before,
.hero-section::after {
  display: none;
}

.hero-video,
.hero-fade-slider,
.hero-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-fade-slider {
  z-index: 0;
}

.hero-video {
  object-fit: cover;
}

.hero-fade-slider {
  overflow: hidden;
}

.hero-fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.4s ease;
  transform: scale(1.03);
  will-change: opacity;
}

.hero-fade-slide.is-active {
  opacity: 1;
}

.hero-video-overlay {
  z-index: 1;
  background: linear-gradient(98deg, rgba(3, 28, 43, 0.3) 0%, rgba(3, 28, 43, 0.2) 46%, rgba(3, 28, 43, 0.1) 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  color: #9cd4ff;
}

.hero-title {
  color: #ffffff;
  max-width: 760px;
}

.hero-copy {
  color: #d2e7f8;
}

.hero-trust-points li {
  color: #e4f1fa;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-trust-points i {
  color: #7fccff;
}

.hero-quick-quote {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  background: rgba(4, 29, 45, 0.52);
  backdrop-filter: blur(7px);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.24);
  padding: 24px 22px;
}

.hero-quick-quote h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.hero-quick-quote p {
  color: #d0e7f7;
  margin-bottom: 0.95rem;
}

.hero-field {
  position: relative;
  margin-bottom: 0.68rem;
}

.hero-field i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #7bc0eb;
  font-size: 0.9rem;
}

.hero-field input,
.hero-field select,
.hero-field textarea {
  width: 100%;
  border: 1px solid rgba(203, 229, 248, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #f6fbff;
  padding: 11px 12px 11px 38px;
}

.hero-field textarea {
  min-height: 96px;
  resize: vertical;
}

.hero-field input::placeholder,
.hero-field textarea::placeholder {
  color: #d8ebf8;
}

.hero-field select option {
  color: #123145;
}

.hero-field input:focus,
.hero-field select:focus,
.hero-field textarea:focus {
  border-color: #95d3fc;
  box-shadow: 0 0 0 3px rgba(126, 192, 233, 0.18);
  outline: none;
}

.trust-section-green {
  background: linear-gradient(160deg, #f3f8fc 0%, #e8f1f8 48%, #eef5fb 100%);
  border-top: none;
  border-bottom: none;
}

.trust-section-green .section-copy {
  color: var(--text-muted);
}

.trust-green-card {
  background: #ffffff;
  border-color: #d7e4ef;
  box-shadow: 0 14px 24px rgba(3, 33, 51, 0.09);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.trust-green-card i {
  color: var(--brand-blue);
}

.trust-green-card h3 {
  color: #203341;
}

.trust-green-card p {
  color: var(--text-muted);
}

.trust-green-card:hover {
  transform: translateY(-6px);
  background: #f7fbff;
  box-shadow: 0 20px 32px rgba(3, 33, 51, 0.14);
}

.about-rebuild {
  background: #ffffff;
}

.about-intro-head {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.about-intro-head .section-copy {
  max-width: 700px;
  margin: 0 auto;
}

.about-image-stack {
  position: relative;
  padding-bottom: 26px;
}

.about-main-image {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 35px rgba(3, 33, 51, 0.17);
}

.about-owner-photo {
  position: absolute;
  right: 16px;
  bottom: -10px;
  width: 35%;
  max-width: 200px;
  min-width: 130px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  border: 5px solid #ffffff;
  box-shadow: 0 14px 28px rgba(3, 33, 51, 0.2);
}

.about-experience-box {
  position: absolute;
  left: 16px;
  bottom: 12px;
  border-radius: 14px;
  background: rgba(10, 46, 66, 0.94);
  color: #ffffff;
  padding: 15px 16px 13px;
  min-width: 170px;
  box-shadow: 0 15px 25px rgba(3, 33, 51, 0.28);
}

.about-experience-box .counter-number {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.about-experience-box small {
  display: block;
  color: #cbe5f8;
  font-size: 0.86rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.about-copy-panel {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
  background: #ffffff;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.about-copy-panel h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.about-copy-panel p {
  color: var(--text-muted);
}

.about-rebuild .about-strength-points {
  margin: 0;
  display: grid;
  gap: 0.52rem;
}

.about-rebuild .about-strength-points li {
  margin-bottom: 0;
  font-weight: 600;
}

.about-counter-row {
  margin-top: 1.35rem;
}

.about-counter-card {
  border: 1px solid #d7e4ef;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 12px 22px rgba(3, 33, 51, 0.08);
  height: 100%;
  padding: 18px 16px;
}

.about-counter-card i {
  color: var(--brand-blue);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.about-counter-card h3 {
  font-size: 2.1rem;
  margin-bottom: 0.2rem;
}

.about-counter-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.about-counter-card-feature {
  text-align: center;
}

.about-counter-card-feature i {
  font-size: 2.3rem;
  margin-bottom: 0.75rem;
}

.about-counter-card-feature h3 {
  font-size: 2.1rem;
  line-height: 1.18;
  margin: 0;
}

.service-media {
  min-height: 210px;
  display: block;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(3, 33, 51, 0.85), rgba(0, 112, 192, 0.62));
}

.service-media::before {
  z-index: 1;
}

.service-media::after {
  opacity: 0.35;
  z-index: 1;
}

.service-media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-media-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 46px;
  height: 46px;
  min-height: 0;
  padding: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(7, 26, 39, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #eaf7ff;
  z-index: 2;
  font-size: 1.1rem;
}

.service-media-badge i {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.05rem;
}

.service-card h3 a {
  color: inherit;
}

.service-card h3 a:hover {
  color: var(--brand-blue-dark);
}

.service-media-civil {
  background: linear-gradient(160deg, #08314a, #0a5a8a);
}

.service-media-sewer {
  background: linear-gradient(160deg, #0a2f47, #0b5a85);
}

.service-media-water {
  background: linear-gradient(160deg, #082c42, #0a5882);
}

.service-media-fitout {
  background: linear-gradient(160deg, #092f45, #0d5b87);
}

.why-section {
  overflow: hidden;
}

.why-content-wrap {
  position: relative;
  z-index: 1;
}

.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.why-feature-card {
  border: 1px solid #d5e1eb;
  border-radius: 12px;
  background: #ffffff;
  color: #253745;
  padding: 15px 14px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  animation: none;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 20px rgba(3, 33, 51, 0.08);
}

.why-feature-card i {
  color: var(--brand-blue);
  font-size: 1.2rem;
}

.why-feature-card h3 {
  font-size: 1.03rem;
  color: #1f3341;
  margin: 0;
}

.why-feature-card p {
  margin: 0;
  color: #4b6474;
  font-size: 0.88rem;
  line-height: 1.42;
}

.why-feature-card:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(3, 33, 51, 0.12);
}

.why-feature-card:nth-child(2n) {
  animation-delay: 0.6s;
}

.input-icon-group {
  position: relative;
}

.input-icon-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6794b4;
  font-size: 0.9rem;
}

.input-icon-group input,
.input-icon-group select,
.input-icon-group textarea {
  padding-left: 38px;
}

.input-icon-group.input-icon-textarea i {
  top: 16px;
  transform: none;
}

.floating-social-rail {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1052;
  display: grid;
  gap: 0.5rem;
}

.floating-social-rail a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(4, 27, 42, 0.9);
  color: #d8ecfb;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  animation: socialBreath 3s ease-in-out infinite;
}

.floating-social-rail a:hover {
  transform: translateX(5px) scale(1.06);
  background: var(--brand-blue);
  color: #ffffff;
}

.floating-social-rail a:nth-child(2) {
  animation-delay: 1.2s;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 92px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #ffffff;
  font-size: 1.6rem;
  z-index: 1053;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.62);
  animation: whatsappGlow 2s infinite;
}

.floating-quote-cta {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1052;
  border-radius: 999px;
  min-height: 48px;
  padding: 10px 15px;
  background: var(--cta-amber);
  color: #10212e;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 12px 20px rgba(9, 24, 34, 0.24);
  animation: quoteBuzz 3.6s linear infinite;
}

.floating-quote-cta:hover {
  color: #10212e;
  background: #ffb12a;
}

.go-top-btn {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 12px 18px rgba(3, 33, 51, 0.22);
  z-index: 1052;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.24s ease;
}

.go-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(14px);
  width: min(96%, 550px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 27, 42, 0.95);
  color: #d4e9f8;
  padding: 14px 15px;
  box-shadow: 0 16px 25px rgba(3, 33, 51, 0.34);
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-notice p {
  margin: 0 0 0.68rem;
}

.cookie-notice .cookie-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.cookie-notice.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.footer-read-more {
  font-weight: 700;
  color: #cce5f8;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-policy-links a {
  font-size: 0.9rem;
}

@keyframes featureFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(163, 216, 251, 0.15); }
  50% { box-shadow: 0 8px 16px rgba(163, 216, 251, 0.2); }
}

@keyframes socialBreath {
  0%, 100% { box-shadow: 0 0 0 rgba(0, 112, 192, 0.2); }
  50% { box-shadow: 0 8px 16px rgba(0, 112, 192, 0.25); }
}

@keyframes whatsappGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.56); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes quoteBuzz {
  0%, 92%, 100% { transform: translateX(0); }
  94% { transform: translateX(-2px); }
  96% { transform: translateX(2px); }
  98% { transform: translateX(-1px); }
}
