/* :root {
  --navy: #061326;
  --navy2: #0b203a;
  --gold: #f5b33d;
  --gold2: #c9780f;
  --ink: #061326;
  --text: #394960;
  --muted: #718095;
  --paper: #f2f6fb;
  --white: #fff;
  --line: rgba(6, 19, 38, .10);
  --shadow: 0 18px 55px rgba(6, 19, 38, .12);
  --soft: 0 10px 30px rgba(6, 19, 38, .08);
  --r: 24px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif
} */

:root {
  --navy: #20273e;
  --navy2: #20273e;
  --gold: #f5b33d;
  --gold2: #c9780f;
  --ink: #061326;
  --text: #394960;
  --muted: #718095;
  --paper: #f2f6fb;
  --white: #fff;
  --line: rgba(6, 19, 38, .10);
  --shadow: 0 18px 55px rgba(6, 19, 38, .12);
  --soft: 0 10px 30px rgba(6, 19, 38, .08);
  --r: 24px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  font-family: var(--font);
  color: var(--ink);
  overflow-x: hidden
}

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

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

.container {
  max-width: 1250px
}

.text-gold {
  color: var(--gold2)
}

.section {
  padding: 55px 0
}

.section-sm {
  padding: 44px 0
}

.section-head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 32px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold2);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .17em
}

.eyebrow:before,
.eyebrow:after {
  content: "";
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold))
}

.eyebrow:after {
  background: linear-gradient(90deg, var(--gold), transparent)
}

.section-head h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.045em
}

.section-head p {
  margin: 0;
  color: #526174;
  font-size: .96rem;
  line-height: 1.65;
  font-weight: 650
}

.btn-gold,
.btn-dark,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 20px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  font-size: .88rem;
  transition: .25s ease
}

.btn-gold {
  color: #071326 !important;
  background: linear-gradient(135deg, #ffd36d, #f5b33d 58%, #cc7b10);
  box-shadow: 0 14px 32px rgba(245, 179, 61, .32)
}

.btn-dark {
  background: var(--navy);
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(6, 19, 38, .22)
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .32);
  color: #fff !important;
  background: rgba(255, 255, 255, .06)
}

.btn-gold:hover,
.btn-dark:hover,
.btn-outline:hover {
  transform: translateY(-2px)
}

/* header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: #fff;
  color: #061326;
}

.topbar {
  height: 72px;
  /* background: linear-gradient(135deg, #061326, #081d34 60%, #040d19); */
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background-color: white;
}

.topbar .wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px
}

.brand img {
  width: 210px;
  max-height: 58px;
  object-fit: contain
}

.top-info {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .86rem;
  font-weight: 850
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap
}

.info-item i {
  color: var(--gold);
  font-size: 1rem
}

.info-item small {
  display: block;
  color: #b7c6d8;
  color: #f5b33d;
  font-size: .68rem
}

.socials {
  display: flex;
  gap: 7px
}

.socials a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
  color: #dce7f3;
  transition: .25s;
  background: var(--gold);
  color: #061326
}

.socials a:hover {
  background: var(--gold);
  color: #061326
}

.nav-wrap {
  position: absolute;
  top: 66px;
  right: max(22px, calc((100vw - 1180px) / 2));
  width: min(1164px, calc(100vw - 200px));
  padding: 0 10px 0 22px;
  border-radius: 0 0 22px 22px;
  /* background: rgba(255, 255, 255, .96); */
  box-shadow: 0 18px 50px rgba(6, 19, 38, .22);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .75);
  background: linear-gradient(135deg, #061326, #081d34 60%, #040d19);
}

.navbar {
  min-height: 58px;
  padding: 0
}

.navbar-nav {
  align-items: center;
  gap: 2px
}

.nav-link {
  font-size: .87rem;
  font-weight: 900;
  /* color: #071326 !important; */
  color: #ffffff !important;
  padding: 18px 14px !important;
  position: relative
}

.nav-link:after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: .22s
}

.nav-link.active,
.nav-link:hover {
  color: var(--gold2) !important
}

.nav-link.active:after,
.nav-link:hover:after {
  transform: scaleX(1)
}

.mega-menu {
  border: 0;
  border-radius: 20px;
  padding: 20px;
  width: min(660px, calc(100vw - 35px));
  box-shadow: 0 30px 90px rgba(6, 19, 38, .25)
}

.mega-col {
  border-right: 1px solid var(--line);
  padding: 4px 18px
}

.mega-col:last-child {
  border-right: 0
}

.mega-col h6 {
  font-weight: 900
}

.mega-col a {
  display: block;
  padding: 6px 0;
  color: #536174;
  font-size: .87rem;
  font-weight: 750
}

.mega-col a:hover {
  color: var(--gold2)
}

@media(min-width:992px) {
  .dropdown:hover>.dropdown-menu {
    display: block
  }
}

/* hero */
.hero {
  position: relative;
  min-height: 612px;
  padding: 169px 0 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #dfeaf7;
  background: linear-gradient(90deg, rgba(246, 249, 253, 0.94) 0%, rgba(246, 249, 253, 0.86) 32%, rgba(246, 249, 253, 0.22) 62%, rgba(246, 249, 253, 0.02)), url('./assets/img/hero3.jpg') right center / cover no-repeat !important;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  /* background: linear-gradient(90deg, rgba(246, 249, 253, .94) 0%, rgba(246, 249, 253, .86) 32%, rgba(246, 249, 253, .22) 62%, rgba(246, 249, 253, .02)),
   url('./assets/img/hero3.jpg') center right/cover no-repeat */
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none
}

.hero .container {
  position: relative;
  z-index: 2
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  gap: 40px;
  align-items: center
}

.hero h1 {
  font-size: clamp(2.25rem, 3.5vw, 4.2rem);
  line-height: 1.23;
  letter-spacing: -.065em;
  font-weight: 950;
  margin: 12px 0 20px;
  word-spacing: 3px;
}

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

.checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 850
}

.checks i {
  color: var(--gold2)
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-stage {
  min-height: 440px;
  position: relative
}

.profile-podium {
  position: absolute;
  left: 0;
  /* right: 325px; */
  bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: flex-end
}

.profile-podium:after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 390px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(ellipse, #fff 0, #ffd16a 58%, transparent 69%);
  opacity: .75
}

.profile-podium img {
  position: relative;
  z-index: 1;
  width: min(62vw, 397px);
  filter: drop-shadow(0 25px 35px rgba(6, 19, 38, .20))
}

.profile-podium img:last-child {
  /* transform: scale(.92) translateX(-28px); */
  transform: scale(1.22) translateX(24px);
}

.benefit-stack {
  position: absolute;
  right: 0;
  top: 22px;
  width: 245px;
  display: grid;
  gap: 14px
}

.benefit-box {
  min-height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 14px 35px rgba(6, 19, 38, .17);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  font-size: .9rem;
  font-weight: 900;
  backdrop-filter: blur(12px)
}

.benefit-box i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold2);
  background: #fff8e9;
  border: 1px solid rgba(199, 120, 15, .16)
}

.benefit-box:nth-child(even) {
  transform: translateX(-18px)
}

/* intro */
.intro-wrap {
  display: grid;
  /* grid-template-columns: 1.05fr .95fr; */
  grid-template-columns: 0.85fr .95fr;
  gap: 30px;
  align-items: center
}

.intro-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px
}

.intro-media img {
  width: 100%;
  height: 100%;
  /* min-height: 360px; */
  min-height: 520px;
  object-fit: cover
}

.intro-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.intro-badge span {
  background: rgba(255, 255, 255, .92);
  border-radius: 16px;
  padding: 14px 16px;
  min-width: 118px;
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 30px rgba(6, 19, 38, .14)
}

.intro-badge strong {
  display: block;
  font-size: 1.28rem;
  color: var(--ink)
}

.intro-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 19px;
  box-shadow: var(--soft)
}

.intro-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -.04em;
  font-weight: 900;
  margin: 10px 0 14px
}

.intro-copy p {
  color: #4f5e72;
  line-height: 1.75;
  font-weight: 650;
  font-size: .85rem
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px
}

.mini-features div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #f6f9fd;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 9px;
  font-size: 0.76rem;
  font-weight: 850
}

.mini-features i {
  color: var(--gold2);
  margin-top: 3px
}

/* solution carousels */
.solutions {
  background: #fff
}

.solution-block {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fff, #f6faff);
  border: 1px solid var(--line);
  box-shadow: var(--soft);
  overflow: hidden
}

.solution-block:nth-of-type(even) {
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr)
}

.solution-block:nth-of-type(even) .solution-copy {
  order: 1
}

.solution-block:nth-of-type(even) .carousel-panel {
  order: 2
}

.solution-copy {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 24px;
  padding: 30px;
  background: linear-gradient(150deg, #071326, #0b223d);
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.solution-copy:before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(245, 179, 61, .20)
}

.solution-copy>* {
  position: relative
}

.solution-copy h3 {
  font-size: clamp(1.65rem, 2.7vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -.05em;
  font-weight: 950;
  margin: 12px 0 14px
}

.solution-copy p {
  color: #d9e5f2;
  font-size: .95rem;
  line-height: 1.7;
  font-weight: 650
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 22px
}

.feature-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: .78rem;
  font-weight: 850
}

.carousel-panel {
  min-width: 0;
  padding: 22px 20px 46px;
  border-radius: 24px;
  background: #f8fbff;
  background: #deeaf9;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

.carousel-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px
}

.carousel-title h4 {
  margin: 0;
  font-size: 1.51rem;
  font-weight: 900
}

.carousel-title span {
  font-size: .78rem;
  font-weight: 850;
  color: #6f7d91
}

.product-swiper {
  overflow: hidden
}

.product-card {
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(6, 19, 38, .08);
  transition: .25s
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(6, 19, 38, .14)
}

.product-img {
  height: 180px;
  background: #edf3fa;
  overflow: hidden
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s
}

.product-card:hover .product-img img {
  transform: scale(1.06)
}

.product-body {
  padding: 17px
}

.product-body h5 {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.18;
  margin: 0 0 8px
}

.product-body p {
  margin: 0 0 14px;
  color: #536174;
  font-size: .82rem;
  line-height: 1.55;
  font-weight: 650
}

.product-body a {
  color: var(--gold2);
  font-size: .82rem;
  font-weight: 900;
  display: inline-flex;
  gap: 8px;
  align-items: center
}

.swiper-button-prev,
.swiper-button-next {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50%;
  background: #fff;
  color: #071326 !important;
  box-shadow: 0 12px 30px rgba(6, 19, 38, .14)
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 16px !important;
  font-weight: 900
}

.swiper-pagination-bullet {
  background: #b7c4d4;
  opacity: 1
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  width: 22px;
  border-radius: 20px
}

/* sections */
.why-strip {
  background: #071326;
  border-radius: 24px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
  box-shadow: var(--shadow)
}

.why-item {
  color: #fff;
  text-align: center;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: .25s
}

.why-item p {
  font-size: 14px;
  margin-top: 5px;
}

.why-item:hover {
  background: rgba(245, 179, 61, .12);
  transform: translateY(-3px)
}

.why-item i {
  color: var(--gold);
  font-size: 1.45rem;
  margin-bottom: 9px
}

.why-item h5 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0
}

.why-strip-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.process-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--soft);
  border-radius: 22px;
  padding: 22px;
  position: relative;
  overflow: hidden
}

.process-card span {
  position: absolute;
  right: 16px;
  top: 12px;
  color: rgb(8 25 50 / 18%);
  font-size: 3rem;
  font-weight: 950
}

