/* =========================================================
   Rose Bird Net — style.css
   Palette: vibrant emerald jade + coral-rose accent
   Fonts:   Sora (display) + DM Sans (body)
   ========================================================= */

:root {
  --primary: #0e9e6e;
  --primary-dark: #0a7d57;
  --primary-soft: #d9f4e9;
  --accent: #ff5a5f;
  --accent-dark: #e8464b;
  --ink: #10233a;
  --ink-soft: #1b3350;
  --amber: #ffb020;
  --mint: #eaf8f2;
  --muted: #5b6b7b;
  --line: #e6ecf1;
  --white: #ffffff;

  --font-display: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 18px rgba(16, 35, 58, .06);
  --shadow: 0 14px 40px rgba(16, 35, 58, .10);
  --shadow-lg: 0 24px 60px rgba(16, 35, 58, .16);
  --shadow-primary: 0 14px 30px rgba(14, 158, 110, .30);
  --shadow-accent: 0 14px 30px rgba(255, 90, 95, .30);
  --t: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html, body {
  overflow-x: clip;
}

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

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--primary); color: #fff; }

/* Mesh signature (woven-net motif) */
.hero-mesh, .booking-mesh, .counter-mesh, .footer-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 26px 26px;
  transform: rotate(0deg);
  pointer-events: none;
}

/* ---------- Section shells ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 680px; margin: 0 auto 54px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

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

.section-desc, .lead-text {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 0;
}

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-display); font-weight: 600; border: none; border-radius: 999px; transition: var(--t); }

.btn-primary-solid {
  background: var(--primary);
  color: #fff;
  padding: 13px 28px;
  box-shadow: var(--shadow-primary);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-primary-solid:hover { background: var(--primary-dark); color: #fff; transform: translateY(-3px); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  padding: 11px 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-3px); }

.btn-call {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-accent);
}
.btn-call:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }

.btn-service {
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
}
.btn-service:hover { background: var(--accent); color: #fff; }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  font-size: .86rem;
  padding: 9px 0;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-right { justify-content: flex-end; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); }
.topbar-item i { color: var(--primary); }
.topbar-item:hover { color: #fff; }
.topbar-social { display: inline-flex; gap: 12px; padding-left: 6px; }
.topbar-social a { color: rgba(255,255,255,.75); transition: var(--t); }
.topbar-social a:hover { color: var(--accent); transform: translateY(-2px); }

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.navbar { padding: 14px 0; }
.navbar-brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo {/* height: 44px;*/ width: 220px; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand-text em { font-style: normal; color: var(--primary); }

.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  padding: 8px 16px;
  position: relative;
  transition: var(--t);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px; bottom: 2px;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--t);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 32px); }
.nav-cta { margin-left: 10px; }
.nav-cta .nav-link::after { display: none; }

.navbar-toggler { border: none; font-size: 1.7rem; color: var(--primary); padding: 0; }
.navbar-toggler:focus { box-shadow: none; }

/* =========================================================
   HERO CAROUSEL
   ========================================================= */
.hero { position: relative; }
.hero .carousel-item {
  height: 88vh;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16,35,58,.90) 0%, rgba(16,35,58,.66) 45%, rgba(16,35,58,.30) 100%);
}
.hero .container { position: relative; height: 100%; display: flex; align-items: center; }
.hero-content { max-width: 640px; color: #fff; text-align: left; padding: 20px 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(14,158,110,.22);
  border: 1px solid rgba(14,158,110,.5);
  color: #eafff6;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
}
.hero-eyebrow i { color: var(--primary); }
.hero-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.hero-title span { color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 30px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.carousel-control-prev, .carousel-control-next {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 1;
  font-size: 1.3rem; color: #fff;
  transition: var(--t);
}
.carousel-control-prev { left: 26px; }
.carousel-control-next { right: 26px; }
.carousel-control-prev:hover, .carousel-control-next:hover { background: var(--primary); border-color: var(--primary); }

/* =========================================================
   RIBBON MARQUEE
   ========================================================= */
.ribbon {
  background: var(--accent);
  overflow: hidden;
  padding: 15px 0;
}
.ribbon-track {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.ribbon-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: .02em;
}
.ribbon-track i { color: rgba(255,255,255,.65); font-size: .55rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--white); }
.about-media { position: relative; padding-bottom: 40px; padding-right: 40px; }
.about-img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  /* height: 460px; */
  object-fit: cover;
}
.about-img-small {
  position: absolute;
  right: 0; bottom: 0;
  width: 220px; height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  top: 26px; left: -14px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-accent);
}
.about-badge-num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; line-height: 1; }
.about-badge-label { font-size: .82rem; font-weight: 600; line-height: 1.25; }

