/* ==================================================================
   POPULAR SAFETY NETS — style.css
   All theme colours live in :root — change here to re-skin the site.
   ================================================================== */

:root {
  /* ---- BRAND COLOURS (edit these) ---- */
  --c-primary: #0b2b5c;
  /* deep navy */
  --c-primary-dark: #071d3f;
  --c-secondary: #e11d2a;
  /* brand red */
  --c-accent: #f5a623;
  /* amber accent */
  --c-accent-2: #1b9e77;
  /* net green (subtle use) */

  /* ---- NEUTRALS ---- */
  --c-ink: #16233b;
  /* body text */
  --c-muted: #5b6a82;
  /* secondary text */
  --c-line: #e6ebf3;
  /* borders */
  --c-bg: #ffffff;
  /* base white */
  --c-bg-soft: #f5f8fc;
  /* soft section bg */
  --c-bg-tint: #eef3fb;
  /* tinted section bg */
  --c-white: #ffffff;

  /* ---- TYPE ---- */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* ---- SHAPE / SHADOW ---- */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(11, 43, 92, .07);
  --shadow-md: 0 12px 30px rgba(11, 43, 92, .10);
  --shadow-lg: 0 22px 50px rgba(11, 43, 92, .16);

  /* ---- LAYOUT ---- */
  --section-pad: 92px;
  --topbar-h: 40px;
  --header-h: 74px;
}

/* ==================================================================
   BASE
   ================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* smooth anchor scrolling */
  scroll-padding-top: calc(var(--header-h) + 10px);
  overflow-x: clip;
  /* clip, not hidden — keeps sticky working */
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.65;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .25s ease;
}

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

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

::selection {
  background: var(--c-secondary);
  color: #fff;
}

/* ==================================================================
   REUSABLE HELPERS
   ================================================================== */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 54px;
}

.hl {
  color: var(--c-secondary);
}

.hl-alt {
  color: var(--c-accent);
}

/* Eyebrow label */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: 16px;
}

.section-eyebrow span {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--c-accent);
}

.section-eyebrow.center {
  justify-content: center;
}

.section-eyebrow.light {
  color: var(--c-accent);
}

.section-eyebrow.light span {
  background: var(--c-accent);
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -.5px;
  margin-bottom: 18px;
}

.section-lead,
.section-head .section-lead {
  color: var(--c-muted);
  font-size: 1.06rem;
}

/* Buttons */
.btn-cta {
  --b: var(--c-secondary);
  background: var(--b);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 20px rgba(225, 29, 42, .28);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-cta:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(225, 29, 42, .38);
  background: #c9111e;
}

.btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .5);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  backdrop-filter: blur(4px);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--c-primary);
  transform: translateY(-3px);
  border-color: #fff;
}

.btn-wa {
  background: #25d366;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-wa:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, .4);
}

/* Scroll-reveal base state (JS adds .in-view) */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* Gentle float loop for badges (decorative, not a marquee) */
@keyframes floatSoft {

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

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

.float-soft {
  animation: floatSoft 4.5s ease-in-out infinite;
}

/* ==================================================================
   1. TOP BAR
   ================================================================== */
.topbar {
  background: var(--c-primary-dark);
  color: #d7e2f3;
  font-size: .84rem;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 6px 0;
}

.topbar a {
  color: #d7e2f3;
}

.topbar a:hover {
  color: var(--c-accent);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, .2);
}

.topbar-note {
  color: #aebfd8;
}

.topbar-social {
  display: flex;
  gap: 12px;
  font-size: 1rem;
}

.topbar-social a:hover {
  transform: translateY(-2px);
  display: inline-block;
}

/* ==================================================================
   2. STICKY HEADER
   ================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 2px 0 var(--c-line);
  transition: box-shadow .3s ease, padding .3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header .navbar {
  min-height: var(--header-h);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--c-secondary);
  font-size: 1.15rem;
  letter-spacing: -.3px;
}

.brand-text em {
  font-family: var(--font-head);
  font-style: normal;
  font-weight: 700;
  color: var(--c-primary);
  font-size: 1rem;
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--c-ink);
  padding: 8px 14px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--c-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--c-secondary);
}

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

.navbar-toggler {
  border: none;
  font-size: 1.6rem;
  color: var(--c-primary);
}

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

.btn-cta i {
  font-size: 1rem;
}

/* ==================================================================
   3. HERO CAROUSEL
   ================================================================== */