.process-card i {
  width: 57px;
  height: 57px;
  border-radius: 16px;
  background: #fff5df;
  color: var(--gold2);
  display: grid;
  font-size: 20px;
  place-items: center;
  margin-bottom: 14px
}

.process-card h4 {
  font-size: 1.3rem;
  font-weight: 900
}

.process-card p {
  margin: 0;
  color: #536174;
  font-size: .92rem;
  line-height: 1.6;
  font-weight: 650
}

.production-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.production-copy,
.serve-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--soft)
}

.production-copy h3,
.serve-copy h3 {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.03em
}

.production-copy p {
  font-size: 16px;
}

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

.bullet-list li {
  display: flex;
  gap: 10px;
  font-size: .88rem;
  font-weight: 750;
  color: #3b4b61
}

.bullet-list i {
  color: var(--gold2);
  margin-top: 3px
}

.production-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--soft);
  min-height: 310px
}

.production-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 723px;
}

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

.serve-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: .9rem;
  font-weight: 850
}

.serve-list i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #fff6e4;
  color: var(--gold2);
  display: grid;
  place-items: center
}

.serve-list p {
  font-size: 16px;
}

.region-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--soft)
}

.map-box {
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, .35), rgba(255, 255, 255, .52)), url('https://images.unsplash.com/photo-1564507592333-c60657eea523?auto=format&fit=crop&w=1200&q=86') center/cover no-repeat;
  display: grid;
  place-items: center
}

.locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 26px;
  margin-top: 16px
}

.locations div {
  display: flex;
  gap: 10px;
  font-weight: 900;
  font-size: .93rem
}

.locations i {
  color: var(--gold2)
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px
}

.gallery-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--soft);
  cursor: zoom-in;
  background: #071326;
  border: 1px solid rgba(255, 255, 255, .6)
}

.gallery-card.large {
  grid-column: span 2;
  grid-row: span 2
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s
}

.gallery-card:hover img {
  transform: scale(1.06);
  opacity: .78
}

.gallery-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  background: rgb(255 255 255 / 61%);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: .85rem;
  font-weight: 900
}

.gallery-card:before {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #061326;
  opacity: 0;
  transform: scale(.85);
  transition: .25s
}

.gallery-card:hover:before {
  opacity: 1;
  transform: scale(1)
}

.gallery-lightbox .modal-content {
  background: rgba(6, 19, 38, .97);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  overflow: hidden
}

.gallery-lightbox .modal-header {
  border: 0;
  color: #fff
}

.gallery-lightbox .btn-close {
  filter: invert(1)
}

.gallery-lightbox .carousel-item img {
  width: 100%;
  height: min(72vh, 700px);
  object-fit: cover
}

.gallery-lightbox .carousel-caption {
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(6, 19, 38, .82), transparent);
  padding: 48px 24px 22px
}

.gallery-lightbox .carousel-caption h5 {
  font-weight: 900
}

.gallery-lightbox .carousel-control-prev,
.gallery-lightbox .carousel-control-next {
  width: 8%
}

/* testimonials + FAQ */
.testimonials {
  background: linear-gradient(180deg, #fff 0, #f2f6fb 100%)
}

.testimonial-swiper {
  padding: 8px 50px 52px
}

.review-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--soft);
  padding: 24px;
  position: relative;
  text-align: left;
  overflow: hidden;
  transition: .25s
}

.review-card:before {
  content: '“';
  position: absolute;
  right: 18px;
  top: 4px;
  font-size: 6rem;
  line-height: 1;
  color: rgba(245, 179, 61, .18);
  font-family: Georgia, serif
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(6, 19, 38, .13)
}

.review-meta h5 {
  margin: 0;
  font-size: .96rem;
  font-weight: 900
}

.review-meta span {
  font-size: .78rem;
  color: #657388;
  font-weight: 750
}

.stars {
  color: var(--gold);
  letter-spacing: .1em;
  font-size: .86rem;
  margin-bottom: 12px
}

.review-card p {
  font-size: .9rem;
  line-height: 1.72;
  font-weight: 700;
  color: #27384e;
  margin: 0
}

.faq-wrap {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 24px;
  align-items: start
}

.faq-intro {
  background: linear-gradient(150deg, #071326, #102b4b);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--soft);
  position: sticky;
  top: 20px
}

.faq-intro h3 {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -.035em
}

.faq-intro p {
  color: #d6e4f3;
  line-height: 1.65
}

.faq .accordion {
  display: grid;
  gap: 12px
}

.faq .accordion-item {
  border: 1px solid var(--line);
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(6, 19, 38, .07)
}

.faq .accordion-button {
  font-size: .9rem;
  font-weight: 900;
  color: #061326;
  background: #fff;
  box-shadow: none;
  padding: 16px 52px 16px 54px;
  min-height: 58px
}

.faq .accordion-button:before {
  content: '?';
  position: absolute;
  left: 16px;
  width: 27px;
  height: 27px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #061326;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  font-size: .78rem
}

.faq .accordion-button:not(.collapsed) {
  background: #fff8e8
}

.faq .accordion-body {
  padding: 0 22px 18px 54px;
  color: #526174;
  font-size: .88rem;
  line-height: 1.65;
  font-weight: 650
}

/* cta contact */
.dark-cta {
  border-radius: 26px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(6, 19, 38, .96), rgba(12, 34, 60, .92)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=86') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: var(--shadow)
}

.dark-cta h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -.04em
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px
}

.cta-list li {
  display: flex;
  gap: 9px;
  align-items: center;
  font-weight: 750
}

.cta-list i {
  color: var(--gold)
}

.contact-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px
}

.contact-info-card,
.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--soft)
}

.contact-info-card {
  background: linear-gradient(180deg, #fff, #f8fbff)
}

.contact-info-card h2 {
  font-weight: 900;
  letter-spacing: -.04em
}

.contact-info-card p {
  color: #536174;
  line-height: 1.7
}

.contact-mini-list {
  display: grid;
  gap: 12px;
  margin-top: 22px
}

.contact-mini-list div {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 850
}

.contact-mini-list i {
  color: var(--gold2)
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(6, 19, 38, .12);
  font-size: .9rem;
  font-weight: 650
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(245, 179, 61, .16)
}

textarea.form-control {
  min-height: 118px
}

.form-success {
  display: none;
  margin-top: 12px;
  color: #0c7d43;
  font-weight: 850
}

/* footer */
.footer {
  background: linear-gradient(135deg, #061326, #071b31);
  color: #dbe6f2;
  padding: 42px 0 22px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 25px
}

.footer img {
  width: 190px;
  margin-bottom: 12px
}

.footer p,
.footer li,
.footer a {
  font-size: .84rem;
  color: #c4d2e2;
  line-height: 1.7
}

.footer h5 {
  font-size: .96rem;
  color: #fff;
  font-weight: 900
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin-top: 28px;
  padding-top: 18px;
  text-align: center;
  font-size: .8rem;
  color: #aebed0
}

.floating {
  position: fixed;
  right: 18px;
  bottom: 22px;
  display: grid;
  gap: 10px;
  z-index: 30
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #061326 !important;
  box-shadow: 0 12px 30px rgba(6, 19, 38, .20);
  font-weight: 900
}

.float-btn.whatsapp {
  background: #26d366;
  color: #fff !important;
  font-size: 1.25rem
}

/* inner pages */
.inner-hero {
  position: relative;
  padding: 165px 0 45px;
  background: linear-gradient(90deg, rgba(6, 19, 38, .88), rgba(6, 19, 38, .55)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=86') center/cover;
  color: #fff
}

.inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 950;
  letter-spacing: -.05em
}

.basic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.basic-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--soft)
}

.basic-card h3 {
  font-size: 1.15rem;
  font-weight: 900
}

.basic-card p {
  font-size: .9rem;
  color: #536174;
  line-height: 1.7
}

.basic-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px
}

/* animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in-view {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .08s
}

.delay-2 {
  transition-delay: .16s
}

.delay-3 {
  transition-delay: .24s
}

/* responsive */
@media(max-width:1199px) {
  .container {
    max-width: 960px
  }

  .top-info {
    gap: 14px
  }

  .info-item:nth-child(2),
  .info-item:nth-child(3) {
    display: none
  }

  .nav-wrap {
    width: min(660px, calc(100vw - 285px))
  }

  .why-strip {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:991px) {
  .section {
    padding: 52px 0
  }

  .topbar {
    height: auto;
    padding: 8px 0
  }

  .topbar .wrap {
    height: auto
  }

  .brand img {
    width: 190px
  }

  .top-info {
    display: none
  }

  .site-header {
    position: relative;
    background: #061326
  }

  .nav-wrap {
    position: static;
    width: 100%;
    border-radius: 0;
    padding: 0 16px
  }

  .navbar {
    min-height: 58px
  }

  .navbar-collapse {
    padding: 10px 0 16px
  }

  .navbar-nav {
    align-items: stretch
  }

  .nav-link {
    padding: 12px 0 !important
  }

  .nav-link:after {
    display: none
  }

  .hero {
    min-height: auto;
    padding: 70px 0 46px
  }

  .hero:before {
    inset: 0;
    background: linear-gradient(90deg, rgba(246, 249, 253, .96), rgba(246, 249, 253, .82)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1600&q=86') center/cover
  }

  .hero-grid,
  .intro-wrap,
  .production-grid,
  .region-grid,
  .contact-wrap,
  .faq-wrap {
    grid-template-columns: 1fr
  }

  .hero-stage {
    min-height: 390px
  }

  .benefit-stack {
    right: 5px;
    top: 20px;
    width: 220px
  }

  .profile-podium {
    left: 0;
    right: 160px
  }

  .profile-podium img {
    width: 220px
  }

  .solution-block,
  .solution-block:nth-of-type(even) {
    grid-template-columns: 1fr
  }

  .solution-block:nth-of-type(even) .solution-copy,
  .solution-block:nth-of-type(even) .carousel-panel {
    order: initial
  }

  .solution-copy {
    min-height: auto
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .dark-cta {
    display: block
  }

  .dark-cta .hero-actions {
    margin-top: 22px
  }

  .faq-intro {
    position: relative;
    top: auto
  }
}

@media(max-width:767px) {
  .hero h1 {
    font-size: 2.5rem
  }

  .hero-stage {
    min-height: 470px
  }

  .benefit-stack {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    margin-top: 20px;
    grid-template-columns: 1fr 1fr
  }

  .benefit-box {
    min-height: 58px
  }

  .benefit-box:nth-child(even) {
    transform: none
  }

  .profile-podium {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px
  }

  .profile-podium img {
    width: 180px
  }

  .intro-badge {
    grid-template-columns: 1fr;
    right: 18px;
    left: 18px
  }

  .mini-features,
  .locations {
    grid-template-columns: 1fr
  }

  .why-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .process-grid,
  .basic-grid {
    grid-template-columns: 1fr
  }

  .carousel-panel {
    padding: 18px 42px 44px
  }

  .carousel-title {
    display: block
  }

  .gallery-card.large {
    grid-column: span 2;
    grid-row: span 1
  }

  .testimonial-swiper {
    padding-left: 42px;
    padding-right: 42px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .dark-cta,
  .contact-info-card,
  .quote-form {
    padding: 24px
  }

  .floating {
    right: 12px
  }
}

@media(max-width:480px) {
  .section-head h2 {
    font-size: 1.65rem
  }

  .hero h1 {
    font-size: 2.15rem
  }

  .benefit-stack {
    grid-template-columns: 1fr
  }

  .solution-block {
    padding: 14px;
    border-radius: 22px
  }

  .solution-copy {
    padding: 24px;
    border-radius: 20px
  }

  .carousel-panel {
    padding: 16px 36px 42px
  }

  .gallery-grid {
    display: block
  }

  .gallery-card {
    height: 210px;
    margin-bottom: 14px
  }

  .gallery-card.large {
    height: 250px
  }

  .why-strip {
    grid-template-columns: 1fr
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 38px !important;
    height: 38px !important
  }

  .review-card {
    padding: 20px
  }

  .faq .accordion-button {
    font-size: .84rem;
    padding-right: 42px
  }

  .topbar .wrap {
    justify-content: center
  }

  .nav-wrap {
    padding: 0 12px
  }

  .btn-gold,
  .btn-dark,
  .btn-outline {
    width: 100%
  }
}

/* Enhanced premium footer */
.premium-footer {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 18%, rgba(242, 174, 47, .18), transparent 28%), radial-gradient(circle at 88% 5%, rgba(255, 255, 255, .08), transparent 26%), linear-gradient(135deg, #04101f 0%, #061b31 48%, #020916 100%);
  padding: 0;
  color: #dbe8f6
}

.premium-footer:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .18;
  pointer-events: none
}

.footer-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(38px);
  opacity: .46;
  pointer-events: none
}

.footer-glow-one {
  width: 260px;
  height: 260px;
  background: #f2ae2f;
  left: -90px;
  bottom: -140px
}

.footer-glow-two {
  width: 240px;
  height: 240px;
  background: #3da3ff;
  right: -110px;
  top: 80px;
  opacity: .18
}

.footer-container {
  position: relative;
  z-index: 1
}

.footer-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(-38px);
  margin-bottom: -8px;
  padding: 26px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 249, 253, .92));
  border: 1px solid rgba(242, 174, 47, .32);
  box-shadow: 0 24px 70px rgba(5, 16, 32, .18)
}

