:root {
  --navy-900: #0a1f3d;
  --navy-800: #0f2d52;
  --saffron: #f5821f;
  --saffron-dark: #d96a0c;
  --saffron-tint: #fdeee0;
  --paper: #fff;
  --mist: #f5f7fa;
  --line: #e4e8ef;
  --ink: #1b2430;
  --ink-soft: #5b6472;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 31, 61, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 31, 61, 0.14);
}

/* Homepage components. Keep these scoped so shared inner pages remain stable. */
body.home-page {
  overflow-x: hidden;
}
body.home-page .brand > img {
  display: block;
  width: auto;
  height: 54px;
  max-width: 190px;
  object-fit: contain;
}
body.home-page .hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: var(--navy-900);
  color: #fff;
}
body.home-page .hero h1 {
  max-width: 720px;
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.1;
  font-weight: 700;
}
body.home-page .eyebrow-on-dark {
  color: #ff9b45;
}
body.home-page .lead-sub {
  margin: 0;
  color: #dce7f6;
  font-size: 18px;
}
body.home-page .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
body.home-page .btn-saffron,
body.home-page .btn-outline-light,
body.home-page .btn-outline-navy {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
}
body.home-page .btn-saffron {
  border: 1px solid var(--saffron);
  background: var(--saffron);
  color: #fff;
}
body.home-page .btn-outline-light {
  border: 1px solid #69809f;
  color: #fff;
}
body.home-page .btn-outline-navy {
  border: 1px solid #b8c2d0;
  color: var(--navy-900);
}
body.home-page .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
}
body.home-page .hero-trust span::before {
  content: "\2713";
  margin-right: 7px;
  color: var(--saffron);
}
body.home-page .quote-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--saffron);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
body.home-page .quote-card h3 {
  margin: 0 0 4px;
  font-size: 22px;
}
body.home-page .quote-card .sub {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 13px;
}
body.home-page .quote-card .field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}
body.home-page .quote-card .field-full {
  grid-template-columns: 1fr;
}
body.home-page .quote-card input,
body.home-page .quote-card select {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 13px;
  border: 1px solid #dce2eb;
  border-radius: 8px;
  background: var(--mist);
}
body.home-page .trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
body.home-page .trust-item {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 12px;
}
body.home-page .trust-item .ic {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--saffron-tint);
}
body.home-page .trust-item strong,
body.home-page .trust-item span {
  display: block;
}
body.home-page .trust-item strong {
  color: var(--navy-900);
  font-size: 13px;
}
body.home-page .trust-item span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 11px;
}
body.home-page .section {
  padding: 76px 0;
}
body.home-page .section-mist {
  background: var(--mist);
}
body.home-page .section-navy {
  background: var(--navy-900);
  color: #fff;
}
body.home-page .section-navy h2,
body.home-page .section-navy h4 {
  color: #fff;
}
body.home-page .sec-head {
  max-width: 760px;
  margin-bottom: 38px;
}
body.home-page .sec-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
body.home-page .sec-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}
body.home-page .about-home-row,
body.home-page .why-home-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 48px;
}
body.home-page .why-home-row {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
body.home-page .about-visual,
body.home-page .why-visual {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
body.home-page .about-visual img,
body.home-page .why-visual img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
}
body.home-page .section-title-compact,
body.home-page .section-title-spaced {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}
body.home-page .about-lead {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}
body.home-page .about-check-list {
  margin-bottom: 24px;
}
body.home-page .chk,
body.home-page .why-list .col {
  color: var(--navy-900);
  font-weight: 600;
}
body.home-page .chk::before {
  content: "\2713";
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  font-size: 12px;
}
body.home-page .why-list .ic {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--saffron-tint);
  color: var(--saffron-dark);
}
body.home-page .service-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 31, 61, 0.05);
}
body.home-page .service-card .service-ic {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: var(--saffron-tint);
}
body.home-page .service-card h4 {
  margin: 0 0 10px;
  font-size: 21px;
}
body.home-page .service-card h4 a {
  color: var(--navy-900);
  text-decoration: none;
}
body.home-page .service-card h4 a:hover {
  color: var(--saffron-dark);
}
body.home-page .service-card p {
  color: var(--ink-soft);
  line-height: 1.65;
}
body.home-page .service-card a {
  color: var(--saffron-dark);
  font-weight: 700;
}
body.home-page .steps-row {
  position: relative;
}
body.home-page .step-line {
  position: absolute;
  top: 20px;
  right: 10%;
  left: 10%;
  z-index: 0;
  width: auto;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.28);
}
body.home-page .step-card {
  position: relative;
  z-index: 1;
}
body.home-page .step-num {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  font-weight: 800;
}
body.home-page .step-card p {
  color: #b9c9de;
}
body.home-page .blog-card,
body.home-page .review-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 31, 61, 0.05);
}
body.home-page .blog-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
body.home-page .blog-card > div:not(.blog-image),
body.home-page .blog-card .blog-content {
  padding: 20px;
}
body.home-page .loc-chip {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(10, 31, 61, 0.04);
}
body.home-page .loc-chip span {
  color: var(--saffron-dark);
}
body.home-page .loc-chip:hover {
  border-color: #f5b174;
  color: var(--saffron-dark);
  transform: translateY(-2px);
}
body.home-page .section-note {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink-soft);
  line-height: 1.7;
}
body.home-page .route-card {
  display: flex;
  height: 100%;
  min-height: 235px;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--saffron);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
