/* =====================================================================
   CITY NET — style.css
   Author: City Net
   NOTE: Change the colour theme from the CSS variables below only.
   ===================================================================== */

/* =====================================================================
   THEME VARIABLES  (← change colours here)
   ===================================================================== */
:root {
  /* --- Brand colours (blue + gold combination) --- */
  --color-primary: #047CD2;
  /* main brand blue           */
  --color-primary-dark: #035A98;
  /* darker blue (footer/hover)*/
  --color-primary-light: #2E9BE6;
  /* lighter blue              */
  --color-accent: #C1954C;
  /* warm gold accent / blink  */

  /* --- Soft tints used for alternating section backgrounds --- */
  --color-mint: #E7F2FB;
  /* soft blue tint            */
  --color-mint-2: #F2F8FD;
  /* very light blue           */
  --color-cream: #F6FAFD;
  /* near-white neutral        */

  /* --- Text + neutrals --- */
  --color-ink: #122C42;
  /* headings (deep navy)      */
  --color-body: #495667;
  /* body text                 */
  --color-muted: #8896A6;
  /* muted captions            */
  --color-white: #FFFFFF;
  --color-line: #E0E8F0;
  /* hairline borders          */

  /* --- Utility colours --- */
  --color-whatsapp: #25D366;
  --color-call: #047CD2;
  --color-star: #F5B301;


  /* --- Typography --- */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* --- Shape + motion --- */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 6px 18px rgba(6, 52, 96, .07);
  --shadow: 0 14px 40px rgba(6, 52, 96, .10);
  --shadow-lg: 0 26px 60px rgba(6, 52, 96, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --container-pad: 1rem;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-white);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: clip;
  /* guards against any horizontal scroll (clip keeps sticky working) */
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--color-primary-dark);
}

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

strong {
  font-weight: 700;
  color: inherit;
}

/* Reusable section spacing */
.section {
  padding: 5.5rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .section {
    padding: 3.5rem 0;
  }
}

/* Section head + eyebrow + titles (shared, but each section restyles around it) */
.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-mint);
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

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

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-title strong {
  color: var(--color-primary);
}

.section-lead {
  font-size: 1.08rem;
  color: var(--color-body);
}

.section-lead.mx-auto {
  max-width: 640px;
}

/* =====================================================================
   BUTTONS  (varied hover effects across the page)
   ===================================================================== */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 100px;
  padding: .7rem 1.6rem;
  transition: all .35s var(--ease);
}

.btn-brand {
  background: var(--color-primary);
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(4, 124, 210, .28);
  position: relative;
}

.btn-brand:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(4, 124, 210, .36);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, .7);
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--color-primary-dark);
  transform: translateY(-3px);
}

.btn-light {
  background: #fff;
  color: var(--color-primary-dark);
  border: none;
  font-weight: 600;
}

.btn-light:hover {
  transform: scale(1.05);
}

/* =====================================================================
   1. TOP BAR
   ===================================================================== */
.topbar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, .9);
  font-size: .85rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
}

.topbar-contact,
.topbar-social {
  display: flex;
  gap: 1.2rem;
  margin: 0;
  align-items: center;
}

.topbar-contact li,
.topbar-social li {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.topbar a {
  color: rgba(255, 255, 255, .9);
}

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

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

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

.topbar-tagline {
  font-style: italic;
  opacity: .8;
}

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

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

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

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 6px 16px rgba(4, 124, 210, .3);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-ink);
  letter-spacing: -.02em;
}

.brand-text span {
  color: var(--color-primary);
}

/* Nav links */
.navbar-nav {
  gap: .2rem;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--color-ink) !important;
  padding: .5rem .9rem !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .35rem;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary) !important;
}

.header-cta {
  margin-left: 1rem;
}

/* Custom hamburger */
.navbar-toggler {
  border: none;
  padding: .4rem;
}

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