.footer-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #c67800;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.footer-kicker:before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #f3b340, #c67800);
  border-radius: 10px
}

.footer-cta-strip h3 {
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 900;
  color: #061326;
  margin: 0
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 45px;
  padding: 12px 20px;
  border-radius: 16px;
  font-weight: 900;
  font-size: .86rem;
  text-decoration: none !important;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease
}

.footer-btn-gold {
  background: linear-gradient(135deg, #ffc24d, #d48609);
  color: #061326 !important;
  box-shadow: 0 14px 30px rgba(212, 134, 9, .28)
}

.footer-btn-outline {
  background: #061326;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 14px 30px rgba(6, 19, 38, .16)
}

.footer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, .24)
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .85fr .85fr .9fr 1.15fr;
  gap: 22px;
  padding: 18px 0 32px
}

.footer-brand-card,
.footer-link-card,
.footer-contact-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
  border-radius: 24px;
  padding: 22px;
  min-height: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease
}

.footer-brand-card:hover,
.footer-link-card:hover,
.footer-contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 174, 47, .45);
  background: linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .035));
  box-shadow: 0 22px 50px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .1)
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px
}

.footer-logo img,
.premium-footer .footer-logo img {
  width: 190px;
  max-width: 100%;
  height: auto;
  margin: 0;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .24))
}

.premium-footer p {
  color: #c9d8e8;
  font-size: .86rem;
  line-height: 1.75;
  margin: 0
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff !important;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease
}

.footer-socials a:hover {
  transform: translateY(-5px) rotate(4deg);
  background: linear-gradient(135deg, #ffc24d, #d48609);
  color: #061326 !important;
  border-color: transparent
}

.premium-footer h5 {
  position: relative;
  color: #fff;
  font-size: .96rem;
  font-weight: 900;
  margin-bottom: 17px;
  padding-bottom: 12px
}

.premium-footer h5:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, #ffc24d, #d48609)
}

.premium-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px
}

.premium-footer li {
  line-height: 1.35
}

.premium-footer .footer-link-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd9e9 !important;
  font-size: .86rem;
  text-decoration: none !important;
  transition: transform .28s ease, color .28s ease
}

.premium-footer .footer-link-card a i {
  font-size: .72rem;
  color: #f2ae2f;
  transition: transform .28s ease
}

.premium-footer .footer-link-card a:hover {
  color: #fff !important;
  transform: translateX(6px)
}

.premium-footer .footer-link-card a:hover i {
  transform: translateX(3px)
}

.footer-contact-card {
  background: linear-gradient(160deg, rgba(242, 174, 47, .12), rgba(255, 255, 255, .03) 40%, rgba(255, 255, 255, .055))
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #eaf3ff !important;
  text-decoration: none !important;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: transform .28s ease, color .28s ease
}

.footer-contact-row:last-child {
  border-bottom: 0
}

.footer-contact-row span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(242, 174, 47, .12);
  color: #f2ae2f;
  border: 1px solid rgba(242, 174, 47, .22);
  transition: background .28s ease, color .28s ease, transform .28s ease
}

.footer-contact-row strong {
  font-size: .85rem;
  font-weight: 800
}

.footer-contact-row:hover {
  transform: translateX(5px);
  color: #fff !important
}

.footer-contact-row:hover span {
  background: #f2ae2f;
  color: #061326;
  transform: scale(1.05)
}

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

.footer-bottom p {
  font-size: .8rem;
  color: #aebed0
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px
}

.footer-legal span {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .2)
}

.footer-legal a {
  font-size: .8rem;
  color: #c9d8e8 !important;
  text-decoration: none !important;
  transition: color .25s ease
}

.footer-legal a:hover {
  color: #f2ae2f !important
}

.floating {
  z-index: 80
}

.float-btn {
  transition: transform .28s ease, box-shadow .28s ease
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 18px 36px rgba(6, 19, 38, .26)
}

@media(max-width:1199px) {
  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr
  }

  .footer-contact-card {
    grid-column: span 2
  }
}

@media(max-width:991px) {
  .footer-cta-strip {
    align-items: flex-start;
    flex-direction: column;
    transform: translateY(-26px);
    padding: 22px
  }

  .footer-main {
    grid-template-columns: 1fr 1fr
  }

  .footer-contact-card {
    grid-column: auto
  }

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

  .footer-legal {
    justify-content: center
  }
}

@media(max-width:575px) {
  .premium-footer {
    padding-bottom: 10px
  }

  .footer-cta-strip {
    border-radius: 22px;
    margin-left: 2px;
    margin-right: 2px
  }

  .footer-cta-strip h3 {
    font-size: 1.08rem
  }

  .footer-cta-actions,
  .footer-btn {
    width: 100%
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .footer-brand-card,
  .footer-link-card,
  .footer-contact-card {
    border-radius: 20px;
    padding: 20px
  }

  .footer-logo img,
  .premium-footer .footer-logo img {
    width: 170px
  }

  .footer-bottom {
    padding-bottom: 76px
  }

  .floating {
    right: 12px;
    bottom: 14px
  }

  .float-btn {
    width: 44px;
    height: 44px
  }
}

/* =========================
   Client requested refinement: softer testimonials, cleaner network block, box-free footer
   ========================= */
.testimonials {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 54%, #eef4fa 100%);
  overflow: hidden;
  background: linear-gradient(150deg, #071326, #102b4b);
}

.testimonials:before {
  content: "";
  position: absolute;
  left: -120px;
  top: 75px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 61, .18), transparent 68%);
  pointer-events: none;
}

.testimonials:after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: 50px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 19, 38, .08), transparent 68%);
  pointer-events: none;
}

.testimonials .container {
  position: relative;
  z-index: 1
}

.testimonial-swiper {
  padding: 12px 7px 20px;
  overflow: hidden
}

.review-card {
  min-height: 250px;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(6, 19, 38, .10);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(6, 19, 38, .16)
}

.review-card:before {
  display: none
}

.review-card:after {
  content: "";
  height: 5px;
  background: linear-gradient(90deg, #f5b33d, #d08412, #061326);
  order: -2
}

.review-top {
  margin: 0;
  padding: 22px 22px 12px;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #fff, #f7fbff);
}

.avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 12px 30px rgba(6, 19, 38, .16)
}

.review-meta h5 {
  font-size: 1rem;
  letter-spacing: -.02em
}

.review-meta span {
  display: block;
  margin-top: 3px;
  color: #617087;
  font-weight: 800;
  font-size: .76rem
}

.review-top:after {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: rgba(245, 179, 61, .30);
  font-size: 2.3rem;
  align-self: start
}

.stars {
  margin: 0;
  padding: 0 22px 12px;
  color: #f5a623;
  font-size: .78rem;
  letter-spacing: .18em
}

.review-card p {
  padding: 0 22px 24px;
  margin: 0;
  color: #23364d;
  font-size: .9rem;
  line-height: 1.72;
  font-weight: 750
}

.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next,
.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 35px rgba(6, 19, 38, .12);
  border: 1px solid rgba(6, 19, 38, .08);
}

.testimonial-swiper .swiper-button-prev:after,
.testimonial-swiper .swiper-button-next:after,
.product-swiper .swiper-button-prev:after,
.product-swiper .swiper-button-next:after {
  font-size: 18px;
  color: #061326;
  font-weight: 900
}

.swiper-pagination-bullet {
  background: #b8c6d8;
  opacity: 1
}

.swiper-pagination-bullet-active {
  background: #f5b33d;
  width: 24px;
  border-radius: 99px
}

.region-grid {
  position: relative;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, #fff 0%, #fbfdff 60%, #fff8ec 100%);
  border: 1px solid rgba(6, 19, 38, .08);
  border-radius: 30px;
  box-shadow: 0 22px 65px rgba(6, 19, 38, .09);
  overflow: hidden;
}

.ach-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -1px;
  transition: transform .4s ease;
}

.achievement-card:hover .ach-number {
  transform: scale(1.08);
}

.region-grid:before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(245, 179, 61, .12)
}

.map-box {
  height: 310px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, .08), rgba(255, 255, 255, .38)),
    url('https://images.unsplash.com/photo-1596176530529-78163a4f7af2?auto=format&fit=crop&w=1300&q=86') center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55), 0 18px 45px rgba(6, 19, 38, .10);
}

.map-box .btn-gold {
  box-shadow: 0 16px 36px rgba(199, 120, 15, .28);
  border-radius: 18px;
  min-height: 54px;
  padding: 15px 26px
}

.swiper-pagination {
  display: none;
}

.region-grid h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.1;
  margin: 10px 0 20px
}

.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px
}

.locations div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 850;
  font-size: .92rem;
  line-height: 1.35;
  color: #061326
}

.locations i {
  color: #d38410;
  margin-top: 2px;
  font-size: 1rem
}

/* Footer: remove visible card boxes, keep premium open-column layout */
.premium-footer {
  background: radial-gradient(circle at 16% 0%, rgba(245, 179, 61, .17), transparent 28%), linear-gradient(135deg, #04101f 0%, #071a2f 52%, #020813 100%);
  padding: 0 0 0;
  color: #dce9f8;
}

.premium-footer:before {
  opacity: .11
}

.footer-glow {
  opacity: .25
}

.footer-cta-strip {
  margin-top: 65px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #fff7e8);
  border: 1px solid rgba(245, 179, 61, .32);
  box-shadow: 0 20px 55px rgba(6, 19, 38, .16);
  padding: 22px 26px;
  margin-bottom: 0;
}

.footer-main {
  grid-template-columns: 1.35fr .8fr .8fr .85fr 1.05fr;
  gap: 42px;
  padding: 26px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.footer-brand-card,
.footer-link-card,
.footer-contact-card {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-height: unset !important;
  transform: none !important;
}

.footer-brand-card:hover,
.footer-link-card:hover,
.footer-contact-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
  background: transparent !important
}

.premium-footer h5 {
  margin-bottom: 16px;
  padding-bottom: 11px;
  font-size: 1rem
}

.premium-footer h5:after {
  height: 2px;
  width: 40px
}

.premium-footer .footer-link-card a {
  position: relative;
  padding: 3px 0 3px 0;
  color: #c8d7e8 !important;
  font-weight: 750
}

.premium-footer .footer-link-card a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #f5b33d;
  transition: width .3s ease
}

