:root {
    --navy: #0d1b2e;
    --navy-soft: #142943;
    --amber: #f5a623;
    --amber-dark: #d88c0a;
    --muted: #9fb0c3;
    --border: #e9edf2;
    --border-dark: rgba(159, 176, 195, 0.18);
    --ink: #0d1b2e;

    --crimson:   #f5a623;
    --crimson-d: #d88c0a; 
    --gold-l:    #e8cc7a;
    --font-body: 'DM Sans', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  color: var(--ink);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===== MINIMAL SCROLL ANIMATIONS CSS ===== */
/* All animations handled by JavaScript directly */

.scroll-animate {
  opacity: 0;
  will-change: opacity, transform;
}

.scroll-animate.fade-in,
.scroll-animate.slide-left,
.scroll-animate.slide-right,
.scroll-animate.slide-up,
.scroll-animate.slide-down {
  /* All styling done by JS - nothing here needed */
}

.site-header p {
  margin: 0;
}

/* ============ TOP BAR (desktop) ============ */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.topbar-tagline {
  color: var(--muted);
  font-size: 0.82rem;
}

.topbar-tagline a {
  color: var(--amber);
  font-weight: 600;
  border-bottom: 1px solid var(--amber);
}

.contact-row {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-item i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

.contact-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

/* ============ MAIN NAV (desktop) ============ */
.main-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 1.3rem 1rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.nav-links > li > a:hover {
  color: var(--amber-dark);
}

.nav-links .fa-chevron-down {
  font-size: 0.6rem;
  margin-left: 0.35rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.8rem;
}

.socials a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

.cta-btn {
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--amber-dark);
  color: var(--navy);
}

.cta-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

/* ============ Products dropdown (desktop, simple static columns) ============ */
.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: -50px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(13, 27, 46, 0.15);
  padding: 1.5rem;
  gap: 2rem;
  z-index: 999;
}

.has-dropdown:hover .dropdown-panel {
  display: flex;
}

.dropdown-col {
  width: 190px;
}

.dropdown-col .col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--amber);
}

.dropdown-col a {
  display: block;
  padding: 0.4rem 0;
  color: #4a5568;
  font-size: 0.83rem;
}

.dropdown-col a:hover {
  color: var(--amber-dark);
}

/* ============ MOBILE BAR (logo + hamburger only) ============ */
.mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #bbbbbb;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger-btn {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
}

/* ============ Offcanvas mobile menu ============ */
.offcanvas-header {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-links > li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-links > li > a,
.mobile-nav-links > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 0;
  background: none;
  border: none;
  text-align: left;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.mobile-dropdown {
  padding: 0.5rem 0 1rem 0.5rem;
}

.mobile-dropdown .col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber-dark);
  margin: 0.7rem 0 0.3rem;
}

.mobile-dropdown a {
  display: block;
  padding: 0.4rem 0;
  color: #4a5568;
  font-size: 0.85rem;
}

.mobile-contact {
  margin-top: 1.2rem;
}

.mobile-contact .contact-item {
  margin-bottom: 1rem;
}

.mobile-contact .contact-item i {
  color: var(--amber-dark);
  border-color: var(--border);
}

.mobile-contact .contact-label {
  color: var(--muted);
}

.mobile-contact .contact-value {
  color: var(--ink);
}

.mobile-socials {
  display: flex;
  gap: 0.5rem;
  margin: 1.2rem 0;
}

.mobile-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.8rem;
}

/* ============ Responsive switch ============ */
@media (max-width: 991.98px) {
  .topbar,
  .main-nav {
    display: none;
  }

  .mobile-bar {
    display: flex;
  }
}

/* ── Section wrapper ── */
.about-spe {
  /* max-width: 1100px; */
  /* width: 100%; */
  background: #fff;
  padding: 72px 0px;
  position: relative;
  box-shadow: 0 2px 60px rgba(13, 27, 46, 0.07);
  overflow: hidden;
}

