:root {
  --warm-white: #f8f3ea;
  --warm-white-2: #fffaf1;
  --khaki: #c2a371;
  --khaki-dark: #a68455;
  --coffee: #3d2c24;
  --brown: #5a4032;
  --muted: #7d7066;
  --line: rgba(61, 44, 36, 0.14);
  --shadow: 0 20px 55px rgba(61, 44, 36, 0.18);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  color: var(--coffee);
  background: var(--warm-white);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 36px), var(--container));
  min-height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 16px 45px rgba(61, 44, 36, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-size: 0.9rem;
  line-height: 1.05;
  white-space: nowrap;
}

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

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(61, 44, 36, 0.76);
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--coffee);
  background: rgba(194, 163, 113, 0.20);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 100%;
  height: 14px;
}

.nav-drop-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(61, 44, 36, 0.76);
  background: transparent;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.nav-drop-toggle::after {
  content: "⌄";
  margin-left: 7px;
  color: #a68455;
  font-size: 0.82rem;
}

.nav-dropdown:hover .nav-drop-toggle,
.nav-dropdown:focus-within .nav-drop-toggle {
  color: var(--coffee);
  background: rgba(194, 163, 113, 0.18);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 310px;
  transform: translate(-50%, 8px);
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(166, 132, 85, 0.22);
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 18px 44px rgba(61, 44, 36, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav .nav-drop-menu a {
  justify-content: flex-start;
  min-height: 42px;
  border-radius: 9px;
  padding: 0 12px;
  font-size: 0.9rem;
}

.site-nav .nav-cta {
  gap: 8px;
  margin-left: 8px;
  padding: 0 18px;
  color: var(--warm-white-2);
  background: var(--coffee);
  box-shadow: 0 12px 26px rgba(61, 44, 36, 0.22);
}

.site-nav .nav-cta:hover {
  color: var(--warm-white-2);
  background: var(--brown);
  transform: translateY(-1px);
}

.nav-cta img {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: var(--coffee);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--warm-white-2);
}

.hero-section {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(248, 243, 234, 0.98) 0%, rgba(248, 243, 234, 0.9) 33%, rgba(248, 243, 234, 0.44) 59%, rgba(248, 243, 234, 0.16) 100%),
    var(--warm-white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at 20% 52%, rgba(255, 250, 241, 0.78), rgba(255, 255, 255, 0) 42%);
}

.hero-content {
  width: min(calc(100% - 40px), var(--container));
  min-height: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 128px 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  padding: 8px 13px;
  border: 1px solid rgba(194, 163, 113, 0.36);
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 250, 241, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.hero-content h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(3.5rem, 5.2vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content h1 span {
  color: #3d2c24;
  font-weight: 800;
}

.hero-content h1 strong {
  display: inline;
  color: #a68455;
  font-weight: 800;
}

.hero-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(61, 44, 36, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 250, 241, 0.52);
  border-radius: 999px;
  padding: 7px 8px 7px 28px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: inherit;
  transition: transform 320ms ease;
}

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

.btn:hover::before {
  transform: scaleX(1);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.btn-primary {
  color: var(--warm-white-2);
  background: #a68455;
  box-shadow: 0 16px 32px rgba(90, 64, 50, 0.22);
}

.btn-primary:hover {
  color: var(--warm-white-2);
  box-shadow: 0 20px 38px rgba(61, 44, 36, 0.26);
}

.btn-primary::before {
  background: #3d2c24;
}

.btn-primary .btn-icon {
  color: var(--warm-white-2);
  background: #3d2c24;
}

.btn-primary:hover .btn-icon {
  color: var(--warm-white-2);
  background: #a68455;
  transform: rotate(45deg);
}

.btn-secondary {
  min-width: 166px;
  color: var(--coffee);
  background: rgba(255, 250, 241, 0.82);
  border-color: rgba(61, 44, 36, 0.12);
  box-shadow: 0 14px 28px rgba(61, 44, 36, 0.1);
}

.btn-secondary:hover {
  color: var(--warm-white-2);
  border-color: rgba(194, 163, 113, 0.42);
}

.btn-secondary::before {
  background: #3d2c24;
}

.btn-secondary .btn-icon {
  color: var(--warm-white-2);
  background: var(--khaki-dark);
}

.btn-secondary:hover .btn-icon {
  color: var(--warm-white-2);
  background: #a68455;
  transform: rotate(45deg);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 24px;
  border: 1px solid rgba(61, 44, 36, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 12px 28px rgba(61, 44, 36, 0.08);
  backdrop-filter: blur(10px);
}

.trust-item {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  color: rgba(61, 44, 36, 0.76);
  font-size: 0.93rem;
  font-weight: 650;
  white-space: nowrap;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(61, 44, 36, 0.14);
}

.trust-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(166, 132, 85, 0.46);
  border-radius: 50%;
  color: #a68455;
  font-size: 0.95rem;
  font-weight: 800;
}

.placeholder-note {
  max-width: 430px;
  margin: 20px 0 0;
  color: rgba(61, 44, 36, 0.58);
  font-size: 0.82rem;
  font-weight: 500;
}

.feature-strip-section {
  position: relative;
  z-index: 3;
  margin-top: -54px;
  padding: 0 20px 76px;
  background: linear-gradient(180deg, transparent 0 54px, #fffaf0 54px 100%);
}

.feature-strip {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(61, 44, 36, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(61, 44, 36, 0.14);
  backdrop-filter: blur(14px);
}

.feature-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 24px 26px;
}

.feature-item + .feature-item {
  border-left: 1px solid rgba(61, 44, 36, 0.12);
}

.feature-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  color: #a68455;
  background: #f4ecdf;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1;
}

.feature-item h2 {
  margin: 0 0 8px;
  color: #1f1a17;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.16;
}

.feature-item p {
  margin: 0;
  color: rgba(61, 44, 36, 0.68);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.55;
}

.promotion-section {
  padding: 76px 20px 70px;
  background:
    linear-gradient(180deg, #fffaf1 0%, #f8f3ea 100%);
}

.promotion-heading {
  width: min(100%, 720px);
  margin: 0 auto 34px;
  text-align: center;
}

.promotion-heading h2 {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.25rem, 4.4vw, 3.75rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.promotion-heading h2 span,
.promo-value {
  color: #a68455;
}

.promotion-divider {
  margin: 16px auto;
}

.promotion-divider::after,
.promo-mini-divider::after {
  background: #fffaf1;
}

.promotion-heading > p:last-child {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(61, 44, 36, 0.68);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.promotion-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 230px 190px 55px;
  border: 1px solid rgba(166, 132, 85, 0.22);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(61, 44, 36, 0.1);
}

.promo-light {
  color: #3d2c24;
  background: rgba(255, 250, 241, 0.86);
}

.promo-dark {
  color: #fffaf1;
  background: #1d1713;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.promo-light::after {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.94), rgba(255, 250, 241, 0.5) 52%, rgba(255, 250, 241, 0.04));
}

.promo-dark::after {
  background: linear-gradient(180deg, rgba(29, 23, 19, 0.78), rgba(29, 23, 19, 0.28) 54%, rgba(29, 23, 19, 0.86));
}

.promo-ribbon {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 18px;
  min-height: 40px;
  padding: 12px 7px 8px;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 50% 100%, 0 86%);
  color: #3d2c24;
  background: #d3ad6f;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.promo-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: center;
  padding: 54px 24px 18px;
  text-align: center;
}

.promo-content h3 {
  max-width: 230px;
  margin: 0 auto;
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.14;
}

.promo-mini-divider {
  width: 100px;
  margin: 18px auto 14px;
}

.promo-value {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.promo-content p:not(.promo-value) {
  max-width: 220px;
  margin: 0 auto;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.promo-card > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 190px;
  min-height: 190px;
  object-fit: cover;
  object-position: center bottom;
  filter: sepia(0.08) saturate(0.85);
}

.promo-foot {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  height: 55px;
  padding: 10px 20px;
  color: #fffaf1;
  background: rgb(29, 23, 19);
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}

.promo-foot:hover {
  color: #fffaf1;
  background: #3d2c24;
}

.promo-foot span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(211, 173, 111, 0.58);
  border-radius: 50%;
  color: #d3ad6f;
}

.promo-foot p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.promo-foot span img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(7%) saturate(747%) hue-rotate(315deg) brightness(105%) contrast(101%) !important;
}

.promotion-cta {
  width: min(100%, 840px);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(166, 132, 85, 0.3);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 14px 30px rgba(61, 44, 36, 0.08);
}

.promotion-note {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}

.promotion-note span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(166, 132, 85, 0.34);
  border-radius: 50%;
  color: #a68455;
  background: #f4ecdf;
  font-size: 1.25rem;
}

.promotion-note span img{
    width: 30px !important;
  height: 30px !important;
  }

.promotion-note p {
  margin: 0;
  color: rgba(61, 44, 36, 0.7);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.promotion-note strong {
  color: #3d2c24;
}

.promo-whatsapp {
  color: #fffaf1;
  background: #a68455;
}

.promo-whatsapp::before {
  background: #3d2c24;
}

.promo-whatsapp .btn-icon {
  color: #fffaf1;
  background: #3d2c24;
}

.promo-whatsapp:hover .btn-icon {
  background: #a68455;
  transform: rotate(45deg);
}

.promo-call {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(166, 132, 85, 0.42);
  border-radius: 999px;
  padding: 7px 22px 7px 8px;
  color: #3d2c24;
  background: rgba(255, 250, 241, 0.74);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.promo-call::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: inherit;
  background: #3d2c24;
  transition: transform 320ms ease;
}

.promo-call:hover {
  color: #fffaf1;
  transform: translateY(-2px);
  border-color: rgba(61, 44, 36, 0.3);
}

.promo-call:hover::before {
  transform: scaleX(1);
}

.promo-call > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  grid-row: span 2;
  place-items: center;
  border-radius: 50%;
  color: #3d2c24;
  background: rgba(61, 44, 36, 0.08);
  transition: color 180ms ease, background 180ms ease;
}

.promo-call > span img{
  width: 22px !important;
  height: 22px !important;
}

.promo-call:hover > span {
  color: #fffaf1;
  background: #fff9f1;
}

.promo-call strong,
.promo-call small {
  position: relative;
  z-index: 1;
  display: block;
}

.promo-call strong {
  font-size: 0.92rem;
}

.promo-call small {
  color: rgba(61, 44, 36, 0.68);
  font-size: 0.8rem;
  transition: color 180ms ease;
}

.promo-call:hover small {
  color: rgba(255, 250, 241, 0.76);
}

.services-preview-section {
  padding: 76px 20px 96px;
}

.section-heading {
  width: min(100%, 720px);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading > p:first-child {
  margin: 0 0 12px;
  color: #a68455;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading h2 span {
  color: #a68455;
}

.heading-divider {
  position: relative;
  width: 132px;
  height: 1px;
  margin: 18px auto 14px;
  background: rgba(166, 132, 85, 0.48);
}

.heading-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid #a68455;
  background: #fbf7ef;
}

.section-intro {
  max-width: 510px;
  margin: 0 auto;
  color: rgba(61, 44, 36, 0.72);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.services-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(61, 44, 36, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(61, 44, 36, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(166, 132, 85, 0.28);
  box-shadow: 0 22px 44px rgba(61, 44, 36, 0.14);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #efe6d8;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.045);
}

.service-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 264px;
  padding: 26px 28px 24px;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #a68455;
  background: #f4ecdf;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.service-icon img{
  width: 36px !important;
  height: 36px !important;
}

.service-body h3 {
  margin: 0 0 14px;
  color: #3d2c24;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.18;
}

.service-body h3::after {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  margin-top: 11px;
  background: #a68455;
}

.service-body p {
  margin: 0 0 24px;
  color: rgba(61, 44, 36, 0.72);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.55;
}

.service-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  border: 1px solid rgba(255, 250, 241, 0.52);
  border-radius: 999px;
  padding: 6px 7px 6px 22px;
  color: var(--warm-white-2);
  background: #a68455;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(90, 64, 50, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.service-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: inherit;
  background: #3d2c24;
  transition: transform 320ms ease;
}

.service-link:hover {
  color: var(--warm-white-2);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(61, 44, 36, 0.22);
}

.service-link:hover::before {
  transform: scaleX(1);
}

.service-link span {
  position: relative;
  z-index: 1;
}

.service-link .btn-icon {
  width: 36px;
  height: 36px;
  color: var(--warm-white-2);
  background: #3d2c24;
  font-size: 1.12rem;
}

.service-link:hover .btn-icon {
  color: var(--warm-white-2);
  background: #a68455;
  transform: rotate(45deg);
}

.about-preview-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 620px;
  overflow: hidden;
  background: #f7f1e8;
}

