@import url("../vendor/fontawesome/css/all.min.css");

:root {
    --font-sans: "Noto Sans", "Atkinson Hyperlegible", "Segoe UI", Roboto, Arial, sans-serif;
    --navy: #004A6A;
    --navy-2: #495a6d;
    --green: #3d9082;
    --green-2: #32c5d2;
    --accent: #0092BF;
    --cta: #E87E04;
    --cta-hover: #f2784b;
    --mint: #e8f6ef;
    --cream: #f7f4ec;
    --ink: #17212b;
    --muted: #373f46;
    --line: #dce5e8;
    --white: #ffffff;
    --shadow: 0 18px 42px rgba(15, 39, 66, 0.13);
    --radius: 8px;
    --max: 1320px;
    --focus: 0 0 0 3px rgba(50, 197, 210, 0.42);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button { cursor: pointer; }

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid #ffaa00;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 170, 0, 0.22);
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #ffaa00;
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section {
  padding: 40px 0;
  background-color: #F8F9F9;
}

.section.soft { background: #f6f9fb; }
.section.cream { background: var(--cream); }
.section.white { background: #ffffff; }
.section-head {
  display: grid;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.3rem);
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  line-height: 1.14;
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 600;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.25;
  color: #1e2122;
  font-weight: 600;
}

p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 500;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: #12683f; }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-outline { border-color: rgba(255, 255, 255, 0.7); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.topbar__inner {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__list,
.social-list,
.nav__list,
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar__list,
.social-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-list a {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.social-list a:hover {
  background: var(--green-2);
}

.social-list__brand-mark {
  display: inline-grid;
  place-items: center;
  width: 1em;
  height: 1em;
  font-size: 0.9rem;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 232, 0.9);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 25px rgba(15, 39, 66, 0.08);
}

.header__inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.45rem;
}

.brand__mark {
  width: 250px;
  height: 100px;
  display: grid;
  place-items: center;
  background: transparent;
  overflow: hidden;
  padding:5px 0;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.brand__mark_footer {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  background: transparent;
  overflow: hidden;
}

.brand__mark_footer img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.brand__small {
  display: block;
  margin-top: -3px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #abafb3;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 13px;
  color: var(--navy);
  font-weight: 700;
  border-radius: 6px;
}

button.nav__link {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  background: var(--mint);
  color: var(--green);
}

.nav__toggle[aria-expanded="true"] {
  background: var(--mint);
  color: var(--green);
}

.nav__toggle span {
  display: inline-flex;
  transition: transform 160ms ease;
}

.nav__toggle[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 160ms ease;
}

.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--navy);
    font-weight: 600;
    border-bottom: 1px solid #e4e5e6;
}

.dropdown a:hover { background: var(--mint); color: var(--green); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle,
.menu-close {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.35rem;
}


.page-hero {
    padding: 30px 0;
    color: var(--white);
    background: linear-gradient(90deg, rgba(15, 39, 66, 0.92), rgba(15, 39, 66, 0.68)), url("../../media/parallax/3.webp") center/cover;
}

    .page-hero p {
        color: rgba(255, 255, 255, 0.88); /*max-width: 760px;*/
    }

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
  box-shadow: none;
  overflow: hidden;
  transition: box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.card:hover {
  background: #ffffff;
  border-color: rgba(0, 146, 191, 0.36);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ffffff;
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.card:hover .card__media img { transform: scale(1.05); }

.card__body {
  padding: 24px;
}

.card__body h3 {
  margin-bottom: 12px;
}

.card__body p {
  margin-bottom: 22px;
}

.card .btn-secondary {
  min-height: 42px;
  padding: 10px 16px;
  background: #004A6A;
  border-color: #004A6A;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.card .btn-secondary:hover {
  background: #0092BF;
  border-color: #0092BF;
}

.service-card {
  border: 0;
  background: #ffffff;
}

.service-card,
.service-card:hover,
.service-card > a,
.service-card .card__body {
  background: #ffffff;
}

.service-card .card__media {
  
  aspect-ratio: 16 / 11;
}

.service-card .card__body {
  position: relative;
  padding: 30px;
  min-height: 260px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-card .card__body::before {
  content: none;
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 16px;
  background: #0092BF;
}

.card-kicker,
.card-meta {
  display: inline-flex;
  margin-bottom: 10px;
  color: #0092BF;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card .card-kicker {
  position: absolute;
  right: 15px;
  top: -35px;
  z-index: 2;
  min-height: 34px;
  align-items: center;
  padding: 8px 13px;
  background: #5C9BD1;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(76, 135, 185, 0.18);
}

.service-card .btn-secondary {
  min-width: 112px;
}

.detail-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: auto;
  color: #004A6A;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.detail-text i {
  color: #0092BF;
  font-size: 0.78em;
  opacity: 0.75;
  transition: transform 180ms ease;
}

.service-card:hover .detail-text i {
  transform: translateX(2px);
  opacity: 1;
}

.service-card h3 {
  font-size: clamp(1.35rem, 1.7vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0;
}

.blog-list .card,
.blog-preview .card {
  background: #e3dede;
}

.blog-list .card__media,
.blog-preview .card__media {
  aspect-ratio: 16 / 9;
}

.blog-list .card__body,
.blog-preview .card__body {
  padding: 28px 30px 32px;
}

.blog-list h3,
.blog-preview h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.4rem);
  font-weight: 500;
}

.blog-list .card__body::after,
.blog-preview .card__body::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 18px;
  background: rgba(0, 146, 191, 0.55);
}

.progress-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.progress-item > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  color: #495a6d;
}

.progress-item span {
  font-weight: 600;
}

.progress-item strong {
  color: #004A6A;
}

.progress-bar {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef2;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0092BF, #32c5d2);
}

.why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.why-actions .btn-primary {
  background: #E87E04;
  border-color: #E87E04;
  color: #ffffff;
}

.why-actions .btn-primary:hover {
  background: #f2784b;
  border-color: #f2784b;
}

.why-actions .btn-secondary {
  background: #004A6A;
  border-color: #004A6A;
}

.why-actions .btn-secondary:hover {
  background: #0092BF;
  border-color: #0092BF;
}

.icon-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--mint);
  color: var(--green);
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-tabs button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
  padding: 6px 15px;
  font-weight: 700;
}

.filter-tabs button[aria-selected="true"] {
  background: #197297;
  color: var(--white);
  border-color: #197297;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.pagination[hidden] {
  display: none;
}

.pagination__btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 74, 106, 0.18);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #f5fbfd;
  color: #004A6A;
  box-shadow: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.pagination__btn:hover:not(:disabled) {
  background: #0092BF;
  border-color: #0092BF;
  color: #ffffff;
}

.pagination__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pagination__status {
  min-width: 64px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(61, 144, 130, 0.11);
  color: #004A6A;
  font-weight: 800;
  text-align: center;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 24px;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  --testimonial-gap: 24px;
  display: flex;
  gap: var(--testimonial-gap);
}

