/* ============================================================
   IBRA SAFETY NETS — style.css
   Change the theme any time from the variables below.
============================================================ */

/* ---------- 1. THEME VARIABLES (edit these to re-skin) ---------- */
:root {
  /* Light-blue brand palette */
  --brand: #1a80d8;
  /* primary light blue */
  --brand-dark: #0f5ca0;
  /* deeper blue for hovers/gradients */
  --brand-soft: #5bb8f5;
  /* bright sky accent */
  --brand-tint: #eaf5fe;
  /* very light blue section wash */
  --brand-tint-2: #f4fafe;
  /* even softer wash */

  --ink: #142433;
  /* dark navy text */
  --body: #4d5f70;
  /* muted body text */
  --line: #e2ebf3;
  /* hairline borders */
  --white: #ffffff;
  --bg: #ffffff;
  /* page background */

  /* Accent used in the sequential blink wave */
  --blink: #1a80d8;
  --blink-glow: rgba(26, 128, 216, .45);

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

  /* Shape + depth */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 18px rgba(20, 36, 51, .06);
  --shadow-md: 0 14px 36px rgba(20, 36, 51, .10);
  --shadow-lg: 0 26px 60px rgba(15, 92, 160, .18);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1180px;
}

/* ---------- 2. BASE / RESET ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  /* no horizontal scroll on mobile */
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
}

h1 strong,
h2 strong,
h3 strong {
  font-weight: 800;
}

a {
  text-decoration: none;
  color: var(--brand);
  transition: color .25s var(--ease);
}

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

.container {
  max-width: var(--container);
}

.txt-accent {
  color: var(--brand);
}

/* Section rhythm */
.section {
  padding: 92px 0;
  position: relative;
}

.section-tint {
  background: var(--brand-tint);
}

.section-tint-2 {
  background: var(--brand-tint-2);
}

/* Shared heading blocks */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-tint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.eyebrow-light {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--body);
}

.section-head {
  margin-bottom: 54px;
}

.lead-text {
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- 3. BUTTONS (varied styles) ---------- */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 26px;
  transition: all .3s var(--ease);
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: none;
  box-shadow: 0 10px 22px rgba(26, 128, 216, .28);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(26, 128, 216, .4);
}

.btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(3px);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}

.btn-light-brand {
  background: #fff;
  color: var(--brand-dark);
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn-light-brand:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--brand-dark);
}

/* ============================================================
   1. TOP BAR
============================================================ */
.topbar {
  background: var(--ink);
  color: #cfe0ef;
  font-size: .86rem;
  padding: 8px 0;
}

.topbar-link {
  color: #cfe0ef;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-link i {
  color: var(--brand-soft);
}

.topbar-link:hover {
  color: #fff;
}

.topbar-note {
  color: #9db6cd;
  font-size: .82rem;
}

.social-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, .10);
  color: #cfe0ef;
  font-size: .8rem;
  transition: transform .3s var(--ease), background .3s var(--ease);
}

.social-dot:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px) rotate(-6deg);
}

.social-dot.light {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

/* ============================================================
   2. STICKY HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}

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

.navbar {
  transition: padding .3s var(--ease);
}

.site-header.scrolled .navbar {
  padding: 8px 0;
}

.brand-mark {
  color: var(--brand);
  display: inline-flex;
}

.brand-mark.light {
  color: #fff;
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -.01em;
}

.brand-text strong {
  color: var(--brand);
  font-weight: 800;
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  position: relative;
  transition: color .25s var(--ease);
}

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

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

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

.navbar-toggler {
  border: none;
  font-size: 1.7rem;
  color: var(--brand);
  box-shadow: none !important;
}

/* ============================================================
   3. HERO CAROUSEL (bg-image slides, content boxed on LEFT)
============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-dark);
  /* fallback colour if image missing */
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

/* dark gradient anchored to the LEFT so text stays legible on the side */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.87) 0%, rgba(9, 40, 68, .66) 42%, rgba(9, 41, 68, 0) 78%, transparent 100%);
}

/* subtle net texture overlay */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
}

.hero-box {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: #fff;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-soft);
  border-left: 3px solid var(--brand-soft);
  padding-left: 12px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.hero-title .txt-accent {
  color: var(--brand-soft);
}

.hero-text {
  font-size: 1.08rem;
  color: #dceaf6;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Arrows + dots */
.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, .18);
  color: #fff;
  font-size: 1.3rem;
  backdrop-filter: blur(4px);
  transition: background .3s var(--ease), transform .3s var(--ease);
}

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

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

.hero-dots button.active {
  width: 30px;
  background: var(--brand-soft);
}

/* ============================================================
   4. MARQUEE (JS-driven, seamless)
============================================================ */
.marquee {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  will-change: transform;
}

