/* =========================================================
   HYGINE SERVICE — style.css
   Change the theme by editing the CSS variables below.
   ========================================================= */

:root {
  /* ---- BRAND COLOURS (edit here to retheme) ---- */
  --primary: #0E3452;
  /* deep navy */
  --primary-dark: #0a2740;
  --primary-light: #16496f;
  --accent: #F7AB1C;
  /* warm orange */
  --accent-dark: #dd950c;
  --accent-soft: #fdecc9;
  --blue: #1f7fe0;
  /* logo bright blue (supporting) */
  --green: #3fae4a;
  /* logo leaf green (supporting) */

  /* ---- NEUTRALS ---- */
  --white: #ffffff;
  --light: #f6f9fc;
  /* subtle blue-white section bg */
  --light-2: #eef4f9;
  --ink: #1a2733;
  /* body text */
  --muted: #5f6f7d;
  --border: #e3ebf2;

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

  /* ---- MISC ---- */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(14, 52, 82, 0.08);
  --shadow-md: 0 12px 30px rgba(14, 52, 82, 0.12);
  --shadow-lg: 0 24px 55px rgba(14, 52, 82, 0.18);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;
}

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

html,
body {
  /* clip (not hidden) so sticky header keeps working */
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

p {
  margin: 0 0 1rem;
}

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

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

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

/* =========================================================
   SECTION SCAFFOLD
   ========================================================= */
.section {
  padding: 92px 0;
  position: relative;
}

/* subtle alternating backgrounds (not one flat colour everywhere) */
.about {
  background: var(--white);
}

.services {
  background: linear-gradient(180deg, var(--light) 0%, var(--light-2) 100%);
}

.why {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.process {
  background: var(--white);
}

.gallery {
  background: var(--light);
}

.faq {
  background: var(--white);
}

.testimonials {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.contact {
  background: linear-gradient(180deg, var(--light-2) 0%, var(--light) 100%);
}

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

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 12px 0 14px;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

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

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
}

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

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

.eyebrow-line {
  width: 34px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
  border-radius: 2px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 50px;
  padding: 11px 26px;
  transition: all .35s var(--ease);
}

.btn i {
  margin-right: 6px;
}

.btn-cta {
  background: var(--accent);
  color: var(--primary-dark);
  border: 2px solid var(--accent);
  box-shadow: 0 8px 20px rgba(247, 171, 28, .35);
}

.btn-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(247, 171, 28, .45);
}

.btn-outline-light {
  border-width: 2px;
}

.btn-outline-light:hover {
  transform: translateY(-3px);
}

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

.topbar-link {
  color: #cfe0ee;
}

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

.topbar-link i,
.topbar-note i {
  color: var(--accent);
  margin-right: 4px;
}

.topbar-social {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: all .3s var(--ease);
}

.topbar-social:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}

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

.brand-logo {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: .5px;
}

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

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

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

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

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

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

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image layers — only these change (cross-fade) */
.hero-bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  transform: scale(1.05);
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.1s ease-in-out, transform 6s ease-out;
}

/* Gradient overlay keeps left-side content readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.795) 0%, rgba(0, 1, 2, 0.315) 55%, rgba(0, 0, 0, 0.089) 100%);
}

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

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 171, 28, .18);
  border: 1px solid rgba(247, 171, 28, .5);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 28px;
  max-width: 540px;
}

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

.hero-ctrl {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: 1.3rem;
  transition: all .3s var(--ease);
}

.hero-ctrl:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

/* Prev / next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: none;
  border: none;
  padding: 0 22px;
}

.hero-prev { left: 0; }
.hero-next { right: 0; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 32px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.hero-dots button.is-active {
  background: var(--accent);
  width: 44px;
}

/* =========================================================
   MARQUEE (JS-driven — see script.js)
   ========================================================= */
.marquee {
  background: var(--accent);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
}

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

.marquee-item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.marquee-item i {
  font-size: 1.15rem;
}