.testimonial-card {
  flex: 0 0 calc((100% - var(--testimonial-gap)) / 2);
  scroll-snap-align: start;
  padding: 34px;
  border: 1px solid rgba(0, 74, 106, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: none;
}

.testimonial-card::before {
  content: "\201C";
  display: block;
  height: 34px;
  color: #0092BF;
  font-size: 3.8rem;
  line-height: 0.7;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: #334557;
  font-size: 1.05rem;
}

.testimonial-card strong {
  display: block;
  color: #004A6A;
  font-size: 1.05rem;
}

.testimonial-card span {
  color: #5e738b;
  font-size: 0.92rem;
}

.stars {
  margin-bottom: 16px;
  color: #c49f47;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.testimonial-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.review-filter {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto 30px;
}

.review-filter label {
  color: #004A6A;
  font-weight: 800;
}

.review-filter input {
  min-height: 50px;
  border: 1px solid rgba(0, 74, 106, 0.18);
  border-radius: 999px;
  padding: 12px 18px;
  background: #ffffff;
  color: #17212b;
}

.empty-state {
  margin: 28px 0 0;
  text-align: center;
  color: #495a6d;
  font-weight: 700;
}

.testimonial-links .btn-secondary {
  background: #004A6A;
  border-color: #004A6A;
  color: #ffffff;
}

.testimonial-links .btn-secondary:hover {
  background: #0092BF;
  border-color: #0092BF;
  color: #ffffff;
}

.testimonial-links .btn-light {
  background: #E87E04;
  border-color: #E87E04;
  color: #ffffff;
}

.testimonial-links .btn-light:hover {
  background: #f2784b;
  border-color: #f2784b;
  color: #ffffff;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}

.prose {
  max-width: 860px;
}

.prose > img:first-child {
  width: min(100%, 760px);
  max-height: 390px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 74, 106, 0.12);
}

.prose h2,
.prose h3 { margin-top: 30px; }

.sidebar-box {
  position: sticky;
  top: 110px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.sidebar-box p { color: rgba(255, 255, 255, 0.8); }

.gallery-grid {
  columns: 3 280px;
  column-gap: 20px;
}

.gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 20px;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  box-shadow: 0 8px 25px rgba(15, 39, 66, 0.08);
}

.gallery-item img {
  width: 100%;
  transition: transform 220ms ease, filter 220ms ease;
}

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

.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(15, 39, 66, 0.45), rgba(15, 39, 66, 0.45)),
    url("../images/gallery/inspection.jpg") center/cover;
}

.video-card__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.video-card__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 39, 66, 0.2), rgba(15, 39, 66, 0.44));
}

.play {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  font-size: 1.4rem;
}

.logo-grid .card {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  font-weight: 800;
  color: var(--navy);
}

.references-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(196, 159, 71, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f6f1 100%);
}

.references-wrap {
  display: grid;
  gap: 26px;
}

.references-filter {
  margin: 0 auto 6px;
}

.references-tabs {
  justify-content: center;
  margin-bottom: 0;
}

.references-grid {
  max-width: 1080px;
  margin-inline: auto;
}

.logo-grid .reference-card {
  align-content: start;
  place-items: initial;
  min-height: 255px;
  padding: 28px;
  text-align: left;
  font-weight: 400;
  border: 1px solid rgba(73, 90, 109, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(250, 248, 242, 0.98)),
    linear-gradient(145deg, rgba(196, 159, 71, 0.08), rgba(61, 144, 130, 0.06));
  box-shadow: 0 14px 34px rgba(73, 90, 109, 0.08);
}

.reference-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid #c49f47;
  opacity: 0.72;
}

.reference-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(196, 159, 71, 0.1);
}

.reference-card > * {
  position: relative;
  z-index: 1;
}

.reference-mark {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #495a6d, #3d9082);
  box-shadow: 0 12px 24px rgba(73, 90, 109, 0.16);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.reference-sector {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #495a6d;
  background: rgba(196, 159, 71, 0.14);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reference-card h2 {
  margin-bottom: 10px;
  color: #2f3b47;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 600;
}

.reference-card p {
  margin: 0;
  color: #5e738b;
}

.logo-grid .reference-card:hover {
  box-shadow: 0 22px 54px rgba(73, 90, 109, 0.14);
  border-color: rgba(196, 159, 71, 0.34);
}

.contact-stack {
  display: grid;
  gap: 28px;
}

.contact-stack .section-head {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.contact-item {
  position: relative;
  min-height: 164px;
  padding: 22px 18px;
  border: 1px solid rgba(0, 74, 106, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 74, 106, 0.06);
  overflow: hidden;
}

.contact-item::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(0, 146, 191, 0.08);
}

.contact-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #004A6A, #0092BF);
}

.contact-item h3,
.contact-item p {
  position: relative;
  z-index: 1;
}

.contact-item h3 {
  margin-bottom: 8px;
  color: #004A6A;
  font-size: 1rem;
}

.contact-item p {
  margin: 0;
  color: #495a6d;
}

.contact-item a {
  color: #004A6A;
  font-weight: 800;
}

.contact-item a:hover {
  color: #0092BF;
}

.contact-form-card {
  width: min(100%, 820px);
  margin-inline: auto;
  padding: 34px;
  border: 1px solid rgba(0, 74, 106, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 253, 0.98)),
    linear-gradient(135deg, rgba(0, 146, 191, 0.12), rgba(92, 155, 209, 0.08));
  box-shadow: 0 18px 44px rgba(0, 74, 106, 0.08);
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  font-weight: 700;
  color: var(--navy);
}

.form-note,
.form-status {
  margin: 0;
  color: #495a6d;
  font-size: 0.94rem;
}

.form-status {
  min-height: 1.5em;
  color: #004A6A;
  font-weight: 700;
}

.field-error {
  margin: -8px 0 0;
  color: #b42318;
  font-size: 0.9rem;
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 46px;
  padding: 11px 12px;
  background: var(--white);
  color: var(--ink);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.map {
  min-height: 310px;
  border: 0;
  width: 100%;
  border-radius: var(--radius);
}

.cta-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--navy));
  padding: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p { color: rgba(255, 255, 255, 0.88); margin-bottom: 0; }

.site-footer {
  color: rgba(255, 255, 255, 0.84);
  background: #223e48;
}

.footer-main {
  padding: 60px 0 38px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 34px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-list {
  display: grid;
  gap: 9px;
}

.footer-list a:hover { color: var(--green-2); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 0;
  box-shadow: var(--shadow);
}

.back-to-top {
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 17, 29, 0.86);
}

.lightbox.is-open { display: grid; }
.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 1.3rem;
}

@media (max-width: 1080px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split,
  .detail-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .sidebar-box { position: static; }
  .desktop-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(430px, 92vw);
    height: 100vh;
    padding: 22px;
    background: var(--white);
    box-shadow: -20px 0 50px rgba(15, 39, 66, 0.22);
    transform: translateX(105%);
    visibility: hidden;
    transition: 220ms ease;
    overflow-y: auto;
  }
  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .menu-close {
    display: inline-flex;
    margin-left: auto;
    margin-bottom: 18px;
  }
  .nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }
  .nav__link {
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    padding: 12px;
    background: #f6f9f8;
  }
  button.nav__link {
    text-align: left;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 6px 0 6px 12px;
    transition: none;
  }
  .dropdown[hidden] {
    display: none;
  }
  .dropdown a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-left: 2px solid rgba(50, 197, 210, 0.45);
    border-radius: 0 6px 6px 0;
  }
  .topbar__inner { justify-content: center; }
  .topbar .social-list { display: none; }

}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, var(--max)); }
  .section { padding: 54px 0; }
  .contact-list { grid-template-columns: 1fr; }
  .contact-item { min-height: auto; }
  .contact-form-card { padding: 24px; }
  .cta-band,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .btn { width: 100%; }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .header__inner { height: 68px; }
  .brand { font-size: 1.2rem; }
  .brand__mark { width: 150px; height: 60px; }
  .topbar__list {
    gap: 10px;
    justify-content: center;
    text-align: center;
  }
  .page-hero { padding: 68px 0; }
  .cta-band { padding: 30px; }
  .float-actions {
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 50px 50px;
    grid-auto-rows: 50px;
    gap: 10px;
  }
  .float-btn { width: 50px; height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Targeted refresh requested after the initial build. */
[data-site-header] {
  position: sticky;
  top: 0;
  z-index: 2400;
  width: 100%;
  overflow: visible;
}

.topbar {
  background: #2c738d;
  color: #ffffff;
  overflow: hidden;
  transition: max-height 220ms ease, opacity 180ms ease, transform 220ms ease;
  max-height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-hidden .topbar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2401;
  overflow: visible;
  transform: none;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(73, 90, 109, 0.18);
  transition: box-shadow 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(0, 74, 106, 0.13);
}

.topbar__list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.social-list a,
.float-btn {
  font-size: 1.50rem;
}

.social-list a {
  color: #ffffff;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-list a:hover {
  color: #ffffff;
  background: #0092BF;
  transform: translateY(-1px);
}

.desktop-cta.btn-primary {
  background: var(--cta);
  color: #ffffff;
}

.desktop-cta.btn-primary:hover {
  background: var(--cta-hover);
}

.desktop-cta.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(232, 126, 4, 0.35), 0 0 0 6px rgba(0, 74, 106, 0.18);
}

