/* ==========================================================================
   CLASSIC CLEANING SOLUTIONS — STYLESHEET
   Table of contents:
   1. CSS Variables (edit colours here)
   2. Base / Reset
   3. Utilities & Reveal Animations
   4. Top Bar
   5. Header / Navigation
   6. Hero Carousel
   7. Marquee
   8. About Section
   9. Services Section (bento + colour wipe)
   10. Why Choose Us
   11. How It Works
   12. Gallery
   13. FAQ Accordion
   14. Testimonials
   15. Contact
   16. Floating Buttons
   17. Footer
   18. Responsive Overrides
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES — change the theme colours here only
   ========================================================================== */
:root {
  /* --- Brand colours (easily changeable) --- */
  --color-primary: #0B3D3A;
  /* deep pine teal — dark sections, headings */
  --color-primary-light: #135C56;
  /* lighter tint of primary */
  --color-accent: #17A398;
  /* fresh teal — buttons, links, icons */
  --color-accent-dark: #0E7A70;
  /* hover state for accent */
  --color-highlight: #FFB100;
  /* amber — CTAs, highlights */
  --color-highlight-dark: #E39C00;
  /* hover state for highlight */

  /* --- Neutrals --- */
  --color-bg: #FFFFFF;
  --color-bg-alt: #F4F9F8;
  /* subtle cool off-white section bg */
  --color-bg-dark: #08221F;
  --color-text: #16241F;
  --color-text-light: #55655F;
  --color-text-inverse: #F4F9F8;
  --color-border: #E3ECE9;
  --color-white: #FFFFFF;

  /* --- Typography --- */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* --- Effects --- */
  --shadow-sm: 0 2px 10px rgba(11, 61, 58, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 61, 58, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 61, 58, 0.18);
  --radius-md: 14px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ==========================================================================
   2. BASE / RESET
   ========================================================================== */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: clip;
}

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

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

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

.section-pad {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-head {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.lead-text {
  font-size: 1.1rem;
  color: var(--color-text);
}

.body-text {
  color: var(--color-text-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-highlight);
}

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

.eyebrow--center {
  display: flex;
  justify-content: center;
  color: var(--color-accent-dark);
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.eyebrow--center::before {
  display: none;
}

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

.text-link {
  color: var(--color-accent);
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
}

.text-link:hover {
  color: var(--color-accent-dark);
  border-bottom-color: currentColor;
}

/* --- Buttons --- */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
  border: none;
}

.btn-highlight {
  background-color: var(--color-highlight);
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-sm);
}

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

.btn-cta {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  padding: 0.6rem 1.4rem;
  font-size: 0.92rem;
}

.btn-cta:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: var(--color-white);
  background: transparent;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* ==========================================================================
   3. UTILITIES & REVEAL ANIMATIONS
   ========================================================================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}

.reveal-up {
  transform: translateY(36px);
}

.reveal-left {
  transform: translateX(-42px);
}

.reveal-right {
  transform: translateX(42px);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==========================================================================
   4. TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
  font-size: 0.85rem;
  padding-block: 0.5rem;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar__contact,
.top-bar__social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.top-bar__contact li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar__contact a {
  color: var(--color-text-inverse);
  opacity: 0.9;
}

.top-bar__contact a:hover {
  color: var(--color-highlight);
  opacity: 1;
}

.top-bar__contact i {
  color: var(--color-highlight);
}

.top-bar__social {
  gap: 0.9rem;
}

.top-bar__social a {
  color: var(--color-text-inverse);
  opacity: 0.85;
  font-size: 0.95rem;
}

.top-bar__social a:hover {
  color: var(--color-highlight);
  opacity: 1;
}

/* ==========================================================================
   5. HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.site-header .navbar {
  padding-block: 0.85rem;
  padding-inline: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-primary);
}

.brand__tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  font-weight: 600;
}

.main-nav .nav-link {
  color: var(--color-text);
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding-inline: 0.85rem;
  position: relative;
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--color-highlight);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.main-nav .nav-link:hover {
  color: var(--color-accent-dark);
}

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

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

.hero-carousel {
  min-height: 500px;
}

.hero-slide {
  min-height: 510px;
  background-color: var(--color-primary);
  background-size: cover;
  background-position: center;
  position: relative;
  align-items: center;
}

/* IMPORTANT: only the active Bootstrap carousel-item should ever be
   displayed as flex — applying display:flex to .hero-slide unconditionally
   would override Bootstrap's display:none on inactive slides and stack
   every slide at once. */
.carousel-item.hero-slide.active,
.carousel-item.hero-slide.carousel-item-next,
.carousel-item.hero-slide.carousel-item-prev {
  display: flex;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 3, 3, 0.123) 0%, rgba(0, 2, 2, 0.6) 55%, rgba(0, 0, 0, 0.82) 100%);
}