.marquee-dot {
  opacity: .5;
  font-size: 1.2rem;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-visual {
  position: relative;
  padding: 20px 30px 40px 0;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  border-radius: var(--radius);
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 40px;
  left: -12px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.1;
}

.about-badge-num,
.about-badge-plus {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
}

.about-badge-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  margin-top: 4px;
}

.about-float-icon {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--blue);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.about-float-icon.float-a {
  top: 8px;
  right: 60px;
  color: var(--blue);
  animation: floaty 4s ease-in-out infinite;
}

.about-float-icon.float-b {
  bottom: 90px;
  left: 30px;
  color: var(--accent-dark);
  animation: floaty 5s ease-in-out infinite .6s;
}

@keyframes floaty {

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

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

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

.about-point {
  font-weight: 600;
  color: var(--primary);
  font-size: .96rem;
}

.about-point i {
  color: var(--green);
  margin-right: 7px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 0;
  z-index: 3;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transition: width .45s var(--ease);
}

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

.service-card:hover::before {
  width: 100%;
}

/* image on top */
.service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--light-2);
}

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

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

/* body */
.service-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-name {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* Call Now button */
.service-call {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  padding: 9px 20px;
  border-radius: 50px;
  transition: all .3s var(--ease);
}

.service-call:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(247, 171, 28, .3);
}

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

.service-call-light:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

/* "Most Booked" tag — overlays the card image */
.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--primary-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .74rem;
  padding: 5px 13px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

/* Icon (used by the CTA card) */
.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.7rem;
  margin-bottom: 18px;
  transition: all .4s var(--ease);
}

/* CTA service card */
.service-cta-card {
  background: linear-gradient(150deg, var(--primary) 0%, var(--primary-light) 100%);
  border: none;
}

.service-cta-card::before {
  display: none;
}

.service-icon-light {
  background: rgba(255, 255, 255, .12);
  color: var(--accent);
}

.service-cta-card:hover .service-icon-light {
  background: var(--accent);
  color: var(--primary-dark);
}

/* =========================================================
   WHY CHOOSE US + BLINK ANIMATION
   ========================================================= */
.why-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  color: #fff;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, .1);
  color: var(--accent);
  margin-bottom: 18px;
  transition: all .4s var(--ease);
}

.why-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: rgba(255, 255, 255, .72);
  font-size: .93rem;
  margin: 0;
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(247, 171, 28, .4);
}

.why-card:hover .why-icon {
  background: var(--accent);
  color: var(--primary-dark);
}

/* BLINK: colour sweeps card-by-card from one side to the other.
   Staggered via --blink-order so each card lights up in sequence. */
.blink-card {
  animation: blinkSweep 4s var(--ease) infinite;
  animation-delay: calc(var(--blink-order) * 0.45s);
}

@keyframes blinkSweep {

  0%,
  70%,
  100% {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none;
  }

  12% {
    background: rgba(247, 171, 28, .16);
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(247, 171, 28, .3), var(--shadow-md);
  }

  30% {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
  }
}

.blink-card {
  position: relative;
}

.blink-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  animation: blinkBar 4s var(--ease) infinite;
  animation-delay: calc(var(--blink-order) * 0.45s);
}

@keyframes blinkBar {

  0%,
  70%,
  100% {
    transform: scaleX(0);
  }

  12% {
    transform: scaleX(1);
  }

  30% {
    transform: scaleX(0);
  }
}

/* stats */
.why-stats {
  margin-top: 40px;
}

.stat {
  text-align: center;
  color: #fff;
}

.stat-num,
.stat-plus {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
}

.stat-label {
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
  margin: 4px 0 0;
  font-size: .95rem;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process-track {
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 12px, transparent 12px 24px);
  z-index: 0;
}

@media (max-width: 991px) {
  .process-track::before {
    display: none;
  }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.process-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary-dark);
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 3px dashed var(--accent);
  position: relative;
  transition: all .4s var(--ease);
}

.process-icon {
  position: absolute;
  top: -6px;
  right: calc(50% - 54px);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .95rem;
  box-shadow: var(--shadow-sm);
}

.process-step:hover .process-num {
  background: var(--accent);
  border-style: solid;
  transform: scale(1.05);
}

