:root {
  --navy: #101d38;
  --navy-2: #172947;
  --blue: #2186ec;
  --orange: #f47c20;
  --orange-dark: #d95f08;
  --ink: #121a2b;
  --muted: #657087;
  --line: #e7ebf1;
  --surface: #f5f7fa;
  --white: #fcfdff;
  --radius: 14px;
  --container: min(1320px, calc(100% - 64px));
  --shadow: 0 18px 45px rgba(20, 39, 70, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 99;
  background: var(--orange);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  position: relative;
  z-index: 10;
  background: #fff;
}
.topbar {
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}
.topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.socials {
  display: flex;
  gap: 8px;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}
.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #eef5fd;
  border: 1px solid #dbe9f8;
  border-radius: 50%;
  color: var(--blue);
  transition: 0.2s ease;
}
.socials a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}
.top-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.top-contact i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
}
.representative {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 9px;
}
.representative .avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef4fb;
  color: var(--blue);
  font-size: 20px;
}
.representative span:last-child {
  display: grid;
  line-height: 1.15;
}
.representative small {
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}

.navbar {
  background: #fff;
  box-shadow: 0 5px 20px rgba(21, 37, 64, 0.06);
}
.nav-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 218px;
}
.brand-mark {
  position: relative;
  width: 43px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 45px;
}
.brand-mark .ph-wrench {
  position: absolute;
  font-size: 20px;
  color: var(--orange);
  transform: rotate(-38deg);
}
.brand > span:last-child {
  display: grid;
  line-height: 0.95;
  letter-spacing: -0.7px;
}
.brand strong {
  color: var(--navy);
  font-size: 26px;
  font-weight: 800;
}
.brand small {
  color: var(--muted);
  margin-top: 8px;
  font-size: 15px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.6vw, 30px);
  flex: 1;
  white-space: nowrap;
}
.primary-nav a {
  font-weight: 700;
  font-size: 14px;
  color: #242b3b;
  transition: color 0.2s ease;
}
.primary-nav a:hover {
  color: var(--orange);
}
.primary-nav i {
  font-size: 11px;
  margin-left: 4px;
}
.search-btn {
  border: 0;
  background: #f7f9fc;
  color: #95a1b4;
  border-radius: 999px;
  padding: 12px 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
}
.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 25px;
}
.mobile-nav-actions,
.mobile-socials {
  display: none;
}

.hero-slider {
  position: relative;
  min-height: calc(100dvh - 144px);
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  min-height: inherit;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background: var(--slide-image) center/cover no-repeat;
  transform: scale(1.035);
  transition:
    opacity 0.75s ease,
    visibility 0.75s ease,
    transform 5.5s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 17, 33, 0.88) 0%,
    rgba(8, 17, 33, 0.66) 45%,
    rgba(8, 17, 33, 0.24) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 80px 104px;
}
.hero-slide .hero-content > * {
  opacity: 0;
  transform: translateY(18px);
}
.hero-slide.is-active .hero-content > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide.is-active .hero-content > :nth-child(2) {
  transition-delay: 0.08s;
}
.hero-slide.is-active .hero-content > :nth-child(3) {
  transition-delay: 0.15s;
}
.hero-slide.is-active .hero-content > :nth-child(4) {
  transition-delay: 0.22s;
}
.hero-kicker {
  margin: 0 0 16px;
  color: #ffd2ae;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-slide h1,
.hero-slide h2 {
  max-width: 790px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -3px;
  text-wrap: balance;
}
.hero-content > p:not(.hero-kicker) {
  max-width: 680px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}
.slider-dots {
  position: absolute;
  z-index: 4;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.slider-dots .active {
  width: 32px;
  border-radius: 999px;
  background: #fff;
}
.slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(9, 20, 39, 0.26);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}
.hero-slider:hover .slider-arrow,
.slider-arrow:focus-visible {
  opacity: 1;
}
.slider-arrow:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.slider-prev {
  left: 28px;
}
.slider-next {
  right: 28px;
}

.trust-rail {
  position: relative;
  z-index: 6;
  background: #fff;
}
.trust-rail-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -34px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(24, 48, 83, 0.13);
  backdrop-filter: blur(14px);
}
.trust-rail-grid > * {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 22px;
  border-right: 1px solid var(--line);
}
.trust-rail-grid > *:last-child {
  border-right: 0;
}
.trust-rail-grid i {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff0e5;
  color: var(--orange-dark);
  font-size: 23px;
}
.trust-rail-grid span {
  min-width: 0;
  display: grid;
}
.trust-rail-grid strong {
  color: var(--navy);
  font-size: 15px;
}
.trust-rail-grid small {
  color: var(--muted);
  white-space: nowrap;
}
.trust-rail-grid a:hover strong {
  color: var(--orange-dark);
}