.hero-slide__content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-slide__content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-text-inverse);
  padding-block: 3rem;
}

.hero-slide__content .eyebrow {
  color: var(--color-highlight);
  margin-bottom: 1rem;
}

.hero-slide__title {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 40px);
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

.hero-slide__desc {
  color: rgba(244, 249, 248, 0.88);
  font-size: 1.08rem;
  margin-bottom: 1.75rem;
}

.hero-slide__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
  opacity: 1;
}

.hero-nav-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.carousel-control-prev:hover .hero-nav-icon,
.carousel-control-next:hover .hero-nav-icon {
  background: var(--color-highlight);
  color: var(--color-bg-dark);
  border-color: var(--color-highlight);
  transform: scale(1.08);
}

.hero-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border: none;
  transition: background-color 0.3s var(--ease), width 0.3s var(--ease);
}

.hero-indicators .active {
  background-color: var(--color-highlight);
  width: 26px;
  border-radius: 5px;
}

.hero-chips {
  position: relative;
  z-index: 3;
  margin-top: -46px;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-chip {
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 240px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.hero-chip:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px rgba(11, 61, 58, 0.22);
}

.hero-chip i {
  font-size: 1.6rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.hero-chip div {
  display: flex;
  flex-direction: column;
}

.hero-chip strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--color-primary);
}

.hero-chip span {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ==========================================================================
   7. MARQUEE
   ========================================================================== */
.marquee-section {
  background: var(--color-primary);
  padding-block: 0.8rem;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  will-change: transform;
}

.marquee__track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-inverse);
  letter-spacing: 0.02em;
  padding-inline: 0.4rem;
}

.marquee__track i {
  color: var(--color-highlight);
  font-size: 1.4rem;
}

/* ==========================================================================
   8. ABOUT SECTION
   ========================================================================== */
.about-section {
  background-color: var(--color-bg);
}

.about-media {
  position: relative;
  padding: 1rem 1rem 2rem 0;
}

.about-media__main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.1;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 0;
  right: 1rem;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

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

.about-badge__label {
  font-size: 0.78rem;
  margin-top: 0.35rem;
  opacity: 0.92;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.7rem;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--color-text);
  font-weight: 500;
}

.about-points i {
  color: var(--color-accent);
  margin-top: 0.2rem;
}

.about-stats {
  margin-top: 10px;
}

.stat-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.75rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.stat-box__num,
.stat-box__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.stat-box__label {
  display: block;
  font-size: 0.76rem;
  color: var(--color-text-light);
  margin-top: 0.3rem;
}

/* ==========================================================================
   9. SERVICES SECTION — uniform 4-column grid, image → name → content → Call Now
   ========================================================================== */
.services-section {
  background-color: var(--color-bg-alt);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.service-card__img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 4;
  overflow: hidden;
}

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

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

.service-card__body {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.service-card__desc {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-card__cta {
  align-self: flex-start;
  font-size: 0.88rem;
  padding: 0.55rem 1.25rem;
}

/* ==========================================================================
   10. WHY CHOOSE US — zig-zag rows
   ========================================================================== */
.why-section {
  background-color: var(--color-bg);
}

.why-rows {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.why-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.why-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-row--reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.why-row--reverse .why-row__text {
  align-items: flex-end;
}

.why-row__icon {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-accent), var(--color-primary));
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
}

.why-row__text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.why-row__text p {
  color: var(--color-text-light);
  margin: 0;
  max-width: 640px;
}

/* ==========================================================================
   11. HOW IT WORKS — connected horizontal process
   ========================================================================== */
.process-section {
  background-color: var(--color-primary);
}

.process-section .section-title,
.process-section .eyebrow--center {
  color: var(--color-white);
}

.process-section .eyebrow--center {
  color: var(--color-highlight);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-line::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.35) 0 10px, transparent 10px 20px);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.4rem;
  text-align: center;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}

.process-step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-highlight);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
}

.process-step h3 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: rgba(244, 249, 248, 0.75);
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================================================
   12. GALLERY — 4 col desktop / 2 col mobile
   ========================================================================== */
.gallery-section {
  background-color: var(--color-bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

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

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

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 58, 0.55);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

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

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

/* ==========================================================================
   12B. VIDEOS — 4 per row, native controls, letterboxed (never cropped)
   ========================================================================== */
.videos-section {
  background-color: var(--color-bg);
}

.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: #000;
}

.video-card__media {
  width: 100%;
  height: 100%;
  /* object-fit: contain (not cover) so the video is never cropped —
     letterboxed inside its box, and shows at true proportions when the
     viewer maximises/fullscreens it via the native controls. */
  object-fit: contain;
  background-color: #000;
  display: block;
}