.toggler-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
  margin: 5px 0;
  transition: all .3s var(--ease);
}

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

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: clamp(520px, 82vh, 760px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* subtle mesh/net motif overlay layered with the photo */
  background-color: #0a2c48;
  animation: heroZoom 9s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.897) 0%, rgba(0, 0, 0, 0.705) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

.hero-eyebrow {
  display: inline-block;
  align-self: flex-start;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
  border: 1px solid rgba(193, 149, 76, .5);
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}

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

.hero-sub {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Animate hero text in on each active slide */
.carousel-item.active .hero-eyebrow {
  animation: heroUp .7s .15s both var(--ease);
}

.carousel-item.active .hero-title {
  animation: heroUp .7s .30s both var(--ease);
}

.carousel-item.active .hero-sub {
  animation: heroUp .7s .45s both var(--ease);
}

.carousel-item.active .hero-actions {
  animation: heroUp .7s .60s both var(--ease);
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom controls */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  opacity: 1;
  margin: 0 1rem;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
  transition: all .3s var(--ease);
}

.hero .carousel-control-prev {
  left: 0;
}

.hero .carousel-control-next {
  right: 0;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

@media (max-width: 575px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    display: none;
  }
}

/* Indicators aligned to the LEFT, directly under the hero text (not centered) */
.hero .carousel-indicators {
  bottom: 1.6rem;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 760px;
  /* same width box as .hero-content */
  margin: 0 auto;
  /* centre the box, like the hero content */
  justify-content: center;
  /* push the dots to the left inside the box */
  padding-left: 4px;
}

@media (max-width: 767.98px) {
  .hero .carousel-indicators {
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * .5);
  }
}

.hero .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .45);
  transition: all .3s var(--ease);
  opacity: 1;
}

.hero .carousel-indicators .active {
  background: var(--color-accent);
  width: 30px;
  border-radius: 100px;
}

/* Floating decorative shapes */
.floaty {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.floaty-1 {
  width: 180px;
  height: 180px;
  top: 12%;
  right: 8%;
  border: 2px dashed rgba(193, 149, 76, .35);
  animation: floatY 7s ease-in-out infinite;
}

.floaty-2 {
  width: 90px;
  height: 90px;
  bottom: 16%;
  right: 22%;
  background: radial-gradient(circle, rgba(193, 149, 76, .25), transparent 70%);
  animation: floatY 5s ease-in-out infinite reverse;
}

@keyframes floatY {

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

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

/* =====================================================================
   4. MARQUEE
   ===================================================================== */
.marquee {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  overflow: hidden;
  padding: .9rem 0;
  white-space: nowrap;
}

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

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

.marquee-item i {
  color: var(--color-accent);
  font-size: 1.15rem;
}

/* =====================================================================
   5. ABOUT
   ===================================================================== */
.about-section {
  background: var(--color-white);
}

.about-media {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/4.2;
  object-fit: cover;
  background: var(--color-mint);
}

.about-img-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  border-radius: var(--radius);
  border: 6px solid #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--color-mint-2);
}

.about-badge {
  position: absolute;
  top: 1.2rem;
  left: -.6rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  box-shadow: 0 16px 30px rgba(4, 124, 210, .35);
  animation: floatY 5s ease-in-out infinite;
}

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

.about-badge-num sup {
  font-size: 1rem;
}

.about-badge-text {
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.2;
}

.about-points {
  margin: 1.4rem 0;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .6rem;
  font-weight: 500;
  color: var(--color-ink);
}

.about-points i {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-top: .15rem;
}

/* Counters */
.counters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--color-line);
}

.counter-box {
  line-height: 1;
}

.counter,
.counter-plus {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-primary);
}

.counter-box p {
  margin: .4rem 0 0;
  font-size: .9rem;
  color: var(--color-muted);
  font-weight: 600;
}

/* =====================================================================
   6. SERVICES  (+ sequential colour-wave animation)
   ===================================================================== */
.services-section {
  background: var(--color-mint-2);
}

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

.service-card::before {
  /* top accent bar that the colour-wave lights up */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
  z-index: 4;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

.service-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--color-mint);
}

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

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