.about-image {
  min-height: 620px;
  background: #e8dece;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.about-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px min(8vw, 96px) 84px 10px;
  background: #fbf7ef;
}

.about-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -118px;
  width: 180px;
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 38% 100%, 0 50%);
  background: #fbf7ef;
}

.about-panel::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -121px;
  width: 184px;
  clip-path: polygon(38% 0, 41% 0, 3% 50%, 41% 100%, 38% 100%, 0 50%);
  background: linear-gradient(180deg, rgba(166, 132, 85, 0.12), rgba(166, 132, 85, 0.74) 18%, rgba(166, 132, 85, 0.74) 82%, rgba(166, 132, 85, 0.12));
}

.about-panel > * {
  position: relative;
  z-index: 2;
}

.about-kicker {
  position: relative;
  margin: 0 0 16px;
  padding-left: 54px;
  color: #a68455;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-kicker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 38px;
  height: 1px;
  background: rgba(166, 132, 85, 0.48);
}

.about-panel h2 {
  max-width: 540px;
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.05rem, 3.6vw, 3.35rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.about-panel h2 span {
  color: #a68455;
}

.about-divider {
  margin: 22px 0 22px;
}

.about-divider::after {
  background: #fbf7ef;
}

.about-panel p:not(.about-kicker) {
  max-width: 560px;
  margin: 0 0 16px;
  color: rgba(61, 44, 36, 0.72);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.68;
}

.about-btn {
  width: fit-content;
  margin-top: 18px;
  color: var(--warm-white-2);
  background: #a68455;
  box-shadow: 0 16px 32px rgba(90, 64, 50, 0.18);
}

.about-btn::before {
  background: #3d2c24;
}

.about-btn .btn-icon {
  color: var(--warm-white-2);
  background: #3d2c24;
}

.about-btn:hover .btn-icon {
  color: var(--warm-white-2);
  background: #a68455;
  transform: rotate(45deg);
}

.features-customers-section {
  padding: 86px 20px 96px;
  background:
    radial-gradient(circle at 92% 12%, rgba(166, 132, 85, 0.1), rgba(166, 132, 85, 0) 22%),
    linear-gradient(180deg, #fffaf1 0%, #f8f3ea 100%);
}

.features-header {
  width: min(100%, var(--container));
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: end;
}

.section-kicker {
  margin: 0 0 12px;
  color: #a68455;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2em !important;
  padding-bottom: 10px;
}

.features-header h2 {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.15rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.features-header h2 span {
  color: #a68455;
}

.features-divider {
  margin: 20px 0 0;
}

.features-divider::after {
  background: #fbf7ef;
}

.features-header > p {
  max-width: 430px;
  margin: 0 0 18px auto;
  color: rgba(61, 44, 36, 0.72);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.62;
}

.feature-cards {
  width: min(100%, var(--container));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dark-feature-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(61, 44, 36, 0.08);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 16px 34px rgba(61, 44, 36, 0.1);
}

.dark-feature-card > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: center right;
  opacity: 0.82;
  filter: sepia(0.18) saturate(0.78) contrast(1.02);
  transition: transform 450ms ease, opacity 220ms ease;
}

.dark-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.98) 0%, rgba(255, 250, 241, 0.92) 38%, rgba(255, 250, 241, 0.52) 68%, rgba(255, 250, 241, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.1), rgba(166, 132, 85, 0.08));
}

.dark-feature-card:hover > img {
  transform: scale(1.045);
  opacity: 0.9;
}

.dark-card-content {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
}

.dark-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(166, 132, 85, 0.28);
  border-radius: 50%;
  color: #fffaf1;
  background: #a68455;
  font-size: 1.35rem;
}

.dark-icon img{
  width: 30px !important;
  height: 30px !important;
}

.dark-card-content h3 {
  max-width: 230px;
  margin: 0;
  color: #3d2c24;
  font-size: 1.48rem;
  font-weight: 600;
  line-height: 1.08;
}

.small-divider {
  width: 30px;
  height: 2px;
  margin: 16px 0 18px;
  background: #a68455;
}