.premium-footer .footer-link-card a:hover:after {
  width: 100%
}

.premium-footer .footer-link-card a:hover {
  transform: translateX(5px);
  color: #fff !important
}

.footer-contact-row {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .11) !important;
  border-radius: 0 !important;
  padding: 10px 0 !important;
  box-shadow: none !important
}

.footer-contact-row:hover {
  transform: translateX(5px) !important;
  border-color: rgba(245, 179, 61, .38) !important
}

.footer-contact-row span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(245, 179, 61, .14);
  color: #f5b33d !important;
  flex: 0 0 34px
}

.footer-bottom {
  padding: 18px 0 22px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #b8c9dc;
  font-size: .82rem
}

.footer-bottom p {
  margin: 0
}

.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center
}

.footer-legal span {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .2)
}

.footer-legal a {
  color: #dce9f8 !important;
  font-size: .82rem
}

.footer-legal a:hover {
  color: #f5b33d !important
}

.footer-socials a {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14)
}

.product-swiper .swiper-button-prev {

  background: #f5b33d;
}

.product-swiper .swiper-button-next {

  background: #f5b33d;
}

@media(max-width:991px) {
  .testimonial-swiper {
    padding-left: 48px;
    padding-right: 48px
  }

  .review-top {
    grid-template-columns: 62px 1fr auto
  }

  .avatar {
    width: 62px;
    height: 62px
  }

  .region-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px
  }

  .map-box {
    height: 260px
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  .footer-cta-strip {
    transform: none;
    margin: 32px 0 10px
  }

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

@media(max-width:575px) {
  .testimonial-swiper {
    padding-left: 42px;
    padding-right: 42px
  }

  .review-top {
    grid-template-columns: 54px 1fr
  }

  .review-top:after {
    display: none
  }

  .avatar {
    width: 54px;
    height: 54px
  }

  .review-card p {
    font-size: .86rem
  }

  .locations {
    grid-template-columns: 1fr
  }

  .map-box {
    height: 220px
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer-cta-strip {
    display: block
  }

  .footer-cta-actions {
    margin-top: 16px
  }

  .premium-footer h5 {
    margin-top: 6px
  }
}


/* Carousel arrow reliability fix */
.product-swiper,
.testimonial-swiper {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.product-swiper .swiper-wrapper,
.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.product-swiper .swiper-slide,
.testimonial-swiper .swiper-slide {
  height: auto;
}

.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  z-index: 30 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.product-swiper .swiper-button-prev {
  left: 0px !important;
  top: 41%;
}

.product-swiper .swiper-button-next {
  right: 0px !important;
  top: 41%;
}

.testimonial-swiper .swiper-button-prev {
  left: 8px !important;
}

.testimonial-swiper .swiper-button-next {
  right: 8px !important;
}

.swiper-button-disabled-soft {
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.product-swiper .swiper-pagination,
.testimonial-swiper .swiper-pagination {
  z-index: 25 !important;
}





.dealer-map {
  position: relative;
  background: #eef6ff;
  border-radius: 24px;
  /* padding:30px; */
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dealer-map img {
  max-width: 100%;
  width: 380px;
}

.city {
  position: absolute;
  font-size: 13px;
  font-weight: 700;
  color: #061326;
}

.city::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #f5b33d;
  border: 3px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 0 0 4px rgba(245, 179, 61, .2);
}

/* Adjust according to your map image */
.city-bangalore {
  top: 190px;
  left: 220px;
}

.city-hyderabad {
  top: 120px;
  left: 250px;
}

.city-chennai {
  top: 170px;
  left: 300px;
}

.city-mysuru {
  top: 230px;
  left: 190px;
}

.city-mangalore {
  top: 240px;
  left: 150px;
}

.city-coimbatore {
  top: 280px;
  left: 210px;
}

.city-kochi {
  top: 330px;
  left: 180px;
}







.dealer-network-section {
  padding: 70px 0;
}

.dealer-card {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 50px;
  background: #fff;
  border-radius: 30px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.dealer-map {
  position: relative;
  background: linear-gradient(135deg, #eef6ff, #e6f0ff);
  border-radius: 24px;
  min-height: 350px;
  overflow: hidden;
}

.dealer-map::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(26, 75, 140, .05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.network-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #d89a27;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  z-index: 5;
}

.map-svg {
  width: 100%;
  height: 100%;
}

.map-shape {
  fill: #dcecff;
  stroke: #7db0e5;
  stroke-width: 2;
}

.route {
  stroke: #8ab9ea;
  stroke-width: 2;
  stroke-dasharray: 5;
}

.city {
  fill: #2563eb;
}

.hq {
  fill: #0a2f66;
}

.pulse {
  fill: rgba(10, 47, 102, .15);
}

.map-svg text {
  font-size: 11px;
  font-weight: 700;
  fill: #081b3a;
}

.eyebrow {
  color: #d89a27;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: none;
  font-weight: 700;
}

.dealer-content h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #081b3a;
  margin: 15px 0 25px;
  font-weight: 800;
}

.dealer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.dealer-grid div {
  padding: 10px 18px;
  border-radius: 14px;
  background: #DEEAF9;
  border: 1px solid #eef2f7;
  font-weight: 600;
  transition: .3s;
}

.dealer-grid div:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

@media(max-width:991px) {

  .dealer-card {
    grid-template-columns: 1fr;
  }

  .dealer-content h2 {
    font-size: 34px;
  }

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

  .dealer-map {
    min-height: 300px;
  }
}

.map-svg {
  width: 100%;
  height: 100%;
  animation: floatMap 6s ease-in-out infinite;
}

@keyframes floatMap {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.pulse {
  fill: rgba(10, 47, 102, .15);
  transform-origin: center;
  animation: hqPulse 2.5s infinite;
}

@keyframes hqPulse {
  0% {
    transform: scale(.8);
    opacity: .8;
  }

  70% {
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}


.route {
  stroke: #8ab9ea;
  stroke-width: 2;
  stroke-dasharray: 8;
  animation: routeMove 8s linear infinite;
}

@keyframes routeMove {
  from {
    stroke-dashoffset: 100;
  }

  to {
    stroke-dashoffset: 0;
  }
}


.city {
  fill: #2563eb;
  animation: cityGlow 3s infinite alternate;
}

@keyframes cityGlow {
  from {
    filter: drop-shadow(0 0 0px rgba(37, 99, 235, .3));
  }

  to {
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, .7));
  }
}

.dealer-grid div {
  position: relative;
  overflow: hidden;
}

.dealer-grid div::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .6),
      transparent);
  transition: .7s;
}

.dealer-grid div:hover::before {
  left: 100%;
}

.cta-list1 {

  display: flex;
  gap: 8px;
}

.testimonial-swiper .swiper-button-prev {
  left: 0px !important;
  background: #f5b33d;
}

.testimonial-swiper .swiper-button-next {
  right: 0px !important;
  background: #f5b33d;
}

.white {
  color: white !important;
}

.process-section {
  background: linear-gradient(150deg, #071326, #102b4b);
}

@media(max-width:575px) {
  .product-swiper .swiper-button-prev {
    left: 2px !important;
  }

  .cta-list1 {

    display: grid;
    gap: 8px;
  }

  .product-swiper .swiper-button-next {
    right: 2px !important;
  }

  .testimonial-swiper .swiper-button-prev {
    left: 2px !important;
  }

  .testimonial-swiper .swiper-button-next {
    right: 2px !important;
  }
}


/* ==========================================================================
   MILESTONES INVERTED VARIANT (White Section / #09172C Grid Cards)
   ========================================================================== */

/* Outer Wrapper Block */
.milestones-section {
  padding: 30px 0;
  display: block;
  background-color: #ffffff;
  /* Clean stark white canvas */
  width: 100%;
}

.milestones-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography Header Matrix */
.milestones-header {
  text-align: center;
  margin-bottom: 56px;
}

.milestones-eyebrow {
  color: var(--wp-gold-deep, #c9780f);
  /* Deep warm accent gold */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}

.milestones-title {
  color: #061326;
  /* Deepest brand corporate black/navy */
  font-size: 34px;
  font-weight: 950;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Grid Wrapper Layout */
.achievements-grid.dark-variant {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

/* Premium Dark Card Units */
.achievements-grid.dark-variant .achievement-card {
  background-color: #09172C;
  /* Dark luxury base background requested */
  border-radius: var(--wp-radius-sm, 14px);
  padding: 40px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 40px rgba(9, 23, 44, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}

/* Elevation on interactive states */
.achievements-grid.dark-variant .achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(9, 23, 44, 0.28);
  border-color: rgba(245, 179, 61, 0.25);
  /* Subtle highlight glow framework on hover */
}

/* Internal Card Typography */
.achievements-grid.dark-variant .ach-number {
  font-size: 3rem;
  font-weight: 950;
  color: var(--wp-gold-bright, #f5b33d);
  /* Vibrant gold pop against dark background */
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.achievements-grid.dark-variant .ach-divider {
  width: 35px;
  height: 3px;
  background-color: #ffffff;
  /* Bright structural break divider */
  opacity: 0.15;
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.achievements-grid.dark-variant .achievement-card:hover .ach-divider {
  opacity: 0.5;
  background-color: var(--wp-gold-bright, #f5b33d);
  transition: all 0.3s ease;
}

.achievements-grid.dark-variant .ach-title {
  font-size: 1.15rem;
  font-weight: 850;
  color: #ffffff;
  /* Solid text contrast visibility */
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.achievements-grid.dark-variant .ach-desc {
  font-size: 0.88rem;
  font-weight: normal;
  color: #94a3b8;
  /* Muted slate gray for long-form scannable legibility */
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
  .achievements-grid.dark-variant {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .milestones-section {
    padding: 60px 0;
  }

  .milestones-title {
    font-size: 28px;
  }
}









.dealer-map.real-terrain-theme {
  position: relative;
  border-radius: 24px;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(6, 19, 38, 0.15);
  background-color: #09172c;
}

/* Background Ocean Map Layer */
.sea-bg {
  fill: #09172c;
}

/* Landmass Layer Config */
.map-shape.terrain-layer {
  fill: #cbe0f4;
  /* High-contrast silver-blue terrain */
  stroke: #729ecb;
  /* Crisp shoreline outline */
  stroke-width: 2;
  stroke-linejoin: round;
}

/* State Division Boundaries */
.state-border {
  fill: none;
  stroke: #9fc1e41e;
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
  pointer-events: none;
}

/* High-Visibility Golden Connection Vectors */
.route {
  stroke: #f5b33d;
  /* Radiant gold connection lines */
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 6 5;
  opacity: 0.95;
  filter: drop-shadow(0 0 5px rgba(245, 179, 61, 0.7));
  animation: connectionLineFlow 7s linear infinite;
}

@keyframes connectionLineFlow {
  from {
    stroke-dashoffset: 100;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* Central HQ Core Node (Bengaluru) */
.hq {
  fill: #ffffff;
  stroke: #09172c;
  stroke-width: 3;
}

/* Radar Pulse Beacon Waveform */
.pulse {
  fill: #f5b33d;
  opacity: 0.4;
  transform-origin: 185px 180px;
  animation: hubPulseRadar 3s infinite ease-out;
}

@keyframes hubPulseRadar {
  0% {
    transform: scale(0.4);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* Satellite Cities Nodes */
.city {
  fill: #ffffff;
  stroke: #2563eb;
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* ==========================================================================
   UNIVERSAL TEXT VISIBILITY ENGINE (Anti-Blur Filters)
   ========================================================================== */

.text-label {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 800;
  /* Extra weighted font profile for sharp rendering */
  letter-spacing: -0.01em;
  fill: #ffffff !important;
  /* All text labels are uniform crisp white */
  user-select: none;
  /* Complex multi-layered dark outer mask ensures text pops over both land and sea backgrounds */
  text-shadow: -1px -1px 0 #061326,
    1px -1px 0 #061326,
    -1px 1px 0 #061326,
    1px 1px 0 #061326,
    0px 2px 4px rgba(6, 19, 38, 0.9),
    0px 0px 6px rgba(6, 19, 38, 0.7);
}

.text-label.text-hq {
  font-size: 13.5px;
  font-weight: 900;
}

@media (max-width: 575px) {
  .achievements-grid.dark-variant {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .achievements-grid.dark-variant .achievement-card {
    padding: 32px 20px;
  }



}









@media (max-width: 991px) {

  /* Header Positioning Rules */
  .site-header {
    position: sticky !important;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(6, 19, 38, 0.08);
  }

  .topbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }

  .topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* Target Actions Unit */
  .mobile-actions-group {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .btn-phone-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: var(--paper);
    color: #c9780f;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    border: 1px solid var(--line);
  }

  /* Minimalist Premium Corporate Toggler Icon Customization */
  .navbar-toggler {
    padding: 0;
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .custom-toggler-icon {
    position: relative;
    width: 22px;
    height: 2px;
    background-color: var(--navy);
    display: block;
    transition: background 0.2s ease;
  }

  .custom-toggler-icon::before,
  .custom-toggler-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--navy);
    left: 0;
    transition: transform 0.25s ease, top 0.25s ease;
  }

  .custom-toggler-icon::before {
    top: -7px;
  }

  .custom-toggler-icon::after {
    top: 7px;
  }

  /* Bootstrap Active Interaction States */
  .navbar-toggler[aria-expanded="true"] .custom-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .custom-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .custom-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* Nav Wrap Structural Refinement */
  .nav-wrap {
    position: absolute !important;
    top: 100%;
    left: 0;
    width: 100% !important;
    background: #061326 !important;
    /* Premium corporate contrast backdrop */
    border-radius: 0 0 20px 20px !important;
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 24px 50px rgba(6, 19, 38, 0.35) !important;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .navbar-collapse {
    padding: 16px 8px 24px !important;
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 4px !important;
    width: 100%;
  }

  .nav-link {
    padding: 14px 16px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold) !important;
  }

  /* High Contrast Mega Menu Stack Conversion */
  .mega-menu {
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 14px !important;
    padding: 8px 12px !important;
    margin: 4px 12px 12px !important;
    width: auto !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .mega-col {
    border-right: none !important;
    padding: 12px 8px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mega-col:last-child {
    border-bottom: none;
  }

  .mega-col h6 {
    color: var(--gold) !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px !important;
  }

  .mega-col a {
    padding: 10px 0 !important;
    color: #b3c3d4 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
  }

  .mega-col a:hover {
    color: #ffffff !important;
  }

  /* Bottom Actions Matrix inside Drawer */
  .nav-cta-wrapper {
    margin-top: 20px;
    padding: 0 16px;
    width: 100%;
  }

  .nav-cta-wrapper .btn-gold {
    min-height: 48px;
    font-size: 0.95rem;
  }

  .navbar {
    min-height: 16px;
  }

  .eyebrow {
    color: #d89a27;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
  }

  .hero h1 {
    font-size: 1.55rem;
    word-spacing: 4px;
  }

  .hero-stage {
    min-height: 196px;
  }

  .intro-media img {
    width: 100%;
    height: 100%;
    /* min-height: 360px; */
    min-height: 364px;
    object-fit: cover;
  }

  .mini-features,
  .locations {
    grid-template-columns: 1fr 1fr;
  }

  .milestones-section {
    padding: 20px 0;
  }

  .achievement-card {
    padding: 10px 20px;
  }

  .achievements-grid.dark-variant .ach-number {
    font-size: 2rem;
    font-weight: 950;
    color: var(--wp-gold-bright, #f5b33d);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 7px;
  }

  .carousel-title h4 {
    margin: 0;
    font-size: 1.51rem;
    font-weight: 900;
    margin-bottom: 14px;
    text-align: center;
  }

  .carousel-title span {
    display: none;
  }

  .why-strip {
    grid-template-columns: 1fr 1f;
  }

  .production-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 312px;
  }

  .serve-copy {
    text-align: center;
    padding: 20px;
  }

  .serve-list {
    text-align: center !important;
    padding: 0;
    margin: 0 auto;
    list-style: none;
  }

  .serve-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .serve-list li i {
    margin-bottom: 8px;
    margin-right: 0;
    font-size: 24px;
    gap: 0px !important;
  }

  .serve-list p {
    text-align: center;
    margin: 0 0 20px;
    padding: 0 15px;
  }

  .section {
    padding: 30px 0;
  }

  .dealer-card {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 50px;
    background: #fff;
    border-radius: 30px;
    /* padding: 25px; */
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
  }

  .network-badge {
    position: absolute;
    top: 7px;
    left: 20px;
    background: #d89a27;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
  }

  .dealer-card {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 8px;
    background: #fff;
    border-radius: 30px;
    /* padding: 25px; */
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
  }

  .dealer-content h2 {
    font-size: 25px;
  }

  .dealer-network-section {
    padding: 30px 0;
  }

  .dealer-card {
    display: block !important;
    grid-template-columns: 338px 23fr;
    gap: 8px;
    background: #fff;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
  }

}

.avatar-letter {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #2f67c8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-meta h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.review-meta span {
  color: #6c757d;
  font-size: 14px;
}

html,
body {
  overflow-x: hidden !important;
  max-width: 100%;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Left WhatsApp */
.floating-left {
  position: fixed;
  left: 20px;
  bottom: 25px;
  z-index: 9999;
}

.whatsapp {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, .4);
  animation: whatsappPulse 2s infinite;
}

/* Right Buttons */
.floating-right {
  position: fixed;
  right: 20px;
  bottom: 25px;
  display: flex;
  align-items: self-end;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Enquire Button */
.enquire-btn {
  background: linear-gradient(135deg, #ffb400, #ff7a00);
  color: #fff;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(255, 122, 0, .35);
  animation: enquireShake 4s infinite;
  transition: .3s;
}

.enquire-btn i {
  font-size: 18px;
  animation: ring 1.5s infinite;
}

.enquire-btn:hover {
  transform: translateY(-4px);
}

/* Back To Top */
.top-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(150deg, #071326, #102b4b);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(13, 110, 253, .35);
  animation: bounceUp 2s infinite;
}

/* Animations */
@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
  }

  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes enquireShake {

  0%,
  90%,
  100% {
    transform: translateX(0);
  }

  92% {
    transform: translateX(-4px);
  }

  94% {
    transform: translateX(4px);
  }

  96% {
    transform: translateX(-4px);
  }

  98% {
    transform: translateX(4px);
  }
}

@keyframes ring {

  0%,
  100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-15deg);
  }

  60% {
    transform: rotate(10deg);
  }

  80% {
    transform: rotate(-10deg);
  }
}

@keyframes bounceUp {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/* Mobile */
@media(max-width:768px) {

  .floating-left {
    left: 15px;
    bottom: 20px;
  }

  .floating-right {
    right: 15px;
    bottom: 20px;
  }

  .whatsapp {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .enquire-btn {
    padding: 13px 18px;
    font-size: 14px;
  }

  .top-btn {
    width: 50px;
    height: 50px;
  }
}


@media (max-width: 768px) {
  .about-floating-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 15px;
    max-width: 100%;
  }

  .profile-podium img:last-child {

    transform: scale(1.52) translateX(6px);
  }

  .intro-badge {
    grid-template-columns: 1fr;
    right: 183px;
    left: 19px;
  }

  .carousel-panel {
    padding: 16px 15px 42px;
  }

  .returen {
    display: flex;
    flex-direction: column-reverse;
  }

  .serve-list li {

    font-weight: 800;
  }

  .serve-list {
    text-align: center !important;
    padding: 0;
    margin: 14px auto;
    list-style: none;
  }

  .production-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--soft);
    min-height: 231px;
  }

  .production-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 469px;
  }

}

.footer-contact-row:hover span {
  background: #f2ae2f;
  color: #061326 !important;
  transform: scale(1.05);
}

.overflow-safe-section {
  overflow-x: hidden;
  width: 100%;
}



/* ==========================================================================
   Advantages Section Styles (6-Column Minimalist Layout)
   ========================================================================== */
.advantages-section {
  padding: 80px 0;
  background-color: var(--white);
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section-title .eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 8px;
}

.section-title h2 {
  color: var(--navy);
  font-size: 36px;
  font-weight: 800;
}

.text-gold {
  color: var(--gold);
}

/* 6-Column Grid Layout */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Minimalist Advantage Card */
.advantage-card {
  background-color: var(--paper);
  padding: 30px 15px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background-color: var(--white);
  border-color: var(--gold);
}

/* Icon Configuration */
.advantage-card .icon-box {
  width: 55px;
  height: 55px;
  background-color: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 22px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.advantage-card:hover .icon-box {
  background-color: var(--gold);
  color: var(--navy);
}

/* Heading Configuration */
.advantage-card h3 {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
    /* Drops to 3x2 grid on smaller desktops */
  }
}

@media (max-width: 768px) {
  .advantages-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Drops to 2x3 grid on mobile tablets */
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    /* Stacked completely vertical on small phones */
  }
}



/* -------------- */




/* ==========================================================================
   Production Copy Block - Left Column Styles
   ========================================================================== */
.production-copy {
  width: 100%;
  max-width: 650px;
  text-align: left;
}




/* 3. Text Descriptions */
.production-lead p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* 4. Process Timeline Steps */
.production-timeline {
  margin: -12px 0;
  position: relative;
}

.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 3px;
}

/* Connective vertical line accent between numbers */
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background-color: rgba(11, 25, 44, 0.15);
}

.timeline-item .step-number {
  width: 40px;
  height: 40px;
  background-color: var(--navy);
  color: var(--gold);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(11, 25, 44, 0.15);
}

.timeline-item .step-content h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin: 10px 0 6px 0;
  letter-spacing: 0.3px;
}

.timeline-item .step-content p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* 5. Feature Bordered Highlight Cards */
.feature-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.feature-card-item {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  /* Left border theme accent from image */
  border-radius: 6px;
  padding: 10px 6px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.feature-card-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.feature-card-item i {
  color: var(--navy);
  font-size: 14px;
}

.feature-card-item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* Responsive Scaling down */
@media (max-width: 768px) {

  .timeline-item {
    gap: 15px;
  }

  .timeline-item:not(:last-child)::after {
    left: 17px;
  }

  .timeline-item .step-number {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .feature-cards-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .achievements-grid.dark-variant {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /*.advantages-grid {*/
  /*    grid-template-columns: 1fr 1fr;*/
  /*}*/
}




html,
body {
  overflow-x: hidden !important;
  max-width: 100%;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


@media (max-width: 768px) {
  .about-floating-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 15px;
    max-width: 100%;
  }
}


.overflow-safe-section {
  overflow-x: hidden;
  width: 100%;
}

/* Added inner page layouts */
.inner-hero .inner-lead {
  max-width: 760px;
  margin: 14px 0 0;
  color: #e7eef7;
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 650
}

.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: #536174;
  font-size: .88rem;
  font-weight: 850
}

.breadcrumb-wrap a {
  color: var(--gold2)
}

.breadcrumb-wrap strong {
  color: var(--ink)
}

.product-list-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}
.product-list-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.product-list-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:22px;
}

.product-list-grid .product-card{
    flex:0 0 calc(25% - 17px);
}

@media (max-width:1199px){
    .product-list-grid .product-card{
        flex:0 0 calc(33.333% - 15px);
    }
}

@media (max-width:991px){
    .product-list-grid .product-card{
        flex:0 0 calc(50% - 11px);
    }
}

@media (max-width:767px){
    .product-list-grid .product-card{
        flex:0 0 100%;
    }
}

.product-list-card .product-img {
  height: 230px
}

.product-list-card .product-body {
  padding: 22px
}

.product-list-card h5 {
  font-size: 1.15rem
}

.category-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--soft);
  overflow: hidden;
  transition: .25s
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #edf3fa
}

.category-card h3 {
  font-size: 1.35rem;
  font-weight: 950;
  margin: 22px 22px 8px
}

.category-card p {
  color: #536174;
  line-height: 1.65;
  font-weight: 650;
  margin: 0 22px 24px;
  font-size: .92rem
}

.feature-grid .basic-card i,
.basic-grid .basic-card>i {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fff5df;
  color: var(--gold2);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 16px
}

.feature-grid .basic-card {
  min-height: 225px
}

.product-detail-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: center
}

.product-detail-media {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #edf3fa
}

.product-detail-media img {
  width: 100%;
  height: 520px;
  object-fit: cover
}

.mt-4 {
  margin-top: 1.5rem !important
}

.mega-col h6 a {
  display: inline-block;
  color: #061326 !important;
  padding: 0;
  font-size: 1rem
}

.mega-col h6 a:hover {
  color: var(--gold2) !important
}

@media(max-width:991px) {

  .product-list-grid,
  .category-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .product-detail-wrap {
    grid-template-columns: 1fr
  }

  .product-detail-media img {
    height: 360px
  }
}

@media(max-width:575px) {

  .product-list-grid,
  .category-grid {
    grid-template-columns: 1fr
  }

  .product-list-card .product-img,
  .category-card img {
    height: 220px
  }

  .inner-hero {
    padding: 130px 0 58px
  }

  .product-detail-media img {
    height: 280px
  }
}

.wide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--soft)
}

.wide-list li {
  margin: 0
}

.dark-text {
  color: #061326 !important;
  border-color: rgba(6, 19, 38, .25) !important
}

.dark-text:hover {
  color: #fff !important
}

@media(max-width:767px) {
  .wide-list {
    grid-template-columns: 1fr
  }
}

/* Updated supplied-content service/product page design */
.service-hero {
  position: relative;
  padding: 170px 0 60px;
  background-size: cover;
  background-position: center;
  overflow: hidden
}

.service-hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -45% -10%;
  height: 170px;
  background: linear-gradient(180deg, rgba(239, 244, 250, 0), #eff4fa 70%)
}

.service-hero-card {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #fff
}

.service-hero-card h1 {
 font-size: clamp(2.4rem, 3vw, 4.85rem);
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -0.03em;
    margin: 10px 0 18px;
    text-wrap: balance;
}

.service-hero-card p {
  max-width: 800px;
  color: #edf5ff;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 450;
  margin: 0 0 26px
}

.service-hero-actions {
  gap: 14px;
  flex-wrap: wrap
}

.service-hero .btn-outline {
  border-color: rgba(255, 255, 255, .45);
  color: #fff
}

.service-hero .btn-outline:hover {
  background: #fff;
  color: #061326 !important;
}

.service-detail-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(6, 19, 38, .09)
}

.service-detail-image {
  min-height: 500px;
      max-height: 517px;
  background: #e8eef5
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.service-detail-copy {
      padding: 25px 40px;
  align-self: center
}

.service-detail-copy h2 {
  font-size: clamp(2rem, 2.6vw, 3.15rem);
  font-weight: 950;
  letter-spacing: -.06em;
  color: var(--ink);
  margin: 10px 0 10px
}

.service-detail-copy p,
.document-card p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #43536a;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-detail-copy p:last-child,
.document-card p:last-child {
  margin-bottom: 0
}

.service-feature-section {
  background: #eff4fa
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px
}

.service-feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(6, 19, 38, .08);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 12px 35px rgba(6, 19, 38, .06);
  transition: .25s
}

.service-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(6, 19, 38, .10)
}

.feature-tick {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #061326;
  font-size: .85rem
}

.service-feature-card h3 {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
  color: #10233c;
  margin: 4px 0 5px
}

.service-feature-card p {
  font-size: .9rem;
  line-height: 1.65;
  color: #536174;
  margin: 0;
  font-weight: 650
}

.document-section {
  background: #fff
}

.document-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--soft)
}

.section-head.compact {
  /* text-align: left; */
  margin-bottom: 20px
}

.document-chip-grid {
  display: grid;
 
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px
}
.document-chip-grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    max-width:1200px;
    margin:0 auto;
}

.document-chip{
    width:270px;
}
.document-chip {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 18px;
      padding: 12px 18px;
      font-size: 14px;
  color: #24354d;
  font-weight: 800;
  line-height: 1.5
}

.document-chip i {
  color: var(--gold2);
  margin-top: 4px
}

.service-faq {
  background: #eff4fa
}

.service-faq .section-head {
  text-align: center
}

.service-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start
}