.section {
  padding: 112px 0;
}
.section-label {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -2px;
}
.about {
  background: #f8fafc;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 86px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  object-position: 34% center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.experience {
  position: absolute;
  right: -32px;
  bottom: 38px;
  padding: 22px 28px;
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(244, 124, 32, 0.32);
}
.experience strong {
  font-size: 46px;
  line-height: 1;
}
.experience span {
  line-height: 1.25;
  font-weight: 800;
}
.about-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 17px;
  margin: 24px 0;
}
.proof-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 32px;
}
.proof-list > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.proof-list i {
  color: var(--orange);
  font-size: 26px;
  margin-top: 1px;
}
.proof-list span {
  display: grid;
}
.proof-list strong {
  color: var(--navy);
}
.proof-list small {
  color: var(--muted);
  font-size: 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 5px;
}

.services {
  background: #fff;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 45px;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.service-card {
  position: relative;
  min-height: 286px;
  padding: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(32, 49, 76, 0.05);
}
.service-card.featured {
  grid-row: span 2;
  min-height: 592px;
  padding: 0;
}
.service-photo {
  min-height: 325px;
  background:
    linear-gradient(rgba(10, 24, 47, 0.06), rgba(10, 24, 47, 0.12)),
    url("assets/pipe-camera-inspection.jpg") 48% center/cover;
}
.service-body {
  padding: 34px;
}
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: #eef5fd;
  color: var(--blue);
  border-radius: 12px;
  font-size: 30px;
}
.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}
.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
}
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}
.service-card.orange {
  background: var(--orange);
  border-color: var(--orange);
}
.service-card.blue {
  background: #edf6ff;
  border-color: #d6e9fb;
}
.service-card.orange .service-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.service-card.orange h3,
.service-card.orange p,
.service-card.orange a {
  color: #fff;
}
.service-card.orange p {
  opacity: 0.86;
}

.cta-band {
  background: var(--orange);
  color: #fff;
}
.cta-inner {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.cta-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 38px;
}
.cta-inner p {
  margin: 0 0 3px;
  font-weight: 800;
  opacity: 0.85;
}
.cta-inner h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -1px;
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}

.coverage {
  overflow: hidden;
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: center;
}
.coverage-grid > div:first-child > p:not(.section-label) {
  color: var(--muted);
  font-size: 17px;
  max-width: 650px;
}
.districts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.districts span {
  padding: 10px 15px;
  background: var(--surface);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}
.coverage-panel {
  min-height: 380px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(31, 130, 232, 0.72), rgba(15, 31, 60, 0.9)),
    url("assets/service-team.jpg") center/cover;
  box-shadow: var(--shadow);
}
.coverage-panel > i {
  font-size: 64px;
  margin-bottom: auto;
}
.coverage-panel strong {
  font-size: 32px;
}
.coverage-panel p {
  opacity: 0.82;
}
.coverage-panel a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact {
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.contact h2 {
  color: var(--navy);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.contact-items {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}
.contact-items > * {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-items i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background: #fff0e5;
  color: var(--orange-dark);
  border-radius: 12px;
  font-size: 22px;
}
.contact-items span {
  display: grid;
}
.contact-items small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.contact-form {
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: #f7f9fc;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(24, 46, 78, 0.1);
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d7dce6;
  background: #f8fafc;
  padding: 13px 15px;
  color: var(--ink);
  border-radius: 9px;
  outline: 0;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 124, 32, 0.15);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #727d90;
}
.btn-orange {
  grid-column: 1 / -1;
  justify-self: start;
  background: var(--orange);
  color: #fff;
  border-radius: 9px;
}
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: #27643a;
  font-weight: 700;
}

.guide {
  background: #f5f8fc;
}
.guide-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
}
.guide-grid > div {
  padding-right: 50px;
  align-self: center;
}
.guide-grid article {
  padding: 34px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.guide-grid article span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}