/* ── Float container ── */
.about-spe__body {
  position: relative;
}

.about-spe__body::after {
  content: "";
  display: table;
  clear: both;
}

/* ── Floated visual block (replaces photo with a navy panel) ── */
.about-spe__img-wrap {
  float: right;
  width: 42%;
  margin: 6px 0 15px 48px;
  position: relative;
  shape-outside: margin-box;
}

.about-spe__panel {
  width: 100%;
  height: 520px;

  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* blueprint grid backdrop */
.about-spe__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.about-spe__panel-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.18),
    transparent 70%
  );
  pointer-events: none;
}

.about-spe__panel-caption {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  text-align: center;
}

.about-spe__panel-caption p {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-spe__panel-caption strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  margin-top: 8px;
}

.about-spe__img-wrap::before {
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border-top: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
  z-index: 0;
  pointer-events: none;
}

.about-spe__img-wrap::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 60%;
  height: 60%;
  border-bottom: 2px solid var(--amber-dark);
  border-left: 2px solid var(--amber-dark);
  z-index: 0;
  pointer-events: none;
}

/* ── Floating badge (overlaps bottom-left of panel) ── */
.about-spe__badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--navy);
  color: #fff;
  padding: 22px 26px;
  text-align: center;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: spe-float-badge 3.6s ease-in-out infinite;
}

@keyframes spe-float-badge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-spe__badge-number {
  font-family: "Sora", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
  display: block;
}

.about-spe__badge-label {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* ── Excavator lane: sits in the lower area of the panel, drives back and forth ── */
.about-spe__lane {
  position: absolute;
  bottom: 90px;
  right: 150px;
  /* left: 24px; */
  height: 90px;
  max-width: 300px;
}

.about-spe__lane-road {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--amber) 0,
    var(--amber) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.5;
}

.about-spe__truck {
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 250px;
  animation: spe-drive 10s ease-in-out infinite alternate;
}

.about-spe__truck img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.4));
  animation: spe-flip 10s steps(1) infinite alternate;
}

.about-spe__truck-shadow {
  position: absolute;
  bottom: -6px;
  left: 10%;
  width: 100%;
  height: 8px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5), transparent 70%);
  animation: spe-shadow 10s ease-in-out infinite alternate;
}

@keyframes spe-drive {
  from {
    left: 0;
  }

  to {
    left: calc(100% - 108px);
  }
}

@keyframes spe-flip {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(-1);
  }
}

@keyframes spe-shadow {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.3;
  }
}

/* ── Text content ── */
.about-spe__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 18px;
  text-align: center;
}

.about-spe__title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.16;
  color: var(--navy);
  margin-bottom: 28px;
}

.about-spe__title em {
  font-style: italic;
  color: var(--amber-dark);
}

.about-spe__lead {
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.8;
  color: #3d4a5c;
  margin-bottom: 22px;
}

.about-spe__body p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #5b6675;
  margin-bottom: 18px;
}

.about-spe__rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 30px 0;
}

/* ── Stats row ── */
.about-spe__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 36px;
}

.about-spe__stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

.about-spe__stat:last-child {
  border-right: none;
}

.about-spe__stat-num {
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber-dark);
  display: block;
  line-height: 1;
}

.about-spe__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* ── CTA ── */
.about-spe__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 30px;
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    gap 0.25s;
  border: none;
}

.about-spe__cta:hover {
  background: var(--amber-dark);
  gap: 16px;
}

.about-spe__cta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .about-spe {
    padding: 52px 36px;
  }

  .about-spe__img-wrap {
    width: 48%;
    margin-left: 32px;
  }

  .about-spe__panel {
    height: 420px;
  }

  .about-spe__lane {
    bottom: 70px;
  }
}