.whatsapp {
  background: #25d366;
  font-size: 1.48rem;
}

.whatsapp:hover {
  background: #15af4f;
}

.call-mobile {
  display: none;
  background: #E87E04;
}

.call-mobile:hover {
  background: #f2784b;
}

.back-to-top {
  background: #004A6A;
  color: #ffffff;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background 160ms ease;
}

.back-to-top:hover {
  background: #0092BF;
  color: #ffffff;
}






.home-services {
  overflow: hidden;
  background: #f6f9fb;
}

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 6px 2px 24px;
  touch-action: pan-x;
}

.carousel__viewport::-webkit-scrollbar {
  display: none;
}

.carousel__track {
  --carousel-gap: 24px;
  display: flex;
  gap: var(--carousel-gap);
  align-items: stretch;
}

.carousel .card {
  flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3);
  height: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  min-width: 0;
}

.carousel .card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.carousel .card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 290px;
}

.carousel .card__body .btn {
  margin-top: auto;
  width: fit-content;
}

.carousel__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.carousel__btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--navy);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.carousel__btn:hover {
  background: var(--navy);
  color: #ffffff;
}

.cta-band {
  background: linear-gradient(135deg, #123a53, #1d6a58);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(18, 58, 83, 0.22);
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-band .btn-light {
  background: #ffffff;
  color: #123a53;
}

.cta-band .btn-light:hover {
  background: #e9f5ef;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgb(26 110 114);
  color: #ffffff;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
    margin-bottom: 10px;
}


.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

h2 {
  font-size: clamp(2rem, 2.5vw, 2.3rem);
  letter-spacing: 0;
}



.check-list li::before {
  content: "\2713";
}

.sidebar-box {
  z-index: 2;
  padding: 28px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(18, 58, 83, 0.14);
  box-shadow: 0 16px 38px rgba(15, 39, 66, 0.12);
}

.sidebar-box h2,
.sidebar-box h3 {
  color: var(--navy);
}
.sidebar-box > h2 {
  font-size: clamp(2rem, 2.5vw, 2rem);
  letter-spacing: 0;
}

.sidebar-box p {
  color: #465766;
}

.sidebar-box .btn-light {
  background: var(--green);
  color: #ffffff;
}

.related-gallery {
  margin-top: 38px;
}

.related-gallery h2 {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(61, 144, 130, 0.12);
  color: #004A6A;
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.related-gallery .gallery-grid {
  columns: 3 220px;
}

.video-card {
  cursor: pointer;
  text-align: left;
  width: 100%;
  border: 1px solid var(--line);
  padding: 0;
  color: inherit;
}

.video-card a {
  display: block;
  height: 100%;
}

.video-card__frame {
  transition: filter 180ms ease;
}

.video-card:hover .video-card__frame img {
  transform: scale(1.1);
  filter: saturate(1.08) brightness(0.95);
}

.lightbox {
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 14px;
  background: rgba(5, 17, 29, 0.9);
}

.lightbox__figure {
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox img {
  max-width: min(100%, 1120px);
  max-height: 78vh;
  object-fit: contain;
  background: #0b1d31;
}

.lightbox figcaption {
  color: #ffffff;
  text-align: center;
  max-width: 780px;
}

.lightbox button {
  position: static;
}

.lightbox__close {
  position: absolute !important;
  top: 18px;
  right: 18px;
}

.lightbox__nav {
  align-self: center;
  justify-self: center;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 17, 29, 0.9);
}

.video-modal.is-open {
  display: grid;
}

.video-modal__panel {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
}

.video-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
}

.modal-open {
  overflow: hidden;
}

.footer-main {
  gap: 46px;
}

.site-footer h3 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 12px;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #32c5d2, rgba(255, 255, 255, 0));
}

.footer-list {
  gap: 11px;
  padding-left: 0;
  line-height: 1.6;
}

.footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-list a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #32c5d2;
  font-size: 0.78rem;
}

.footer-list a:hover {
  color: #32c5d2;
}

.footer-bottom {
  justify-content: center;
  text-align: center;
}

.footer-bottom small {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

    .footer-bottom small a {
        color: rgba(255, 255, 255, 0.82);
        font-weight: 500;
        text-decoration: none;
        font-size: 0.78rem;
    }

.footer-bottom small a:hover,
.footer-bottom small a:focus-visible {
  color: #32c5d2;
}

@media (max-width: 1080px) {
  .carousel__track {
    --carousel-gap: 24px;
  }
  .carousel .card {
    flex-basis: calc((100% - var(--carousel-gap)) / 2);
  }
}

@media (max-width: 760px) {
  h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }
  .carousel__track {
    --carousel-gap: 16px;
    gap: 16px;
  }
  .carousel .card {
    flex-basis: 100%;
  }
  .carousel .card__body {
    min-height: 210px;
  }
  .prose > img:first-child {
    width: 100%;
    max-height: 280px;
  }
  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
  }
  .lightbox__figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .lightbox__nav {
    grid-row: 2;
  }
  .lightbox__close {
    top: 12px;
    right: 12px;
  }
  .video-modal__close {
    top: 10px;
    right: 10px;
  }
  .testimonial-card {
    flex-basis: 100%;
    padding: 26px;
  }
  .testimonial-links .btn {
    width: 100%;
  }
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(0, 74, 106, 0.11);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 74, 106, 0.055);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  background: #ffffff;
  color: #004A6A;
  text-align: left;
  font: inherit;
  font-weight: 800;
}

.faq-item button::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #218d96;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.faq-panel {
  padding: 0 22px 20px;
}

.faq-panel p {
  margin: 0;
  color: #495a6d;
}

.faq-cta {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(50, 197, 210, 0.28), transparent 38%),
    linear-gradient(145deg, #17326c 0%, #2876af 55%, #2c6299 100%);
  box-shadow: 0 18px 40px rgba(0, 74, 106, 0.16);
}

.faq-cta h2 {
  color: #ffffff;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.faq-cta .btn {
  justify-content: center;
}

@media (max-width: 1080px) {
  .detail-sidebar,
  .faq-cta {
    position: static;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .sidebar-panel,
  .detail-info-card,
  .faq-cta {
    padding: 22px;
  }
  .faq-item button {
    min-height: 60px;
    padding: 17px 18px;
  }
}

/* Visual polish */
:root {
  --navy: #0F3D3E;
  --navy-2: #263238;
  --green: #2E8B7D;
  --green-2: #43A047;
  --accent: #218d96;
  --cta: #DFA441;
  --cta-hover: #E87E04;
  --mint: #eef7f1;
  --cream: #F7F3E8;
  --ink: #263238;
  --muted: #5e738b;
  --line: #d8e5e1;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(15, 61, 62, 0.12);
  --radius: 10px;
  --focus: 0 0 0 3px rgba(223, 164, 65, 0.38);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(223, 164, 65, 0.08), transparent 28%),
    #FFFDF7;
}

.section {
  background-color: #FFFDF7;
}

.section.soft,
.home-services {
  background: #F7F3E8;
}

.section.cream {
  background: #f3efe4;
}

.section.white {
  background: #FFFFFF;
}

:focus-visible {
  outline-color: #DFA441;
}