.guide-grid h3 {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.25;
}
.guide-grid article p {
  color: var(--muted);
}
.guide-grid article a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  font-weight: 800;
  color: var(--navy);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
  align-items: start;
}
.faq-grid > div:first-child > p:last-child {
  color: var(--muted);
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 19px;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary i {
  transition: transform 0.2s ease;
}
.accordion details[open] summary i {
  transform: rotate(45deg);
  color: var(--orange);
}
.accordion details p {
  color: var(--muted);
  margin: 14px 50px 0 0;
}

.footer {
  padding: 76px 0 20px;
  background: #0b1529;
  color: #aeb8ca;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.8fr 1fr;
  gap: 55px;
}
.footer .brand strong {
  color: #fff;
}
.footer .brand small {
  color: #9aa8bd;
}
.footer-grid > div:first-child p {
  max-width: 330px;
}
.footer-grid h3 {
  color: #fff;
  font-size: 17px;
  margin: 0 0 18px;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.floating-actions {
  position: fixed;
  z-index: 20;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 12px;
}
.floating-actions a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease;
}
.floating-actions a:hover {
  transform: translateY(-2px);
}
.floating-actions .whatsapp {
  background: #20ca66;
}
.floating-actions .call {
  background: var(--blue);
}
.mobile-quickbar {
  display: none;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.inner-page .navbar {
  position: relative;
}
.page-hero {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--page-image, url("assets/hero-plumbing.jpg")) center/cover;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 23, 45, 0.9),
    rgba(10, 23, 45, 0.55),
    rgba(10, 23, 45, 0.18)
  );
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero p {
  margin: 0 0 12px;
  color: #ffd1ad;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -2.6px;
}
.breadcrumb {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.breadcrumb a:hover {
  color: #fff;
}
.inner-section {
  padding: 96px 0;
  background: #fff;
}
.inner-section.soft {
  background: #f6f9fc;
}
.inner-section h2 {
  max-width: 850px;
  margin-bottom: 24px;
}
.inner-section .lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.content-split img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.content-points div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.content-points i {
  color: var(--orange);
  font-size: 25px;
}
.content-points strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
}
.inner-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}
.inner-service {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.inner-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.inner-service i {
  color: var(--blue);
  font-size: 36px;
}
.inner-service h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 24px;
}
.inner-service p {
  margin: 0;
  color: var(--muted);
}
.service-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  margin: 38px 0 24px;
}
.service-showcase figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-showcase img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-showcase figure:hover img {
  transform: scale(1.035);
}
.service-showcase figcaption {
  position: absolute;
  inset: auto 20px 20px;
  padding: 13px 16px;
  color: #fff;
  background: rgba(10, 24, 47, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  font-weight: 800;
}
.area-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
  margin: 36px 0 10px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.area-showcase img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: calc(var(--radius) - 7px);
}
.area-showcase h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 28px;
}
.area-showcase p {
  margin: 0 0 18px;
  color: var(--muted);
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.region-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}
.region-card i {
  color: var(--orange);
  font-size: 28px;
}
.region-card h3 {
  color: var(--navy);
  margin: 12px 0 4px;
}
.region-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover img {
  transform: scale(1.04);
}
.blog-card div {
  padding: 26px;
}
.blog-card small {
  color: var(--orange-dark);
  font-weight: 800;
}
.blog-card h2 {
  margin: 10px 0;
  font-size: 25px;
  letter-spacing: -0.7px;
}
.blog-card p {
  color: var(--muted);
}
.page-contact {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}
.page-contact .contact-form {
  position: sticky;
  top: 24px;
}