.hero {
  position: relative;
}

.hero-carousel {
  position: relative;
  height: clamp(560px, 82vh, 760px);
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease, transform 6s ease;
  /* fallback colour if image path is empty */
  background-color: var(--c-primary);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 1, 2, 0.92) 0%, rgba(0, 0, 0, 0.568) 42%, rgba(0, 0, 0, 0) 78%, rgba(7, 29, 63, .05) 100%);
}

.hero-content-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
  color: #fff;
}

/* content sits on the LEFT */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, .18);
  border: 1px solid rgba(245, 166, 35, .5);
  color: #ffd487;
  padding: 7px 16px;
  border-radius: 40px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-title .hl {
  color: var(--c-accent);
}

.hero-title .hl-alt {
  color: #7fd7c4;
}

.hero-sub {
  font-size: 1.08rem;
  color: #dbe6f5;
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badges i {
  color: var(--c-accent);
  font-size: 1.1rem;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 1.3rem;
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.hero-arrow:hover {
  background: var(--c-secondary);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: all .3s ease;
}

.hero-dots button.active {
  background: var(--c-accent);
  width: 30px;
  border-radius: 10px;
}

/* ==================================================================
   4. MARQUEE (transform driven by requestAnimationFrame in JS)
   ================================================================== */
.marquee {
  background: linear-gradient(90deg, var(--c-secondary), #c9111e);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 3px solid var(--c-accent);
  border-bottom: 3px solid var(--c-accent);
}

.marquee-track {
  display: inline-flex;
  will-change: transform;
}

.marquee-group {
  display: inline-flex;
}

.marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 34px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .3px;
}

.marquee-group span i {
  color: var(--c-accent);
}

/* ==================================================================
   5. ABOUT
   ================================================================== */
.about {
  background: var(--c-bg);
}

.about-media {
  position: relative;
  padding: 0 20px 40px 0;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-img--main {
  aspect-ratio: 4/3.4;
}

.about-img--main:hover img {
  transform: scale(1.05);
}

.about-img--small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 4/3;
  border: 6px solid #fff;
}

.about-badge {
  position: absolute;
  top: 22px;
  left: -6px;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  text-align: center;
  z-index: 2;
}

.about-badge-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--c-accent);
}

.about-badge-label {
  font-size: .8rem;
  line-height: 1.3;
  margin-top: 2px;
}

.about-decor {
  position: absolute;
  right: -6px;
  top: -14px;
  width: 90px;
  height: 90px;
  border-radius: 14px;
  background: repeating-linear-gradient(45deg, var(--c-accent) 0 2px, transparent 2px 12px), repeating-linear-gradient(-45deg, var(--c-accent) 0 2px, transparent 2px 12px);
  opacity: .35;
  z-index: -1;
}

.about-points {
  margin: 22px 0 26px;
  display: grid;
  gap: 12px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-weight: 500;
  color: var(--c-ink);
}

.about-points i {
  color: var(--c-secondary);
  font-size: 1.2rem;
  margin-top: 2px;
}

/* ==================================================================
   COUNTERS STRIP
   ================================================================== */
.stats {
  background: linear-gradient(120deg, var(--c-primary), var(--c-primary-dark));
  padding: 54px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background: repeating-linear-gradient(45deg, #fff 0 1px, transparent 1px 22px),
    repeating-linear-gradient(-45deg, #fff 0 1px, transparent 1px 22px);
}

.stat-item {
  position: relative;
}

.stat-item i {
  font-size: 2rem;
  color: var(--c-accent);
  margin-bottom: 8px;
  display: block;
}

.stat-num,
.stat-plus {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: #fff;
}

.stat-plus {
  color: var(--c-accent);
}

.stat-item p {
  margin: 4px 0 0;
  color: #c8d6ec;
  font-size: .95rem;
}

/* ==================================================================
   6. SERVICES + BLINK WAVE
   ================================================================== */
.services {
  background: var(--c-bg-soft);
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-img {
  aspect-ratio: 12/10;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  background: var(--c-bg-tint);
}

.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 29, 63, .35));
  opacity: 0;
  transition: opacity .35s ease;
}

