/* =========================================================
   ANISH BIRD NETTING — MAIN STYLESHEET
   Signature concept: a fine crosshatch "net/mesh" motif that
   echoes the company's actual product (invisible grill /
   bird netting) is used throughout as texture, dividers and
   hover reveals, instead of generic gradients or blobs.
   ========================================================= */

/* ---------------------------------------------------------
   1. THEME VARIABLES — change colours here only
   --------------------------------------------------------- */
:root {
  /* Navy palette (primary brand colour, as requested) */
  --navy-900: #071021;   /* deepest navy - header/footer bg */
  --navy-800: #0a1830;
  --navy-700: #123059;   /* primary navy - buttons, accents */
  --navy-600: #1c4478;
  --navy-500: #2c5c9c;
  --navy-100: #e7edf6;   /* very light navy tint for section bg */

  /* Warm gold accent — pairs with navy, reads premium/safety */
  --gold-500: #c9a227;
  --gold-400: #dab949;
  --gold-100: #f8efd6;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f7f8fb;
  --grey-100: #eef1f6;
  --grey-300: #cfd6e2;
  --grey-500: #7c879b;
  --text-dark: #131c2b;
  --text-body: #3c4759;

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

  /* Effects */
  --shadow-sm: 0 4px 14px rgba(7, 16, 33, 0.08);
  --shadow-md: 0 12px 32px rgba(7, 16, 33, 0.12);
  --shadow-lg: 0 24px 60px rgba(7, 16, 33, 0.18);
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition-base: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

* {
  box-sizing: border-box;
}

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

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

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

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.text-accent { color: var(--gold-500); }
.text-accent-link { color: var(--gold-500); font-weight: 600; }
.text-accent-link:hover { text-decoration: underline; }

/* Respect reduced motion for standard CSS transitions/animations */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------
   3. SHARED SECTION TYPOGRAPHY
   --------------------------------------------------------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section-eyebrow--center { justify-content: center; }

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 18px;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.section-body { color: var(--text-body); margin-bottom: 16px; }

/* ---------------------------------------------------------
   4. SCROLL-REVEAL ANIMATION (IntersectionObserver driven)
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.reveal[data-reveal="up"]    { transform: translateY(36px); }
.reveal[data-reveal="left"]  { transform: translateY(0) translateX(-40px); }
.reveal[data-reveal="right"] { transform: translateY(0) translateX(40px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------
   5. BUTTONS
   --------------------------------------------------------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-500);
  color: var(--navy-900) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 11px 22px;
  border-radius: 50px;
  border: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.btn-cta:hover {
  background: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--navy-900);
}
.btn-cta--lg { padding: 15px 30px; font-size: 1rem; }

.btn-outline-light-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: background var(--transition-base), border-color var(--transition-base);
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* ---------------------------------------------------------
   6. TOP INFO BAR
   --------------------------------------------------------- */
.top-bar {
  background: var(--navy-900);
  color: var(--grey-300);
  font-size: 0.82rem;
  padding: 7px 0;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar__item { display: inline-flex; align-items: center; gap: 6px; color: var(--grey-300); transition: color 0.25s ease; }
.top-bar__item:hover { color: var(--gold-400); }
.top-bar__right { display: flex; gap: 14px; }
.top-bar__social {
  color: var(--grey-300);
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}
.top-bar__social:hover { color: var(--gold-400); transform: translateY(-2px); }

/* ---------------------------------------------------------
   7. STICKY HEADER
   --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(7,16,33,0.08);
  transition: padding var(--transition-base);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy-900);
}
.site-header__mesh-icon { color: var(--gold-500); display: inline-flex; }
.site-header__brand-text strong { color: var(--navy-700); }

.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--text-dark);
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.25s ease;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover { color: var(--navy-700); }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

/* ---------------------------------------------------------
   8. HERO CAROUSEL
   --------------------------------------------------------- */
.hero { position: relative; }
.hero__carousel { height: 88vh; min-height: 560px; }
.hero__carousel .carousel-item {
  height: 88vh;
  min-height: 560px;
  background-size: cover;
  background-position: center;
}
/* IMPORTANT: only give flex layout to the slide Bootstrap is actually
   showing (active) or transitioning to/from (next/prev). Applying
   display:flex to ALL .carousel-item unconditionally breaks Bootstrap's
   own display:none toggle and makes every slide's text stack on top
   of each other regardless of which slide is "active". */
.hero__carousel .carousel-item.active,
.hero__carousel .carousel-item-next,
.hero__carousel .carousel-item-prev {
  display: flex;
  align-items: center;
}
.hero__slide-content {
  color: var(--white);
  padding-top: 40px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.16);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero__cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__nav-icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  transition: background var(--transition-base);
}
.carousel-control-prev, .carousel-control-next { width: 70px; }
.carousel-control-prev:hover .hero__nav-icon,
.carousel-control-next:hover .hero__nav-icon { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }

.hero__indicators { bottom: 26px; }
.hero__indicators button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none; opacity: 1; margin: 0 5px;
  transition: background var(--transition-base), width var(--transition-base);
}
.hero__indicators button.active { background: var(--gold-500); width: 26px; border-radius: 5px; }