.process-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step p {
  color: var(--muted);
  font-size: .93rem;
  margin: 0;
}

/* =========================================================
   GALLERY (desktop 4/row · mobile 2/row via bootstrap cols)
   ========================================================= */
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 14px 12px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  background: linear-gradient(0deg, rgba(14, 52, 82, .9), transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: all .4s var(--ease);
}

.gallery-item::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.6);
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: all .4s var(--ease);
}

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

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

.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.02rem;
  padding: 18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--accent-soft);
  color: var(--primary-dark);
  box-shadow: none;
}

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

.faq-accordion .accordion-button::after {
  background-size: 1.1rem;
}

.faq-accordion .accordion-body {
  color: var(--muted);
  padding: 4px 22px 20px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
#testiCarousel {
  max-width: 780px;
  margin: 0 auto;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  margin: 0 10px 30px;
}

.testi-quote {
  font-size: 3rem;
  color: var(--accent);
  opacity: .35;
  position: absolute;
  top: 16px;
  left: 26px;
}

.testi-text {
  font-size: 1.12rem;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  display: grid;
  place-items: center;
}

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

.testi-author span {
  font-size: .85rem;
  color: var(--muted);
}

.testi-stars {
  color: var(--accent);
  margin-left: 6px;
}

.testi-ctrl {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: 1.2rem;
  transition: all .3s var(--ease);
}

.testi-ctrl:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.testi-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: none;
}

.testi-indicators button.active {
  background: var(--accent);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-info {
  background: linear-gradient(155deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.contact-info-title {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  color: #fff;
}

.contact-ico {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(247, 171, 28, .18);
  color: var(--accent);
  font-size: 1.2rem;
  transition: all .3s var(--ease);
}

.contact-line:hover .contact-ico {
  background: var(--accent);
  color: var(--primary-dark);
}

.contact-line strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
}

.contact-line span {
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: .95rem;
  transition: all .3s var(--ease);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247, 171, 28, .18);
}

.form-note {
  margin: 12px 0 0;
  font-weight: 600;
  font-size: .92rem;
}

.form-note.ok {
  color: var(--green);
}

.form-note.err {
  color: #d9534f;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, .72);
  padding: 66px 0 0;
}

.footer-about {
  margin: 18px 0;
  font-size: .95rem;
}

.footer-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.2rem;
  transition: all .3s var(--ease);
}

.footer-social:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-head {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .72);
  font-size: .93rem;
}

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

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .93rem;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 46px;
  padding: 20px 0;
  text-align: center;
  font-size: .88rem;
}

.footer-bottom p {
  margin: 0;
}

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.float-btn {
  position: fixed;
  bottom: 24px;
  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: 24px;
  background: #25d366;
  animation: pulseGreen 2s infinite;
}

.float-call {
  right: 24px;
  background: var(--accent);
  color: var(--primary-dark);
  animation: pulseOrange 2s infinite;
}

.float-call:hover {
  color: var(--primary-dark);
}

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

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

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

@keyframes pulseOrange {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 171, 28, .55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(247, 171, 28, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(247, 171, 28, 0);
  }
}

/* back to top */
.back-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 1039;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease);
}

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

.back-top:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

/* =========================================================
   SCROLL REVEAL (JS toggles .is-visible)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-radius: var(--radius-sm);
    margin-top: 12px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
  }

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

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

  .hero {
    min-height: 520px;
  }

  .about-badge {
    left: 6px;
  }
}

@media (max-width: 767px) {
	.cu-mb-ds-nn{
		display:none!important
	}
	.cu-jf-cnetr{
		justify-content:center!important
	}
  .section {
    padding: 62px 0;
  }

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

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

  .float-wa {
    left: 16px;
  }

  .float-call {
    right: 16px;
  }

  .back-top {
    bottom: 80px;
    right: 16px;
  }

  .hero-content {
    text-align: left;
  }

  .testi-card {
    padding: 40px 22px 30px;
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: 460px;
  }

  .about-img-sub {
    width: 42%;
  }
}