.service-body {
  padding: 22px 22px 24px;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.service-body p {
  color: var(--c-muted);
  font-size: .95rem;
  margin-bottom: 14px;
}

.service-link {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--c-secondary);
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link i {
  transition: transform .3s ease;
}

/* Hover: lift + zoom image */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-card:hover .service-img::after {
  opacity: 1;
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* Sequential blink wave — JS toggles .blink-on one card at a time, left to right */
.service-card.blink-on {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, .35), 0 18px 40px rgba(245, 166, 35, .28);
  transform: translateY(-6px);
}

.service-card.blink-on .service-title {
  color: var(--c-secondary);
}

.services-more {
  text-align: center;
  margin-top: 40px;
  color: var(--c-muted);
  font-size: 1.02rem;
}

.services-more a {
  color: var(--c-secondary);
  font-weight: 600;
}

/* ==================================================================
   7. WHY CHOOSE US
   ================================================================== */
.why {
  background: var(--c-bg);
}

.why-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-visual img {
  width: 100%;
  aspect-ratio: 4/3.6;
  object-fit: cover;
}

.why-visual-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--c-secondary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 40px;
  font-family: var(--font-head);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.why-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.why-row {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.why-row:hover {
  background: var(--c-bg-soft);
  border-color: var(--c-line);
  transform: translateX(6px);
}

.why-icon {
  flex: 0 0 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(11, 43, 92, .07);
  color: var(--c-primary);
  transition: background .3s ease, color .3s ease;
}

.why-row:hover .why-icon {
  background: var(--c-secondary);
  color: #fff;
}

.why-row h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 4px;
}

.why-row p {
  margin: 0;
  color: var(--c-muted);
  font-size: .95rem;
}

/* ==================================================================
   8. HOW IT WORKS
   ================================================================== */
.how {
  background: var(--c-bg-tint);
}

.how-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.how-line {
  position: absolute;
  top: 46px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--c-accent) 0 14px, transparent 14px 26px);
  z-index: 0;
}

.how-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line);
  transition: transform .35s ease, box-shadow .35s ease;
}

.how-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.how-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: .95rem;
  box-shadow: var(--shadow-sm);
}

.how-step i {
  font-size: 2.1rem;
  color: var(--c-secondary);
  margin: 8px 0 12px;
  display: block;
}

.how-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 6px;
}

.how-step p {
  margin: 0;
  color: var(--c-muted);
  font-size: .92rem;
}

/* ==================================================================
   10. GALLERY
   ================================================================== */
.gallery {
  background: var(--c-bg);
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  background: var(--c-bg-tint);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 29, 63, .45);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1;
}

.gallery-zoom {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-accent);
  color: #fff;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(.5);
  transition: all .35s ease;
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 14, 30, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}

/* ==================================================================
   11. FAQs
   ================================================================== */
.faq {
  background: var(--c-bg-soft);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--c-primary);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-ico {
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(11, 43, 92, .08);
  color: var(--c-primary);
  display: grid;
  place-items: center;
  transition: transform .35s ease, background .3s ease, color .3s ease;
}

.faq-item.open .faq-ico {
  transform: rotate(135deg);
  background: var(--c-secondary);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--c-muted);
  font-size: .96rem;
}

/* ==================================================================
   12. TESTIMONIALS
   ================================================================== */
.testimonials {
  background: var(--c-bg-tint);
}

.testi-carousel {
  max-width: 820px;
  margin: 0 auto;
}

.testi-track {
  overflow: hidden;
  position: relative;
  min-height: 240px;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px 36px 30px;
  margin: 0;
  box-shadow: var(--shadow-md);
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity .5s ease, transform .5s ease, visibility .5s;
}

.testi-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.testi-quote {
  font-size: 2.6rem;
  color: var(--c-accent);
  opacity: .5;
}

.testi-card blockquote {
  font-size: 1.12rem;
  color: var(--c-ink);
  margin: 6px 0 22px;
  line-height: 1.7;
}

.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
}

.testi-card figcaption strong {
  display: block;
  color: var(--c-primary);
  font-family: var(--font-head);
}