.service-icon {
  position: absolute;
  bottom: 10px;
  left: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 22px rgba(4, 124, 210, .4);
  transition: all .4s var(--ease);
  z-index: 3;
}

.service-card:hover .service-icon {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  transform: rotate(-8deg) scale(1.08);
}

.service-body {
  padding: 2rem 1.5rem 1.7rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: .6rem;
}

.service-body p {
  font-size: .96rem;
  margin-bottom: 1rem;
}

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

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

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

/* --- The sequential "blink/wave" of colour across the cards --- */
/* Each card glows in turn, sweeping from the first card to the last. */
.services-wave .service-card {
  animation: cardWave 6s ease-in-out infinite;
}

.services-wave>div:nth-child(1) .service-card {
  animation-delay: 0s;
}

.services-wave>div:nth-child(2) .service-card {
  animation-delay: .45s;
}

.services-wave>div:nth-child(3) .service-card {
  animation-delay: .9s;
}

.services-wave>div:nth-child(4) .service-card {
  animation-delay: 1.35s;
}

.services-wave>div:nth-child(5) .service-card {
  animation-delay: 1.8s;
}

.services-wave>div:nth-child(6) .service-card {
  animation-delay: 2.25s;
}

@keyframes cardWave {

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

  6% {
    box-shadow: 0 0 0 2px var(--color-accent), 0 16px 36px rgba(193, 149, 76, .30);
    border-color: var(--color-accent);
  }

  14% {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-line);
  }
}

/* Pause the wave when the user is hovering a card */
.services-wave:hover .service-card {
  animation-play-state: paused;
}

/* CTA card variant inside the services grid */
.service-cta-card {
  background: linear-gradient(150deg, var(--color-primary), var(--color-primary-dark));
  border: none;
}

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

.service-cta-inner {
  padding: 2.2rem 1.6rem;
  text-align: center;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .3rem;
}

.service-cta-inner i {
  font-size: 2.4rem;
  color: var(--color-accent);
  margin-bottom: .4rem;
}

.service-cta-inner .service-title {
  color: #fff;
}

.service-cta-inner p {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
}

.service-cta-inner .btn {
  margin-top: .6rem;
}

/* Floating decorative icons */
.floaty-icon {
  position: absolute;
  font-size: 2rem;
  color: rgba(4, 124, 210, .12);
  z-index: 0;
}

.floaty-icon-1 {
  top: 12%;
  left: 5%;
  animation: floatY 6s ease-in-out infinite;
}

.floaty-icon-2 {
  bottom: 14%;
  right: 6%;
  animation: floatY 7s ease-in-out infinite reverse;
}

/* =====================================================================
   7. WHY CHOOSE US
   ===================================================================== */
.why-section {
  background: var(--color-white);
}

.why-grid {
  row-gap: 2rem;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.why-feature.text-lg-end {
  flex-direction: row;
}

.why-feature-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--color-mint);
  color: var(--color-primary);
  transition: all .4s var(--ease);
}

.why-feature:hover .why-feature-icon {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(8deg);
}

.why-feature h3 {
  font-size: 1.18rem;
  margin-bottom: .3rem;
}

.why-feature p {
  font-size: .95rem;
  margin: 0;
}

.why-media {
  position: relative;
  padding: 1.5rem;
}

.why-media img {
  width: 100%;
  border-radius: 50% 50% 46% 46% / 48% 48% 50% 50%;
  box-shadow: var(--shadow);
  aspect-ratio: 3/3.6;
  object-fit: cover;
  background: var(--color-mint);
  position: relative;
  z-index: 2;
}

.why-media-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed var(--color-primary-light);
  border-radius: 50%;
  opacity: .4;
  animation: spin 26s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .why-feature.text-lg-end {
    flex-direction: row;
  }

  .why-feature,
  .why-feature.text-lg-end {
    text-align: left !important;
  }
}