@media (max-width: 600px) {
  .about-spe {
    padding: 40px 24px;
  }

  .about-spe__img-wrap {
    float: none;
    width: 100%;
    margin: 0 0 40px 0;
  }

  .about-spe__panel {
    height: 300px;
  }

  .about-spe__panel-caption {
    top: 24px;
  }

  .about-spe__lane {
    bottom: -60px;
    left: 16px;
    right: 16px;
    height: 70px;
  }

  .about-spe__truck {
    width: 78px;
  }

  @keyframes spe-drive {
    from {
      left: 0;
    }

    to {
      left: calc(100% - 78px);
    }
  }

  .about-spe__badge {
    left: 16px;
    bottom: 16px;
    padding: 16px 20px;
  }

  .about-spe__badge-number {
    font-size: 2rem;
  }

  .about-spe__stats {
    flex-wrap: wrap;
  }

  .about-spe__stat {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 10px;
  }

  .about-spe__stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .about-spe__stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

.spe-products {
  padding: 80px 0;
}

.spe-products p {
  margin: 0;
}

/* ── Section header ── */
.spe-products__head {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 44px;
}

.spe-products__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 14px;
}

.spe-products__title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.spe-products__sub {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #5b6675;
}

/* ── Category toggle ── */
.spe-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 44px;
}

.spe-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.spe-filter-btn i {
  font-size: 0.8rem;
  color: var(--amber-dark);
}

.spe-filter-btn:hover {
  border-color: var(--amber);
}

.spe-filter-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.spe-filter-btn.is-active i {
  color: var(--amber);
}

/* ── Product card ── */
.spe-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.spe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(13, 27, 46, 0.1);
}

.spe-card__media {
  position: relative;
  /* height: 160px; */
  background: linear-gradient(135deg, var(--navy), #1c3a5e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spe-card__media img {
  object-fit: cover;
  width: 100%;
}

.spe-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.spe-card__body {
  padding: 1.2rem 1.3rem 1.4rem;
  border-top: 1px solid #e9edf2;
}

.spe-card__name {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.spe-card__desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #6b7686;
  margin-bottom: 1rem;
}

.spe-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.spe-card__brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--amber-dark);
}

.spe-card__brand i {
  font-size: 0.75rem;
}

.spe-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.spe-card__link i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  transition: background 0.2s ease;
}

.spe-card__link:hover i {
  background: var(--amber-dark);
}

/* hidden state for filtered-out cards */
.spe-card-col.is-hidden {
  display: none;
}

.spe-why {
  padding: 90px 0;
  overflow: hidden;
  background: #fffcf1;
}

/* ================= Visual side ================= */
.spe-why__visual {
  position: relative;
  padding: 20px 30px 40px 0;
}

.spe-why__img-main {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(13, 27, 46, 0.16);
}

.spe-why__img-main img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.spe-why__img-sub {
  position: absolute;
  right: -115px;
  bottom: 0;
  width: 50%;
  border-radius: 14px;
  overflow: hidden;
  /* border: 6px solid #fff; */
  /* box-shadow: 0 20px 40px rgba(13, 27, 46, 0.2); */
  z-index: 2;
}

.spe-why__img-sub img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.spe-why__badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--navy);
  color: #fff;
  padding: 18px 22px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  animation: spe-badge-float 3.6s ease-in-out infinite;
}

.spe-why__badge-num {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--amber);
  display: block;
  line-height: 1;
}

.spe-why__badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

@keyframes spe-badge-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ── Floating dotted patterns (premium accent) ── */
.spe-dots {
  position: absolute;
  background-image: radial-gradient(
    circle,
    var(--amber) 1.6px,
    transparent 1.6px
  );
  background-size: 16px 16px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.spe-dots--tl {
  top: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  animation: spe-dots-drift 7s ease-in-out infinite;
}

.spe-dots--br {
  bottom: -18px;
  right: 8%;
  width: 100px;
  height: 100px;
  animation: spe-dots-drift 8s ease-in-out infinite reverse;
  animation-delay: 0.6s;
}

@keyframes spe-dots-drift {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(12px, -14px);
  }
}