/* ==========================================================================
   13. FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background-color: var(--color-bg);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 1rem;
}

.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-bg-alt);
  padding: 1.2rem 1.5rem;
}

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

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

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-body {
  padding: 1.2rem 1.5rem;
  color: var(--color-text-light);
}

/* ==========================================================================
   14. TESTIMONIALS
   ========================================================================== */
.testimonial-section {
  background-color: var(--color-bg-alt);
}

.testimonial-carousel {
  max-width: 780px;
  margin-inline: auto;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 700px;
}

.testimonial-card__quote {
  font-size: 2.5rem;
  color: var(--color-highlight);
  margin-bottom: 1rem;
  display: inline-block;
}

.testimonial-card__text {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-card__author div {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.testimonial-card__author strong {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 0.95rem;
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.testimonial-control {
  width: 5%;
}

.hero-nav-icon--dark {
  background: var(--color-white);
  border-color: var(--color-border);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.testimonial-control:hover .hero-nav-icon--dark {
  background: var(--color-highlight);
  color: var(--color-bg-dark);
  border-color: var(--color-highlight);
}

.testimonial-indicators {
  position: static;
  margin-top: 1.75rem;
}

.testimonial-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(11, 61, 58, 0.25);
  opacity: 1;
  border: none;
}

.testimonial-indicators .active {
  background-color: var(--color-accent);
  width: 26px;
  border-radius: 5px;
}

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

.contact-info-list {
  list-style: none;
  padding: 0;
  margin-top: 1.75rem;
  display: grid;
  gap: 1.25rem;
}

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

.contact-info-list a {
  color: var(--color-text);
  font-weight: 500;
}

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

.contact-info-list__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--color-bg-alt);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.form-control,
.form-select {
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(23, 163, 152, 0.15);
}

.form-success {
  color: var(--color-accent-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   16. FLOATING BUTTONS
   ========================================================================== */
.floating-btn {
  position: fixed;
  bottom: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-white);
  z-index: 1040;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease);
}

.floating-btn:hover {
  transform: scale(1.1);
  color: var(--color-white);
}

.floating-btn--whatsapp {
  left: 26px;
  background-color: #25D366;
  animation: pulse-glow 2.4s infinite;
}

.floating-btn--call {
  right: 26px;
  background-color: var(--color-accent);
  animation: pulse-glow 2.4s infinite;
  animation-delay: 1.2s;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 163, 152, 0.45);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(23, 163, 152, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(23, 163, 152, 0);
  }
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-bg-dark);
  color: rgba(244, 249, 248, 0.78);
}

.footer-top {
  padding-block: 4rem 2.5rem;
}

.brand--footer .brand__name {
  color: var(--color-white);
}

.footer-about {
  margin: 1.1rem 0;
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.9rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(244, 249, 248, 0.25);
  color: var(--color-text-inverse);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.footer-social a:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.footer-heading {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(244, 249, 248, 0.78);
}

.footer-links a:hover {
  color: var(--color-highlight);
}

.footer-contact {
  color: rgba(244, 249, 248, 0.78);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact a {
  color: rgba(244, 249, 248, 0.78);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(244, 249, 248, 0.12);
  padding-block: 1.25rem;
  font-size: 0.85rem;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ==========================================================================
   18. RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 991.98px) {
  .site-header .navbar {
    padding-inline: 1.1rem;
  }

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

  .main-nav {
    background: var(--color-white);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.75rem;
    box-shadow: var(--shadow-sm);
  }

  .main-nav .nav-item {
    border-bottom: 1px solid var(--color-border);
  }

  .main-nav .nav-item:last-child {
    border-bottom: none;
    padding-top: 0.5rem;
  }

  .about-media {
    padding: 0;
  }

  .about-badge {
    position: static;
    margin-top: 1rem;
    width: fit-content;
  }

  .why-row,
  .why-row--reverse {
    flex-direction: column;
    text-align: center;
  }

  .why-row--reverse .why-row__text {
    align-items: center;
  }

  .why-row__text p {
    max-width: 100%;
  }

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

  .process-line::before {
    display: none;
  }
}

@media (max-width: 767.98px) {

  .hero-carousel,
  .hero-slide {
    min-height: 560px;
  }

  .hero-slide__content {
    padding-block: 2rem;
  }

  .hero-chips {
    margin-top: 1.75rem;
    flex-direction: column;
  }

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

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

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .services-bento {
    grid-template-columns: 1fr;
  }

  .top-bar__inner {
    justify-content: center;
  }

  .top-bar__contact {
    gap: 0.9rem;
  }
}