body.home-page .route-card .from {
  color: var(--ink-soft);
  font-size: 14px;
}
body.home-page .route-card .to {
  margin: 6px 0;
  color: var(--navy-900);
  font-family: Poppins, sans-serif;
  font-size: 23px;
  font-weight: 700;
}
body.home-page .route-line-mini {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  margin: 13px 0 4px;
  color: var(--saffron);
}
body.home-page .route-line-mini .dash {
  height: 1px;
  flex: 1;
  background: var(--line);
}
body.home-page .route-card small {
  margin-bottom: 18px;
  color: var(--ink-soft);
}
body.home-page .route-card a {
  margin-top: auto;
  color: var(--saffron-dark);
  font-weight: 700;
}
body.home-page .mat-card {
  display: flex;
  height: 100%;
  min-height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}
body.home-page .mat-card .ic {
  font-size: 28px;
}
body.home-page .mat-card span {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 600;
}
body.home-page .gal-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 26px;
}
body.home-page .gal-tab {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 600;
}
body.home-page .gal-tab.active,
body.home-page .gal-tab:hover {
  border-color: var(--saffron);
  background: var(--saffron);
  color: #fff;
}
body.home-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body.home-page .gal-item {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  margin: 0;
  border-radius: 8px;
  background: var(--navy-900);
}
body.home-page .gal-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
body.home-page .gal-item:hover img {
  transform: scale(1.035);
}
body.home-page .gal-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(transparent, rgba(10, 31, 61, 0.86));
  color: #fff;
  font-weight: 600;
}
body.home-page .review-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 24px;
}
body.home-page .review-card .stars {
  margin-bottom: 14px;
  color: var(--saffron);
  letter-spacing: 2px;
}
body.home-page .review-card .quote {
  color: var(--ink-soft);
  line-height: 1.7;
}
body.home-page .review-who {
  margin-top: auto;
  padding-top: 16px;
}
body.home-page .review-who strong,
body.home-page .review-who span {
  display: block;
}
body.home-page .review-who span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
}
body.home-page .faq-container {
  max-width: 940px;
}
body.home-page .faq-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
body.home-page .faq-q {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  color: var(--navy-900);
  font-weight: 700;
  cursor: pointer;
}
body.home-page .faq-q .plus {
  color: var(--saffron-dark);
  font-size: 24px;
}
body.home-page .faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}
body.home-page .faq-item.open .faq-a {
  display: block;
}
body.home-page .blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
body.home-page .blog-card .thumb {
  display: block;
  height: 220px;
  overflow: hidden;
  background: var(--navy-800);
}
body.home-page .blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home-page .blog-card .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
body.home-page .blog-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
}
body.home-page .blog-card h4 a {
  color: var(--navy-900);
}
body.home-page .blog-card .blog-excerpt {
  color: var(--ink-soft);
  line-height: 1.65;
}
body.home-page .blog-card .rl {
  margin-top: auto;
  padding-top: 14px;
  color: var(--saffron-dark);
  font-weight: 700;
}
.blog-grid,
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(10, 31, 61, 0.06);
}
.blog-card .thumb,
.blog-card .blog-image {
  display: block;
  height: 250px;
  overflow: hidden;
  background: var(--navy-800);
}
.blog-card .thumb img,
.blog-card .blog-image img,
.blog-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.blog-card .thumb span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 34px;
}
.blog-card .body,
.blog-card .blog-content,
.blog-card > div:not(.thumb):not(.blog-image) {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}
.blog-card h3,
.blog-card h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.32;
}
.blog-card h3 a,
.blog-card h4 a {
  color: var(--navy-900);
}
.blog-card h3 a:hover,
.blog-card h4 a:hover {
  color: var(--saffron-dark);
}
.blog-card p,
.blog-card .blog-excerpt {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}
.blog-card .rl,
.blog-card .read-more {
  margin-top: auto;
  padding-top: 14px;
  color: var(--saffron-dark);
  font-weight: 800;
}
body.home-page .final-cta-section {
  padding: 72px 0;
  background: #fff;
}
body.home-page .final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 46px 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
body.home-page .final-cta .eyebrow {
  margin-bottom: 0;
}
body.home-page .final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}
body.home-page .final-cta p {
  max-width: 780px;
  margin: 0;
  color: #dce7f6;
  font-size: 17px;
  line-height: 1.7;
}
body.home-page .final-cta .btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
body.home-page .final-cta .btn-outline-light {
  min-width: 132px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
body.home-page .final-cta .btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 991.98px) {
  body.home-page .topbar {
    display: none;
  }
  body.home-page .navwrap {
    padding: 10px 22px;
    justify-content: flex-start;
  }
  body.home-page nav.primary-nav {
    display: none;
  }
  body.home-page .nav-toggle {
    display: inline-flex !important;
    margin-left: 8px;
  }
  body.home-page .brand {
    margin-right: auto;
  }
  body.home-page .header-cta {
    display: flex;
    margin-left: auto;
  }
  body.home-page .brand > img {
    height: 44px;
    max-width: 160px;
  }
  body.home-page .hero {
    padding: 50px 0;
  }
  body.home-page .about-home-row,
  body.home-page .why-home-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
  body.home-page .about-visual img,
  body.home-page .why-visual img {
    height: 360px;
  }
  body.home-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.home-page .final-cta {
    padding: 36px 26px;
  }
  body.home-page .final-cta .btns {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  body.home-page .site-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  body.home-page .section {
    padding: 56px 0;
  }
  body.home-page .about-home-row,
  body.home-page .why-home-row {
    grid-template-columns: 1fr;
  }
  body.home-page .why-copy {
    order: 2;
  }
  body.home-page .why-media {
    order: 1;
  }
  body.home-page .about-visual img,
  body.home-page .why-visual img {
    height: min(420px, 72vw);
  }
  body.home-page .step-card {
    text-align: center;
  }
  body.home-page .step-num {
    margin-right: auto;
    margin-left: auto;
  }
  body.home-page .final-cta {
    padding: 28px;
  }
}
@media (max-width: 479.98px) {
  body.home-page .header-cta .btn-saffron {
    display: none;
  }
  body.home-page .quote-card {
    padding: 20px;
  }
  body.home-page .quote-card .field-row {
    grid-template-columns: 1fr;
  }
  body.home-page .hero h1 {
    font-size: 34px;
  }
  body.home-page .hero-btns > a {
    width: 100%;
  }
  body.home-page .final-cta .btns > a {
    width: 100%;
  }
  body.home-page .gallery-grid {
    grid-template-columns: 1fr;
  }
  body.home-page .gal-item,
  body.home-page .gal-item img {
    min-height: 220px;
  }
}
* {
  box-sizing: border-box;
}
body {
  font-family: Inter, sans-serif;
  color: var(--ink);
  background: var(--paper);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
.display-font {
  font-family: Poppins, sans-serif;
  color: var(--navy-900);
  letter-spacing: 0;
}
a {
  text-decoration: none;
}
.site-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  margin-bottom: 10px;
}
.eyebrow:before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--saffron);
  display: inline-block;
  border-radius: 2px;
}
.topbar {
  background: var(--navy-900);
  color: #c9d6ea;
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar .site-container {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding-left: 32px;
  padding-right: 32px;
}
.topbar-info {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.topbar-info a {
  color: #c9d6ea;
}
.topbar-actions {
  display: flex;
  gap: 10px;
}
.topbar-tagline {
  font-weight: 600;
  color: #fff;
}
.pill-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12.5px;
}
.pill-whatsapp {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.pill-quote {
  background: var(--saffron);
  color: #fff;
}
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 18px rgba(10, 31, 61, 0.06);
}
.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  flex: 0 0 auto;
}
.brand-img {
  height: 60px;
  width: auto;
  display: block;
}
.brand-logo {
  width: 58px;
  height: 52px;
  border-radius: 10px;
  background: var(--navy-900);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 800;
}
.brand-copy strong {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 1.15;
  color: var(--navy-900);
}
.brand-copy small {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  margin-top: 4px;
}
nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}
nav.primary-nav > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
  align-items: center;
  white-space: nowrap;
}
nav.primary-nav > ul > li {
  position: relative;
}
nav.primary-nav > ul > li > a,
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 10px;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  white-space: nowrap;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: default;
}
nav.primary-nav > ul > li > a:hover,
.nav-dropdown-trigger:hover {
  color: var(--saffron-dark);
  background: var(--mist);
}
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(8px);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  z-index: 50;
  max-width: calc(100vw - 48px);
}
nav.primary-nav > ul > li:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
nav.primary-nav > ul > li:nth-last-child(-n + 3) .mega {
  left: auto;
  right: 0;
}
.mega-services {
  width: min(720px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(145px, 1fr));
  gap: 20px;
}
.mega-locations {
  width: min(600px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px 22px;
}
.mega-routes {
  width: min(560px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 8px 22px;
}
.mega-resources {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega h6 {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.mega a {
  display: block;
  color: var(--ink);
  font-size: 14.5px;
  padding: 6px 0;
  font-weight: 500;
  white-space: normal;
  line-height: 1.45;
}
.mega a:hover {
  color: var(--saffron-dark);
}
.mega-footer-link {
  grid-column: 1/-1;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.mega-footer-link a {
  color: var(--saffron-dark);
  font-weight: 700;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 26px;
  line-height: 1;
  color: var(--navy-900);
  padding: 0;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle:hover {
  background: var(--mist);
  color: var(--saffron-dark);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -350px;
  width: 318px;
  max-width: min(88vw, 318px);
  height: 100%;
  background: #fff;
  z-index: 2000;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  transition: right 0.25s ease;
  overflow-y: auto;
  max-height: 100dvh;
  overscroll-behavior: contain;
  padding: 18px 16px 22px;
}
.mobile-drawer.open {
  right: 0;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.drawer-head .brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.drawer-head .brand-img,
.drawer-head .drawer-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: 178px;
  object-fit: contain;
}
.drawer-head button,
.drawer-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: 10px;
  font-size: 20px;
  line-height: 1;
  color: var(--navy-900);
  padding: 0;
  cursor: pointer;
}
.mobile-drawer a {
  display: block;
  padding: 13px 6px;
  color: var(--navy-900);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.25;
}
.mobile-drawer a:hover {
  color: var(--saffron-dark);
}
.drawer-group {
  border-bottom: 1px solid var(--line);
}
.drawer-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 6px;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  font: inherit;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}
.drawer-toggle span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mist);
  color: var(--saffron-dark);
}
.drawer-submenu {
  display: none;
  padding: 0 0 8px 12px;
}
.drawer-submenu a {
  padding: 10px 6px;
  font-size: 14px;
  color: var(--ink);
}
.drawer-submenu .drawer-all-link {
  margin: 4px 0 6px;
  padding: 11px 12px;
  border: 1px solid rgba(245, 130, 31, 0.28);
  border-radius: 8px;
  background: var(--saffron-tint);
  color: var(--saffron-dark);
  font-weight: 800;
}
.drawer-group.open .drawer-submenu {
  display: block;
}
.drawer-group.open .drawer-toggle span {
  transform: rotate(45deg);
}
.mobile-drawer .drawer-cta {
  margin-top: 14px;
  padding: 12px 14px;
  border: 0;
  border-radius: 10px;
  background: var(--saffron);
  color: #fff;
  text-align: center;
}
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1800;
  display: flex;
  width: 130px;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.floating-action {
  position: relative;
  width: 100%;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 31, 61, 0.16);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.floating-action::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 48%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: contact-shine 2.8s ease-in-out infinite;
}
.floating-action.call.alt::after {
  animation-direction: reverse;
  animation-delay: 0.35s;
}
.floating-action.whatsapp::after {
  animation-delay: 0.7s;
}
.floating-action.whatsapp {
  background: #25d366;
}
.floating-action.call {
  background: var(--navy-900);
}
.floating-action.call.alt {
  background: var(--saffron);
}
.floating-action:first-of-type {
  grid-column: auto;
}
.floating-action svg {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}
.floating-action span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.floating-action:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(10, 31, 61, 0.26);
}
@keyframes contact-shine {
  0% {
    left: -70%;
  }
  45%,
  100% {
    left: 125%;
  }
}
.mobile-drawer .drawer-quote-link {
  margin-top: 14px;
  border-bottom: 0;
  color: #fff;
  text-align: center;
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.4);
  z-index: 1900;
  display: none;
}
.drawer-overlay.show {
  display: block;
}
.header-cta .btn-saffron,
.topbar-actions .pill-btn,
.hero-actions a {
  white-space: nowrap;
  line-height: 1.15;
}
.btn-saffron {
  background: var(--saffron);
  border: 1px solid var(--saffron);
  color: #fff;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-saffron:hover {
  background: var(--saffron-dark);
  border-color: var(--saffron-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--navy-900);
}
.inner-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #eaf0fa;
  padding: 82px 0 76px;
  position: relative;
  overflow: hidden;
}
.inner-hero:after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(245, 130, 31, 0.12);
  border-radius: 50%;
}
.inner-hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  max-width: 900px;
  margin: 0 0 18px;
}
.inner-hero p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 820px;
  color: #dce6f5;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.section {
  padding: 72px 0;
}
.section-muted {
  background: var(--mist);
}
.section-tight {
  padding: 52px 0;
}
.quote-strip {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  position: relative;
  z-index: 5;
  padding: 34px 0 46px;
  border-bottom: 1px solid var(--line);
}
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--saffron);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
}
.quote-strip-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.quote-strip-title h2 {
  font-size: 28px;
  margin: 0;
  color: var(--navy-900);
}
.quote-strip-title p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}
.horizontal-quote-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}
.horizontal-quote-form input,
.horizontal-quote-form select {
  min-width: 0;
}
.horizontal-quote-form button {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
.horizontal-quote-form .quote-wide {
  grid-column: span 2;
}
.service-overview {
  padding-top: 64px;
}
.service-process {
  padding: 68px 0;
}
.service-related {
  padding-top: 66px;
}
.service-intro-panel {
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 42px;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
}
.service-intro-panel:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(245, 130, 31, 0.08);
}
.service-intro-panel h2 {
  font-size: 34px;
  margin: 0 0 14px;
}
.service-intro-panel p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 1040px;
}
.service-highlight-grid {
  margin-top: 22px;
}
.seo-depth-section {
  padding: 66px 0;
}
.seo-copy-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 38px;
}
.seo-copy-block h2,
.section-heading h2,
.service-context-panel h2 {
  font-size: 34px;
  margin: 8px 0 14px;
  color: var(--navy-900);
}
.seo-copy-block p,
.section-heading p,
.service-context-panel p,
.seo-info-card p,
.checklist-panel p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.content-callout {
  background: var(--navy-900);
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.content-callout:after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 30px solid rgba(245, 130, 31, 0.18);
}
.content-callout h3 {
  position: relative;
  font-size: 25px;
  margin: 8px 0 18px;
  color: #fff;
}
.content-callout ul {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.content-callout li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #e5eefb;
  line-height: 1.6;
  font-weight: 600;
}
.content-callout li:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--saffron);
  margin-top: 8px;
  flex: 0 0 auto;
}
.service-detail-band {
  padding: 70px 0;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}