.dark-card-content p {
  max-width: 275px;
  margin: 0;
  color: rgba(61, 44, 36, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.target-customers {
  position: relative;
  width: min(100%, calc(var(--container) + 70px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  padding: 34px 48px 32px;
  color: #3d2c24;
  border: 1px solid rgba(61, 44, 36, 0.08);
  background:
    radial-gradient(circle at 22% 42%, rgba(166, 132, 85, 0.12), rgba(166, 132, 85, 0) 34%),
    linear-gradient(135deg, rgba(255, 250, 241, 0.95) 0%, rgba(248, 243, 234, 0.96) 100%);
  box-shadow: 0 18px 40px rgba(61, 44, 36, 0.1);
}

.target-map {
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  opacity: 0.15;
  background:
    radial-gradient(circle, #a68455 1.5px, transparent 2px) 0 0 / 18px 18px,
    linear-gradient(135deg, transparent 36%, rgba(166, 132, 85, 0.2) 36.3%, transparent 37%);
}

.target-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  text-align: center;
}

.target-heading p {
  margin: 0 0 12px;
  color: #a68455;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.target-divider {
  margin: 10px auto 12px;
  background: rgba(166, 132, 85, 0.58);
}

.target-divider::after {
  background: #fbf7ef;
}

.target-heading h2 {
  margin: 0 0 20px;
  color: #3d2c24;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 600;
  line-height: 1.05;
}

.target-heading h2 span {
  color: #a68455;
}

.customer-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.customer-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 88px;
  padding: 0 18px;
  text-align: center;
}

.customer-item + .customer-item {
  border-left: 1px solid rgba(61, 44, 36, 0.12);
}

.customer-item span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(166, 132, 85, 0.58);
  border-radius: 50%;
  color: #3d2c24;
  background: rgba(255, 250, 241, 0.62);
  font-size: 1.45rem;
}

.customer-item span img{
  width: 30px !important;
  height: 30px !important;
}

.customer-item p {
  margin: 0;
  color: rgba(61, 44, 36, 0.9);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.service-area-section {
  position: relative;
  overflow: hidden;
  padding: 88px 20px 104px;
  background:
    radial-gradient(circle at 16% 16%, rgba(166, 132, 85, 0.1), rgba(166, 132, 85, 0) 28%),
    radial-gradient(circle at 82% 82%, rgba(166, 132, 85, 0.12), rgba(166, 132, 85, 0) 30%),
    #fffaf1;
}

.service-area-section::before,
.service-area-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  pointer-events: none;
}

.service-area-section::before {
  top: 0px;
  left: -150px;
  border: 0;
  border-radius: 0;
  opacity: 0.35;
  background: url("../assets/images/Img/pattern.webp") center / contain no-repeat;
}

.service-area-section::after {
  right: -150px;
  bottom: 0px;
  border: 0;
  border-radius: 0;
  opacity: 0.35;
  background: url("../assets/images/Img/pattern.webp") center / contain no-repeat;
  transform: rotate(180deg);
}

.service-area-heading {
  position: relative;
  z-index: 1;
  width: min(100%, 880px);
  margin: 0 auto;
  text-align: center;
}

.service-area-heading h2 {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.service-area-heading h2 span {
  color: #a68455;
}

.service-area-divider {
  margin: 24px auto 22px;
}

.service-area-divider::after {
  background: #fffaf1;
}

.service-area-heading > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(61, 44, 36, 0.8);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.55;
}

.service-area-map {
  position: relative;
  z-index: 1;
  width: min(100%, 840px);
  min-height: 650px;
  margin: 24px auto 0;
}

.map-shape {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 100%;
  transform: translateX(-45%);
}

.map-shape img {
  width: 100%;
  height: auto;
}

.coverage-card {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 70px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  width: min(100%, 370px);
  padding: 22px 24px;
  border: 1px solid rgba(61, 44, 36, 0.08);
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 16px 36px rgba(61, 44, 36, 0.1);
  backdrop-filter: blur(10px);
}

.coverage-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: #fffaf1;
  background: #a68455;
  font-size: 2rem;
}

.coverage-card h3 {
  margin: 0 0 8px;
  color: #a68455;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-card p {
  margin: 0;
  color: #3d2c24;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.coverage-card span {
  color: #a68455;
  font-weight: 700;
}

.testimonial-section {
  position: relative;
  overflow: hidden;
  padding: 86px 20px 78px;
  background:
    radial-gradient(circle at 18% 22%, rgba(166, 132, 85, 0.08), rgba(166, 132, 85, 0) 26%),
    linear-gradient(180deg, #fffaf1 0%, #f8f3ea 100%);
}

.testimonial-section::before,
.testimonial-section::after {
  position: absolute;
  z-index: 0;
  color: rgba(166, 132, 85, 0.08);
  font-size: clamp(7rem, 18vw, 15rem);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.testimonial-section::before {
  content: "“";
  top: 110px;
  left: 13%;
}

.testimonial-section::after {
  content: "”";
  top: 110px;
  right: 14%;
}

.testimonial-heading {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  margin: 0 auto 34px;
  text-align: center;
}

.testimonial-heading h2 {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.25rem, 4.4vw, 3.85rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.testimonial-heading h2 span {
  color: #a68455;
}

.testimonial-divider {
  margin: 16px auto 16px;
}

.testimonial-divider::after {
  background: #fffaf1;
}

.testimonial-heading > p:last-child {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(61, 44, 36, 0.7);
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.55;
}

.testimonial-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container) + 130px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 18px;
  align-items: center;
}

.testimonial-viewport {
  padding: 22px 1px 46px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.testimonial-viewport.is-dragging {
  cursor: grabbing;
}

.testimonial-viewport img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.testimonial-grid {
  display: flex;
  gap: 22px;
  transition: transform 240ms ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 320px;
  padding: 28px 30px 24px;
  border: 1px solid rgba(166, 132, 85, 0.28);
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 14px 28px rgba(61, 44, 36, 0.055);
}

.stars {
  margin-bottom: 14px;
  color: #a68455;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.testimonial-title {
  margin: 0 0 30px;
  color: #3d2c24;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.25;
}

.quote {
  position: relative;
  min-height: 90px;
  margin: 0 0 26px;
  padding-left: 34px;
  color: #3d2c24;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.62;
}

.quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 0;
  color: #a68455;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.testimonial-person {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(166, 132, 85, 0.28);
}

.avatar-placeholder {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(166, 132, 85, 0.26);
  background:
    radial-gradient(circle at 50% 38%, rgba(166, 132, 85, 0.38) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 82%, rgba(166, 132, 85, 0.25) 0 30%, transparent 31%),
    #f4ecdf;
}

.testimonial-person h3 {
  margin: 0 0 5px;
  color: #3d2c24;
  font-size: 0.98rem;
  font-weight: 800;
}

.testimonial-person p {
  margin: 0 0 4px;
  color: #a68455;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-person span {
  color: rgba(61, 44, 36, 0.68);
  font-size: 0.82rem;
  font-weight: 500;
}

.testimonial-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(166, 132, 85, 0.58);
  border-radius: 50%;
  color: #a68455;
  background: rgba(255, 250, 241, 0.72);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.testimonial-arrow:hover {
  color: #fffaf1;
  background: #a68455;
  transform: translateY(-2px);
}

.testimonial-dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.testimonial-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(166, 132, 85, 0.28);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.testimonial-dots button:hover,
.testimonial-dots .is-active {
  background: #a68455;
  transform: scale(1.15);
}

.faq-section {
  overflow: hidden;
  padding: 84px 20px 90px;
  background: linear-gradient(180deg, #fffaf1 0%, #f8f3ea 100%);
}

.faq-heading {
  width: min(100%, 820px);
  margin: 0 auto 34px;
  text-align: center;
}

.faq-heading h2 {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.faq-heading h2 span {
  color: #a68455;
}

.faq-divider {
  margin: 16px auto 16px;
}

.faq-divider::after {
  background: #fffaf1;
}

.faq-heading > p:last-child {
  margin: 0;
  color: rgba(61, 44, 36, 0.76);
  font-size: 1.08rem;
  font-weight: 500;
}

.faq-list {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(166, 132, 85, 0.26);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 12px 28px rgba(61, 44, 36, 0.08);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 48px 1fr 56px;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  border: 0;
  padding: 10px 18px 10px 20px;
  color: #3d2c24;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(166, 132, 85, 0.28);
  border-radius: 50%;
  color: #a68455;
  background: #f4ecdf;
  font-weight: 800;
}

.faq-toggle {
  display: grid;
  width: 34px;
  height: 34px;
  justify-self: end;
  place-items: center;
  border-left: 1px solid rgba(166, 132, 85, 0.32);
  color: #a68455;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 94px 0 86px;
  color: rgba(61, 44, 36, 0.72);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 20px;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

.cta-section {
  overflow: hidden;
  padding: 72px 20px 96px;
  background: linear-gradient(180deg, #f8f3ea 0%, #fffaf1 100%);
}

.cta-card {
  position: relative;
  width: min(100%, calc(var(--container) + 120px));
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  border: 1px solid rgba(61, 44, 36, 0.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 42%, rgba(166, 132, 85, 0.1), rgba(166, 132, 85, 0) 32%),
    rgba(255, 250, 241, 0.92);
  box-shadow: 0 22px 52px rgba(61, 44, 36, 0.12);
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -7%;
  bottom: -42%;
  width: 58%;
  height: 56%;
  border-top: 16px solid #d3ad6f;
  border-radius: 60% 0 0 0;
  background: #3d2c24;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 72px 0px 56px 58px;
}

.cta-divider {
  margin: 10px 0 18px;
}

.cta-divider::after {
  background: #fffaf1;
}

.cta-content h2 {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.cta-content h2 span {
  color: #a68455;
}

.cta-content > p {
  max-width: 520px;
  margin: 24px 0 30px;
  color: rgba(61, 44, 36, 0.74);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.65;
}

.cta-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 560px;
  margin-bottom: 34px;
}

.cta-points div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 5px 12px;
  align-items: center;
  padding-right: 18px;
}

.cta-points div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(61, 44, 36, 0.12);
}

.cta-points span {
  display: grid;
  width: 40px;
  height: 40px;
  grid-row: span 2;
  place-items: center;
  border: 1px solid rgba(166, 132, 85, 0.3);
  border-radius: 50%;
  color: #a68455;
  background: rgba(244, 236, 223, 0.82);
  font-weight: 800;
}

.cta-points span img{
  width: 24px !important;
  height: 24px !important;
}

.cta-points strong {
  color: #3d2c24;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.18;
}

.cta-points small {
  color: rgba(61, 44, 36, 0.66);
  font-size: 0.76rem;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cta-whatsapp {
  color: #fffaf1;
  background: #a68455;
}

.cta-whatsapp::before {
  background: #3d2c24;
}

.cta-whatsapp .btn-icon {
  color: #fffaf1;
  background: #3d2c24;
}

.cta-whatsapp:hover .btn-icon {
  background: #a68455;
  transform: rotate(45deg);
}

.cta-call {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(166, 132, 85, 0.46);
  border-radius: 999px;
  padding: 8px 28px 8px 10px;
  color: #3d2c24;
  background: rgba(255, 250, 241, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cta-call::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: inherit;
  background: #3d2c24;
  transition: transform 320ms ease;
}

.cta-call:hover {
  color: #fffaf1;
  transform: translateY(-2px);
  border-color: rgba(61, 44, 36, 0.3);
}

.cta-call:hover::before {
  transform: scaleX(1);
}

.cta-call > span {
  position: relative;
  z-index: 1;
}

.call-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #3d2c24;
  background: rgba(61, 44, 36, 0.08);
  font-size: 1.25rem;
  transition: color 180ms ease, background 180ms ease;
}

.cta-call .btn-icon {
  width: 42px;
  height: 42px;
  color: #fffaf1;
  background: #a68455;
  font-size: 1.18rem;
}

.cta-call:hover .call-icon {
  color: #fffaf1;
  background: #fff9f1;
}

.cta-call:hover .btn-icon {
  color: #fffaf1;
  background: #a68455;
  transform: rotate(45deg);
}

.cta-call strong,
.cta-call small {
  display: block;
}

.cta-call strong {
  margin-bottom: 3px;
  font-size: 1rem;
  font-weight: 800;
}

.cta-call small {
  color: rgba(61, 44, 36, 0.68);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.cta-call:hover small {
  color: rgba(255, 250, 241, 0.76);
}

.cta-visual {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 34px 18px 22px;
}

.cta-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: center right;
  filter: sepia(0.08) saturate(0.9);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 250, 241, 0.78);
  background:
    linear-gradient(180deg, #d3ad6f 0 12px, transparent 12px),
    radial-gradient(circle at 86% 82%, rgba(166, 132, 85, 0.12), rgba(166, 132, 85, 0) 30%),
    linear-gradient(135deg, #211915 0%, #14100e 100%);
}

.footer-top {
  position: relative;
  z-index: 2;
  width: min(100%, calc(var(--container) + 120px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0;
  padding: 66px 20px 28px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.16);
}

.footer-top-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 250, 241, 0.14);
}

.footer-top-item:first-child {
  border-left: 0;
}

.footer-top-item span,
.footer-top-actions a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(166, 132, 85, 0.54);
  border-radius: 50%;
  color: #d3ad6f;
}

.footer-top-item span img{
  width: 22px !important;
  height: 22px !important;
}

.footer-top-item p {
  margin: 0;
  color: rgba(255, 250, 241, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-top-item strong {
  color: #fffaf1;
  font-weight: 700;
}

.footer-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 24px;
}

.footer-top-actions img{
  width: 18px !important;
  height: 18px !important;
}

.footer-top-actions a {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-top-actions a:hover {
  color: #211915;
  background: #d3ad6f;
  transform: translateY(-2px);
}

.footer-main {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 1.45fr 1.35fr;
  gap: 80px;
  padding: 54px 20px 46px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.footer-logo span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.footer-logo span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo strong {
  color: #fffaf1;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.12em;
}

.footer-brand p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 250, 241, 0.68);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.footer-column h2,
.footer-contact h2 {
  margin: 0 0 20px;
  color: #d3ad6f;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column h2::after,
.footer-contact h2::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 9px;
  background: #d3ad6f;
}

.footer-column a,
.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 13px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a::after {
  content: "›";
  margin-left: auto;
  color: #d3ad6f;
}

.footer-column a:hover,
.footer-contact a:hover {
  color: #fffaf1;
  transform: translateX(3px);
}

.footer-contact span {
  color: #d3ad6f;
  font-weight: 800;
}

.footer-contact span img{
  width: 20px !important;
  height: 20px !important;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 26px;
  border-top: 1px solid rgba(255, 250, 241, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 250, 241, 0.58);
  font-size: 0.82rem;
  font-weight: 500;
}

@media (max-width: 860px) {
  .site-header {
    top: 12px;
    width: min(calc(100% - 24px), var(--container));
    border-radius: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(61, 44, 36, 0.1);
    border-radius: 22px;
    background: rgb(255, 250, 241);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav .nav-cta {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-drop-toggle {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-drop-menu {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 6px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
    box-shadow: none;
    background: rgba(194, 163, 113, 0.1);
  }

  .nav-dropdown.is-open .nav-drop-menu {
    display: grid;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown.is-open .nav-drop-toggle {
    color: var(--coffee);
    background: rgba(194, 163, 113, 0.18);
  }

  .nav-dropdown.is-open .nav-drop-toggle::after {
    transform: rotate(180deg);
  }

  .hero-section {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(248, 243, 234, 0.98) 0%, rgba(248, 243, 234, 0.92) 45%, rgba(248, 243, 234, 0.34) 66%, rgba(248, 243, 234, 0.08) 100%),
      var(--warm-white);
  }

  .hero-media img {
    object-position: center bottom;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(255, 250, 241, 0.72) 0%, rgba(255, 250, 241, 0.5) 18%, rgba(255, 250, 241, 0.16) 31%, rgba(255, 250, 241, 0) 42%),
      url("../assets/images/Img/CITYKONE TRANSPORT-Banner-mobile.webp") center bottom / cover no-repeat;
  }

  .hero-media picture {
    display: none;
  }

  .hero-content {
    min-height: 760px;
    justify-content: flex-start;
    padding: 128px 0 380px;
  }

  .feature-strip-section {
    margin-top: -34px;
    padding-bottom: 56px;
  }

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

  .feature-item + .feature-item {
    border-left: 0;
  }

  .feature-item:nth-child(even) {
    border-left: 1px solid rgba(61, 44, 36, 0.12);
  }

  .feature-item:nth-child(n + 3) {
    border-top: 1px solid rgba(61, 44, 36, 0.12);
  }

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

  .promo-card {
    grid-template-rows: 220px 220px 55px;
  }

  .promo-card > img {
    height: 220px;
    min-height: 220px;
  }

  .promo-foot {
    min-height: 55px;
    height: 55px;
  }

  .promo-foot p {
    font-size: 16px;
  }

  .promotion-cta {
    grid-template-columns: 1fr;
  }

  .services-preview-section {
    padding-top: 62px;
  }

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

  .about-preview-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
  }

  .about-panel {
    padding: 58px 28px 64px;
  }

  .about-panel::before {
    display: none;
  }

  .about-panel::after {
    display: none;
  }

  .features-customers-section {
    padding-top: 68px;
  }

  .features-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .features-header > p {
    margin: 0;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .target-customers {
    padding: 34px 24px 28px;
  }

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

  .customer-item {
    padding: 18px 10px;
  }

  .customer-item + .customer-item {
    border-left: 0;
  }

  .customer-item:nth-child(3n + 2),
  .customer-item:nth-child(3n + 3) {
    border-left: 1px solid rgba(61, 44, 36, 0.12);
  }

  .customer-item:nth-child(n + 4) {
    border-top: 1px solid rgba(61, 44, 36, 0.12);
  }

  .service-area-section {
    padding-top: 68px;
    padding: 88px 20px 0px;
  }

  .service-area-map {
    min-height: 620px;
  }

  .service-area-section::before, .service-area-section::after {
    width: 300px;
    height: 300px;
}

  .map-shape {
    width: min(84vw, 800px);
  }

  .coverage-card {
    left: 30%;
    bottom: 120px;
    transform: translateX(-50%);
    grid-template-columns: 50px 1fr;
    gap: 10px;
    padding: 15px;
        width: min(100%, 320px);
  }

  .coverage-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: #fffaf1;
  background: #a68455;
  font-size: 1.5rem;
}

.coverage-card h3 {
  margin: 0 0 8px;
  color: #a68455;
  font-size: 16px;
  font-weight: 700;
}

.coverage-card p {
  margin: 0;
  color: #3d2c24;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

  .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .testimonial-arrow {
    display: none;
  }

  .testimonial-grid {
    gap: 18px;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .faq-question {
    grid-template-columns: 42px 1fr 42px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding-right: 68px;
    padding-left: 80px;
  }

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

  .cta-content {
    padding: 54px 28px 34px;
  }

  .cta-visual {
    min-height: 320px;
  }

  .cta-card::after {
    width: 85%;
    height: 28%;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 22px;
  }

  .footer-top-actions {
    grid-column: 1 / -1;
    padding-left: 22px;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .values-banner img {
    clip-path:none !important;
    -webkit-clip-path:none !important;
}
}

@media (max-width: 560px) {
  .brand-text {
    max-width: 142px;
    white-space: normal;
  }

  .hero-section,
  .hero-content {
    min-height: 760px;
  }

  .hero-section {
    background:
      linear-gradient(180deg, rgba(248, 243, 234, 0.98) 0%, rgba(248, 243, 234, 0.94) 43%, rgba(248, 243, 234, 0.42) 61%, rgba(248, 243, 234, 0.08) 100%),
      var(--warm-white);
  }

  .hero-media img {
    object-position: center bottom !important;
  }

  .hero-media {
    background-position: center bottom;
    background-size: cover;
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--container));
    justify-content: flex-start;
    min-height: 560px;
    padding-top: 128px;
    padding-bottom: 300px;
  }

  .hero-content h1 {
    max-width: none;
    font-size: 2.62rem;
  }

  .hero-copy {
    max-width: none;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .trust-strip {
    width: 100%;
    border-radius: 22px;
  }

  .trust-item {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid rgba(61, 44, 36, 0.12);
    border-left: 0;
  }

  .btn {
    width: 100%;
  }

  .feature-strip-section {
    margin-top: -22px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .feature-item {
    grid-template-columns: 56px 1fr;
    min-height: auto;
    gap: 14px;
    padding: 18px;
  }

  .feature-item,
  .feature-item:nth-child(even),
  .feature-item:nth-child(n + 3) {
    border-left: 0;
    border-top: 0;
  }

  .feature-item + .feature-item {
    border-top: 1px solid rgba(61, 44, 36, 0.12);
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.45rem;
  }

  .feature-item h2 {
    font-size: 1.05rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .promotion-section {
    padding: 54px 14px 62px;
  }

  .promotion-heading h2 {
    font-size: 2.35rem;
  }

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

  .promo-card {
    min-height: 0;
    grid-template-rows: 220px 200px 60px;
  }

  .promo-card > img {
    height: 230px;
    min-height: 210px;
  }

  .promo-foot {
    min-height: 60px;
    height: 60px;
  }

  .promotion-cta {
    padding: 16px;
  }

  .promotion-note {
    grid-template-columns: 44px 1fr;
  }

  .promotion-note span {
    width: 42px;
    height: 42px;
  }

  .promo-whatsapp,
  .promo-call {
    width: 100%;
  }

  .services-preview-section {
    padding: 54px 14px 70px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2 {
    font-size: 2.28rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-body {
    min-height: auto;
    padding: 22px;
  }

  .about-image {
    min-height: 260px;
  }

  .about-panel {
    padding: 46px 18px 56px;
  }

  .about-panel h2 {
    font-size: 2.18rem;
  }

  .about-kicker {
    padding-left: 42px;
  }

  .about-kicker::before {
    width: 30px;
  }

  .about-btn {
    width: 100%;
  }

  .features-customers-section {
    padding: 54px 14px 70px;
  }

  .features-header h2 {
    font-size: 2.25rem;
  }

  .dark-feature-card,
  .dark-feature-card > img {
    min-height: 250px;
  }

  .dark-card-content {
    padding: 22px;
  }

  .target-customers {
    padding: 30px 18px 24px;
  }

  .target-map {
    width: 70%;
  }

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

  .customer-item:nth-child(3n + 2),
  .customer-item:nth-child(3n + 3) {
    border-left: 0;
  }

  .customer-item:nth-child(even) {
    border-left: 1px solid rgba(61, 44, 36, 0.12);
  }

  .customer-item:nth-child(n + 3) {
    border-top: 1px solid rgba(61, 44, 36, 0.12);
  }

  .service-area-section {
    padding: 58px 14px 76px;
  }

  .service-area-heading h2 {
    font-size: 2.38rem;
  }

  .service-area-heading > p:last-child {
    font-size: 1rem;
  }

  .service-area-map {
    min-height: 480px;
  }

  .map-shape {
    top: 30px;
    width: 500px;
  }

  .coverage-card {
    grid-template-columns: 45px 1fr;
    gap: 14px;
    padding: 15px;
    left: 35%;
        bottom: 10px;
        width: min(100%, 280px);
  }

  .coverage-icon {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .coverage-card h3 {
  font-size: 14px;
}

.coverage-card p {
  font-size: 14px;
}

  .testimonial-section {
    padding: 58px 14px 62px;
  }

  .testimonial-section::before,
  .testimonial-section::after {
    display: none;
  }

  .testimonial-heading h2 {
    font-size: 2.35rem;
  }

  .testimonial-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .quote {
    min-height: auto;
  }

  .faq-section {
    padding: 58px 14px 66px;
  }

  .faq-heading h2 {
    font-size: 2.32rem;
  }

  .faq-question {
    grid-template-columns: 34px 1fr 32px;
    gap: 12px;
    min-height: 62px;
    padding: 10px 12px;
    font-size: 0.96rem;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }

  .faq-toggle {
    width: 30px;
    height: 30px;
  }

  .faq-answer p {
    padding-right: 16px;
    padding-left: 58px;
  }

  .cta-section {
    padding: 54px 14px 68px;
  }

  .cta-card {
    min-height: auto;
    border-radius: 14px;
  }

  .cta-content {
    padding: 38px 18px 28px;
  }

  .cta-content h2 {
    font-size: 2.38rem;
  }

  .promotion-heading h2,
  .section-heading h2,
  .about-panel h2,
  .features-header h2,
  .service-area-heading h2,
  .testimonial-heading h2,
  .faq-heading h2,
  .cta-content h2 {
    font-size: 32px !important;
  }

  .cta-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cta-points div,
  .cta-points div + div {
    padding: 0;
    border-left: 0;
  }

  .cta-actions,
  .cta-whatsapp,
  .cta-call {
    width: 100%;
  }

  .cta-visual {
    min-height: 240px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .footer-top-item,
  .footer-top-actions {
    padding-left: 0;
    border-left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 38px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

.about-hero {
  position: relative;
  --inner-hero-height: 720px;
  min-height: var(--inner-hero-height);
  height: var(--inner-hero-height);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1.1fr);
  background: #fffaf1;
}

.about-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 39%;
  width: 210px;
  transform: skewX(-11deg);
  background: linear-gradient(90deg, rgb(255, 250, 241));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 132px 30px 78px max(32px, calc((100vw - var(--container)) / 2));
}

.breadcrumb {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 5px 15px;
  border: 1px solid rgba(194, 163, 113, 0.36);
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 250, 241, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.breadcrumb a {
  color: #3d2c24;
}

.breadcrumb span[aria-hidden="true"] {
  color: #a68455;
  font-size: 1.2rem;
}

.about-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.6rem, 5.1vw, 4.55rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-hero h1 span {
  color: #a68455;
}

.about-hero-divider {
  margin: 24px 0 24px;
}

.about-hero-divider::after {
  background: #fffaf1;
}

.about-hero-content > p:not(.section-kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(61, 44, 36, 0.76);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.about-hero-media {
  position: relative;
  min-height: var(--inner-hero-height);
  height: var(--inner-hero-height);
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contact-info-section {
  padding: 92px 20px 46px;
  background: linear-gradient(180deg, #fffaf1 0%, #fbf7ef 100%);
}

.contact-info-card {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(166, 132, 85, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(211, 173, 111, 0.12), rgba(211, 173, 111, 0) 34%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(251, 247, 239, 0.96));
  box-shadow: 0 24px 60px rgba(61, 44, 36, 0.09);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  padding: 72px 52px 120px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 230px;
  padding: 0 34px;
  text-align: center;
}

.contact-info-item + .contact-info-item {
  border-left: 1px solid rgba(166, 132, 85, 0.34);
}

.contact-info-icon {
  display: grid;
  place-items: center;
  width: 85px;
  height: 85px;
  margin-bottom: 34px;
  border: 1px solid rgba(166, 132, 85, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 250, 241, 0.32), rgba(255, 250, 241, 0) 34%),
    linear-gradient(135deg, #d3ad6f, #a68455 72%);
  color: #fffaf1;
  font-size: 2.35rem;
  font-weight: 800;
  box-shadow:
    0 0 0 15px rgba(166, 132, 85, 0.08),
    0 10px 15px rgba(61, 44, 36, 0.12);
}

.contact-info-item h2 {
  margin: 0;
  color: #a68455;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-info-line {
  width: 46px;
  height: 1px;
  margin: 20px 0 24px;
  background: #a68455;
}

.contact-info-item a,
.contact-info-item strong {
  color: #3d2c24;
  font-size: clamp(1.05rem, 1.4vw, 1.20rem);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  word-break: break-word;
}

.contact-info-item a:hover {
  color: #a68455;
}

.contact-info-item p {
  margin: 10px 0 0;
  color: rgba(61, 44, 36, 0.64);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-info-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 45px;
  background: linear-gradient(90deg, #d3ad6f, #a68455, #d3ad6f);
}

.contact-info-ribbon {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  width: 60%;
  min-height: 45px;
  margin: -72px auto 0;
  padding: 0 46px;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  background: linear-gradient(135deg, #5a4032, #3d2c24);
  color: #fffaf1;
  box-shadow: 0 -10px 22px rgba(61, 44, 36, 0.12);
}

.contact-info-ribbon span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 250, 241, 0.46);
  border-radius: 50%;
  color: #fffaf1;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-info-ribbon span img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-info-ribbon p {
  margin: 0;
  color: #fffaf1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 46px 20px 88px;
  background: linear-gradient(180deg, rgba(251, 247, 239, 0.92), rgba(255, 250, 241, 0.98));
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(166, 132, 85, 0.22);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.9));
  box-shadow: 0 26px 58px rgba(61, 44, 36, 0.1);
}

.contact-copy {
  position: relative;
  min-height: 530px;
  padding: 64px 56px 350px;
  overflow: hidden;
  border-right: 1px solid rgba(166, 132, 85, 0.34);
}

.contact-copy::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -10% 0 0;
  height: 80%;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0), rgba(211, 173, 111, 0.16)),
    url("../assets/images/Img/CITYKONE\ TRANSPORT-Contact.webp") left bottom / contain no-repeat;
  pointer-events: none;
}

.contact-copy .section-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

.contact-copy h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #3d2c24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.02;
  font-weight: 600;
}

.contact-copy h2 span {
  color: #a68455;
}

.contact-copy > p {
  position: relative;
  z-index: 2;
  max-width: 360px;
  color: rgba(61, 44, 36, 0.74);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-car {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 12px;
  left: 18px;
  height: 220px;
  pointer-events: none;
}

.contact-car img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 22px 26px rgba(61, 44, 36, 0.18));
}

.contact-form-wrap {
  display: grid;
  padding: 54px 54px 56px;
}

.contact-form-wrap h2 {
  margin: 0 0 24px;
  color: #3d2c24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
}

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

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.contact-form label {
  position: relative;
  display: block;
}

.field-icon {
  position: absolute;
  top: 17px;
  left: 18px;
  z-index: 1;
  width: 28px;
  overflow: hidden;
  color: #a68455;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0.86;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(166, 132, 85, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.66);
  color: #3d2c24;
  font: inherit;
  font-size: 0.96rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 62px;
  padding: 0 18px 0 58px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  padding: 20px 18px 18px 58px;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #a68455 50%),
    linear-gradient(135deg, #a68455 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 28px,
    calc(100% - 18px) 28px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select {
  color: rgba(61, 44, 36, 0.54);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(166, 132, 85, 0.58);
  background: #fffaf1;
  box-shadow: 0 0 0 4px rgba(166, 132, 85, 0.1);
}

.contact-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: #3d2c24;
  color: #fffaf1;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: #a68455;
  transition: transform 320ms ease;
}

.contact-submit span,
.contact-submit strong {
  position: relative;
  z-index: 1;
}

.contact-submit span img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(61, 44, 36, 0.2);
}

.contact-submit:hover::before {
  transform: scaleX(1);
}

.contact-service-area {
  padding-top: 84px;
}

.service-detail-hero {
  position: relative;
  --inner-hero-height: 720px;
  overflow: hidden;
  min-height: var(--inner-hero-height);
  height: var(--inner-hero-height);
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1.1fr);
  background: linear-gradient(110deg, #fffaf1 0%, #fbf7ef 52%, rgba(211, 173, 111, 0.16) 100%);
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: calc(50% - 76px);
  width: 210px;
  transform: skewX(-11deg);
}

.service-detail-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 132px 52px 72px max(24px, calc((100vw - var(--container)) / 2));
}

.service-detail-content h1 {
  max-width: 660px;
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.6rem, 5.1vw, 4.55rem);
    font-weight: 700;
    line-height: 1.08;
}

.service-detail-content h1 span {
  color: #a68455;
}

.service-detail-content > p {
  max-width: 560px;
  margin: 0;
  color: rgba(61, 44, 36, 0.74);
  font-size: 1.08rem;
  line-height: 1.78;
}

.service-detail-media {
  position: relative;
  min-height: var(--inner-hero-height);
  height: var(--inner-hero-height);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  padding-top: 50px;
}

.service-detail-section {
  padding: 88px max(24px, calc((100vw - var(--container)) / 2)) 98px;
  background: linear-gradient(180deg, #fffaf1 0%, #f8f3ea 100%);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.service-detail-card,
.service-side-card {
  border: 1px solid rgba(166, 132, 85, 0.24);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 18px 40px rgba(61, 44, 36, 0.08);
}

.service-detail-card {
  padding: 42px;
}

.service-detail-card h2,
.service-side-card h2 {
  margin: 0 0 20px;
  color: #3d2c24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1.12;
}

.service-detail-card p {
  margin: 0 0 18px;
  color: rgba(61, 44, 36, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

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

.service-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(61, 44, 36, 0.76);
  font-weight: 600;
  line-height: 1.55;
}

.service-list li::before {
  content: "✓";
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fffaf1;
  background: #a68455;
  font-size: 0.78rem;
}

.service-side-card {
  position: sticky;
  top: 112px;
  padding: 30px;
}

.service-side-card p {
  margin: 0 0 22px;
  color: rgba(61, 44, 36, 0.68);
  line-height: 1.65;
}

.service-side-card .btn {
  width: 100%;
}

.vehicle-pricing-section {
  padding: 88px max(20px, calc((100vw - var(--container)) / 2)) 96px;
  background: linear-gradient(180deg, #fffaf1 0%, #f8f3ea 100%);
}

.vehicle-pricing-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.vehicle-pricing-heading h2 {
  margin: 0;
  color: #3d2c24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 600;
  line-height: 1.08;
}

.vehicle-pricing-heading h2 span {
  color: #a68455;
}

.vehicle-pricing-heading .heading-divider {
  margin: 18px auto;
}

.vehicle-pricing-heading > p:last-child {
  margin: 0 auto;
  max-width: 540px;
  color: rgba(61, 44, 36, 0.68);
  line-height: 1.7;
}

.vehicle-selector {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.vehicle-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 210px;
  padding: 12px 12px 14px;
  border: 1px solid rgba(166, 132, 85, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.9);
  color: #3d2c24;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(61, 44, 36, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vehicle-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(166, 132, 85, 0.38);
  background: #fffaf1;
}

.vehicle-card.is-active {
  border-color: #a68455;
  box-shadow: 0 18px 36px rgba(61, 44, 36, 0.14);
}

.vehicle-card.is-active::after {
  background: #a68455;
  box-shadow: inset 0 0 0 3px #fffaf1;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 132, 85, 0.55);
}

.vehicle-card img {
  width: 100%;
  aspect-ratio: 4 / 2.25;
  object-fit: contain;
  object-position: center;
}

.vehicle-card strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.vehicle-card span {
  color: rgba(61, 44, 36, 0.62);
  font-size: 0.82rem;
  font-weight: 600;
}

.vehicle-card small {
  margin-top: auto;
  color: #a68455;
  font-size: 0.82rem;
  font-weight: 800;
}

.pricing-card {
  display: none;
  overflow: hidden;
  border: 1px solid rgba(166, 132, 85, 0.22);
  border-radius: 10px;
  background:
    radial-gradient(circle at 72% 18%, rgba(211, 173, 111, 0.16), rgba(211, 173, 111, 0) 34%),
    rgba(255, 250, 241, 0.92);
  box-shadow: 0 22px 52px rgba(61, 44, 36, 0.1);
}

.pricing-card.is-active {
  display: block;
}

.pricing-card-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 42%);
  gap: 24px;
  align-items: center;
  padding: 30px 34px 14px;
}

.pricing-card-head h3 {
  margin: 0;
  color: #3d2c24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.pricing-card-head p {
  margin: 10px 0 0;
  color: #a68455;
  font-size: 1rem;
  font-weight: 800;
}

.pricing-card-head img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  object-position: right center;
}

.pricing-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 34px 22px;
  border: 1px solid rgba(166, 132, 85, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.68);
}

.pricing-meta span {
  padding: 14px 18px;
  color: rgba(61, 44, 36, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.pricing-meta span + span {
  border-left: 1px solid rgba(166, 132, 85, 0.18);
}

.region-accordion {
  margin: 0 34px 20px;
  overflow: hidden;
  border: 1px solid rgba(166, 132, 85, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.74);
}

.region-item + .region-item {
  border-top: 1px solid rgba(166, 132, 85, 0.16);
}

.region-toggle {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 0 24px;
  background: transparent;
  color: #3d2c24;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.region-toggle::after {
  content: "⌄";
  color: #a68455;
  transition: transform 180ms ease;
}

.region-toggle small {
  margin-left: auto;
  color: rgba(61, 44, 36, 0.5);
  font-weight: 700;
}

.region-item.is-open .region-toggle::after {
  transform: rotate(180deg);
}

.region-panel {
  display: none;
  padding: 0 20px 20px;
}

.region-item.is-open .region-panel {
  display: block;
}

.route-row {
  display: grid;
  grid-template-columns: 1fr 150px 150px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: inset 0 0 0 1px rgba(166, 132, 85, 0.12);
}

.route-row + .route-row {
  margin-top: 12px;
}

.route-row strong {
  display: grid;
  gap: 6px;
  color: #3d2c24;
}

.route-row strong small {
  color: rgba(61, 44, 36, 0.54);
  font-size: 0.82rem;
  font-weight: 600;
}

.route-row span {
  color: rgba(61, 44, 36, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.route-row b {
  color: #3d2c24;
  font-size: 1.08rem;
}

.private-chauffeur-page .route-row {
  grid-template-columns: 1fr 150px;
}

.private-chauffeur-page .route-row span:empty {
  display: none;
}

.pricing-actions {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 18px 34px 28px;
}

.pricing-actions p,
.pricing-note {
  margin: 0;
  color: rgba(61, 44, 36, 0.64);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

.pricing-note {
  display: grid;
  gap: 4px;
}

.pricing-note strong {
  color: #3d2c24;
}

.pricing-note span {
  display: block;
}

.about-story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: min(6vw, 70px);
  align-items: center;
  padding: 92px max(24px, calc((100vw - var(--container)) / 2)) 98px;
  background: linear-gradient(180deg, #fffaf1 0%, #f8f3ea 100%);
}

.about-story-image {
  overflow: hidden;
  border: 1px solid rgba(166, 132, 85, 0.36);
  border-radius: 14px;
  padding: 8px;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 18px 38px rgba(61, 44, 36, 0.1);
}

.about-story-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.about-story-content {
  max-width: 620px;
}

.about-story-content h2 {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.35rem, 4.6vw, 4.1rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.about-story-content h2 span {
  color: #a68455;
}

.about-story-divider {
  margin: 22px 0 24px;
}

.about-story-divider::after {
  background: #fffaf1;
}

.about-story-content p:not(.section-kicker) {
  margin: 0 0 16px;
  color: rgba(61, 44, 36, 0.74);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.72;
}

.about-story-btn {
  width: fit-content;
  margin-top: 18px;
  color: #fffaf1;
  background: #a68455;
}

.about-story-btn::before {
  background: #3d2c24;
}

.about-story-btn .btn-icon {
  color: #fffaf1;
  background: #3d2c24;
}

.about-story-btn:hover .btn-icon {
  background: #a68455;
  transform: rotate(45deg);
}

.mission-vision-section {
  padding: 78px max(24px, calc((100vw - var(--container)) / 2)) 80px;
  background: #fffaf1;
}

.mission-vision-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.mission-vision-heading h2 {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.35rem, 4.8vw, 4.1rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.mission-vision-heading h2 span {
  color: #a68455;
}

.mission-vision-divider {
  margin: 14px auto 16px;
}

.mission-vision-divider::after {
  background: #fffaf1;
}

.mission-vision-heading > p:last-child {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(61, 44, 36, 0.72);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.58;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px;
}

.purpose-card {
  position: relative;
  min-height: 134px;
  padding: 28px 34px 26px 110px;
  border: 1px solid rgba(166, 132, 85, 0.22);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.62);
  box-shadow: 0 10px 24px rgba(61, 44, 36, 0.05);
}

.purpose-ribbon {
  position: absolute;
  top: 0;
  left: 20px;
  display: grid;
  width: 58px;
  height: 80px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  padding-bottom: 10px;
  color: #fffaf1;
  background: #a68455;
}

.purpose-ribbon img{
  width: 36px !important;
  height: 36px !important;
}

.purpose-ribbon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 18px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  background: #fffaf1;
}

.purpose-card h3 {
  margin: 0 0 10px;
  color: #a68455;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.purpose-card p {
  margin: 0;
  color: #3d2c24;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.values-section {
  padding: 82px max(24px, calc((100vw - var(--container)) / 2)) 88px;
  background: linear-gradient(180deg, #fffaf1 0%, #f8f3ea 100%);
}

.values-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.values-heading h2 {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.35rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.values-heading h2 span {
  color: #a68455;
}

.values-divider {
  margin: 14px auto 16px;
}

.values-divider::after {
  background: #fffaf1;
}

.values-heading > p:last-child {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(61, 44, 36, 0.72);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.62;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.value-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 26px;
  border: 1px solid rgba(166, 132, 85, 0.22);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 12px 28px rgba(61, 44, 36, 0.07);
  text-align: center;
}

.value-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #a68455;
  background: #f4ecdf;
  font-size: 2rem;
}

.value-card h3 {
  min-height: 55px;
  margin: 0 0 18px;
  color: #3d2c24;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-card p {
  margin: 0;
  color: rgba(61, 44, 36, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.62;
  padding-bottom: 20px !important;
}

.value-line {
  width: 34px;
  height: 1px;
  margin-top: auto;
  background: #a68455;
}

.values-banner {
  --values-image-start: 45%;
  --values-cut-start: 51.6%;
  --values-line-width: 10px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 172px;
  border: 1px solid rgba(166, 132, 85, 0.22);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.74);
  box-shadow: 0 14px 30px rgba(61, 44, 36, 0.08);
}

.values-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    filter: sepia(0.08) saturate(0.9);
  }

.values-banner::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: #d3ad6f;
  clip-path: polygon(
    calc(var(--values-cut-start) - var(--values-line-width)) 0,
    var(--values-cut-start) 0,
    calc(var(--values-image-start) + var(--values-line-width)) 100%,
    var(--values-image-start) 100%
  );
  pointer-events: none;
}

.values-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 82px 1px 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px 36px;
}

.values-banner-content .value-icon {
  margin: 0;
}

.values-banner-line {
  width: 1px;
  height: 70%;
  background: rgba(166, 132, 85, 0.36);
}

.values-banner h3 {
  margin: 0 0 8px;
  color: #3d2c24;
  font-size: 35px;
  font-weight: 800;
  line-height: 1.22;
}

.values-banner h3 span {
  color: #a68455;
}

.values-banner p {
  margin: 0;
  color: rgba(61, 44, 36, 0.72);
  font-size: 18px;
  font-weight: 500;
}

.values-banner-btn {
  width: fit-content;
  margin-top: 24px;
}

.about-feature-counter-section {
  padding: 44px max(24px, calc((100vw - var(--container)) / 2)) 98px;
  background: linear-gradient(180deg, #f8f3ea 0%, #fffaf1 100%);
}

.about-icon-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 92px;
  padding: 34px 30px;
  border-radius: 16px;
  color: #fffaf1;
  background: linear-gradient(135deg, #a68455 0%, #bc9660 100%);
  box-shadow: 0 18px 40px rgba(61, 44, 36, 0.16);
}

.about-icon-feature {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 0 18px;
}

.about-icon-feature + .about-icon-feature {
  border-left: 1px solid rgba(255, 250, 241, 0.22);
}

.about-icon-feature span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #a68455;
  background: rgba(255, 250, 241, 0.88);
  font-size: 1.7rem;
}

.about-icon-feature p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.counter-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.counter-heading .section-kicker {
  margin-bottom: 10px;
}

.counter-heading-divider {
  margin: 0 auto 22px;
}

.counter-heading-divider::after,
.counter-divider::after {
  background: #fffaf1;
}

.counter-heading h2 {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.counter-heading h2 span {
  color: #a68455;
}

.counter-heading > p:last-child {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(61, 44, 36, 0.72);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
}

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

.counter-card {
  min-height: 300px;
  padding: 32px 24px 28px;
  border: 1px solid rgba(166, 132, 85, 0.26);
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 16px 34px rgba(61, 44, 36, 0.08);
  text-align: center;
}

.counter-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(166, 132, 85, 0.28);
  border-radius: 50%;
  color: #a68455;
  background: rgba(255, 250, 241, 0.82);
  font-size: 2rem;
}

.counter-icon img{
  width: 40px !important;
  height: 40px !important;
}

.counter-number {
  margin: 0;
  color: #3d2c24;
  font-size: clamp(3.25rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
}

.counter-divider {
  width: 120px;
  margin: 22px auto 20px;
}

.counter-card h3 {
  margin: 0 0 8px;
  color: #3d2c24;
  font-size: 1.08rem;
  font-weight: 700;
}

.counter-card > p:last-child {
  margin: 0;
  color: rgba(61, 44, 36, 0.62);
  font-size: 0.88rem;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .service-detail-hero {
    --inner-hero-height: auto;
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-hero::before {
    display: none;
  }

  .service-detail-content {
    min-height: 0;
    padding: 128px 24px 42px;
  }

  
}

@media (max-width: 860px) {
.about-image img{
  height: 350px;
}

  .about-hero {
    --inner-hero-height: auto;
    height: auto;
    grid-template-columns: 1fr;
  }

  .about-hero::before {
    display: none;
  }

  .about-hero-content {
    min-height: 520px;
    padding: 128px 24px 48px;
  }

  .about-hero-media {
    height: 380px;
    min-height: 380px;
  }

  .contact-info-section {
    padding: 70px 18px 34px;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 56px 32px 88px;
  }

  .contact-info-item {
    padding: 30px 24px;
  }

  .contact-info-item + .contact-info-item {
    border-left: 0;
  }

  .contact-info-item:nth-child(even) {
    border-left: 1px solid rgba(166, 132, 85, 0.28);
  }

  .contact-info-item:nth-child(n + 3) {
    border-top: 1px solid rgba(166, 132, 85, 0.28);
  }

  .contact-info-ribbon {
    width: min(720px, 78%);
  }

  .contact-section {
    padding: 66px 18px 72px;
  }

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

  .contact-copy {
    min-height: 430px;
    padding: 52px 36px 350px;
    border-right: 0;
    border-bottom: 1px solid rgba(166, 132, 85, 0.28);
  }

  .contact-copy > p{
    max-width: 100%;
  }

  .contact-form-wrap {
    padding: 42px 36px 44px;
  }

  .service-detail-hero {
    --inner-hero-height: auto;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "media";
  }

  .service-detail-hero::before {
    display: none;
  }

  .service-detail-content {
    grid-area: content;
    min-height: 0;
    padding: 128px 24px 54px;
  }

  .service-detail-media {
    grid-area: media;
    height: 380px;
    min-height: 380px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-side-card {
    position: static;
  }

  .vehicle-pricing-section {
    padding: 70px 18px 76px;
  }

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

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

  .pricing-card-head img {
    max-height: 260px;
    object-position: center;
  }

  .pricing-actions {
    grid-template-columns: 1fr;
  }

  .pricing-actions .btn,
  .pricing-actions .cta-call {
    width: 100%;
  }

  .about-story-section {
    grid-template-columns: 1fr;
    padding: 70px 24px 78px;
  }

  .about-story-image {
    height: 450px;
    max-width: 560px;
  }

  .about-story-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .values-banner {
    grid-template-columns: 1fr;
  }

  .values-banner::after {
    display: none;
  }

  .value-card h3 {
    min-height: 30px;
}

  .about-icon-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 68px;
  }

  .about-icon-feature + .about-icon-feature {
    border-left: 0;
  }

  .about-icon-feature:nth-child(even) {
    border-left: 1px solid rgba(255, 250, 241, 0.22);
  }

  .about-icon-feature:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 250, 241, 0.22);
    padding-top: 18px;
    margin-top: 18px;
  }

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

  .service-detail-media img {
  padding-top: 0px;
}
}

@media (max-width: 560px) {
.about-image img{
  height: 280px;
}

  .about-hero {
    min-height: auto;
  }

  .about-hero-content {
    min-height: 560px;
    padding: 124px 16px 42px;
  }

  .about-hero h1 {
    font-size: 2.55rem;
  }

  .about-hero-actions,
  .about-hero-actions .btn {
    width: 100%;
  }

  .about-hero-media {
    height: 280px;
    min-height: 280px;
  }

  .contact-info-section {
    padding: 48px 12px 24px;
  }

  .contact-info-card {
    border-radius: 18px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    padding: 34px 20px 94px;
  }

  .contact-info-item,
  .contact-info-item:nth-child(even),
  .contact-info-item:nth-child(n + 3) {
    min-height: auto;
    padding: 30px 10px;
    border-left: 0;
    border-top: 0;
  }

  .contact-info-item + .contact-info-item {
    border-top: 1px solid rgba(166, 132, 85, 0.24);
  }

  .contact-info-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 26px;
    font-size: 1.9rem;
    box-shadow:
      0 0 0 16px rgba(166, 132, 85, 0.08),
      0 14px 26px rgba(61, 44, 36, 0.1);
  }

  .contact-info-ribbon {
    width: calc(100% - 36px);
    min-height: 72px;
    padding: 0 22px;
    clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%);
  }

  .contact-info-ribbon p {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .contact-section {
    padding: 48px 12px 58px;
  }

  .contact-panel {
    border-radius: 8px;
  }

  .contact-copy {
    min-height: 500px;
    padding: 42px 22px 210px;
  }

  .contact-copy h2 {
    font-size: 2.5rem;
  }

  .contact-car {
    right: 4px;
    bottom: 14px;
    left: 8px;
    height: 178px;
  }

  .contact-form-wrap {
    padding: 28px 18px 30px;
  }

  .contact-form-wrap h2 {
    margin-bottom: 18px;
    font-size: 2.15rem;
  }

  .contact-form {
    gap: 14px;
  }

  .service-detail-content {
    min-height: 560px;
    padding: 124px 16px 42px;
  }

  .service-detail-content h1 {
    font-size: 2.55rem;
  }

  .service-detail-media {
    height: 280px;
    min-height: 280px;
  }

  .service-detail-section {
    padding: 54px 16px 64px;
  }

  .service-detail-card,
  .service-side-card {
    padding: 24px 20px;
  }

  .service-detail-card h2,
  .service-side-card h2 {
    font-size: 2rem;
  }

  .vehicle-pricing-section {
    padding: 54px 12px 62px;
  }

  .vehicle-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding: 0;
  }

  .vehicle-card {
    flex: none;
    min-height: 194px;
  }

  .pricing-card-head,
  .pricing-meta,
  .region-accordion,
  .pricing-actions {
    margin-right: 16px;
    margin-left: 16px;
  }

  .pricing-card-head {
    padding: 24px 0 12px;
  }

  .pricing-meta {
    grid-template-columns: 1fr;
  }

  .pricing-meta span + span {
    border-top: 1px solid rgba(166, 132, 85, 0.18);
    border-left: 0;
  }

  .region-toggle {
    align-items: flex-start;
    min-height: auto;
    padding: 18px 16px;
  }

  .route-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .route-row span {
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form input,
  .contact-form select {
    min-height: 58px;
  }

  .about-story-section {
    padding: 54px 16px 64px;
  }

  .about-story-content h2 {
    font-size: 2.4rem;
  }

  .about-story-btn {
    width: 100%;
  }

  .about-story-image {
    height: 350px;
    max-width: 100%;
  }

  .about-story-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
  }

  .mission-vision-section {
    padding: 56px 16px 60px;
  }

  .mission-vision-heading h2 {
    font-size: 2.45rem;
  }

  .purpose-card {
    padding: 24px 18px 22px 90px;
  }

  .values-section {
    padding: 56px 16px 64px;
  }

  .values-heading h2 {
    font-size: 2.45rem;
  }

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

  .value-card {
    min-height: auto;
  }

  .value-card h3 {
    min-height: 20px;
}

  .values-banner-content {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  .values-banner h3{
    font-size: 26px;
  }

  .values-banner p{
    font-size: 16px;
  }

  .values-banner-line {
    display: none;
  }

  .values-banner-content .value-icon {
    width: 62px;
    height: 62px;
  }

  .about-feature-counter-section {
    padding: 36px 16px 68px;
  }

  .about-icon-bar {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .about-icon-feature,
  .about-icon-feature:nth-child(even),
  .about-icon-feature:nth-child(n + 3) {
    border-left: 0;
    border-top: 0;
    padding: 14px 0;
    margin: 0;
  }

  .about-icon-feature + .about-icon-feature {
    border-top: 1px solid rgba(255, 250, 241, 0.22);
  }

  .counter-heading h2 {
    font-size: 2.48rem;
  }

  .counter-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .counter-card {
    min-height: auto;
  }

  .contact-info-item h2,
  .contact-copy h2,
  .contact-form-wrap h2,
  .service-detail-card h2,
  .service-side-card h2,
  .vehicle-pricing-heading h2,
  .about-story-content h2,
  .mission-vision-heading h2,
  .values-heading h2,
  .counter-heading h2 {
    font-size: 32px !important;
  }

  .purpose-card h3 {
  font-size: 16px;
}

.purpose-card p {
  font-size: 16px;
}

.purpose-ribbon {
    width: 50px;
}

.section-kicker{
  font-size: 14px !important;
}
}

.trust-icon img,
.feature-icon img,
.promo-foot span img,
.promo-call > span img,
.promotion-note span img,
.service-icon img,
.dark-icon img,
.customer-item span img,
.testimonial-arrow img,
.coverage-icon img,
.faq-icon img,
.cta-points span img,
.btn-icon img,
.call-icon img,
.footer-top-actions img,
.value-icon img,
.counter-icon img,
.contact-info-icon img,
.footer-top-item span img,
.footer-contact span img,
.purpose-ribbon img {
  position: static;
  inset: auto;
  display: block;
  width: 1em;
  height: 1em;
  object-fit: contain;
  object-position: center;
  transform: none;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(14%) sepia(19%) saturate(1067%) hue-rotate(340deg) brightness(95%) contrast(88%);
}

.feature-icon img{
    width: 40px !important;
  height: 40px !important;
  }

.service-link .btn-icon img {
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.service-link:hover .btn-icon img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(19%) saturate(1067%) hue-rotate(340deg) brightness(95%) contrast(88%);
}

.contact-submit span img {
  filter: brightness(0) invert(1);
}

.stars {
  display: inline-flex;
  gap: 4px;
}

.stars img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.dark-icon img, 
.purpose-ribbon img,
.coverage-icon img,
.footer-top-item span img {
  filter: brightness(0) saturate(100%) invert(96%) sepia(10%) saturate(564%) hue-rotate(318deg) brightness(106%) contrast(98%);
}

.testimonial-arrow:hover img {
  filter: brightness(0) saturate(100%) invert(96%) sepia(10%) saturate(564%) hue-rotate(318deg) brightness(106%) contrast(98%);
}

.stars img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(24%) saturate(641%) hue-rotate(356deg) brightness(91%) contrast(87%);
}

.footer-top-actions img,
.footer-contact span img {
  filter: brightness(0) saturate(100%) invert(96%) sepia(10%) saturate(564%) hue-rotate(318deg) brightness(106%) contrast(98%);
}

.nav-cta img,
.about-hero-actions .btn-primary .btn-icon img[src$="whatsapp.svg"],
.btn-primary .btn-icon img[src$="whatsapp.svg"],
.cta-whatsapp .btn-icon img[src$="whatsapp.svg"],
.about-btn .btn-icon img[src$="whatsapp.svg"],
.promo-whatsapp .btn-icon img[src$="whatsapp.svg"] {
  filter: none;
  clip-path: none;
}

.btn-secondary .btn-icon img {
  filter: brightness(0) invert(1);
}

.about-story-btn .btn-icon img {
  filter: brightness(0) invert(1);
}

.about-story-btn:hover .btn-icon img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(19%) saturate(1067%) hue-rotate(340deg) brightness(95%) contrast(88%);
}

.value-icon {
  position: relative;
  display: grid;
  place-items: center;
}

.value-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: 0;
  transform: translate(-50%, -50%);
}

.about-icon-feature img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(19%) saturate(1067%) hue-rotate(340deg) brightness(95%) contrast(88%);
  width: 36px !important;
  height: 36px !important;
}

.promo-foot span img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(7%) saturate(747%) hue-rotate(315deg) brightness(105%) contrast(101%) !important;
}