/* ================= Content side ================= */
.spe-why__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 14px;
}

.spe-why__title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 18px;
}

.spe-why__title span {
  color: var(--amber-dark);
}

.spe-why__lead {
  font-size: 0.96rem;
  line-height: 1.8;
  color: #5b6675;
  margin-bottom: 34px;
}

/* ── Feature grid ── */
.spe-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.spe-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.spe-feature__title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.spe-feature__desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #6b7686;
}

/* ── CTA ── */
.spe-why__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 14px 28px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.spe-why__cta:hover {
  background: var(--amber-dark);
}

.spe-why__cta-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

/* ================= Responsive ================= */
@media (max-width: 991.98px) {
  .spe-why__visual {
    padding: 20px 20px 60px 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .spe-why {
    padding: 60px 0;
  }

  .spe-why__img-main img {
    height: 300px;
  }

  .spe-why__img-sub {
    width: 100%;
  }

  .spe-why__img-sub img {
    height: 160px;
  }
}

/* =========================================
           Product Listing Section (spl)
        ========================================= */
.spl-section {
  background: #f7f9fb;
  padding: 90px 0;
}

.spl-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.spl-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}

.spl-section__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.spl-section__title {
  font-size: 34px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.spl-section__desc {
  color: var(--muted);
  font-size: 15px;
  max-width: 480px;
  margin: 10px 0 0;
}

.spl-section__nav {
  display: flex;
  gap: 10px;
}

.spl-section__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.spl-section__arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* =========================================
           Product Card (spe-card)
        ========================================= */
.spe-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.spe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(13, 27, 46, 0.22);
  border-color: transparent;
}

.spe-card__media {
  position: relative;
  background: #f2f4f7;
  aspect-ratio: 4 / 4;
  overflow: hidden;
}

.spe-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.spe-card:hover .spe-card__media img {
  transform: scale(1.06);
}

.spe-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 27, 46, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.spe-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.spe-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.spe-card__name:hover {
  color: var(--amber-dark);
}

.spe-card__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.spe-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.spe-card__brand {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spe-card__brand i {
  color: var(--amber);
}

.spe-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spe-card__link i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: background 0.25s ease;
}

.spe-card__link:hover i {
  background: var(--amber-dark);
}

/* Owl overrides */
.spl-carousel .owl-stage-outer {
  padding: 6px 4px 26px;
}

.spl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.spl-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  background: var(--border);
  border-radius: 50%;
  display: block;
  transition:
    background 0.25s ease,
    width 0.25s ease;
}

.spl-carousel .owl-dot.active span {
  background: var(--amber);
  width: 22px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .spl-section {
    padding: 60px 0;
  }

  .spl-section__title {
    font-size: 26px;
  }
}

/* =========================================
           Testimonial Section (tst)
        ========================================= */
.tst-section {
  position: relative;
  background: var(--navy);
  padding: 100px 0 90px;
  overflow: hidden;
}

/* ambient glow — signature detail */
.tst-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.16) 0%,
    rgba(245, 166, 35, 0) 70%
  );
  pointer-events: none;
}

.tst-section::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.09) 0%,
    rgba(245, 166, 35, 0) 70%
  );
  pointer-events: none;
}

.tst-section__inner {
  position: relative;
  z-index: 1;
}

.tst-section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.tst-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.tst-section__eyebrow::before,
.tst-section__eyebrow::after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.tst-section__title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
}

.tst-section__title span {
  color: var(--amber);
}

.tst-section__desc {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* trust strip */
.tst-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 28px;
}

.tst-stats__item {
  text-align: center;
}