.skip-link,
.topbar {
  background: linear-gradient(135deg, #0F3D3E 0%, #145C5D 100%);
}

.topbar {
  color: rgba(255, 255, 255, 0.94);
}

.topbar a:hover,
.topbar a:focus-visible {
  color: #F7F3E8;
}

.site-header {
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 1px solid rgba(15, 61, 62, 0.12);
  box-shadow: 0 10px 30px rgba(15, 61, 62, 0.06);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 42px rgba(15, 61, 62, 0.13);
}

.brand {
  color: #0F3D3E;
  min-width: 0;
  font-size: clamp(1rem, 1.22vw, 1.34rem);
}

.brand > span:not(.brand__mark) {
  min-width: 0;
}

.brand__mark {
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.brand__small {
  color: #2E8B7D;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav__link {
  color: #263238;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link[aria-current="page"] {
  color: #0F3D3E;
}

.dropdown {
  border-color: rgba(15, 61, 62, 0.12);
  background: #FFFDF7;
  box-shadow: 0 22px 42px rgba(15, 61, 62, 0.16);
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(46, 139, 125, 0.1);
  color: #0F3D3E;
}

.btn-primary,
.desktop-cta.btn-primary,
.why-actions .btn-primary {
  background: linear-gradient(135deg, #DFA441 0%, #E87E04 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(232, 126, 4, 0.22);
}

.btn-primary:hover,
.desktop-cta.btn-primary:hover,
.why-actions .btn-primary:hover,
.btn-primary:focus-visible,
.desktop-cta.btn-primary:focus-visible,
.why-actions .btn-primary:focus-visible {
  background: linear-gradient(135deg, #0F3D3E 0%, #2E8B7D 100%);
  color: #ffffff;
}

.btn-secondary,
.why-actions .btn-secondary,
.testimonial-links .btn-secondary {
  background: linear-gradient(135deg, #0F3D3E 0%, #145C5D 100%);
  border-color: transparent;
  color: #ffffff;
}

.btn-secondary:hover,
.why-actions .btn-secondary:hover,
.testimonial-links .btn-secondary:hover,
.btn-secondary:focus-visible {
  background: linear-gradient(135deg, #2E8B7D 0%, #43A047 100%);
  color: #ffffff;
}

.btn-light,
.testimonial-links .btn-light {
  background: #FFFDF7;
  border: 1px solid rgba(15, 61, 62, 0.16);
  color: #0F3D3E;
}

.btn-light:hover,
.testimonial-links .btn-light:hover,
.btn-light:focus-visible {
  background: #DFA441;
  border-color: #DFA441;
  color: #263238;
}



.carousel__btn,
.pagination__btn {
  border-color: rgba(15, 61, 62, 0.16);
  background: rgba(255, 253, 247, 0.92);
  color: #0F3D3E;
}

.carousel__btn:hover,
.pagination__btn:hover,
.carousel__btn:focus-visible,
.pagination__btn:focus-visible {
  background: #0F3D3E;
  color: #ffffff;
}

.blog-card,
.reference-card,
.testimonial-card,
.video-card,
.sidebar-box,
.sidebar-panel,
.detail-info-card,
.faq-item,
.contact-item {
  border-color: rgba(15, 61, 62, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.98));
  box-shadow: 0 10px 26px rgba(15, 61, 62, 0.08);
}

.service-card:hover,
.blog-card:hover,
.reference-card:hover,
.testimonial-card:hover,
.video-card:hover {
  transform: none;
  border-color: rgba(223, 164, 65, 0.5);
  box-shadow: 0 18px 42px rgba(15, 61, 62, 0.05);
}

.card__media img,
.card img,
.service-card img,
.blog-card img,
.video-card img {
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .card__media img,
.card:hover img,
.service-card:hover img,
.blog-card:hover img,
.video-card:hover img {
  transform: translateZ(0) scale(1.04);
}




.home-services .service-card .card__body,
[data-services-grid] .service-card .card__body {
  background: #ffffff;
}

.card-kicker,
.card-meta {
  color: #0F3D3E;
  background: rgba(223, 164, 65, 0.18);
}

.service-card .card-kicker {
  color: #263238;
  background: linear-gradient(135deg, #F7F3E8 0%, rgba(223, 164, 65, 0.55) 100%);
}

.detail-text {
  color: #0F3D3E;
}

.detail-text i {
  color: #DFA441;
}

.progress-bar {
  background: rgba(15, 61, 62, 0.12);
}

.progress-bar span {
  background: linear-gradient(90deg, #2E8B7D, #DFA441);
}



.cta-band {
  background:
    radial-gradient(circle at 88% 16%, rgba(223, 164, 65, 0.28), transparent 30%),
    linear-gradient(135deg, #0F3D3E 0%, #145C5D 52%, #2E8B7D 100%);
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(15, 61, 62, 0.2);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-band .btn-light {
  background: #DFA441;
  border-color: #DFA441;
  color: #263238;
}

.cta-band .btn-light:hover,
.cta-band .btn-light:focus-visible {
  background: #FFFDF7;
  border-color: #FFFDF7;
  color: #0F3D3E;
}

.stars {
  color: #DFA441;
}


.reference-card::after {
  background: rgba(223, 164, 65, 0.13);
}

.faq-item button {
  background: #ffffff;
  color: #0F3D3E;
}

.faq-item button:hover,
.faq-item button:focus-visible,
.faq-item button[aria-expanded="true"] {
  background: #F7F3E8;
}

.faq-item button::after {
  color: #DFA441;
}

.faq-cta {
  background:
    radial-gradient(circle at top right, rgba(223, 164, 65, 0.26), transparent 34%),
    radial-gradient(circle at bottom left, rgba(67, 160, 71, 0.18), transparent 38%),
    linear-gradient(145deg, #0F3D3E 0%, #145C5D 56%, #2E8B7D 100%);
  box-shadow: 0 18px 44px rgba(15, 61, 62, 0.18);
}

.faq-cta .btn-outline {
  background: #FFFDF7;
  border-color: #FFFDF7;
  color: #0F3D3E;
}

.faq-cta .btn-outline:hover,
.faq-cta .btn-outline:focus-visible {
  background: #DFA441;
  border-color: #DFA441;
  color: #263238;
}

.faq-cta .btn-call {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff;
}

.faq-cta .btn-call:hover,
.faq-cta .btn-call:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #0F3D3E;
}

.detail-sidebar .sidebar-box,
.detail-sidebar .sidebar-panel,
.related-services {
  border-color: rgba(15, 61, 62, 0.12);
  background:
    radial-gradient(circle at top right, rgba(223, 164, 65, 0.08), transparent 36%),
    linear-gradient(145deg, #ffffff, #FFFDF7);
  box-shadow: 0 16px 40px rgba(15, 61, 62, 0.1);
}

.related-services h2 {
  color: #0F3D3E;
}

.related-services h2::after {
  background: linear-gradient(90deg, #DFA441, #2E8B7D);
}

.related-services ul {
  border-left-color: rgba(223, 164, 65, 0.28);
}

.related-services a:hover,
.related-services a:focus-visible,
.quick-contact a:hover,
.quick-contact a:focus-visible {
  color: #0F3D3E;
  background: rgba(223, 164, 65, 0.14);
}

.related-services a[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(135deg, #0F3D3E, #2E8B7D);
}

/* Service detail sidebar */
.detail-sidebar {
  display: grid;
  gap: 18px;
  align-self: start;
}

.detail-sidebar .sidebar-panel,
.detail-sidebar .sidebar-box,
.detail-sidebar .related-services {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(15, 61, 62, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 249, 0.94));
  box-shadow: 0 14px 34px rgba(15, 61, 62, 0.1);
}

.detail-sidebar .sidebar-box {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
  border-color: rgba(15, 61, 62, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 164, 65, 0.2), transparent 34%),
    linear-gradient(145deg, #0F3D3E, #153f36);
  color: #ffffff;
}

.detail-sidebar h2 {
  margin: 0 0 16px;
  color: #0F3D3E;
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  font-weight: 850;
  line-height: 1.22;
}

.detail-sidebar h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: #DFA441;
}

.detail-sidebar .sidebar-box h2 {
  margin: 0;
  color: #ffffff;
}

.detail-sidebar .sidebar-box h2::after {
  background: rgba(223, 164, 65, 0.9);
}

.detail-sidebar .sidebar-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.detail-sidebar .sidebar-box .btn-light {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  margin-top: 4px;
  border-color: #DFA441;
  background: #DFA441;
  color: #0F3D3E;
  font-weight: 850;
}

.detail-sidebar .sidebar-box .btn-light:hover,
.detail-sidebar .sidebar-box .btn-light:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #0F3D3E;
}

.related-services ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-services li + li {
  border-top: 0;
}

.related-services a {
  min-height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #263238;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}

.related-services a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-size: 0.74rem;
  font-weight: 900;
  color: #6c8177;
}

.related-services a:hover,
.related-services a:focus-visible {
  border-color: rgba(15, 61, 62, 0.18);
  background: rgba(223, 164, 65, 0.12);
  color: #0F3D3E;
}

.related-services a[aria-current="page"] {
  border-color: rgba(15, 61, 62, 0.28);
  background: #0F3D3E;
  color: #ffffff;
}

.related-services a[aria-current="page"]::after {
  color: #DFA441;
}

.quick-contact {
  display: grid;
  gap: 12px;
}

.quick-contact a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(15, 61, 62, 0.12);
  border-radius: 7px;
  color: #0F3D3E;
  font-weight: 800;
  text-decoration: none;
}

.quick-contact a i {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: rgba(46, 139, 125, 0.12);
  color: #2E8B7D;
}

.quick-contact a:hover,
.quick-contact a:focus-visible {
  border-color: rgba(223, 164, 65, 0.45);
  background: rgba(223, 164, 65, 0.12);
}

@media (max-width: 1080px) {
  .detail-sidebar .sidebar-box {
    position: static;
  }
}

/* Final media hover smoothing */
.card__media,
.video-card__frame {
  overflow: hidden;
}

.card__media img,
.service-card .card__media img,
.blog-card .card__media img,
.blog-list .card__media img,
.blog-preview .card__media img,
.video-card__frame img {
  transform: translateZ(0) scale(1);
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .card__media img,
.card:focus-within .card__media img,
.service-card:hover .card__media img,
.service-card:focus-within .card__media img,
.blog-card:hover .card__media img,
.blog-card:focus-within .card__media img,
.blog-list .card:hover .card__media img,
.blog-list .card:focus-within .card__media img,
.blog-preview .card:hover .card__media img,
.blog-preview .card:focus-within .card__media img,
.video-card:hover .video-card__frame img,
.video-card:focus-within .video-card__frame img {
  transform: translateZ(0) scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .card__media img,
  .service-card .card__media img,
  .blog-card .card__media img,
  .video-card__frame img {
    transition-duration: 1ms;
  }
}

/* Final contact info card decoration */
.contact-item::after {
  right: -38px;
  top: -38px;
  bottom: auto;
  width: 104px;
  height: 104px;
  background: rgba(46, 139, 125, 0.08);
}

/* Final references card treatment */
.references-grid {
  align-items: stretch;
}

.logo-grid .reference-card,
.reference-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(15, 61, 62, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 164, 65, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #FFFDF7 100%);
  box-shadow: 0 14px 34px rgba(15, 61, 62, 0.08);
  isolation: isolate;
}

.reference-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-top: 0;
  background: linear-gradient(180deg, #DFA441, #2E8B7D);
  opacity: 1;
}

.reference-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(15, 61, 62, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(223, 164, 65, 0.12), rgba(46, 139, 125, 0.08));
}

.reference-card > * {
  position: relative;
  z-index: 1;
}

.reference-mark {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  margin: 0 0 18px;
  border: 1px solid rgba(15, 61, 62, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(145deg, #0F3D3E, #2E8B7D);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 61, 62, 0.16);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.reference-sector {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(223, 164, 65, 0.22);
  border-radius: 999px;
  background: rgba(223, 164, 65, 0.14);
  color: #0F3D3E;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reference-card h2,
.reference-card h3 {
  margin: 0 0 10px;
  color: #0F3D3E;
  font-size: clamp(1.18rem, 1.45vw, 1.38rem);
  font-weight: 850;
  line-height: 1.22;
}

.reference-card p {
  max-width: 32ch;
  margin: 0;
  color: #4d5f70;
  line-height: 1.65;
}

.logo-grid .reference-card:hover,
.reference-card:hover {
  border-color: rgba(223, 164, 65, 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 164, 65, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #F7F3E8 100%);
  box-shadow: 0 20px 46px rgba(15, 61, 62, 0.12);
}

@media (max-width: 560px) {
  .logo-grid .reference-card,
  .reference-card {
    min-height: 220px;
    padding: 20px;
  }

  .reference-mark {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }
}

/* Final FAQ accordion treatment */
.faq-list {
  counter-reset: faq;
  gap: 14px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 62, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #FFFDF7 100%);
  box-shadow: 0 12px 28px rgba(15, 61, 62, 0.08);
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #DFA441, #2E8B7D);
  opacity: 0.82;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  counter-increment: faq;
  position: relative;
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px 16px 22px;
  border: 0;
  background: transparent;
  color: #0F3D3E;
  text-align: left;
  font: inherit;
  font-weight: 850;
  line-height: 1.35;
}

.faq-item button::before {
  content: counter(faq, decimal-leading-zero);
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: rgba(223, 164, 65, 0.16);
  color: #0F3D3E;
  font-size: 0.78rem;
  font-weight: 900;
}

.faq-item button::after {
  content: "\2b";
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(15, 61, 62, 0.08);
  color: #0F3D3E;
  font-family: "Font Awesome 6 Free";
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.faq-item button:hover,
.faq-item button:focus-visible,
.faq-item button[aria-expanded="true"] {
  background: rgba(223, 164, 65, 0.1);
  color: #0F3D3E;
}

.faq-item button:focus-visible {
  outline: 3px solid #DFA441;
  outline-offset: -3px;
}

.faq-item button[aria-expanded="true"]::before {
  background: #0F3D3E;
  color: #ffffff;
}

.faq-item button[aria-expanded="true"]::after {
  content: "\f068";
  background: #DFA441;
  color: #0F3D3E;
  transform: none;
}

.faq-panel {
  padding: 0 22px 20px 78px;
}

    .faq-panel p {
        max-width: 820px;
        margin: 0;
        color: #4d5f70;
        line-height: 1.72;
        margin-top: 20px;
    }

@media (max-width: 760px) {
  .faq-list {
    gap: 12px;
  }

  .faq-item button {
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    gap: 10px;
    min-height: 58px;
    padding: 14px 12px 14px 16px;
    font-size: 0.96rem;
  }

  .faq-item button::before {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  .faq-item button::after {
    width: 30px;
    height: 30px;
  }

  .faq-panel {
    padding: 0 16px 18px 60px;
  }
}

@media (max-width: 420px) {
  .faq-item button {
    grid-template-columns: minmax(0, 1fr) 30px;
  }

  .faq-item button::before {
    display: none;
  }

  .faq-panel {
    padding-left: 16px;
  }
}


.site-footer h3::after {
  background: linear-gradient(90deg, #DFA441, #2E8B7D);
}

.site-footer p,
.site-footer a,
.footer-list li {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #DFA441;
}

.topbar .social-list a,
.site-footer .social-list a {
  background: rgba(255, 253, 247, 0.12);
  border-color: rgba(255, 253, 247, 0.18);
  color: #ffffff;
}

.topbar .social-list a:hover,
.site-footer .social-list a:hover,
.topbar .social-list a:focus-visible,
.site-footer .social-list a:focus-visible {
  background: #FFFDF7;
  color: #0F3D3E;
}

.float-btn.back-to-top {
  background: #FFFDF7;
  border: 1px solid rgba(15, 61, 62, 0.18);
  color: #0F3D3E;
}

.float-btn.back-to-top:hover,
.float-btn.back-to-top:focus-visible {
  background: #0F3D3E;
  color: #ffffff;
}

.float-btn.call-mobile {
  background: #004A6A;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 74, 106, 0.22);
}

.float-btn.call-mobile:hover,
.float-btn.call-mobile:focus-visible {
  background: #0092BF;
  color: #ffffff;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #0F3D3E;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(15, 61, 62, 0.22);
  transition: transform 160ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

.card__media img,
.split > img {
  color: transparent;
}

@media (max-width: 760px) {
  .brand {
    gap: 9px;
    font-size: 0.98rem;
  }

  .brand__small {
    max-width: 170px;
    font-size: 0.58rem;
  }
}

/* Layout fixes */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body,
main,
section,
.site-header,
.carousel,
.site-footer,
.float-actions,
[data-floating-actions] {
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, var(--max));
}





.carousel,
.carousel__viewport,
.testimonial-carousel,
.testimonial-viewport {
  overflow: hidden;
}

.carousel__track,
.testimonial-track {
  max-width: 100%;
}

.carousel .card {
  min-width: calc((100% - (var(--carousel-gap) * 2)) / 3);
}

.float-actions {
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
}

.section {
  background: #ffffff;
}


.section.soft,
.home-services {
  background:#f9f9f9;
}

.home-services + .section.white {
  background: #f5f6ff;
}

.home-services + .section.white + .section.white {
  background: #ffffff;
}

.split {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.split > img {
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.about-split {
  align-items: start;
}

.about-split > img {
  width: min(100%, 650px);
  height: 450px;
  min-height: 0;
  justify-self: end;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1024px) {
  .about-split > img {
    width: 100%;
    height: min(450px, calc((100vw - 3rem) * 0.6923));
    justify-self: stretch;
  }
}

.progress-list {
  gap: 14px;
}

.progress-item {
  padding: 14px;
  border: 1px solid #dbeaf2;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(76, 135, 185, 0.08);
}

.progress-bar span {
  width: var(--progress, 0);
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid #dbeaf2;
  border-radius: 10px;
  background: #ffffff;
  color: #263238;
  box-shadow: 0 8px 20px rgba(76, 135, 185, 0.07);
}

.check-list li::before {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f1f6;
  color: #004A6A;
  font-size: 0.78rem;
}

.service-card > a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.service-card .card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card .card__body p {
  flex: 1;
}

.service-card .detail-text {
  align-self: flex-end;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #e8f1f6;
  color: #004A6A;
}

.service-card a:hover .detail-text,
.service-card a:focus-visible .detail-text {
  background: #004A6A;
  color: #ffffff;
}

.service-card a:hover .detail-text i,
.service-card a:focus-visible .detail-text i {
  color: #ffffff;
}

.logo-grid .reference-card,
.reference-card {
  border-color: #dbeaf2;
  background:
    radial-gradient(circle at top right, rgba(76, 135, 185, 0.12), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #f6f9fb 100%);
  box-shadow: 0 14px 32px rgba(94, 115, 139, 0.11);
}



.reference-card::after {
  background: rgba(76, 135, 185, 0.12);
}

.logo-grid .reference-card:hover,
.reference-card:hover {
  border-color: rgba(76, 135, 185, 0.34);
  box-shadow: 0 18px 42px rgba(94, 115, 139, 0.15);
}

.contact-list {
  align-items: stretch;
}

.contact-item {
  min-height: 100%;
  padding: 24px 20px;
  align-items: flex-start;
  text-align: left;
  border: 1px solid #dbeaf2;
  background:
    linear-gradient(145deg, #ffffff 0%, #f6f9fb 100%);
  box-shadow: 0 12px 28px rgba(76, 135, 185, 0.1);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 10px;
  background: #e8f1f6;
  color: #004A6A;
}

.contact-item h3 {
  margin: 0 0 6px;
  color: #004A6A;
}

.contact-item p {
  margin: 0;
  color: #5e738b;
  overflow-wrap: anywhere;
}

.contact-item a {
  color: #004A6A;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: #4c87b9;
}

.detail-sidebar {
  gap: 18px;
}

.detail-sidebar .sidebar-box,
.detail-sidebar .sidebar-panel,
.related-services {
  padding: 24px;
  border: 1px solid #dbeaf2;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(76, 135, 185, 0.12);
}

.related-services h2,
.detail-sidebar h2 {
  margin: 0 0 18px;
  color: #263238;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  cursor: default;
}

.related-services h2::after,
.detail-sidebar h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #004A6A, #4c87b9);
}

.related-services ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-left: 0;
  list-style: none;
}

.related-services li + li {
  border-top: 1px solid #dbeaf2;
}

.related-services a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 6px;
  border: 0;
  border-radius: 6px;
  color: #263238;
  font-weight: 800;
}

.related-services a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #4c87b9;
  font-size: 0.78rem;
}

.related-services a:hover,
.related-services a:focus-visible {
  background: #f6f9fb;
  color: #004A6A;
}

.related-services a[aria-current="page"] {
  padding-inline: 12px;
  background: #e8f1f6;
  color: #004A6A;
}

.related-services a[aria-current="page"]::after {
  color: #004A6A;
}

@media (max-width: 1080px) {
  .site-nav {
    width: min(390px, calc(100% - 20px));
    max-width: calc(100% - 20px);
    padding: 22px;
    border-left: 1px solid #dbeaf2;
    background:
      radial-gradient(circle at top right, rgba(76, 135, 185, 0.12), transparent 34%),
      #ffffff;
    box-shadow: -18px 0 42px rgba(38, 50, 56, 0.18);
  }

  .nav__list {
    gap: 8px;
  }

  .nav__link {
    min-height: 46px;
    justify-content: space-between;
    border-radius: 6px;
    padding: 12px 14px;
    background: #e8f1f6;
    color: #004A6A;
  }

  button.nav__link,
  .nav__toggle[aria-expanded="true"] {
    background: #e8f1f6;
    color: #004A6A;
  }

  .nav__link:hover,
  .nav__link:focus-visible,
  .nav__link[aria-current="page"],
  .nav__item.dropdown-open > .nav__toggle {
    background: #e8f1f6;
    color: #004A6A;
  }

  .dropdown {
    margin-top: 6px;
    padding: 8px;
    border-radius: 6px;
    background: #f6f9fb;
    box-shadow: none;
  }

    .dropdown a {
        min-height: 44px;
        display: flex;
        align-items: center;
        border-radius: 6px;
        margin-bottom: 2px;
        border-top: 1px solid #e4e5e6;
    }

  .carousel .card {
    min-width: calc((100% - var(--carousel-gap)) / 2);
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split > img {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .topbar__inner,
  .header__inner,
  .footer-main,
  .footer-bottom {
    max-width: 100%;
  }

  .carousel .card,
  .testimonial-card {
    min-width: 100%;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .float-actions {
    right: 12px;
  }
}

/* Header and floating actions fix */
:root {
  --site-header-offset: 0px;
}

body {
  padding-top: var(--site-header-offset);
}

[data-site-header] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  width: 100%;
  overflow: visible;
  transform: none;
  filter: none;
  perspective: none;
}

.site-header {
  position: relative;
  top: auto;
  left: auto;
  z-index: 5001;
  width: 100%;
  overflow: visible;
  transform: none;
  background: #ffffff;
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 61, 62, 0.16);
}

.topbar {
  overflow: hidden;
  max-height: 60px;
  opacity: 1;
  transform: none;
  transition: max-height 220ms ease, opacity 180ms ease, transform 220ms ease;
}

.topbar-hidden .topbar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.float-actions {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 5100;
  display: grid;
  grid-template-columns: 54px 54px;
  gap: 12px;
  align-items: center;
  justify-content: end;
  pointer-events: none;
}

.float-btn {
  min-width: 52px;
  min-height: 52px;
  pointer-events: auto;
  
}

.call-mobile {
  display: none;
}

.back-to-top {
  grid-column: 1;
  grid-row: 1;
}

.whatsapp {
  grid-column: 2;
  grid-row: 1;
  
}

.float-btn.call-mobile {
  background: #004A6A;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 74, 106, 0.22);
}

.float-btn.call-mobile:hover,
.float-btn.call-mobile:focus-visible {
  background: #0092BF;
  color: #ffffff;
}

@media (max-width: 767px) {
  .float-actions {
    right: max(24px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    grid-template-columns: 52px 48px;
    grid-template-rows: 52px 52px;
  }

  .call-mobile {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .back-to-top {
    grid-column: 1;
    grid-row: 2;
  }

  .whatsapp {
    grid-column: 2;
    grid-row: 2;
  }
}

a.floating-call,
.float-btn.call-mobile {
  position: fixed !important;
  right: 20px !important;
  bottom: 82px !important;
  z-index: 9999 !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  border-radius: 50% !important;
  background: #E87E04 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(232, 126, 4, 0.26) !important;
  pointer-events: auto !important;
}

a.floating-call:hover,
.floating-call:focus-visible,
.float-btn.call-mobile:hover,
.float-btn.call-mobile:focus-visible {
  background: #f2784b !important;
  color: #ffffff !important;
}

a.floating-call .call-icon,
.float-btn.call-mobile .call-icon {
  width: 23px !important;
  height: 23px !important;
  display: block !important;
  fill: currentColor !important;
}

/* Keyboard focus support for linked cards */
.card > a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  color: inherit;
}

.card > a:focus-visible {
  outline: 3px solid #ffaa00;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(255, 170, 0, 0.22);
}

.card:focus-within,
.service-card:focus-within,
.blog-card:focus-within,
.blog-list .card:focus-within,
.blog-preview .card:focus-within {
  z-index: 2;
  border-color: rgba(223, 164, 65, 0.78);
  outline: 3px solid #DFA441;
  outline-offset: 4px;
  box-shadow:
    0 0 0 6px rgba(223, 164, 65, 0.18),
    0 18px 42px rgba(15, 61, 62, 0.16),
    inset 0 0 0 2px rgba(255, 255, 255, 0.95);
}

.carousel .card:focus-within {
  outline-offset: -3px;
  box-shadow:
    0 0 0 4px rgba(223, 164, 65, 0.22),
    0 18px 42px rgba(15, 61, 62, 0.16),
    inset 0 0 0 3px #DFA441;
}

.card:focus-within .card__media img,
.service-card:focus-within img,
.blog-card:focus-within img,
.blog-list .card:focus-within img,
.blog-preview .card:focus-within img {
  transform: translateZ(0) scale(1.04);
}

.service-card:focus-within .detail-text {
  background: #004A6A;
  color: #ffffff;
}

.service-card:focus-within .detail-text i {
  color: #ffffff;
}

.carousel__viewport:focus-visible,
.testimonial-viewport:focus-visible {
  outline: 3px solid #DFA441;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(223, 164, 65, 0.2);
}

/* Header layout: brand/search/actions row + left-aligned navigation row */
.header-brand-row {
  border-bottom: 1px solid rgba(15, 61, 62, 0.08);
}

.header-brand-row__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-tools,
.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-tools {
  position: relative;
  margin-left: auto;
}

.header-search {
  position: relative;
}

.header-search__toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 74, 106, 0.16);
  border-radius: 6px;
  background: #ffffff;
  color: #004A6A;
  box-shadow: 0 10px 24px rgba(15, 61, 62, 0.06);
}

.header-search__toggle:hover,
.header-search__toggle:focus-visible,
.header-search__toggle[aria-expanded="true"] {
  background: #f6f9fb;
  border-color: rgba(0, 146, 191, 0.42);
  color: #0F3D3E;
}

.header-search__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 5200;
  width: min(360px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(0, 74, 106, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 61, 62, 0.18);
}

.header-search__panel[hidden] {
  display: none;
}

.header-search__form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  align-items: center;
}

.header-search__form input {
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #dce5e8;
  border-radius: 6px;
  color: #17212b;
}

.header-search__form button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: #004A6A;
  color: #ffffff;
}

.header-search__form button:hover,
.header-search__form button:focus-visible {
  background: #0092BF;
  color: #ffffff;
}

.nav-row {
  background: #ffffff;
}

.nav-row__inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-row .site-nav {
  width: 100%;
}

.nav-row .nav__list {
  justify-content: flex-start;
}

@media (min-width: 1081px) {
  .nav-row .site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}

@media (max-width: 1080px) {
  .header-brand-row__inner {
    min-height: 68px;
    gap: 14px;
  }

  .header-tools {
    flex-shrink: 0;
  }

  .header-search__panel {
    right: 0;
    width: min(340px, calc(100vw - 24px));
  }

  .nav-row,
  .nav-row__inner {
    min-height: 0;
    height: 0;
    border: 0;
  }

  .nav-row .site-nav {
    width: min(430px, 92vw);
  }
}

@media (max-width: 560px) {
  .header-brand-row__inner {
    gap: 10px;
  }

  .header-tools,
  .header__actions {
    gap: 8px;
  }

  .header-search__toggle,
  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .header-search__panel {
    position: fixed;
    top: calc(var(--site-header-offset) - 6px);
    left: 12px;
    right: 12px;
    width: auto;
  }
}

/* Responsive visibility utilities */
.review-submit-section,
.contact-submit-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.review-submit-layout {
  display: grid;
  gap: clamp(22px, 3vw, 32px);
  max-width: 980px;
  margin-inline: auto;
}

.review-submit-head,
.contact-submit-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.contact-submit-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.55fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.contact-info-column {
  position: sticky;
  top: calc(var(--site-header-offset, 126px) + 24px);
}

.contact-submit-layout .contact-list {
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-submit-layout .contact-item {
  min-height: auto;
  padding: 20px;
}

.contact-submit-layout .contact-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.contact-form-column {
  display: grid;
  gap: 18px;
}

.form-validation-badge {
  width: min(100%, 820px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-inline: auto;
  padding: 14px 16px;
  border: 1px solid rgba(177, 36, 36, 0.22);
  border-radius: 8px;
  background: #b42318;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(177, 36, 36, 0.18);
}

.form-validation-badge__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.form-validation-badge strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.35;
}

.form-validation-badge p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.5;
}

.review-form-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(0, 74, 106, 0.10);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
  box-shadow: 0 18px 48px rgba(0, 74, 106, 0.10);
}

.review-form-grid,
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.contact-request-form {
  width: 100%;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.review-verification {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: clamp(16px, 2.5vw, 20px);
  border: 1px solid rgba(0, 74, 106, 0.10);
  border-radius: 8px;
  background: #f8fbfc;
}

.review-verification__head {
  margin-bottom: 14px;
}

.review-verification__head h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.35;
}

.review-verification__head p {
  max-width: 620px;
  margin: 0;
  color: #4d5f70;
  font-size: 0.94rem;
  line-height: 1.65;
}

.review-verification__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 18px;
  align-items: end;
}

.review-verification .review-captcha {
  margin-top: 0;
}

.review-security-code {
  align-self: end;
}

.review-form-status {
  grid-column: 1 / -1;
}

.review-submit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-top: 4px;
}

.review-submit-actions .btn {
  min-width: 190px;
}

.btn-review-list {
  background: #004A6A;
  color: #ffffff;
  border-color: #004A6A;
}

.btn-review-list:hover,
.btn-review-list:focus-visible {
  background: #0092BF;
  border-color: #0092BF;
  color: #ffffff;
}

.contact-submit-actions .btn {
  min-width: 220px;
}

.review-captcha {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.review-captcha__image-link {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #d7e4ea;
  border-radius: 8px;
  background: #ffffff;
  padding: 8px;
}

.review-captcha__image-link:focus-visible,
.review-captcha__button:focus-visible {
  outline: 3px solid rgba(0, 146, 191, 0.35);
  outline-offset: 3px;
}

.review-captcha__image {
  display: block;
  max-width: 100%;
  height: auto;
}

.review-captcha__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-captcha__button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 700;
}

.form-success-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.form-success-card {
  width: min(100%, 760px);
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(0, 74, 106, 0.10);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 18px 48px rgba(0, 74, 106, 0.10);
}

.form-success-card__icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(18, 104, 63, 0.10);
  color: #12683f;
  font-size: 2rem;
}

.form-success-card h2 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
}

.form-success-card p {
  max-width: 580px;
  margin: 0;
  color: #4d5f70;
  line-height: 1.7;
}

.error-page-card {
  gap: 16px;
}

.error-page-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(232, 126, 4, 0.10);
  color: #b85d00;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.error-page-code--danger {
  background: rgba(180, 35, 24, 0.10);
  color: #b42318;
}

.error-page-card__icon {
  background: rgba(232, 126, 4, 0.12);
  color: #b85d00;
}

.error-page-card__icon--danger {
  background: rgba(180, 35, 24, 0.10);
  color: #b42318;
}

.error-page-contact-btn {
  border-color: rgba(0, 74, 106, 0.24);
  color: var(--navy);
  background: #ffffff;
}

.error-page-contact-btn:hover,
.error-page-contact-btn:focus-visible {
  border-color: var(--cta);
  color: var(--white);
  background: var(--cta);
  box-shadow: 0 12px 26px rgba(232, 126, 4, 0.24);
}

.form-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
}

@media (max-width: 980px) {
  .contact-submit-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-column {
    position: static;
    order: 2;
  }

  .contact-form-column {
    order: 1;
  }

  .contact-submit-layout .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-verification__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-submit-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-column {
    position: static;
    order: 2;
  }

  .contact-form-column {
    order: 1;
  }

  .review-form-grid,
  .contact-form-grid,
  .review-verification__body {
    grid-template-columns: 1fr;
  }

  .review-form-card,
  .contact-form-card {
    padding: 20px;
  }

  .review-submit-actions .btn,
  .form-success-actions .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .review-captcha__actions {
    flex-direction: column;
  }

  .review-captcha__button {
    width: 100%;
  }

  .form-validation-badge {
    align-items: flex-start;
    padding: 13px 14px;
  }
}

/* Final service detail sidebar treatment */
.detail-sidebar {
  display: grid;
  align-self: start;
  gap: 18px;
}

.detail-sidebar .sidebar-panel,
.detail-sidebar .sidebar-box,
.detail-sidebar .related-services {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(15, 61, 62, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 249, 0.94));
  box-shadow: 0 14px 34px rgba(15, 61, 62, 0.1);
}

.detail-sidebar .sidebar-box {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
  border-color: rgba(15, 61, 62, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 164, 65, 0.2), transparent 34%),
    linear-gradient(145deg, #0F3D3E, #153f36);
  color: #ffffff;
}

.detail-sidebar h2 {
  margin: 0 0 16px;
  color: #0F3D3E;
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  font-weight: 850;
  line-height: 1.22;
}

.detail-sidebar h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: #DFA441;
}

.detail-sidebar .sidebar-box h2 {
  margin: 0;
  color: #ffffff;
}

.detail-sidebar .sidebar-box h2::after {
  background: rgba(223, 164, 65, 0.9);
}

.detail-sidebar .sidebar-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.detail-sidebar .sidebar-box .btn-light {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  margin-top: 4px;
  border-color: #DFA441;
  background: #DFA441;
  color: #0F3D3E;
  font-weight: 850;
}

.detail-sidebar .sidebar-box .btn-light:hover,
.detail-sidebar .sidebar-box .btn-light:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #0F3D3E;
}

.detail-sidebar .related-services ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  border-left: 0;
  list-style: none;
}

.detail-sidebar .related-services li + li {
  border-top: 0;
}

.detail-sidebar .related-services a {
  min-height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #263238;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}

.detail-sidebar .related-services a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-size: 0.74rem;
  font-weight: 900;
  color: #6c8177;
}

.detail-sidebar .related-services a:hover,
.detail-sidebar .related-services a:focus-visible {
  border-color: rgba(15, 61, 62, 0.18);
  background: rgba(223, 164, 65, 0.12);
  color: #0F3D3E;
}

.detail-sidebar .related-services a[aria-current="page"] {
  border-color: rgba(15, 61, 62, 0.28);
  background: #0F3D3E;
  color: #ffffff;
}

.detail-sidebar .related-services a[aria-current="page"]::after {
  color: #DFA441;
}

.detail-sidebar .quick-contact {
  display: grid;
  gap: 12px;
}

.detail-sidebar .quick-contact a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(15, 61, 62, 0.12);
  border-radius: 7px;
  color: #0F3D3E;
  font-weight: 800;
  text-decoration: none;
}

.detail-sidebar .quick-contact a i {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: rgba(46, 139, 125, 0.12);
  color: #2E8B7D;
}

.detail-sidebar .quick-contact a:hover,
.detail-sidebar .quick-contact a:focus-visible {
  border-color: rgba(223, 164, 65, 0.45);
  background: rgba(223, 164, 65, 0.12);
}

@media (max-width: 1080px) {
  .detail-sidebar .sidebar-box {
    position: static;
  }
}

/* Final references card override */
.references-grid {
  align-items: stretch;
}

.logo-grid .reference-card,
.reference-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(15, 61, 62, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 164, 65, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #FFFDF7 100%);
  box-shadow: 0 14px 34px rgba(15, 61, 62, 0.08);
  isolation: isolate;
}

.reference-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-top: 0;
  background: linear-gradient(180deg, #DFA441, #2E8B7D);
  opacity: 1;
}

.reference-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(15, 61, 62, 0.1);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(223, 164, 65, 0.12), rgba(46, 139, 125, 0.08));
}