.testi-card figcaption small {
  color: var(--c-muted);
}

.testi-stars {
  margin-left: auto;
  color: var(--c-accent);
  font-size: .95rem;
}

.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.testi-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--c-primary);
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all .25s ease;
}

.testi-controls button:hover {
  background: var(--c-secondary);
  color: #fff;
  transform: translateY(-3px);
}

.testi-dots {
  display: flex;
  gap: 9px;
}

.testi-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  background: rgba(11, 43, 92, .25);
  box-shadow: none;
}

.testi-dots button.active {
  background: var(--c-secondary);
  width: 28px;
  border-radius: 8px;
}

/* ==================================================================
   14. CONTACT
   ================================================================== */
.contact {
  background: linear-gradient(120deg, var(--c-primary), var(--c-primary-dark));
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .06;
  background: repeating-linear-gradient(45deg, #fff 0 1px, transparent 1px 24px),
    repeating-linear-gradient(-45deg, #fff 0 1px, transparent 1px 24px);
}

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

.contact-info {
  color: #dbe6f5;
}

.contact-lead {
  color: #c2d2ea;
  margin-bottom: 26px;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

.contact-details li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-details a {
  color: #dbe6f5;
}

.contact-details a:hover {
  color: var(--c-accent);
}

.ci {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  color: var(--c-accent);
  font-size: 1.15rem;
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 20px;
}

.form-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--c-ink);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: .96rem;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 3px rgba(225, 29, 42, .12);
}

.form-note {
  margin: 14px 0 0;
  font-weight: 600;
  font-family: var(--font-head);
}

.form-note.ok {
  color: #1b9e77;
}

.form-note.err {
  color: var(--c-secondary);
}

/* ==================================================================
   15. FOOTER
   ================================================================== */
.site-footer {
  background: var(--c-primary-dark);
  color: #b9c8e0;
  padding: 62px 0 0;
}

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

.footer-brand .brand-text strong {
  color: #fff;
}

.footer-brand .brand-text em {
  color: var(--c-accent);
}

.footer-about {
  font-size: .94rem;
  color: #9fb2d0;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background .25s ease, transform .25s ease;
}

.footer-social a:hover {
  background: var(--c-secondary);
  transform: translateY(-3px);
}

.footer-head {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 11px;
  font-size: .93rem;
}

.footer-links a:hover {
  color: var(--c-accent);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #9fb2d0;
}

.footer-contact i {
  color: var(--c-accent);
  margin-top: 3px;
}

.footer-contact a {
  color: #b9c8e0;
}

.footer-contact a:hover {
  color: var(--c-accent);
}

.footer-bottom {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .86rem;
  color: #8ea3c4;
}

.footer-bottom p {
  margin: 0;
}

/* ==================================================================
   13. FLOATING BUTTONS (WhatsApp left, Call right) + pulse
   ================================================================== */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease;
}

.float-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

.float-wa {
  left: 22px;
  background: #25d366;
}

.float-call {
  right: 22px;
  background: var(--c-secondary);
}

/* Pulse rings */
.float-btn::before,
.float-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  animation: pulseRing 2.2s ease-out infinite;
}

.float-btn::after {
  animation-delay: 1.1s;
}

.float-wa::before,
.float-wa::after {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
}

.float-call::before,
.float-call::after {
  box-shadow: 0 0 0 0 rgba(225, 29, 42, .55);
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 currentColor;
    opacity: .5;
  }

  100% {
    box-shadow: 0 0 0 18px transparent;
    opacity: 0;
  }
}

/* Back to top */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1400;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--c-primary);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  box-shadow: var(--shadow-md);
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--c-secondary);
}

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 991.98px) {
  :root {
    --section-pad: 68px;
  }

  .navbar-collapse {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-top: 12px;
    box-shadow: var(--shadow-md);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .btn-cta {
    margin-top: 8px;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .how-line {
    display: none;
  }

  .about-media {
    padding-bottom: 30px;
  }

  .footer-about {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-pad: 54px;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .topbar-inner {
    justify-content: center;
  }

  .hero-carousel {
    height: 84vh;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-arrow {
    display: none;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .testi-card {
    padding: 28px 22px 24px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}