.hero__float-badge {
  position: absolute;
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.95);
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  animation: floatY 4s ease-in-out infinite;
}
.hero__float-badge i { color: var(--gold-500); }
.hero__float-badge--1 { right: 6%; top: 18%; }
.hero__float-badge--2 { right: 10%; bottom: 14%; animation-delay: 1.2s; }
@media (min-width: 992px) { .hero__float-badge { display: inline-flex; } }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) { .hero__float-badge { animation: none; } }

/* ---------------------------------------------------------
   9. MARQUEE (JS-driven via requestAnimationFrame)
   --------------------------------------------------------- */
.marquee {
  background: var(--navy-700);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  position: relative;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0 22px;
}
.marquee__item i { color: var(--gold-400); }
.marquee__dot { color: var(--gold-400); opacity: 0.6; }

/* ---------------------------------------------------------
   10. ABOUT SECTION
   --------------------------------------------------------- */
.about-section { padding: 100px 0; background: var(--white); }

.about-media { position: relative; padding: 0 30px 30px 0; }
.about-media__main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-media__float {
  position: absolute;
  width: 46%;
  right: 0; bottom: 0;
  border: 6px solid var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}
.about-media:hover .about-media__float { transform: translateY(-8px) rotate(-1deg); }
.about-media__mesh-badge {
  position: absolute;
  top: -18px; left: -18px;
  width: 64px; height: 64px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.about-checklist { margin: 22px 0 28px; }
.about-checklist li {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 500;
}
.about-checklist i { color: var(--gold-500); }

.about-counters { border-top: 1px solid var(--grey-100); padding-top: 26px; }
.counter { font-size: 2rem; font-family: var(--font-display); color: var(--navy-700); margin-bottom: 2px; }
.counter-label { font-size: 0.82rem; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------------------------------------------------------
   11. SERVICES SECTION
   (Sequential mesh-tint reveal across the 3 cards)
   --------------------------------------------------------- */
.services-section { padding: 100px 0; background: var(--off-white); position: relative; }

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  height: 100%;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.service-card__img-wrap { height: 220px; overflow: hidden; }
.service-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card__img-wrap img { transform: scale(1.08); }

/* Mesh overlay that "tightens" over the image on hover - literal to netting product */
.service-card__mesh-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; height: 220px;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,162,39,0.9) 0, rgba(201,162,39,0.9) 1.5px, transparent 1.5px, transparent 18px),
    repeating-linear-gradient(-45deg, rgba(201,162,39,0.9) 0, rgba(201,162,39,0.9) 1.5px, transparent 1.5px, transparent 18px);
  opacity: 0;
  transform: scale(1.3);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 2;
  pointer-events: none;
}
.service-card:hover .service-card__mesh-overlay { opacity: 1; transform: scale(1); }

.service-card__body { padding: 30px 26px 32px; }
.service-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--navy-100);
  color: var(--navy-700);
  border-radius: 50%;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: background var(--transition-base), color var(--transition-base);
}
.service-card:hover .service-card__icon { background: var(--gold-500); color: var(--navy-900); }
.service-card__title { font-size: 1.24rem; margin-bottom: 10px; }
.service-card__text { font-size: 0.95rem; margin-bottom: 18px; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--navy-700); font-family: var(--font-display); font-size: 0.9rem; transition: gap var(--transition-base), color var(--transition-base); }
.service-card__link:hover { color: var(--gold-500); gap: 10px; }