/* =====================================================================
   8. HOW IT WORKS  (stepper / timeline)
   ===================================================================== */
.process-section {
  background: var(--color-mint);
}

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
}

/* connecting dashed line behind the nodes (desktop) */
.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--color-primary-light) 50%, transparent 0);
  background-size: 16px 2px;
  z-index: 0;
}

.step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 10px 22px rgba(4, 124, 210, .32);
  border: 4px solid var(--color-mint);
  transition: all .4s var(--ease);
}

.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  transition: all .4s var(--ease);
  height: 100%;
}

.step-card i {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: .6rem;
  display: inline-block;
}

.step-card h3 {
  font-size: 1.12rem;
  margin-bottom: .4rem;
}

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

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

.step:hover .step-num {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  transform: scale(1.08);
}

@media (max-width: 767px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .steps::before {
    display: none;
  }

  .step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    align-items: center;
    text-align: left;
  }

  .step-num {
    margin: 0;
  }
}

/* =====================================================================
   9. GALLERY MARQUEE  (auto scroll, 5 per row on desktop)
   ===================================================================== */
.gallery-marquee-section {
  background: var(--color-white);
  padding-bottom: 4.5rem;
}

.gallery-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gallery-marquee-track {
  display: flex;
  gap: 1.2rem;
  will-change: transform;
}

.gm-item {
  flex: 0 0 auto;
  width: calc((100vw - 1rem * 6) / 5);
  max-width: 320px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gm-item img {
  width: 100%;
  aspect-ratio: 3/3;
  object-fit: cover;
  background: var(--color-mint);
  transition: transform .5s var(--ease);
}

.gm-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .gm-item {
    width: 38vw;
  }
}

@media (max-width: 575px) {
  .gm-item {
    width: 64vw;
  }

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

/* =====================================================================
   10. GALLERY GRID  (desktop 4/row, mobile 2/row)
   ===================================================================== */
.gallery-section {
  background: var(--color-mint-2);
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 26, 48, .7), transparent 55%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  transform: translateY(12px);
  opacity: 0;
  transition: all .4s var(--ease);
}

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

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 16, 30, .92);
  display: none;
  place-items: center;
  z-index: 3000;
  padding: 2rem;
}

.lightbox.open {
  display: grid;
}

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

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

/* =====================================================================
   11. FAQ
   ===================================================================== */
.faq-section {
  background: var(--color-white);
}

.faq-help {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  background: var(--color-mint);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
}

.faq-help i {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.faq-help strong {
  display: block;
  font-family: var(--font-display);
  color: var(--color-ink);
}

.faq-help a {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
}

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

.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-ink);
  padding: 1.1rem 1.3rem;
  background: #fff;
}

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

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

.faq-accordion .accordion-button::after {
  width: 1.1rem;
  height: 1.1rem;
  background-size: 1.1rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23047CD2' stroke-width='3'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  padding: 0 1.3rem 1.2rem;
  color: var(--color-body);
}

/* =====================================================================
   12. TESTIMONIALS
   ===================================================================== */
.testimonial-section {
  background: linear-gradient(160deg, var(--color-mint), var(--color-mint-2));
}

.testimonial-slider {
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-viewport {
  overflow: hidden;
}

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

.testimonial-card {
  flex: 0 0 100%;
  padding: 2.6rem 2.4rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  margin: 0;
}

.t-quote {
  position: absolute;
  top: 1.2rem;
  right: 1.8rem;
  font-size: 3.5rem;
  color: var(--color-mint);
}

.testimonial-card blockquote {
  font-size: 1.18rem;
  color: var(--color-ink);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 1.6rem;
  position: relative;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-mint);
  background: var(--color-mint);
}

.t-author strong {
  display: block;
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 1.05rem;
}

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

.t-stars {
  color: var(--color-star);
  font-size: .9rem;
  margin-top: .2rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.t-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--color-primary);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all .3s var(--ease);
}

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

.t-dots {
  display: flex;
  gap: .5rem;
}