.service-faq .accordion-item {
  border: 1px solid rgba(6, 19, 38, .09);
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(6, 19, 38, .07);
  background: #fff
}

.service-faq .accordion-button {
  gap: 14px;
  background: #fff;
  color: #061326;
  font-weight: 900;
  font-size: .98rem;
  padding: 18px 22px;
  line-height: 1.45;
  box-shadow: none
}

.service-faq .accordion-button span {
  /* width: 36px;
  height: 36px; */
  display: grid;
  place-items: center;
  border-radius: 12px;
  /* background: var(--gold2) !important; */
  color: black;
  font-size: .88rem;
  flex: 0 0 36px
}

.service-faq .accordion-button:not(.collapsed) {
  background: #fff8e8
}

.service-faq .accordion-body {
  padding: 0 26px 22px 72px;
  color: #4e5e74;
  font-weight: 650;
  line-height: 1.75;
  background: #fff
}

.service-faq .accordion-button:focus {
  box-shadow: none
}

.service-cta-card {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 30px;
  align-items: center;
  border-radius: 32px;
  padding: 44px;
  background: linear-gradient(135deg, rgba(6, 19, 38, .97), rgba(12, 34, 60, .94)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=86') center/cover;
  color: #fff;
  box-shadow: 0 28px 70px rgba(6, 19, 38, .22)
}

.service-cta-card h2 {
  font-size: clamp(2rem, 2.4vw, 3.3rem);
  font-weight: 950;
  letter-spacing: -.06em;
  margin: 10px 0 14px
}

.service-cta-card p {
  color: #dce8f6;
  line-height: 1.75;
  font-weight: 450;
  margin: 0 0 8px
}

.service-cta-card .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .5)
}