/* Sequential blink-in effect for the 4-across card groups (why-us) */
@keyframes cardPulseIn {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
  30%  { box-shadow: 0 0 0 6px rgba(201,162,39,0.28); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}

/* ---------------------------------------------------------
   12. WHY CHOOSE US
   --------------------------------------------------------- */
.why-section { padding: 100px 0; background: var(--white); }

.why-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  height: 100%;
  transition: transform var(--transition-base), border-color var(--transition-base);
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-500);
  animation: cardPulseIn 0.9s ease;
}
.why-card__icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-700);
  font-size: 1.4rem;
}
.why-card__title { font-size: 1.05rem; margin-bottom: 8px; }
.why-card__text { font-size: 0.88rem; margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) { .why-card:hover { animation: none; } }

/* ---------------------------------------------------------
   13. HOW IT WORKS (process line)
   --------------------------------------------------------- */
.process-section { padding: 100px 0; background: var(--navy-900); position: relative; overflow: hidden; }
.process-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 46px);
  pointer-events: none;
}
.process-section .section-eyebrow,
.process-section .section-title { color: var(--white); }
.process-section .section-eyebrow { color: var(--gold-400); }
.process-section .section-eyebrow::before { background: var(--gold-400); }

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.process-step {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 22px;
  transition: transform var(--transition-base), background var(--transition-base);
}
.process-step:hover { transform: translateY(-8px); background: rgba(255,255,255,0.09); }
.process-step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.process-step__title { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.process-step__text { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }

@media (max-width: 991px) {
  .process-line { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .process-line { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   14. WORK CAROUSEL (auto-scrolling strip, rAF driven)
   --------------------------------------------------------- */
.work-carousel-section { padding: 90px 0 100px; background: var(--off-white); }
.work-carousel { overflow: hidden; }
.work-carousel__track { display: flex; gap: 16px; width: max-content; will-change: transform; }
.work-carousel__item {
  width: 260px; height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.work-carousel__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-carousel__item:hover img { transform: scale(1.1); }

@media (max-width: 767px) {
  .work-carousel__item { width: 190px; height: 140px; }
}

/* ---------------------------------------------------------
   15. GALLERY SECTION — 4 cols desktop / 2 cols mobile
   --------------------------------------------------------- */
.gallery-section { padding: 100px 0; background: var(--white); }
.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-base); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,16,33,0) 40%, rgba(7,16,33,0.75));
  color: var(--white);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 14px;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(7,10,20,0.94);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1200;
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute; top: 24px; right: 30px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: background var(--transition-base);
}
.lightbox__close:hover { background: var(--gold-500); color: var(--navy-900); }

/* ---------------------------------------------------------
   16. FAQ SECTION
   --------------------------------------------------------- */
.faq-section { padding: 100px 0; background: var(--off-white); }

.faq-accordion .accordion-item {
  border: none;
  background: var(--white);
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 20px 24px;
  background: var(--white);
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--navy-700);
  background: var(--navy-100);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.faq-accordion .accordion-body { padding: 4px 24px 22px; font-size: 0.95rem; }

/* ---------------------------------------------------------
   17. TESTIMONIAL CAROUSEL
   --------------------------------------------------------- */
.testimonial-section { padding: 100px 0; background: var(--navy-900); position: relative; }
.testimonial-section .section-eyebrow,
.testimonial-section .section-title { color: var(--white); }
.testimonial-section .section-eyebrow { color: var(--gold-400); }
.testimonial-section .section-eyebrow::before { background: var(--gold-400); }

.testimonial-carousel { max-width: 760px; margin: 0 auto; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
}
.testimonial-card__quote-icon { font-size: 2rem; color: var(--gold-500); margin-bottom: 14px; display: inline-block; }
.testimonial-card__text { font-size: 1.08rem; color: var(--text-dark); font-style: italic; margin-bottom: 26px; }
.testimonial-card__author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-card__author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-card__author h4 { font-size: 0.98rem; margin-bottom: 2px; }
.testimonial-card__author span { font-size: 0.82rem; color: var(--grey-500); }

.testimonial-carousel__controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.testimonial-carousel__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition-base), border-color var(--transition-base);
}
.testimonial-carousel__btn:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }
.testimonial-carousel__indicators { position: static; margin: 0; }
.testimonial-carousel__indicators button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; opacity: 1; margin: 0 4px;
  transition: background var(--transition-base), width var(--transition-base);
}
.testimonial-carousel__indicators button.active { background: var(--gold-500); width: 22px; border-radius: 4px; }