.section-heading h2 {
  margin-top: 8px;
}
.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.seo-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 26px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.seo-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #ffd4af;
}
.seo-info-card span {
  display: block;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: var(--saffron);
  margin-bottom: 18px;
}
.seo-info-card h3 {
  font-size: 21px;
  margin: 0 0 10px;
  color: var(--navy-900);
}
.service-context-section {
  padding: 68px 0 44px;
}
.service-context-panel {
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  border: 1px solid var(--line);
  border-left: 5px solid var(--saffron);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 42px;
  max-width: 1120px;
}
.checklist-section {
  padding-top: 28px;
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.checklist-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 26px;
}
.checklist-panel h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--navy-900);
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: start;
}
.blog-detail-section {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.blog-detail {
  max-width: 980px;
}
.blog-article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 34px;
  overflow: hidden;
}
.blog-featured-image {
  margin: -34px -34px 30px;
  overflow: hidden;
  background: var(--navy-900);
}
.blog-featured-image img {
  display: block;
  width: 100%;
  height: clamp(260px, 38vw, 430px);
  object-fit: cover;
  object-position: center;
}
.blog-byline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--ink-soft);
}
.blog-article h2 {
  color: var(--navy-900);
}
.blog-article ul {
  padding-left: 20px;
}
.blog-article .link-cloud {
  margin-top: 8px;
}
article p,
article li,
.policy p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}
article h2 {
  margin: 34px 0 14px;
  font-size: 30px;
}
article h3 {
  font-size: 20px;
}
.feature-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.feature-grid > div,
.service-card,
.sticky-card,
details,
.page-panel,
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 26px;
}
.feature-grid > div {
  border-top: 3px solid var(--saffron-tint);
}
.gal-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 26px;
}
.gal-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 700;
  padding: 10px 18px;
  box-shadow: 0 10px 24px rgba(10, 31, 61, 0.06);
}
.gal-tab.active,
.gal-tab:hover {
  border-color: var(--saffron);
  background: var(--saffron);
  color: #fff;
}
.gallery-intro {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.gal-item {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  min-height: 0;
  border-radius: 8px;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}
.gal-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.gal-item:hover img {
  transform: scale(1.035);
}
.gal-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 16px 14px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 31, 61, 0.9) 100%
  );
  color: #fff;
  font-weight: 800;
}
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 30px 0 34px;
}
.contact-info-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 178px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  border: 1px solid var(--line);
  border-top: 3px solid var(--saffron);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(10, 31, 61, 0.08);
  padding: 26px 26px 24px;
  color: var(--ink);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.contact-info-card:before {
  content: "";
  position: absolute;
  right: -44px;
  top: -46px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(245, 130, 31, 0.1);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(10, 31, 61, 0.14);
  border-color: #ffd5b0;
  color: var(--ink);
}
.contact-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--saffron-tint);
  color: var(--saffron-dark);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}