.reference-card > * {
  position: relative;
  z-index: 1;
}

.reference-mark {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  margin: 0 0 18px;
  border: 1px solid rgba(15, 61, 62, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(145deg, #0F3D3E, #2E8B7D);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 61, 62, 0.16);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.reference-sector {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(223, 164, 65, 0.22);
  border-radius: 999px;
  background: rgba(223, 164, 65, 0.14);
  color: #0F3D3E;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reference-card h2,
.reference-card h3 {
  margin: 0 0 10px;
  color: #0F3D3E;
  font-size: clamp(1.18rem, 1.45vw, 1.38rem);
  font-weight: 850;
  line-height: 1.22;
}

.reference-card p {
  max-width: 32ch;
  margin: 0;
  color: #4d5f70;
  line-height: 1.65;
}

.logo-grid .reference-card:hover,
.reference-card:hover {
  border-color: rgba(223, 164, 65, 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 164, 65, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #F7F3E8 100%);
  box-shadow: 0 20px 46px rgba(15, 61, 62, 0.12);
}

@media (max-width: 560px) {
  .logo-grid .reference-card,
  .reference-card {
    min-height: 220px;
    padding: 20px;
  }

  .reference-mark {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }
}

/* Final service carousel mobile behavior */
@media (max-width: 1080px) {
  [data-service-carousel].carousel__viewport {
    overflow: visible;
    scroll-snap-type: none;
    touch-action: pan-y;
  }

  [data-service-carousel] .carousel__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    transform: none !important;
    touch-action: pan-y;
  }

  [data-service-carousel] .service-card {
    min-width: 0;
    scroll-snap-align: none;
    touch-action: pan-y;
  }

  .home-services .carousel__actions {
    display: none;
  }
}

@media (max-width: 760px) {
  [data-service-carousel] .carousel__track {
    grid-template-columns: 1fr;
  }
}