/* ---------------------------------------------------------
   18. CONTACT SECTION
   --------------------------------------------------------- */
.contact-section { padding: 100px 0; background: var(--white); }

.contact-info-list { margin-top: 30px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-info-item__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--navy-100);
  color: var(--navy-700);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; margin: 0; color: var(--text-body); }
.contact-info-item a:hover { color: var(--gold-500); }

.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form .form-label { font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: var(--text-dark); margin-bottom: 6px; }
.contact-form .form-control, .contact-form .form-select {
  border: 1.5px solid var(--grey-300);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.94rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(28,68,120,0.14);
}
.contact-form__success {
  display: none;
  margin: 14px 0 0;
  color: #1c7c4a;
  font-weight: 600;
  font-size: 0.92rem;
}
.contact-form__success.is-visible { display: block; }

/* ---------------------------------------------------------
   19. FLOATING BUTTONS
   --------------------------------------------------------- */
.float-btn {
  position: fixed;
  bottom: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  z-index: 900;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}
.float-btn:hover { transform: scale(1.1); color: var(--white); }
.float-btn--whatsapp { left: 26px; background: #25d366; animation: pulseGreen 2.4s infinite; }
.float-btn--call { right: 26px; background: var(--navy-700); animation: pulseNavy 2.4s infinite; }

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.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 pulseNavy {
  0% { box-shadow: 0 0 0 0 rgba(18,48,89,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(18,48,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,48,89,0); }
}
@media (prefers-reduced-motion: reduce) {
  .float-btn--whatsapp, .float-btn--call { animation: none; }
}

/* ---------------------------------------------------------
   20. FOOTER
   --------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.72); padding: 80px 0 26px; }
.site-footer__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}
.site-footer__brand strong { color: var(--gold-400); }
.site-footer__about { font-size: 0.9rem; margin-bottom: 20px; }
.site-footer__socials { display: flex; gap: 12px; }
.site-footer__socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background var(--transition-base), border-color var(--transition-base);
}
.site-footer__socials a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }

.site-footer__heading { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.site-footer__links li { margin-bottom: 10px; font-size: 0.9rem; }
.site-footer__links a { color: rgba(255,255,255,0.72); transition: color var(--transition-base); }
.site-footer__links a:hover { color: var(--gold-400); }
.site-footer__links--contact li { display: flex; gap: 10px; align-items: flex-start; }
.site-footer__links--contact i { color: var(--gold-400); margin-top: 4px; }

.site-footer__divider { border-color: rgba(255,255,255,0.14); margin: 40px 0 22px; }
.site-footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem;
}
.site-footer__bottom a { color: var(--gold-400); font-weight: 600; }

/* ---------------------------------------------------------
   21. RESPONSIVE ADJUSTMENTS
   --------------------------------------------------------- */
@media (max-width: 991px) {
  .about-section, .services-section, .why-section, .process-section,
  .work-carousel-section, .gallery-section, .faq-section,
  .testimonial-section, .contact-section { padding: 70px 0; }
}

@media (max-width: 767px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
  .hero__carousel, .hero__carousel .carousel-item { height: 92vh; min-height: 520px; }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .top-bar__item--address { display: none; }
  .about-media { padding: 0 0 24px 0; }
  .about-media__float { width: 52%; }
  .contact-form { padding: 24px; }
}

@media (max-width: 575px) {
  .section-title { font-size: 1.7rem; }
  .testimonial-card { padding: 32px 22px; }
}