.tst-stats__num {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.tst-stats__label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

/* =========================================
           Testimonial Card (tst-card)
        ========================================= */
.tst-card {
  position: relative;
  background: var(--navy-soft);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 34px 30px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tst-card:hover {
  border-color: rgba(245, 166, 35, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -22px rgba(0, 0, 0, 0.55);
}

.tst-card__quote-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 18px;
}

.tst-card__stars {
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.tst-card__text {
  color: #dbe4ee;
  font-size: 14.5px;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 24px;
}

.tst-card__foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.tst-card__avatar {
  width: 48px !important;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245, 166, 35, 0.5);
  flex-shrink: 0;
}

.tst-card__name {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.tst-card__role {
  font-size: 12.5px;
  color: var(--muted);
  margin: 2px 0 0;
}

.tst-card__badge {
  margin-left: auto;
  color: rgba(245, 166, 35, 0.6);
  font-size: 22px;
  line-height: 1;
}

/* =========================================
           Carousel chrome
        ========================================= */
.tst-carousel .owl-stage-outer {
  padding: 6px 4px 10px;
}

.tst-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.tst-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  background: var(--border-dark);
  border-radius: 50%;
  display: block;
  transition:
    background 0.25s ease,
    width 0.25s ease;
}

.tst-carousel .owl-dot.active span {
  background: var(--amber);
  width: 24px;
  border-radius: 5px;
}

.tst-section__nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.tst-section__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.tst-section__arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

@media (max-width: 767px) {
  .tst-section {
    padding: 70px 0 60px;
  }

  .tst-section__title {
    font-size: 27px;
  }

  .tst-stats {
    gap: 26px;
  }

  .tst-card {
    padding: 28px 22px 24px;
  }
}

/* =========================================
           FAQ Section — Light (faq)
        ========================================= */
.faq-section {
  position: relative;
  background: #f7f9fb;
  padding: 100px 0;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.1) 0%,
    rgba(245, 166, 35, 0) 70%
  );
  pointer-events: none;
}

.faq-section__row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 64px;
}

/* ---- Left sticky column ---- */
.faq-aside {
  flex: 0 0 340px;
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.faq-aside__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 16px;
}

.faq-aside__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.faq-aside__title {
  font-size: 34px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 14px;
}

.faq-aside__title span {
  color: var(--amber-dark);
}

.faq-aside__desc {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 28px;
}

.faq-aside__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 16px 30px -20px rgba(13, 27, 46, 0.18);
}

.faq-aside__cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.12);
  color: var(--amber-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.faq-aside__cta-label {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 2px;
}

.faq-aside__cta-link {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.faq-aside__cta-link:hover {
  color: var(--amber-dark);
}

/* ---- Right accordion column ---- */
.faq-list {
  flex: 1 1 auto;
  min-width: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.faq-item__label {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 6px;
  cursor: pointer;
  user-select: none;
}

.faq-item__num {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-dark);
  width: 30px;
}

.faq-item__question {
  flex-grow: 1;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.25s ease;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

/* animated panel via grid-template-rows trick — pure CSS, no JS */
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__answer {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.75;
  padding: 0 6px 0 50px;
  margin: 0;
}

/* checked state */
.faq-item__input:checked ~ .faq-item__label .faq-item__question {
  color: var(--amber-dark);
}

.faq-item__input:checked ~ .faq-item__label .faq-item__icon {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
  transform: rotate(45deg);
}

.faq-item__input:checked ~ .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__input:checked ~ .faq-item__panel .faq-item__answer {
  padding-bottom: 26px;
}

/* keyboard focus visibility */
.faq-item__input:focus-visible ~ .faq-item__label {
  outline: 2px solid var(--amber);
  outline-offset: -2px;
  border-radius: 8px;
}

/* =========================================
           Responsive
        ========================================= */
@media (max-width: 991px) {
  .faq-section__row {
    flex-direction: column;
    gap: 44px;
  }

  .faq-aside {
    position: static;
    flex: 1 1 auto;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-aside__title {
    font-size: 26px;
  }

  .faq-item__label {
    gap: 14px;
    padding: 20px 2px;
  }

  .faq-item__question {
    font-size: 15px;
  }

  .faq-item__num {
    width: 22px;
    font-size: 12px;
  }

  .faq-item__answer {
    padding-left: 36px;
    font-size: 13.5px;
  }

  .faq-item__icon {
    width: 30px;
    height: 30px;
  }
}

/* =========================================
    CTA / Contact Section (cta)
========================================= */
.cta-section {
  position: relative;
  background-image:
    linear-gradient(180deg, rgb(13 27 46 / 43%), rgb(13 27 46 / 42%)),
    url(../image/img/2960961.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.14) 0%,
    rgba(245, 166, 35, 0) 70%
  );
  pointer-events: none;
}

.cta-section__head {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 0 52px;
}

.cta-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.cta-section__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.cta-section__title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
}

.cta-section__title span {
  color: var(--amber);
}

.cta-section__desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.cta-section__row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  align-items: stretch;
}

/* =========================================
    Form panel
========================================= */
.cta-form {
  flex: 1 1 58%;
  background: var(--navy-soft);
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  padding: 40px;
}

.cta-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cta-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-form__group--full {
  grid-column: 1 / -1;
}

.cta-form__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-form__control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14.5px;
  color: #fff;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.cta-form__control::placeholder {
  color: rgba(159, 176, 195, 0.6);
}