.service-cta-card .btn-outline:hover {
  background: #fff !important;
  color: #061326 !important;
}

@media(max-width:991px) {

  .service-detail-card,
  .service-cta-card {
    grid-template-columns: 1fr
  }

  .service-detail-image {
    min-height: 340px
  }

  .service-detail-copy {
    padding: 34px
  }

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

  .service-faq-grid {
    grid-template-columns: 1fr
  }
}

.hero-actions  .dark-text {
  color: #020813 !important;
}

@media(max-width:575px) {
  .service-hero {
    padding: 125px 0 70px
  }

  .service-detail-copy,
  .document-card,
  .service-cta-card {
    padding: 26px
  }

  .service-feature-grid,
  .document-chip-grid {
    grid-template-columns: 1fr
  }

  .service-faq .accordion-body {
    padding-left: 24px
  }

  .service-faq .accordion-button {
    padding: 16px
  }
}

/* User requested redesign: benefits, FAQ and profile variant carousel */
.redesigned-benefits {
  background: linear-gradient(180deg, #eff4fa 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}

.benefit-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: benefit;
}

.benefit-showcase-card {
  position: relative;
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(6, 19, 38, .08);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 48px rgba(6, 19, 38, .07);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.benefit-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}

.benefit-showcase-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(235, 154, 30, .10);
}

.benefit-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(6, 19, 38, .12);
  border-color: rgba(235, 154, 30, .25);
}

.benefit-number {
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .12em;
  color: var(--gold2);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.benefit-copy {
  position: relative;
  z-index: 1;
  padding-right: 20px;
}

.benefit-copy h3 {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.45;
  font-weight: 950;
  margin: 0 0 8px;
}

.benefit-copy p {
  color: #536174;
  line-height: 1.7;
  font-size: .94rem;
  font-weight: 650;
  margin: 0;
}

.benefit-icon {
  position: absolute;
  right: 22px;
  top: 8px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #061326;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  z-index: 2;
  box-shadow: 0 10px 22px rgba(235, 154, 30, .25);
}

.enhanced-faq {
  background: linear-gradient(180deg, #f8fbff 0%, #eff4fa 100%);
}

.enhanced-faq-list {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.enhanced-faq .enhanced-faq-item {
  border: 1px solid rgba(6, 19, 38, .08);
  border-radius: 22px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(6, 19, 38, .07);
}

.enhanced-faq .accordion-button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
  font-weight: 950;
  line-height: 1.45;
}

.enhanced-faq .accordion-button::after {
  display: none;
}

.enhanced-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #fff7e4, #fff);
  color: var(--ink);
}

.enhanced-faq .accordion-button:focus {
  box-shadow: none;
}

.enhanced-faq .faq-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--gold2);
  background: #fff5df;
  font-size: .85rem;
  font-weight: 950;
}

.enhanced-faq .faq-title {
  font-size: 1rem;
  color: var(--ink);
}

.enhanced-faq .faq-toggle-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 19, 38, .12);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-weight: 400;
  flex: 0 0 38px;
}

.enhanced-faq .faq-toggle-icon::before {
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}

.enhanced-faq .accordion-button:not(.collapsed) .faq-toggle-icon {
  background: var(--gold2);
  color: #fff;
  border-color: var(--gold2);
}

.enhanced-faq .accordion-button:not(.collapsed) .faq-toggle-icon::before {
  content: "-";
  font-size: 1.5rem;
  transform: translateY(-1px);
}

.enhanced-faq .accordion-body {
  padding: 0 86px 24px 88px;
  color: #4e5e74;
  background: #fff;
  line-height: 1.8;
  font-weight: 650;
}

.profile-variant-section {
  background: #fff;
}

.profile-variant-card {
  background: #fff;
  border: 1px solid rgba(6, 19, 38, .08);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(6, 19, 38, .08);
}

.profile-variant-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 26px;
}

.profile-variant-top h2 {
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 950;
  letter-spacing: -.055em;
  margin: 8px 0 0;
}

.variant-arrows {
  display: flex;
  gap: 10px;
}

.variant-arrows button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #061326;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 10px 25px rgba(235, 154, 30, .22);
}

.variant-image-frame {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  overflow: hidden;
}

.variant-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  margin: 0 auto;
}