.about-list { list-style: none; padding: 0; margin: 24px 0 30px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-weight: 500; }
.about-list i { color: var(--primary); font-size: 1.2rem; margin-top: 2px; }

.about-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.about-contact { display: flex; flex-direction: column; }
.about-contact-label { font-size: .82rem; color: var(--muted); }
.about-contact-num { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--ink); }
.about-contact-num:hover { color: var(--primary); }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--mint); }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-img { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 18px; }
.service-img img { width: 100%; height: 210px; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-name { font-size: 1.28rem; font-weight: 700; margin-bottom: 10px; }
.service-text { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }

/* =========================================================
   BOOKING STRIP (special call + text section)
   ========================================================= */
.booking-strip {
  position: relative;
  background: var(--ink);
  padding: 74px 0;
  overflow: hidden;
}
.booking-strip::after {
  content: "";
  position: absolute;
  right: -120px; top: -80px;
  width: 360px; height: 360px;
  background: var(--primary);
  opacity: .18;
  border-radius: 50%;
}
.booking-strip .container { position: relative; z-index: 2; }
.booking-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}
.booking-title {
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 14px;
  max-width: 620px;
}
.booking-text { color: rgba(255,255,255,.78); max-width: 560px; margin-bottom: 0; }
.booking-actions { display: flex; flex-direction: column; gap: 14px; }
.booking-btn {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #fff;
  transition: var(--t);
}
.booking-btn:hover { transform: translateY(-4px); color: #fff; }
.booking-call:hover { background: var(--primary); border-color: var(--primary); box-shadow: var(--shadow-primary); }
.booking-text-btn:hover { background: #25d366; border-color: #25d366; box-shadow: 0 14px 30px rgba(37,211,102,.3); }
.booking-btn-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  font-size: 1.4rem;
}
.booking-btn-body { display: flex; flex-direction: column; }
.booking-btn-label { font-size: .8rem; color: rgba(255,255,255,.7); }
.booking-btn-value { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why { background: #fff; }
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  height: 100%;
  text-align: center;
  transition: var(--t);
  box-shadow: var(--shadow-sm);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 20px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 2rem;
  transition: var(--t);
}
.why-card:hover .why-icon { background: var(--primary); color: #fff; transform: rotate(-6deg); }
.why-title { font-size: 1.2rem; margin-bottom: 10px; }
.why-text { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* =========================================================
   COUNTER
   ========================================================= */
.counter {
  position: relative;
  background: var(--primary);
  padding: 70px 0;
  overflow: hidden;
}
.counter::after {
  content: "";
  position: absolute;
  left: -100px; bottom: -120px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.counter .container { position: relative; z-index: 2; }
.counter-item { color: #fff; }
.counter-num, .counter-plus {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
}
.counter-plus { color: #eafff6; }
.counter-label { margin-top: 10px; font-weight: 500; color: rgba(255,255,255,.88); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.works { background: var(--mint); }
.work-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  height: 100%;
  position: relative;
  text-align: center;
  transition: var(--t);
  box-shadow: var(--shadow-sm);
}
.work-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.work-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--primary-soft);
  line-height: 1;
}
.work-icon {
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 1.7rem;
  transition: var(--t);
}
.work-step:hover .work-icon { background: var(--accent); }
.work-title { font-size: 1.15rem; margin-bottom: 8px; }
.work-text { color: var(--muted); font-size: .93rem; margin-bottom: 0; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: #fff; }
.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s ease; }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(16,35,58,.55);
  opacity: 0;
  transition: var(--t);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-zoom {
  position: absolute;
  inset: 0; margin: auto;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  opacity: 0;
  transform: scale(.6);
  transition: var(--t);
  z-index: 2;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--mint); }
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
  margin: 0 8px 60px;
  position: relative;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 6px; left: 34px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--primary-soft);
  line-height: 1;
}
.testi-stars { color: var(--amber); font-size: 1.05rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 1.12rem; color: var(--ink-soft); font-weight: 500; margin-bottom: 26px; position: relative; z-index: 2; }
.testi-person { display: inline-flex; align-items: center; gap: 14px; }
.testi-person img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-soft); }
.testi-person > div { text-align: left; }
.testi-name { display: block; font-family: var(--font-display); font-weight: 700; }
.testi-role { display: block; font-size: .86rem; color: var(--muted); }
.testi-dots { bottom: 8px; }
.testi-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--primary); opacity: .35;
  border: none; margin: 0 5px;
  transition: var(--t);
}
.testi-dots button.active { opacity: 1; width: 30px; border-radius: 999px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: #fff; }
.faq .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  padding: 20px 24px;
  background: #fff;
}
.faq .accordion-button:not(.collapsed) { color: var(--primary); background: var(--primary-soft); box-shadow: none; }
.faq .accordion-button:focus { box-shadow: none; border: none; }
.faq .accordion-button::after {
  background-image: none;
  content: "\2b";
  font-family: "bootstrap-icons";
  font-size: 1.1rem;
  width: auto; height: auto;
  color: var(--primary);
  transition: var(--t);
}
.faq .accordion-button:not(.collapsed)::after { content: "\2212"; transform: none; }
.faq .accordion-body { color: var(--muted); padding: 4px 24px 22px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--mint); }
.contact-info { background: var(--ink); border-radius: var(--radius); padding: 34px; height: 100%; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 1.2rem;
}
.contact-info-label { display: block; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 3px; }
.contact-info-value { color: #fff; font-weight: 500; }
a.contact-info-value:hover { color: var(--primary); }
.contact-map { border-radius: var(--radius-sm); overflow: hidden; margin-top: 8px; }
.contact-map iframe { width: 100%; height: 200px; border: 0; display: block; }

.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); height: 100%; }
.form-label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .96rem;
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(14,158,110,.15);
}
.form-note { margin: 14px 0 0; font-weight: 600; color: var(--primary); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { position: relative; background: var(--ink); color: rgba(255,255,255,.72); padding: 68px 0 0; overflow: hidden; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text em { color: var(--primary); }
.footer-about { font-size: .95rem; margin-bottom: 20px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: var(--t);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-title { color: #fff; font-size: 1.1rem; margin-bottom: 20px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,.72); transition: var(--t); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: .93rem; }
.footer-contact i { color: var(--primary); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom {
  position: relative; z-index: 2;
  margin-top: 46px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .88rem;
}
.footer-bottom p { margin: 0; }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.float-btn {
  position: fixed;
  bottom: 26px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  z-index: 1040;
  box-shadow: var(--shadow);
  transition: var(--t);
}
.float-btn:hover { color: #fff; transform: scale(1.08); }
.float-whatsapp { left: 26px; background: #25d366; }
.float-call { right: 26px; background: var(--accent); }
.float-whatsapp::before, .float-call::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: pulse 2s infinite;
}
.float-whatsapp::before { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
.float-call::before { box-shadow: 0 0 0 0 rgba(255,90,95,.6); }
@keyframes pulse {
  70% { box-shadow: 0 0 0 16px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.cu-vde{
	border:1px solid;
	border-radius:10px;
	
}
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .section { padding: 72px 0; }
  .navbar-collapse {
    background: #fff;
    margin-top: 12px;
    border-radius: var(--radius-sm);
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .navbar-nav .nav-link::after { display: none; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn-call { width: 100%; justify-content: center; }
  .hero .carousel-item { height: auto; min-height: 0; padding: 90px 0; }
  .hero-overlay { background: linear-gradient(180deg, rgba(16,35,58,.86), rgba(16,35,58,.7)); }
  .about-media { padding-right: 0; padding-bottom: 0; margin-bottom: 10px; }
  .about-img-main { height: 380px; }
  .about-img-small { display: none; }
  .booking-actions { margin-top: 6px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 767.98px) {
  .topbar { text-align: center; }
  .topbar-left, .topbar-right { justify-content: center; gap: 16px; }
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 38px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .about-cta { gap: 16px; }
  .service-img img { height: 200px; }
  .gallery-item img { height: 165px; }
  .testi-card { padding: 30px 22px; }
  .contact-info, .contact-form-wrap { padding: 26px; }
  .carousel-control-prev, .carousel-control-next { display: none; }
  .float-btn { width: 50px; height: 50px; font-size: 1.3rem; bottom: 20px; }
  .float-whatsapp { left: 18px; }
  .float-call { right: 18px; }
  .cu-ds-nn{
	  display:none!important
  }
}

@media (max-width: 575.98px) {
  .brand-text { font-size: 1.2rem; }
  .brand-logo {/* height: 38px; */}
  .hero-title { font-size: 1.8rem; }
  .about-img-main { height: 300px; }
}