.marquee-item {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.marquee-item i {
  color: var(--brand-soft);
}

.marquee-dot {
  color: rgba(255, 255, 255, .5);
  font-size: .7rem;
}

/* ============================================================
   5. ABOUT (offset collage + counters)
============================================================ */
.about-collage {
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--brand-tint);
}

.about-img-a {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-img-b {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 6px solid #fff;
}

.about-badge {
  position: absolute;
  top: 24px;
  right: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
}

.about-badge-label {
  font-size: .72rem;
  letter-spacing: .04em;
  opacity: .9;
}

.float-icon {
  position: absolute;
  color: var(--brand-soft);
  opacity: .5;
  font-size: 2rem;
}

.float-icon-1 {
  left: -6px;
  bottom: 8px;
  animation: floaty 5s ease-in-out infinite;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 30px;
}

.stat {
  position: relative;
}

.stat-num,
.stat-plus {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--brand-dark);
}

.stat-label {
  display: block;
  font-size: .85rem;
  color: var(--body);
  margin-top: 2px;
}

/* ============================================================
   6. SERVICES (image cards + sequential blink wave)
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.service-media {
  height: 210px;
  overflow: hidden;
  background: var(--brand-tint);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-soft);
}

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

.service-body {
  padding: 20px 20px 24px;
  position: relative;
}

.service-ic {
  position: absolute;
  top: -26px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: var(--shadow-sm);
}

.service-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 14px 0 8px;
}

.service-body p {
  font-size: .92rem;
  margin-bottom: 14px;
}

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

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

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

/* CTA tile spans two columns to balance 7 services + tile = 8 cells */
.service-cta-tile {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.service-cta-tile h3 {
  color: #fff;
  font-size: 1.3rem;
}

.service-cta-tile p {
  color: #dceaf6;
  margin: 0;
}

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

/* --- Sequential blink WAVE: colour + shadow + border blink left→right --- */
.blink-wave .service-card {
  animation: blinkWave 6s ease-in-out infinite;
  animation-delay: calc(var(--i) * .28s);
}

@keyframes blinkWave {

  0%,
  88%,
  100% {
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
  }

  6% {
    border-color: var(--blink);
    box-shadow: 0 0 0 3px var(--blink-glow), var(--shadow-md);
  }
}

/* ============================================================
   7. WHY CHOOSE US (sticky heading + zig-zag rows)
============================================================ */
.why-sticky {
  position: sticky;
  top: 110px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.why-row:nth-child(even) {
  transform: translateX(22px);
}

/* zig-zag offset */
.why-row:hover {
  transform: translateX(0) translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-row:nth-child(even):hover {
  transform: translateX(22px) translateY(-4px);
}

.why-ic {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--brand);
  background: var(--brand-tint);
  transition: background .35s var(--ease), color .35s var(--ease);
}

.why-row:hover .why-ic {
  background: var(--brand);
  color: #fff;
}

.why-row h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-row p {
  font-size: .92rem;
  margin: 0;
}

/* ============================================================
   8. HOW IT WORKS (numbered timeline)
============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  /* connecting line behind desktop steps */
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--brand-soft) 0 10px, transparent 10px 18px);
  z-index: 0;
}

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

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brand-tint);
}

.step-ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 10px 22px rgba(26, 128, 216, .3);
}

.step h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: .9rem;
  margin: 0;
}

/* ============================================================
   10. GALLERY (desktop 4/row, mobile 2/row)
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  background: linear-gradient(to top, rgba(9, 40, 68, .8), transparent 60%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

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

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   11. FAQs (custom accordion, 2-column on desktop)
============================================================ */
.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
}

#faqAccordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.accordion-item {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  padding: 18px 20px;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  color: var(--brand-dark);
  background: var(--brand-tint);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--brand-soft);
}

.accordion-button::after {
  background-image: none;
  content: "\2b";
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand);
  width: auto;
  height: auto;
  transition: transform .3s var(--ease);
}

.accordion-button:not(.collapsed)::after {
  content: "\2212";
  transform: none;
}

.accordion-body {
  padding: 0 20px 20px;
  font-size: .93rem;
}

/* ============================================================
   12. TESTIMONIALS (custom slider)
============================================================ */
.tst-slider {
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
}

.tst-track {
  display: flex;
  transition: transform .55s var(--ease);
}

.tst-card {
  flex: 0 0 100%;
  margin: 0;
  padding: 40px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
}

.tst-quote {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 3rem;
  color: var(--brand-tint);
  line-height: 1;
}

.tst-card p {
  font-size: 1.12rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 22px;
}

.tst-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tst-card footer img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-soft);
  background: var(--brand-tint);
}

.tst-card footer strong {
  display: block;
  font-family: var(--font-head);
  color: var(--ink);
}

.tst-card footer small {
  color: var(--body);
}

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

.tst-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.tst-arrow:hover {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08);
}

.tst-dots {
  display: flex;
  gap: 8px;
}