.cta-form__control:focus {
  border-color: var(--amber);
  background: rgba(245, 166, 35, 0.06);
}

select.cta-form__control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1L6 6L11 1' stroke='%239fb0c3' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.cta-form__control option {
  background: var(--navy-soft);
  color: #fff;
}

textarea.cta-form__control {
  resize: none;
  min-height: 120px;
}

.cta-form__submit {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.cta-form__submit:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
}

/* =========================================
    Info panel
========================================= */
.cta-info {
  flex: 1 1 42%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-info__card {
  background: var(--navy-soft);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s ease;
}

.cta-info__card:hover {
  border-color: rgba(245, 166, 35, 0.4);
}

.cta-info__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.cta-info__label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.cta-info__value {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}

.cta-info__value a {
  color: inherit;
  text-decoration: none;
}

.cta-info__value a:hover {
  color: var(--amber);
}

.cta-info__map {
  flex-grow: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  min-height: 200px;
  position: relative;
}

.cta-info__map iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
  display: block;
}

.cta-info__map-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--navy);
  border: 1px solid var(--border-dark);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.cta-info__map-badge i {
  color: var(--amber);
}

/* =========================================
    Responsive
========================================= */
@media (max-width: 991px) {
  .cta-section__row {
    flex-direction: column;
  }

  .cta-info__map {
    min-height: 220px;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-section__title {
    font-size: 27px;
  }

  .cta-form {
    padding: 26px 22px;
    border-radius: 14px;
  }

  .cta-form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-form__submit {
    width: 100%;
    justify-content: center;
  }

  .cta-info__card {
    padding: 18px 20px;
  }
}

/* =========================================
           Footer (ftr)
        ========================================= */
.ftr {
  position: relative;
  background: var(--navy-soft);
  padding: 80px 0 0;
  overflow: hidden;
}

.ftr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.ftr::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.1) 0%,
    rgba(245, 166, 35, 0) 70%
  );
  pointer-events: none;
}

.ftr__row {
  position: relative;
  z-index: 1;
}

/* ---- Brand column ---- */
.ftr__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.ftr__brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--amber);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.ftr__brand-name {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.ftr__brand-name span {
  color: var(--amber);
}

.ftr__about {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 300px;
}

.ftr__social {
  display: flex;
  gap: 10px;
}

.ftr__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.ftr__social a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ---- Link columns ---- */
.ftr__heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 12px;
}

.ftr__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: var(--amber);
}

.ftr__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ftr__links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

.ftr__links a i {
  font-size: 10px;
  color: var(--amber);
  transition: transform 0.2s ease;
}

.ftr__links a:hover {
  color: #fff;
}

.ftr__links a:hover i {
  transform: translateX(3px);
}