@media(max-width:991px) {
  .benefit-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-variant-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media(max-width:575px) {
  .benefit-showcase {
    grid-template-columns: 1fr;
  }

  .benefit-showcase-card {
    min-height: auto;
    padding: 24px;
  }

  .enhanced-faq .accordion-button {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 16px;
  }

  .enhanced-faq .faq-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .enhanced-faq .faq-title {
    font-size: .94rem;
  }

  .enhanced-faq .faq-toggle-icon {
    width: 34px;
    height: 34px;
  }

  .enhanced-faq .accordion-body {
    padding: 0 18px 20px 66px;
  }

  .profile-variant-card {
    padding: 22px;
    border-radius: 24px;
  }

  .variant-image-frame {
    padding: 14px;
    border-radius: 18px;
  }
}

/* Final premium refinements requested: aligned benefits, cleaner FAQ, common counters/testimonials, about/contact enhancements */
.service-feature-section.redesigned-benefits {
  background: linear-gradient(180deg, #eef4fb 0%, #f8fbff 52%, #eef4fb 100%);
  position: relative;
  overflow: hidden
}

.service-feature-section.redesigned-benefits:before {
  content: "";
  position: absolute;
  left: -160px;
  top: 80px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(235, 154, 30, .08);
  filter: blur(8px)
}

.service-feature-section.redesigned-benefits .container {
  position: relative;
  z-index: 1
}

.benefit-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch
}

.benefit-showcase-card {
  min-height: unset;
  display: grid;
  grid-template-columns: 74px 1fr 48px;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #fff 0%, #ffffff 62%, #fff8ea 100%);
  box-shadow: 0 18px 48px rgba(6, 19, 38, .08);
  border: 1px solid rgba(6, 19, 38, .08)
}

.benefit-showcase-card:before {
  inset: 0 auto 0 0;
  width: 5px;
  height: auto;
  background: linear-gradient(180deg, var(--gold), var(--gold2))
}

.benefit-showcase-card:after {
  right: 18px;
  bottom: 18px;
  width: 80px;
  height: 80px;
  background: rgba(235, 154, 30, .07)
}

.benefit-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0;
  background: #fff5df;
  color: var(--gold2);
  box-shadow: inset 0 0 0 1px rgba(235, 154, 30, .14);
  letter-spacing: .08em
}

.benefit-copy {
  padding: 0
}

.benefit-copy h3 {
  font-size: 1.02rem;
  margin: 0
}

.benefit-copy p {
  margin-top: 6px
}

.benefit-icon {
  position: relative;
  right: auto;
  top: auto;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  align-self: center;
  justify-self: end
}

.benefit-showcase-card:hover {
  transform: translateY(-5px)
}

.enhanced-faq {
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%)
}

.enhanced-faq .section-head {
  max-width: 800px
}

.enhanced-faq-list {
  max-width: 1120px;
  gap: 16px
}

.enhanced-faq .enhanced-faq-item {
  border: 1px solid rgba(6, 19, 38, .08);
  border-radius: 24px !important;
  box-shadow: 0 18px 44px rgba(6, 19, 38, .075);
  overflow: hidden
}

.enhanced-faq .accordion-button {
  grid-template-columns: 64px 1fr 46px;
  gap: 18px;
  padding: 18px 24px;
  background: #fff;
  min-height: 84px
}

.enhanced-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #fff7e5 0%, #fff 52%)
}

.enhanced-faq .faq-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff5df;
  color: var(--gold2);
  font-size: .86rem
}

.enhanced-faq .faq-title {
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 950;
  color: var(--ink)
}

.enhanced-faq .faq-toggle-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff8e8;
  border: 1px solid rgba(235, 154, 30, .25);
  color: var(--gold2)
}

.enhanced-faq .accordion-body {
  padding: 0 90px 24px 106px;
  font-size: 1rem;
  color: #42536b;
  line-height: 1.8
}

.enhanced-faq .accordion-button:not(.collapsed)+.accordion-collapse .accordion-body {
  background: #fff
}

.service-proof-stats {
  background: #fff
}

.proof-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px
}

.proof-stats-grid article {
  background: linear-gradient(145deg, #071629, #0c2340);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  min-height: 182px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 22px 50px rgba(6, 19, 38, .15);
  position: relative;
  overflow: hidden
}

.proof-stats-grid article:before {
  content: "";
  position: absolute;
  inset: -60% -40% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(235, 154, 30, .13)
}

.proof-stats-grid strong {
  position: relative;
  color: #ffbd45;
  font-size: clamp(2.4rem, 4vw, 3.55rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em
}

.proof-stats-grid span {
  width: 42px;
  height: 3px;
  background: rgba(255, 255, 255, .16);
  border-radius: 10px;
  margin: 18px 0
}

.proof-stats-grid p {
  position: relative;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 900;
  margin: 0
}

.service-testimonial-section {
  background: #071b33;
  color: #fff;
  position: relative;
  overflow: hidden
}

.service-testimonial-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(235, 154, 30, .12), transparent 25%), radial-gradient(circle at 90% 100%, rgba(255, 255, 255, .08), transparent 24%)
}

.service-testimonial-section .container {
  position: relative
}

.section-head.light h2 {
  color: #fff
}

.service-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px
}

.service-testimonial-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .18);
  border-top: 5px solid var(--gold);
  color: var(--ink);
  min-height: 245px
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3468d5;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 50px
}

.testimonial-top h3 {
  font-size: 1.02rem;
  font-weight: 900;
  margin: 0;
  color: #213047
}

.testimonial-top p {
  font-size: .86rem;
  font-weight: 800;
  color: #6a7483;
  margin: 2px 0 0
}

.quote-mark {
  margin-left: auto;
  color: rgba(235, 154, 30, .22);
  font-size: 2.2rem
}

.stars {
  color: var(--gold2);
  letter-spacing: .15em;
  margin: 0px 0 0px;
  font-size: .85rem
}

.testimonial-text {
  color: #33445b;
  line-height: 1.75;
  font-weight: 700;
  margin: 0
}

.about-premium-section {
  background: #f8fbff
}

.about-value-grid,
.offer-grid,
.team-grid {
  display: grid;
  gap: 22px
}

.about-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

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

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.about-value-card,
.offer-card,
.team-card {
  background: #fff;
  border: 1px solid rgba(6, 19, 38, .08);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 48px rgba(6, 19, 38, .07)
}

.about-value-card i,
.offer-card i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #061326;
  margin-bottom: 18px
}

.about-value-card h3,
.offer-card h3,
.team-card h3 {
  font-size: 1.05rem;
  font-weight: 950;
  color: var(--ink);
  margin-bottom: 10px
}

.about-value-card p,
.offer-card p,
.team-card p {
  color: #536174;
  font-weight: 650;
  line-height: 1.7;
  margin: 0
}

.mission-vision-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.mission-card {
  background: linear-gradient(145deg, #071629, #0c2340);
  border-radius: 28px;
  padding: 34px;
  color: #fff;
  box-shadow: 0 24px 60px rgba(6, 19, 38, .16)
}

.mission-card h3 {
  font-size: 1.6rem;
  font-weight: 950;
  margin: 0 0 12px;
  color: #fff
}

.mission-card p {
  color: #dbe7f6;
  line-height: 1.8;
  font-weight: 650;
  margin: 0
}

.team-card {
  text-align: center
}

.team-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #0d2a4d, #3468d5);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 1.6rem;
  box-shadow: 0 14px 30px rgba(6, 19, 38, .16)
}

.contact-premium {
  background: linear-gradient(180deg, #eef4fb, #fff)
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: stretch
}

.contact-card-premium,
.map-card {
  background: #fff;
  border: 1px solid rgba(6, 19, 38, .08);
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(6, 19, 38, .09);
  overflow: hidden
}

.contact-card-premium {
  padding: 34px
}

.contact-card-premium h2 {
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: 950;
  letter-spacing: -.055em;
  margin: 10px 0 14px;
  color: var(--ink)
}

.contact-card-premium p {
  color: #536174;
  line-height: 1.75;
  font-weight: 650
}

.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line)
}

.contact-info-row:last-child {
  border-bottom: 0
}

.contact-info-row i {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #fff5df;
  color: var(--gold2);
  flex: 0 0 44px
}

.contact-info-row strong {
  display: block;
  color: var(--ink);
  font-weight: 950
}

.contact-info-row span,
.contact-info-row a {
  color: #536174;
  font-weight: 700;
  text-decoration: none
}

.premium-contact-form {
  background: #fff;
  border: 1px solid rgba(6, 19, 38, .08);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 20px 55px rgba(6, 19, 38, .09)
}

.premium-contact-form .form-control,
.premium-contact-form .form-select {
  border: 1px solid rgba(6, 19, 38, .1);
  border-radius: 14px;
  min-height: 54px;
  padding: 14px 16px;
  font-weight: 700;
  color: #23344c
}

.premium-contact-form textarea.form-control {
  min-height: 135px
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: saturate(.96) contrast(.98)
}

@media(max-width:991px) {

  .benefit-showcase,
  .proof-stats-grid,
  .service-testimonial-grid,
  .about-value-grid,
  .offer-grid,
  .team-grid,
  .mission-vision-wrap,
  .contact-panel {
    grid-template-columns: 1fr 1fr
  }

  .benefit-showcase-card {
    grid-template-columns: 58px 1fr 44px
  }

  .enhanced-faq .accordion-body {
    padding-left: 96px
  }

  .contact-panel {
    grid-template-columns: 1fr
  }

  .map-card iframe {
    height: 360px
  }
}

@media(max-width:575px) {

  .benefit-showcase,
  .proof-stats-grid,
  .service-testimonial-grid,
  .about-value-grid,
  .offer-grid,
  .team-grid,
  .mission-vision-wrap {
    grid-template-columns: 1fr
  }

  .benefit-showcase-card {
    grid-template-columns: 1fr auto;
    gap: 14px
  }

  .benefit-number {
    grid-column: 1/2
  }

  .benefit-copy {
    grid-column: 1/3
  }

  .benefit-icon {
    grid-column: 2/3;
    grid-row: 1
  }

  .enhanced-faq .accordion-button {
    grid-template-columns: 42px 1fr 38px;
    gap: 10px;
    padding: 16px;
    min-height: auto
  }

  .enhanced-faq .faq-number {
    width: 38px;
    height: 38px
  }

  .enhanced-faq .faq-toggle-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px
  }

  .enhanced-faq .accordion-body {
    padding: 0 18px 20px 68px
  }

  .contact-card-premium,
  .premium-contact-form {
    padding: 24px
  }

  .map-card iframe {
    height: 320px
  }
}