.t-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(4, 124, 210, .25);
  cursor: pointer;
  transition: all .3s var(--ease);
  padding: 0;
}

.t-dots button.active {
  background: var(--color-primary);
  width: 28px;
  border-radius: 100px;
}

/* =====================================================================
   14. CONTACT
   ===================================================================== */
.contact-section {
  background: var(--color-white);
}

.contact-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-info {
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  padding: 3rem 2.4rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 30px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.contact-title {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-title strong {
  color: var(--color-accent);
}

.contact-info>p {
  color: rgba(255, 255, 255, .85);
}

.contact-list {
  margin-top: 1.8rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}

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

.contact-list strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: .15rem;
}

.contact-list div {
  font-size: .95rem;
  color: rgba(255, 255, 255, .9);
}

.contact-list a {
  color: rgba(255, 255, 255, .9);
}

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

.contact-form-wrap {
  background: #fff;
  padding: 3rem 2.4rem;
  height: 100%;
}

.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--color-ink);
  margin-bottom: .35rem;
}

.optional {
  color: var(--color-muted);
  font-weight: 400;
}

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

.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(4, 124, 210, .12);
}

.form-success {
  margin-top: 1rem;
  background: var(--color-mint);
  color: var(--color-primary-dark);
  padding: .9rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-family: var(--font-display);
}

.form-success i {
  color: var(--color-primary);
}

/* =====================================================================
   15. FOOTER
   ===================================================================== */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, .75);
  padding-top: 3.5rem;
}

.footer-top {
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

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

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

.site-footer p {
  font-size: .94rem;
}

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

.footer-links li,
.footer-contact li {
  margin-bottom: .65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .75);
  font-size: .94rem;
  position: relative;
  padding-left: 0;
  transition: padding .3s var(--ease), color .3s var(--ease);
}

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

.footer-contact li {
  display: flex;
  gap: .6rem;
  font-size: .92rem;
  align-items: flex-start;
}

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

.footer-contact a {
  color: rgba(255, 255, 255, .8);
}

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  color: #fff;
  transition: all .3s var(--ease);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: .88rem;
}

/* =====================================================================
   13. FLOATING BUTTONS + BACK TO TOP
   ===================================================================== */
.float-btn {
  position: fixed;
  bottom: 24px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  transition: transform .3s var(--ease);
}

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

.float-whatsapp {
  left: 24px;
  background: var(--color-whatsapp);
  animation: pulseW 2.2s infinite;
}

.float-call {
  right: 24px;
  background: var(--color-call);
  animation: pulseC 2.2s infinite;
}

@keyframes pulseW {
  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);
  }
}

@keyframes pulseC {
  0% {
    box-shadow: 0 0 0 0 rgba(4, 124, 210, .5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(4, 124, 210, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(4, 124, 210, 0);
  }
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1500;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--color-primary-dark);
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .35s var(--ease);
  cursor: pointer;
}

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

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

@media (max-width: 575px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .float-whatsapp {
    left: 16px;
  }

  .float-call {
    right: 16px;
  }

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

/* =====================================================================
   SCROLL-REVEAL  (driven by IntersectionObserver in script.js)
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}

.reveal[data-reveal="left"] {
  transform: translateX(-50px);
}

.reveal[data-reveal="right"] {
  transform: translateX(50px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =====================================================================
   ACCESSIBILITY — respect reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Visible keyboard focus for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}





/* =========================================================
   12B. VIDEO GALLERY  —  8 videos, native controls, no poster
   4 per row (desktop) / 2 (tablet) / 1 (mobile)
========================================================= */
.videos {
  background: var(--surface-warm);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.video-cell {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  /* clean frame behind the video */
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.video-cell:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.video-player {
  display: block;
  width: 100%;
  aspect-ratio: 10 / 9;
  /* uniform grid; works for any clip */
  object-fit: contain;
  /* never crops — shows the whole frame */
  background: #000;
  border: 0;
}

@media (max-width: 991.98px) {

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

}