@media (max-width: 960px) {
  .inner-page .navbar {
    position: relative;
  }
  .page-hero {
    min-height: 350px;
    padding-top: 60px;
  }
  .content-split,
  .page-contact,
  .area-showcase {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .service-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-list {
    grid-template-columns: 1fr 1fr;
  }
  .page-contact .contact-form {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 330px;
    padding-top: 32px;
    background-position: 58% center;
  }
  .page-hero h1 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
  .inner-section {
    padding: 70px 0;
  }
  .inner-service-grid,
  .region-grid,
  .blog-list,
  .content-points,
  .service-showcase {
    grid-template-columns: 1fr;
  }
  .service-showcase figure {
    min-height: 245px;
  }
  .area-showcase {
    gap: 24px;
    padding: 12px 12px 26px;
  }
  .area-showcase > div {
    padding: 0 10px;
  }
}

@media (max-width: 1180px) {
  :root {
    --container: min(1120px, calc(100% - 40px));
  }
  .landline,
  .search-btn span {
    display: none;
  }
  .primary-nav {
    gap: 16px;
  }
  .primary-nav a {
    font-size: 13px;
  }
  .brand {
    min-width: 205px;
  }
}

@media (max-width: 960px) {
  .topbar {
    display: none;
  }
  .navbar {
    position: absolute;
    inset: 0 0 auto;
    background: #fff;
  }
  .nav-inner {
    min-height: 76px;
    justify-content: space-between;
  }
  .brand {
    min-width: auto;
  }
  .brand strong {
    font-size: 22px;
  }
  .brand small {
    font-size: 12px;
    letter-spacing: 2.4px;
  }
  .brand-mark {
    width: 36px;
    font-size: 38px;
  }
  .mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-socials {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .mobile-socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eef5fd;
    color: var(--blue);
  }
  .menu-toggle {
    display: grid;
    place-items: center;
  }
  .search-btn {
    display: none;
  }
  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    padding: 18px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .primary-nav.open {
    display: grid;
    gap: 2px;
  }
  .primary-nav a {
    padding: 11px 8px;
    border-bottom: 1px solid var(--line);
  }
  .hero-slider {
    min-height: 100dvh;
  }
  .hero-slide {
    background-position: 38% center;
  }
  .hero-content {
    padding-top: 130px;
  }
  .about-grid,
  .coverage-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .about-visual {
    max-width: 720px;
  }
  .experience {
    right: 18px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card.featured {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: auto;
  }
  .service-photo {
    min-height: 380px;
  }
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }
  .guide-grid > div {
    grid-column: 1 / -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-rail-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: -24px;
  }
  .trust-rail-grid > *:nth-child(2) {
    border-right: 0;
  }
  .trust-rail-grid > *:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 32px);
  }
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
  .section {
    padding: 76px 0;
  }
  .nav-inner {
    min-height: 76px;
  }
  .brand strong {
    font-size: 19px;
  }
  .brand small {
    margin-top: 6px;
    font-size: 10px;
  }
  .mobile-socials a {
    width: 32px;
    height: 32px;
  }
  .hero-slider {
    min-height: 92svh;
  }
  .hero-slide {
    align-items: flex-end;
    background-position: 50% center;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 17, 33, 0.22) 0%,
      rgba(8, 17, 33, 0.82) 58%,
      rgba(8, 17, 33, 0.96) 100%
    );
  }
  .hero-content {
    width: 100%;
    padding: 126px 16px 92px;
    overflow: hidden;
  }
  .hero-kicker {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .hero-slide h1,
  .hero-slide h2 {
    max-width: 100%;
    font-size: clamp(30px, 8.4vw, 37px);
    line-height: 1.08;
    letter-spacing: -1.2px;
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }
  .hero-content > p:not(.hero-kicker) {
    font-size: 15px;
    line-height: 1.65;
    margin: 18px 0 24px;
  }
  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }
  .hero-actions .btn {
    min-width: 0;
    width: 100%;
    padding-inline: 8px;
    font-size: 12px;
  }
  .slider-arrow {
    display: none;
  }
  .trust-rail {
    padding: 18px 0 4px;
    overflow: hidden;
  }
  .trust-rail-grid {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0 16px 10px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scrollbar-width: none;
  }
  .trust-rail-grid::-webkit-scrollbar {
    display: none;
  }
  .trust-rail-grid > * {
    flex: 0 0 78%;
    min-height: 82px;
    padding: 13px 15px;
    border: 1px solid var(--line) !important;
    border-radius: 13px;
    scroll-snap-align: center;
    background: #fff;
  }
  .trust-rail-grid i {
    width: 40px;
    height: 40px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.4px;
  }
  .about-visual img {
    aspect-ratio: 1;
  }
  .experience {
    right: 12px;
    bottom: 12px;
    min-width: 175px;
    padding: 17px 20px;
  }
  .experience strong {
    font-size: 36px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    grid-column: auto;
  }
  .service-photo {
    min-height: 250px;
  }
  .service-card {
    min-height: 260px;
    padding: 28px;
  }
  .service-body {
    padding: 28px;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 46px 0;
    gap: 16px;
  }
  .cta-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .coverage-panel {
    min-height: 330px;
    padding: 32px;
  }
  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .field.full,
  .btn-orange {
    grid-column: auto;
  }
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .guide-grid > div {
    grid-column: auto;
    padding-right: 0;
  }
  .faq-grid {
    gap: 36px;
  }
  .accordion summary {
    font-size: 17px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .floating-actions {
    display: none;
  }
  .mobile-quickbar {
    position: fixed;
    z-index: 40;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    min-height: 58px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    background: rgba(15, 29, 56, 0.96);
    box-shadow: 0 16px 40px rgba(7, 19, 40, 0.35);
    backdrop-filter: blur(18px);
  }
  .mobile-quickbar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    color: #fff;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 800;
  }
  .mobile-quickbar a i {
    font-size: 20px;
  }
  .mobile-quickbar .quick-whatsapp {
    background: #17b95d;
  }
  .contact-items strong {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