/* Requested final alignment updates: 3-column benefits, 2-column FAQ, 4-box variant carousel, richer about/gallery */
.service-feature-section.redesigned-benefits {
  background: linear-gradient(180deg, #edf4fb 0%, #f8fbff 48%, #edf4fb 100%);
}

.service-feature-section.redesigned-benefits .section-head {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-showcase {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch;
}

.benefit-showcase{
    display:flex !important;
    flex-wrap:wrap;
    justify-content:center;
    gap:24px !important;
}

.benefit-showcase-card{
    flex:0 0 calc(33.333% - 16px);
}

@media (max-width:991px){
    .benefit-showcase-card{
        flex:0 0 calc(50% - 12px);
    }
}

@media (max-width:767px){
    .benefit-showcase-card{
        flex:0 0 100%;
    }
}

.benefit-showcase-card {
  min-height: 100px !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: start !important;
  gap: 10px !important;
  padding: 12px 28px !important;
  border-radius: 28px !important;
  background: linear-gradient(145deg, #ffffff 0%, #ffffff 58%, #fff7e7 100%) !important;
  border: 1px solid rgba(6, 19, 38, .075) !important;
  border-top: 6px solid var(--gold) !important;
  box-shadow: 0 22px 52px rgba(6, 19, 38, .085) !important;
  position: relative;
  overflow: hidden;
}

.benefit-showcase-card:before {
  display: none !important;
}

.benefit-showcase-card:after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(235, 154, 30, .10) !important;
}

.benefit-number {
  width: 40px !important;
  height: 40px !important;
  border-radius: 18px !important;
  margin: 0 !important;
  background: #fff5df !important;
  color: var(--gold2) !important;
  display: grid !important;
  place-items: center !important;
  font-weight: 950 !important;
  letter-spacing: .09em !important;
  box-shadow: inset 0 0 0 1px rgba(235, 154, 30, .22) !important;
}

.benefit-copy {
  position: relative;
  z-index: 1;
  padding: 0 !important;
}

.benefit-copy h3 {
  font-size: 0.98rem !important;
  line-height: 1.35 !important;
  margin: 0 0 8px !important;
  color: var(--ink) !important;
  font-weight: 550 !important;
}

.benefit-copy p {
  font-size: .88rem !important;
  line-height: 1.75 !important;
  margin: 0 !important;
  color: #40516a !important;
  font-weight: 700 !important;
}

.benefit-icon {
  position: absolute !important;
      right: 22px !important;
    top: 8px !important;
    width: 39px !important;
    height: 34px !important;
  border-radius: 15px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: #061326 !important;
  display: grid !important;
  place-items: center !important;
  box-shadow: 0 18px 35px rgba(235, 154, 30, .24) !important;
}

.enhanced-faq .section-head {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.enhanced-faq-list {
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: start !important;
}

.enhanced-faq .enhanced-faq-item {
  border-radius: 24px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 20px 46px rgba(6, 19, 38, .075) !important;
  border: 1px solid rgba(6, 19, 38, .08) !important;
}

.enhanced-faq .accordion-button {
   display: grid !important;
    grid-template-columns: 54px minmax(0, 1fr) 46px !important;
    gap: 16px !important;
    align-items: center !important;
    min-height: 50px !important;
    padding: 10px 17px !important;
    background:#fff5df !important;
}

.enhanced-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #fff7e6 0%, #fff 76%) !important;
  background: #fff5df !important;
  box-shadow: none !important;
}

.enhanced-faq .accordion-button::after {
  display: none !important;
}

.enhanced-faq .faq-number {
     width: 39px !important;
    height: 25px !important;
  border-radius: 14px !important;
  flex: 0 0 auto !important;
  display: grid !important;
  place-items: center !important;
  background: #fff5df !important;
  color: var(--gold2) !important;
  font-weight: 950 !important;
}

.enhanced-faq .faq-title {
  display: block !important;
  min-width: 0 !important;
  width: 100% !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: 0.93rem !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  font-weight: 950 !important;
}

.enhanced-faq .faq-toggle-icon {
  width: 26px !important;
  height: 26px !important;
  border-radius: 14px !important;
  justify-self: end !important;
     background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  border: 1px solid rgba(235, 154, 30, .24) !important;
  color: black !important;
}

.enhanced-faq .accordion-body {
  padding: 0 24px 24px 92px !important;
  background: #fff !important;
  color: #40516a !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  font-weight: 700 !important;
}

.milestones-section.service-proof-stats {
  background: #fff;
}

.proof-stats-grid .achievement-card {
  background: linear-gradient(145deg, #071629, #0c2340);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  min-height: 182px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 22px 50px rgba(6, 19, 38, .15);
  position: relative;
  overflow: hidden;
}

.proof-stats-grid .achievement-card:before {
  content: "";
  position: absolute;
  inset: -60% -40% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(235, 154, 30, .13)
}

.proof-stats-grid .ach-number {
  position: relative;
  color: #ffbd45;
  font-size: clamp(2.4rem, 4vw, 3.55rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.proof-stats-grid .ach-divider {
  width: 42px;
  height: 3px;
  background: rgba(255, 255, 255, .16);
  border-radius: 10px;
  margin: 18px 0;
}

.proof-stats-grid .ach-title {
  position: relative;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 900;
  margin: 0;
}

.common-testimonials {
  background: #071b33;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.common-testimonials:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(235, 154, 30, .12), transparent 25%), radial-gradient(circle at 90% 100%, rgba(255, 255, 255, .08), transparent 24%);
}

.common-testimonials .container {
  position: relative;
  z-index: 1;
}

.common-testimonials .review-card {
  min-height: 250px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-radius: 26px;
  border-top: 5px solid var(--gold);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .18);
}

.common-testimonials .avatar-letter {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3468d5;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 50px;
}

.profile-variant-card {
  padding: 34px !important;
}

.variant-grid-frame {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.variant-grid-frame .variant-image-frame {
  height: 290px;
  border-radius: 22px;
  background: #f5f9ff;
  border: 1px solid rgba(6, 19, 38, .09);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.variant-grid-frame .variant-image-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: .35s;
}

.variant-grid-frame .variant-image-frame:hover img {
  transform: scale(1.04);
}

.about-split-section {
  background: #f8fbff;
}

.about-split-wrap {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.about-split-wrap.reverse {
  grid-template-columns: 1.08fr .92fr;
}

.about-split-media {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 24px 60px rgba(6, 19, 38, .14);
}

.about-split-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.about-split-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 19, 38, .30));
}

.about-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-value-card,
.offer-card {
  min-height: 210px;
}

.mission-vision-rich {
  background: #fff;
}

.mission-vision-rich .mission-vision-wrap {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.mission-card.rich {
  padding: 0;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(6, 19, 38, .08);
  box-shadow: 0 22px 55px rgba(6, 19, 38, .09);
}

.mission-card.rich img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
}

.mission-card.rich .mission-content {
  padding: 30px;
}

.mission-card.rich h3 {
  color: var(--ink);
}

.mission-card.rich p {
  color: #536174;
}

.team-card.image-team {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.team-card.image-team img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.team-card.image-team .team-copy {
  padding: 22px;
}

.gallery-grid.gallery-image-only {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-image-only .gallery-card {
  border-radius: 24px;
  border: 1px solid rgba(6, 19, 38, .08);
  box-shadow: 0 18px 45px rgba(6, 19, 38, .10);
}

.gallery-image-only .gallery-card span {
  display: none !important;
}

.gallery-image-only .gallery-card:hover img {
  opacity: 1;
  transform: scale(1.07);
}

.gallery-image-only .gallery-card:before {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #061326;
}

.gallery-lightbox .carousel-caption {
  display: none !important;
}

@media(max-width:1199px) {
  .benefit-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }

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

  .about-split-wrap,
  .about-split-wrap.reverse {
    grid-template-columns: 1fr;
  }

  .about-split-wrap.reverse .about-split-media {
    order: -1;
  }
}

@media(max-width:991px) {
  .enhanced-faq-list {
    grid-template-columns: 1fr !important
  }

  .variant-grid-frame .variant-image-frame {
    height: 250px
  }

  .about-icon-grid {
    grid-template-columns: 1fr 1fr
  }
    .eyebrow {
        color: #d89a27;
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: none;
        font-weight: 700;
    }
  .gallery-grid.gallery-image-only {
    grid-template-columns: repeat(2, 1fr)
  }
}
/*=================================*/

/* Modal */
.enquiry-modal .modal-dialog{
    max-width:560px;
}

.enquiry-modal .modal-content{
    border:none;
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

/* Body */
.enquiry-modal .modal-body{
    padding:5px;
}

/* Header */
.popup-content{
    text-align:center;
    margin-bottom:20px;
}

.popup-tag{
    display:inline-block;
    color:#f4b63f;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.popup-content h2{
    font-size:30px;
    font-weight:800;
    color:#0b1d37;
    margin-bottom:8px;
}

.popup-content p{
    font-size:14px;
    color:#6f7785;
    margin:0;
}

/* Inputs */
.enquiry-modal .form-control,
.enquiry-modal .form-select{
    height:50px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    box-shadow:none;
}

.enquiry-modal textarea.form-control{
    height:90px;
    resize:none;
    padding-top:12px;
}

.enquiry-modal .form-control:focus,
.enquiry-modal .form-select:focus{
    border-color:#f4b63f;
    box-shadow:0 0 0 3px rgba(244,182,63,.15);
}

/* Buttons */
.popup-actions{
    display:flex;
    gap:10px;
    margin-top:5px;
}

.btn-popup-submit{
    border:none;
    background:linear-gradient(135deg,#f6c24b,#d78b11);
    color:#000;
    font-weight:700;
    padding:12px 24px;
    border-radius:12px;
    transition:.3s;
}

.btn-popup-submit:hover{
    transform:translateY(-2px);
}

.btn-popup-cancel{
    border:none;
    background:#f5f5f5;
    color:#555;
    font-weight:600;
    padding:12px 24px;
    border-radius:12px;
}

.btn-popup-cancel:hover{
    background:#ececec;
}

/* Close Button */
.custom-close{
    position:absolute;
    top:12px;
    right:12px;
    z-index:10;
    width:34px;
    height:34px;
    background:#f5f5f5;
    border-radius:50%;
    opacity:1;
}

.custom-close:hover{
    transform:rotate(90deg);
}

/* Mobile */
@media (max-width:576px){

    .enquiry-modal .modal-body{
        padding:20px;
    }

    .popup-content h2{
        font-size:24px;
    }

    .popup-actions{
        flex-direction:column;
    }

    .btn-popup-submit,
    .btn-popup-cancel{
        width:100%;
    }
}


/*===============================*/
@media(max-width:575px) {
  .benefit-showcase {
    grid-template-columns: 1fr !important
  }
  
  .footer-legal {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 70px;
}
  
  .mega-col h6 a {
        color: var(--gold) !important;
        font-size: 0.85rem !important;
        text-transform: uppercase;
        letter-spacing: 1px;
      margin-bottom: -12px !important;
    }
  
  .eyebrow:before, .eyebrow:after {
    content: "";
    width: 0px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

  .benefit-showcase-card {
    min-height: auto !important
  }

  .enhanced-faq .accordion-button {
    grid-template-columns: 42px minmax(0, 1fr) 38px !important;
    padding: 16px !important
  }

  .enhanced-faq .accordion-body {
    padding: 0 18px 20px 72px !important
  }

  .variant-grid-frame {
    grid-template-columns: 1fr
  }

  .about-icon-grid,
  .mission-vision-rich .mission-vision-wrap,
  .team-grid {
    grid-template-columns: 1fr !important
  }

  .gallery-grid.gallery-image-only {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px
  }
  .contact-card-premium h2 {
    font-size: clamp(1.4rem, 2vw, 3rem);
    font-weight: 950;
    letter-spacing: -.055em;
    margin: 10px 0 14px;
    color: var(--ink);
}

.offer-card{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.offer-card i{
   
    margin-bottom:15px;
}

.offer-card h3{
    margin-bottom:12px;
}

.offer-card p{
    margin:0;
    max-width:320px;
}

.service-cta-card h2 {
    font-size: clamp(1.6rem, 2.4vw, 3.3rem);
    font-weight: 650;
    letter-spacing: -.02em;
    margin: 10px 0 14px;
}
.service-hero-card h1 {
    font-size: clamp(2.0rem, 3vw, 4.85rem);
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -0.03em;
    margin: 10px 0 18px;
    text-wrap: balance;
}

}

.offer-card p{
    color: #C2750F;
    font-size: 14px !important;
    
}
.mega-menu a.active{
    color:#C2750F !important;
    font-weight:800;
}

.mega-menu h6 a.active{
    color:#C2750F !important;
}
.center{
text-align: center;
}

.document-card p {
  text-align: center;
}
.breadcrumb-wrap{
  display: none;
}