.contact-info-card small {
  display: block;
  color: var(--saffron-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
.contact-info-card h3 {
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--navy-900);
}
.contact-info-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-info-card .contact-email {
  font-size: 15px;
  line-height: 1.6;
}
.contact-phone-list {
  display: grid;
  gap: 4px;
}
.contact-phone-list a {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  color: var(--ink-soft);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.contact-phone-list a:hover {
  color: var(--saffron-dark);
  border-bottom-color: var(--saffron);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.lead-copy {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 980px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.stat-card strong {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 30px;
  color: var(--saffron-dark);
}
.stat-card span {
  color: var(--ink-soft);
  font-weight: 700;
}
.process-list {
  counter-reset: step;
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 20px 20px 64px;
  position: relative;
  box-shadow: var(--shadow);
}
.process-list li:before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 0px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card > .service-ic {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--saffron-tint);
  color: var(--saffron-dark);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-family: Poppins, sans-serif;
  font-weight: 800;
}
.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 25px;
  line-height: 1.2;
}
.service-card p {
  color: var(--ink-soft);
  line-height: 1.7;
}
.service-image-card .service-card-image {
  width: 100%;
  height: 210px;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--mist);
}
.service-image-card .service-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.service-image-card:hover .service-card-image img {
  transform: scale(1.04);
}
.service-image-card .service-card-body {
  width: auto;
  height: auto;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 24px;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}
.service-image-card .service-card-body h3,
.service-image-card .service-card-body h4 {
  margin: 0 0 10px;
  color: var(--navy-900);
}
.service-image-card .service-card-body p {
  margin: 0 0 18px;
}
.service-image-card .service-card-body strong {
  margin-top: auto;
  color: var(--saffron-dark);
  font-weight: 800;
}
.service-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 30px;
  align-items: stretch;
}
.service-page-image {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(10, 31, 61, 0.08);
}
.service-page-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}
.service-catalog-grid .service-card {
  min-height: 100%;
}
.service-catalog-grid .service-card > .service-ic {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 8px;
}
.service-catalog-grid .service-card h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 25px;
  line-height: 1.2;
}
.service-catalog-grid .service-card p {
  margin-bottom: 20px;
}
.service-catalog-grid .service-card:hover h3,
.service-catalog-grid .service-card:hover strong {
  color: var(--saffron-dark);
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  height: 100%;
  transition: all 0.2s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stars {
  color: var(--saffron);
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card .quote {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.review-who strong {
  display: block;
  color: var(--navy-900);
  font-family: Poppins, sans-serif;
  font-size: 17px;
}
.review-who span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 4px;
}
.sticky-card {
  position: sticky;
  top: 104px;
  background: var(--mist);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.quote-form textarea {
  resize: vertical;
}
.captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  align-items: center;
  gap: 8px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  min-height: 46px;
  min-width: 0;
}
.captcha-row label {
  margin: 0;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.captcha-row input[name="captcha_answer"] {
  padding: 8px 9px;
  text-align: center;
  background: #fff;
  min-width: 0;
}
.horizontal-quote-form .captcha-compact {
  align-self: stretch;
}
.form-status {
  grid-column: 1/-1;
  border-radius: 10px;
  padding: 11px 13px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 2px;
}
.form-status.is-info {
  background: #eef5ff;
  border: 1px solid #cfe2ff;
  color: #0a4a8a;
}
.form-status.is-success {
  background: #ecfdf3;
  border: 1px solid #b8efce;
  color: #126b35;
}
.form-status.is-error {
  background: #fff1f0;
  border: 1px solid #ffc7c2;
  color: #a1261b;
}
.quote-form button[disabled],
.quote-card button[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}
.quote-form button.is-loading,
.quote-card button.is-loading {
  position: relative;
}
.link-cloud {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 30px;
}
.link-cloud a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--navy-900);
  font-weight: 700;
  background: #fff;
}
.link-cloud a:hover {
  border-color: var(--saffron);
  color: var(--saffron-dark);
  background: var(--saffron-tint);
}
.faq-list {
  display: grid;
  gap: 14px;
}
.service-related .faq-list {
  margin-bottom: 46px;
}
.service-related h2 {
  margin: 40px 0 16px;
}
.service-related h2:first-child {
  margin-top: 0;
}
.service-related .link-cloud {
  margin-bottom: 42px;
}
.service-related .link-cloud:last-child {
  margin-bottom: 0;
}
summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy-900);
}
details {
  padding: 20px 24px;
}
details p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}
footer {
  background: var(--navy-900);
  color: #dce6f5;
  padding: 58px 0 0;
}
footer .site-container {
  max-width: 1280px;
  padding-right: 32px;
  padding-left: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .6fr .9fr .8fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.footer-grid > [class*="col-"] {
  min-width: 0;
  width: auto;
  max-width: none;
  padding: 0;
  flex: none;
}
.footer-grid .brand-col {
  min-width: 0;
  overflow: hidden;
}
footer h5,
footer h6 {
  color: #fff;
  font-family: Poppins, sans-serif;
}
footer h6 {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.35;
}
footer a {
  display: block;
  color: #dce6f5;
  margin: 8px 0;
  overflow-wrap: anywhere;
  line-height: 1.45;
}
footer .brand-col > img,
.footer-logo {
  display: block;
  width: auto !important;
  height: 58px !important;
  max-width: 170px !important;
  object-fit: contain !important;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.brand-col p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: #dce6f5;
  line-height: 1.75;
  overflow-wrap: anywhere;
}
.foot-social {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
}
.foot-social a:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
  transform: translateY(-2px);
}
.foot-social svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}
.footer-contact-col {
  min-width: 0;
}
.footer-contact-col h6 {
  margin-bottom: 14px;
}
.footer-contact-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0 0 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}
.footer-contact-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 130, 24, 0.18);
  color: var(--saffron);
  font-size: 17px;
}
.footer-contact-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--saffron-tint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-contact-card strong,
.footer-contact-card a {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.footer-contact-card a:hover {
  color: var(--saffron);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 38px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.6;
  color: #b9c6d8;
}
.footer-bottom a {
  display: inline;
  color: #fff;
}
.developer-credit {
  display: inline-block;
  color: #d6e0ee;
}
.developer-credit a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.developer-credit a:hover {
  color: var(--saffron);
}
@media (max-width: 1240px) {
  nav.primary-nav > ul > li > a,
  .nav-dropdown-trigger {
    font-size: 14px;
    padding: 12px 8px;
  }
  .brand-img {
    height: 55px;
  }
  .header-cta .btn-saffron {
    padding: 12px 16px;
  }
}
@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1.35fr .75fr .9fr .85fr;
    gap: 28px;
  }
  .footer-contact-col {
    grid-column: 1 / -1;
  }
  .footer-contact-col {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .footer-contact-col h6 {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }
  .footer-contact-card {
    height: 100%;
    margin: 0;
    align-items: flex-start;
    padding: 16px;
  }
  .quote-strip-title {
    display: block;
  }
  .quote-strip-title p {
    margin-top: 8px;
  }
  .horizontal-quote-form {
    grid-template-columns: 1fr 1fr;
  }
  .horizontal-quote-form .captcha-compact {
    grid-column: auto;
  }
  .horizontal-quote-form button {
    grid-column: auto;
  }
}
@media (max-width: 991px) {
  .blog-grid,
  .blogs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-intro-layout {
    grid-template-columns: 1fr;
  }
  .service-page-image img {
    min-height: 300px;
  }
}
@media (max-width: 1100px) {
  .navwrap {
    padding-left: 28px;
    padding-right: 28px;
    justify-content: flex-start;
  }
  .header-cta {
    margin-left: auto;
  }
  .nav-toggle {
    display: inline-flex !important;
    margin-left: 8px;
  }
  nav.primary-nav {
    display: none;
  }
  .brand {
    min-width: 0;
    margin-right: auto;
  }
  .topbar .site-container {
    grid-template-columns: 1fr auto auto;
    padding-left: 28px;
    padding-right: 28px;
  }
  .topbar-info span:nth-child(n + 2) {
    display: none;
  }
  .topbar-actions {
    justify-content: flex-end;
    white-space: nowrap;
  }
  .header-cta .btn-saffron {
    padding: 12px 18px;
  }
}
@media (max-width: 760px) {
  .topbar .site-container {
    grid-template-columns: 1fr auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .navwrap {
    padding-left: 20px;
    padding-right: 20px;
    gap: 10px;
  }
  .topbar-info {
    display: none;
  }
  .topbar-actions {
    justify-self: end;
  }
}
@media (max-width: 640px) {
  .main-header .navwrap {
    justify-content: space-between;
  }
  .main-header .brand {
    flex: 0 1 auto;
    min-width: 0;
  }
  .main-header .brand-img {
    height: 52px;
    max-width: 190px;
  }
  .main-header .header-cta {
    display: none;
  }
  .main-header .nav-toggle {
    display: inline-flex !important;
    margin-left: auto;
  }
  .site-container{
      padding: 0 18px;
  }
  .navwrap {
      padding: 8px 20px;
  }
  .blog-grid,
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  .blog-card .thumb,
  .blog-card .blog-image {
    height: 210px;
  }
  .service-image-card .service-card-image {
    height: 190px;
  }
  .service-image-card .service-card-body {
    padding: 20px;
  }
  .service-page-image img {
    min-height: 230px;
  }
  body {
    padding-bottom: 76px;
  }
  .floating-actions {
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 4px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(10, 31, 61, 0.1);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 30px rgba(10, 31, 61, 0.12);
    backdrop-filter: blur(14px);
  }
  .floating-action:first-of-type {
    grid-column: auto;
  }
  .floating-action {
    height: 50px;
    border-radius: 12px;
    font-size: 12px;
  }
  .floating-action svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 360px) {
  .mobile-drawer {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding: 14px 12px 18px;
  }
  .drawer-head {
    gap: 10px;
  }
  .drawer-head .brand-img,
  .drawer-head .drawer-logo {
    height: 46px;
    max-width: 142px;
  }
  .mobile-drawer a {
    padding: 11px 4px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid .brand-col {
    grid-column: 1 / -1;
  }
  .footer-contact-col {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-contact-col .footer-contact-card:first-of-type {
    grid-column: 1 / -1;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .horizontal-quote-form {
    grid-template-columns: 1fr 1fr;
  }
  .horizontal-quote-form .quote-wide {
    grid-column: 1/-1;
  }
  .content-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .card-grid,
  .stat-grid,
  .contact-card-grid,
  .seo-card-grid,
  .checklist-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sticky-card {
    position: static;
  }
  .seo-depth-section,
  .service-detail-band,
  .service-context-section {
    padding: 52px 0;
  }
  .content-callout {
    padding: 28px;
  }
  .service-context-panel,
  .seo-copy-block {
    padding: 30px;
  }
}
@media (max-width: 640px) {
  .blog-article {
    padding: 22px;
    border-radius: 14px;
  }
  .blog-featured-image {
    margin: -22px -22px 22px;
  }
  .blog-featured-image img {
    height: 230px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gal-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .gal-tab {
    flex: 0 0 auto;
  }
  .inner-hero {
    padding: 58px 0;
  }
  .quote-strip {
    padding: 24px 0 34px;
  }
  .quote-card {
    padding: 18px;
    border-radius: 14px;
  }
  .quote-strip-title h2 {
    font-size: 24px;
  }
  .horizontal-quote-form {
    grid-template-columns: 1fr;
  }
  .horizontal-quote-form .quote-wide,
  .captcha-compact {
    grid-column: auto;
  }
  .captcha-row {
    grid-template-columns: minmax(0, 1fr) 76px;
  }
  .service-overview,
  .service-process,
  .service-related,
  .seo-depth-section,
  .service-detail-band,
  .service-context-section {
    padding: 46px 0;
  }
  .checklist-section {
    padding-top: 10px;
  }
  .service-intro-panel,
  .seo-copy-block,
  .service-context-panel {
    padding: 24px;
    border-radius: 14px;
  }
  .service-intro-panel h2,
  .seo-copy-block h2,
  .section-heading h2,
  .service-context-panel h2 {
    font-size: 27px;
  }
  .feature-grid,
  .card-grid,
  .contact-card-grid,
  .seo-card-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  .seo-info-card,
  .checklist-panel,
  .content-callout {
    padding: 22px;
  }
  .contact-info-card {
    min-height: auto;
    padding: 22px;
  }
  .btn-saffron,
  .btn-outline-light {
    width: 100%;
    justify-content: center;
  }
  footer .site-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-grid .brand-col {
    grid-column: auto;
  }
  .footer-contact-col {
    display: block;
    grid-column: auto;
  }
  .footer-contact-card {
    margin-bottom: 12px;
  }
  .footer-logo {
    max-width: 160px;
    height: 54px;
  }
  .footer-bottom {
    display: block;
  }
  .brand-copy strong {
    font-size: 15px;
  }
  .brand-logo {
    width: 48px;
    height: 46px;
  }
  .brand-img {
    height: 52px;
    max-width: 190px;
  }
  .header-cta {
    display: none;
  }
  .topbar .site-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .topbar-tagline {
    display: block;
  }
  .topbar-info,
  .topbar-actions {
    display: none;
  }
}

@media (max-width: 1100px) {
  .main-header .nav-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