.tst-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: var(--line);
  transition: width .3s var(--ease), background .3s var(--ease);
  cursor: pointer;
}

.tst-dots button.active {
  width: 26px;
  background: var(--brand);
}

/* ============================================================
   14. CONTACT (info panel + form)
============================================================ */
.contact {
  background: var(--brand-tint-2);
}

.contact-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.contact-info {
  height: 100%;
  padding: 48px 40px;
  background: linear-gradient(150deg, var(--brand-dark), var(--brand));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-info::after {
  /* net texture on info panel */
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image:
    repeating-linear-gradient(45deg, #fff 0 1px, transparent 1px 20px),
    repeating-linear-gradient(-45deg, #fff 0 1px, transparent 1px 20px);
}

.contact-info>* {
  position: relative;
  z-index: 1;
}

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

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .95rem;
  color: #eaf3fb;
}

.contact-list a {
  color: #fff;
}

.contact-list a:hover {
  color: var(--brand-soft);
}

.ci-ic {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.contact-socials {
  display: flex;
  gap: 10px;
}

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

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

.form-label .opt {
  color: var(--body);
  font-weight: 400;
  font-size: .8rem;
}

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

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26, 128, 216, .14);
}

.form-success {
  margin-top: 16px;
  color: #1a7a3c;
  font-weight: 600;
}

/* ============================================================
   15. FOOTER
============================================================ */
.site-footer {
  background: var(--ink);
  color: #b8c9d9;
}

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
}

.footer-top::before {
  /* thin net strip on top */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft), var(--brand));
}

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

.footer-brand .brand-text strong {
  color: var(--brand-soft);
}

.footer-about {
  margin: 16px 0 18px;
  font-size: .92rem;
  color: #93a9bd;
}

.footer-title {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #b8c9d9;
  font-size: .92rem;
  transition: color .25s var(--ease), padding .25s var(--ease);
}

.footer-links a:hover {
  color: var(--brand-soft);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: .92rem;
  color: #b8c9d9;
  align-items: flex-start;
}

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

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

.footer-contact a:hover {
  color: var(--brand-soft);
}

.footer-bottom {
  padding: 18px 0;
  font-size: .85rem;
  color: #8ba1b6;
}

/* ============================================================
   13. FLOATING BUTTONS + BACK TO TOP
============================================================ */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1040;
  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 var(--ease);
}

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

.float-wa {
  left: 22px;
  background: #25d366;
  animation: pulse 2.2s infinite;
}

.float-call {
  right: 22px;
  background: var(--brand);
  animation: pulse 2.2s infinite .6s;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1039;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

/* ============================================================
   SCROLL-REVEAL (IntersectionObserver adds .in-view)
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes floaty {

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

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.float-call {
  animation-name: pulseBlue;
}

@keyframes pulseBlue {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 128, 216, .5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(26, 128, 216, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(26, 128, 216, 0);
  }
}

/* Missing-image fallback (JS adds .img-fallback on error) */
.img-fallback {
  background: linear-gradient(135deg, var(--brand-tint), var(--brand-soft)) !important;
  position: relative;
}

.img-fallback::after {
  content: "\F3E1";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, .7);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
  .section {
    padding: 68px 0;
  }

  .site-header {
    background: #fff;
  }

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

  .navbar-nav .nav-link {
    padding: 10px 14px;
  }

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

  .btn-brand {
    margin-top: 6px;
  }

  .hero,
  .hero-slides {
    min-height: 540px;
    height: auto;
  }

  .hero-slide {
    position: relative;
    min-height: 540px;
  }

  .hero-slide:not(.is-active) {
    display: none;
  }

  .hero-slide.is-active {
    display: flex;
  }

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

  .service-cta-tile {
    grid-column: span 2;
  }

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

  .steps::before {
    display: none;
  }

  #faqAccordion {
    grid-template-columns: 1fr;
  }

  .about-collage {
    max-width: 460px;
    margin: 0 auto;
  }

  .why-sticky {
    position: static;
    margin-bottom: 26px;
  }

  .why-row:nth-child(even),
  .why-row:nth-child(even):hover {
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 56px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-cta .btn {
    flex: 1 1 auto;
    text-align: center;
  }

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

  .service-cta-tile {
    grid-column: span 1;
  }

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

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

  /* 2 per row on mobile */
  .contact-form-wrap,
  .contact-info {
    padding: 32px 24px;
  }

  .tst-card {
    padding: 30px 24px;
  }

  .stat-row {
    gap: 18px;
  }

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

/* ============================================================
   ACCESSIBILITY — respect reduced motion
============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .float-wa,
  .float-call,
  .float-icon-1,
  .blink-wave .service-card {
    animation: none !important;
  }
}

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--brand-soft);
  outline-offset: 2px;
}
.cu-lg-wdth{
	width:249px;
}
@media(max-width:374px)
{
	.cu-lg-wdth{
	width:219px;
}
}