/* ---- Contact column ---- */
.ftr__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.ftr__contact-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.ftr__contact-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.ftr__contact-text a {
  color: var(--muted);
  text-decoration: none;
}

.ftr__contact-text a:hover {
  color: var(--amber);
}

/* ---- Newsletter ---- */
.ftr__newsletter {
  margin-top: 8px;
}

.ftr__newsletter-label {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
}

.ftr__newsletter-form {
  display: flex;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.ftr__newsletter-form input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 13.5px;
  color: #fff;
}

.ftr__newsletter-form input::placeholder {
  color: rgba(159, 176, 195, 0.6);
}

.ftr__newsletter-form button {
  border: none;
  background: var(--amber);
  color: var(--navy);
  width: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.25s ease;
}

.ftr__newsletter-form button:hover {
  background: var(--amber-dark);
}

/* ---- Bottom bar ---- */
.ftr__bottom {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ftr__copy {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.ftr__copy a {
  color: var(--amber);
  text-decoration: none;
}

.ftr__legal {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ftr__legal a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ftr__legal a:hover {
  color: #fff;
}

/* =========================================
           Responsive
        ========================================= */
@media (max-width: 991px) {
  .ftr {
    padding: 60px 0 0;
  }

  .ftr__row > [class^="col-"] {
    /* margin-bottom: 40px; */
  }
}

@media (max-width: 767px) {
  .ftr__bottom {
    flex-direction: column;
    text-align: center;
  }

  .ftr__about {
    max-width: 100%;
  }
}


/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
    .wa-float {
      position: fixed;
      left: 24px;
      bottom: 28px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
    }

    /* Tooltip bubble above the button */
    .wa-tooltip {
      background: #fff;
      border-radius: 14px 14px 14px 4px;
      box-shadow: 0 8px 32px rgba(0,0,0,.14), 0 1px 4px rgba(0,0,0,.08);
      padding: 10px 14px;
      margin-bottom: 10px;
      max-width: 210px;
      position: relative;
      transform: translateY(6px) scale(.94);
      opacity: 0;
      pointer-events: none;
      transition: opacity .28s cubic-bezier(.22,1,.36,1),
                  transform .28s cubic-bezier(.22,1,.36,1);
      transform-origin: bottom left;
    }
    .wa-float:hover .wa-tooltip {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .wa-tip-name {
      font-size: .72rem;
      font-weight: 700;
      color: #111;
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 3px;
    }
    .wa-tip-name::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #25d366;
      flex-shrink: 0;
      animation: pulse-dot 1.8s ease infinite;
    }
    @keyframes pulse-dot {
      0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
      50%      { box-shadow: 0 0 0 5px rgba(37,211,102,0); }
    }
    .wa-tip-msg {
      font-size: .68rem;
      color: #555;
      line-height: 1.5;
    }
    /* Tiny tail on tooltip */
    .wa-tooltip::after {
      content: '';
      position: absolute;
      bottom: -8px; left: 18px;
      border: 5px solid transparent;
      border-top-color: #fff;
      filter: drop-shadow(0 2px 2px rgba(0,0,0,.06));
    }

    /* Main WA button */
    .wa-btn {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
      cursor: pointer;
      text-decoration: none;
    }

    /* Outer animated ring */
    .wa-ring {
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 2px solid rgba(37,211,102,.35);
      animation: wa-spin-ring 6s linear infinite;
      pointer-events: none;
    }
    .wa-ring::before {
      content: '';
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #25d366;
      box-shadow: 0 0 6px #25d366;
    }
    @keyframes wa-spin-ring {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Second pulse ring */
    .wa-pulse-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: rgba(37,211,102,.15);
      animation: wa-pulse 2.4s ease-out infinite;
      pointer-events: none;
    }
    @keyframes wa-pulse {
      0%   { transform: scale(1);   opacity: .8; }
      100% { transform: scale(1.9); opacity: 0;  }
    }

    /* Circle core */
    .wa-circle {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,.5),
                  0 2px 8px rgba(0,0,0,.15);
      transition: transform .28s cubic-bezier(.22,1,.36,1),
                  box-shadow .28s;
      position: relative;
      z-index: 2;
    }
    .wa-btn:hover .wa-circle {
      transform: scale(1.1) rotate(-8deg);
      box-shadow: 0 10px 36px rgba(37,211,102,.65),
                  0 4px 12px rgba(0,0,0,.2);
    }
    .wa-circle i {
      font-size: 1.55rem;
      color: #fff;
      filter: drop-shadow(0 1px 3px rgba(0,0,0,.2));
    }

    /* "Chat" label pill that slides out on hover */
    .wa-label-pill {
      background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 0 0 0 0;
      border-radius: 0 50px 50px 0;
      max-width: 0;
      overflow: hidden;
      white-space: nowrap;
      opacity: 0;
      margin-left: -10px;
      height: 40px;
      display: flex;
      align-items: center;
      transition: max-width .35s cubic-bezier(.22,1,.36,1),
                  opacity .28s,
                  padding .28s,
                  margin .28s;
      box-shadow: 0 4px 18px rgba(37,211,102,.35);
    }
    .wa-btn:hover .wa-label-pill {
      max-width: 130px;
      opacity: 1;
      padding: 0 16px 0 14px;
      margin-left: -8px;
    }

    /* Notification badge */
    .wa-badge {
      position: absolute;
      top: -3px; right: -3px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--crimson);
      color: #fff;
      font-size: .55rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #fff;
      z-index: 3;
      animation: badge-bounce .6s .5s ease both;
    }
    @keyframes badge-bounce {
      0%,100% { transform: scale(1);    }
      50%      { transform: scale(1.25); }
    }


    /* ══════════════════════════════════════════════
       GO TO TOP — RIGHT BOTTOM
    ══════════════════════════════════════════════ */
    .gtt-float {
      position: fixed;
      right: 24px;
      bottom: 28px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
      transition: opacity .35s, transform .35s cubic-bezier(.22,1,.36,1);
    }
    .gtt-float.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    /* Circular progress track */
    .gtt-btn {
      position: relative;
      width: 54px;
      height: 54px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* SVG progress ring */
    .gtt-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }
    .gtt-track {
      fill: none;
      stroke: rgba(22,39,64,.1);
      stroke-width: 2.5;
    }
    .gtt-progress {
      fill: none;
      stroke: var(--crimson);
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-dasharray: 150.8;
      stroke-dashoffset: 150.8;
      transition: stroke-dashoffset .1s linear;
    }

    /* Inner circle */
    .gtt-inner {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .82rem;
      position: relative;
      z-index: 2;
      box-shadow: 0 4px 18px rgba(22,39,64,.35);
      transition: background .25s, transform .28s cubic-bezier(.22,1,.36,1);
    }
    .gtt-btn:hover .gtt-inner {
      background: var(--crimson);
      transform: scale(1.1);
      box-shadow: 0 6px 24px rgba(139,26,46,.45);
    }
    .gtt-btn:hover .gtt-inner i {
      animation: arrow-up .4s ease both;
    }
    @keyframes arrow-up {
      0%   { transform: translateY(0); opacity: 1; }
      45%  { transform: translateY(-6px); opacity: 0; }
      46%  { transform: translateY(6px); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }

    /* Tiny % label below */
    .gtt-pct {
      font-size: .58rem;
      font-weight: 700;
      color: var(--muted, #6b7a8d);
      letter-spacing: .06em;
      text-align: center;
      line-height: 1;
    }

    /* ── Responsive tweak ── */
    @media (max-width: 480px) {
      .wa-float  { left: 16px; bottom: 20px; }
      .gtt-float { right: 16px; bottom: 20px; }
      .wa-circle { width: 52px; height: 52px; }
      .wa-circle i { font-size: 1.35rem; }
    }