/* =====================================================
   VIKRAM BALLOON DECORATION — style.css
   Design tokens: Coral #FF4D6D · Sunshine #FFC93C
   Turquoise #17C3B2 · Plum #6A2C70 · Cream #FFF8F0 · Ink #2B2338
   Display face: Fredoka | Body face: Poppins
   ===================================================== */

:root {
  --color-primary: #FF4D6D;      /* coral pink   */
  --color-primary-dark: #E8365A;
  --color-secondary: #17C3B2;    /* turquoise    */
  --color-accent: #FFC93C;       /* sunshine     */
  --color-plum: #6A2C70;         /* deep plum    */
  --color-plum-dark: #4E2054;
  --color-cream: #FFF8F0;        /* background   */
  --color-ink: #2B2338;          /* text         */
  --color-ink-soft: #5A5168;
  --color-white: #ffffff;

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 10px 30px rgba(106, 44, 112, 0.12);
  --shadow-pop: 0 16px 40px rgba(255, 77, 109, 0.25);
  --shadow-card: 0 8px 24px rgba(43, 35, 56, 0.08);

  --section-pad: 90px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------- Base -------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  color: var(--color-plum);
  font-weight: 600;
}

p { color: var(--color-ink-soft); line-height: 1.75; }

a { text-decoration: none; }

img { max-width: 100%; }

::selection { background: var(--color-accent); color: var(--color-ink); }

:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
}

.section-pad { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(255, 77, 109, 0.09);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-block;
}

.section-title { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 14px; }

.section-sub { max-width: 620px; }

.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 50px;
  padding: 13px 30px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(255, 77, 109, 0.32);
}

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

.btn-plum {
  background: var(--color-plum);
  color: #fff;
  box-shadow: 0 14px 30px rgba(106, 44, 112, 0.28);
}
.btn-plum:hover { background: var(--color-plum-dark); color: #fff; transform: translateY(-3px); }

.btn-accent {
  background: var(--color-accent);
  color: var(--color-ink);
  box-shadow: 0 14px 30px rgba(255, 201, 60, 0.35);
}
.btn-accent:hover { background: #ffbb0e; color: var(--color-ink); transform: translateY(-3px); }

.btn-call {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(23, 195, 178, 0.3);
}
.btn-call:hover { background: #12a89a; color: #fff; transform: translateY(-3px); }

/* Balloon-arch scalloped divider — signature element */
.arch-divider {
  width: 100%;
  height: 34px;
  line-height: 0;
  overflow: hidden;
}
.arch-divider svg { width: 100%; height: 100%; display: block; }

/* -------------------- Top bar -------------------- */
.top-bar {
  background: var(--color-plum);
  color: #f1e6f2;
  font-size: 0.86rem;
  padding: 8px 0;
}
.top-bar a { color: #f1e6f2; }
.top-bar a:hover { color: var(--color-accent); }
.top-bar .divider { opacity: 0.35; margin: 0 10px; }
.top-bar .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  margin-left: 8px;
  transition: background .25s ease, transform .25s ease;
}
.top-bar .social-links a:hover { background: var(--color-primary); transform: translateY(-2px); }

/* -------------------- Header -------------------- */
.site-header {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(43,35,56,0.06);
  transition: box-shadow .3s ease;
}
.navbar-brand img { }
.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 10px;
  position: relative;
  padding: 8px 2px !important;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0%;
  height: 3px;
  border-radius: 3px;
  background: var(--color-primary);
  transition: width .28s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 100%; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--color-primary); }
.header-cta { white-space: nowrap; }

/* -------------------- Hero -------------------- */
.hero-carousel { position: relative; overflow: hidden; }
.hero-slide {
  height: 92vh;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(43,35,56,0.72) 0%, rgba(43,35,56,0.42) 45%, rgba(43,35,56,0.18) 100%);
}
.hero-slide .container { position: relative; z-index: 2; }
.hero-slide .hero-eyebrow {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.hero-slide h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.12;
  margin: 14px 0 18px;
}
.hero-slide h1 span { color: var(--color-accent); }
.hero-slide p.lead { color: #f1e9f2; max-width: 560px; font-size: 1.05rem; }

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 11px; height: 11px; border-radius: 50%; background: #fff; opacity: 0.55;
}
.hero-carousel .carousel-indicators .active { opacity: 1; background: var(--color-accent); }
.hero-carousel .carousel-control-prev, .hero-carousel .carousel-control-next { width: 6%; opacity: 0.8; }
.hero-carousel .carousel-control-prev-icon, .hero-carousel .carousel-control-next-icon {
  background-color: rgba(255,255,255,0.18);
  border-radius: 50%;
  padding: 22px;
  background-size: 45%;
}

.hero-stats {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--color-white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -10px 30px rgba(43,35,56,0.08);
}
.hero-stats .stat-item { text-align: center; padding: 26px 10px; }
.hero-stats .stat-item h3 { font-size: 2rem; margin-bottom: 2px; color: var(--color-primary); }
.hero-stats .stat-item span { font-size: 0.85rem; color: var(--color-ink-soft); font-weight: 600; letter-spacing: .4px; }

/* Floating balloon decorations, ambient */
.float-balloon {
  position: absolute;
  animation: floaty 6s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
}
.float-balloon svg { width: 100%; height: auto; display: block; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-22px) rotate(2deg); }
}

/* -------------------- About -------------------- */
.about-section { background: var(--color-white); position: relative; overflow: hidden; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
}
.about-badge {
  position: absolute;
  bottom: -26px;
  right: -18px;
  background: var(--color-primary);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
  text-align: center;
  font-family: var(--font-display);
}
.about-badge strong { display: block; font-size: 1.7rem; line-height: 1; }
.about-badge span { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: .5px; }

.about-list { list-style: none; padding: 0; margin: 22px 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--color-ink);
}
.about-list li i {
  color: var(--color-secondary);
  background: rgba(23,195,178,0.12);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* -------------------- Services -------------------- */
.services-section { background: var(--color-cream); }
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(106,44,112,0.06);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-soft); }
.service-card .service-img { position: relative; overflow: hidden;  }
.service-card .service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-card .service-num {
  position: absolute; top: 14px; left: 14px;
  background: var(--color-accent);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 700;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.service-card .service-body { padding: 24px 24px 26px; flex-grow: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; flex-grow: 1; }
.service-card .btn-call { align-self: flex-start; margin-top: 14px; padding: 10px 22px; font-size: 0.88rem; }
.service-card .btn-call i { margin-right: 6px; }

/* -------------------- Why Choose Us -------------------- */
.why-section {
  background: var(--color-plum);
  position: relative;
  overflow: hidden;
  color: #f1e6f2;
}
.why-section .section-title, .why-section h2 { color: #fff; }
.why-section .section-sub, .why-section p { color: #d7c4da; }
.why-section .eyebrow { background: rgba(255,255,255,0.12); color: var(--color-accent); }
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  height: 100%;
  transition: transform .3s ease, background .3s ease;
}
.why-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.11); }
.why-card .why-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--color-accent);
  color: var(--color-plum);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.why-card h3 { color: #fff; font-size: 1.1rem; }
.why-card p { color: #cdb8cf; font-size: 0.92rem; margin-bottom: 0; }

/* -------------------- Counters -------------------- */
.counter-section {
  background: var(--color-primary);
  background-image: linear-gradient(120deg, var(--color-primary) 0%, #ff6f8b 100%);
}
.counter-item { text-align: center; color: #fff; padding: 10px; }
.counter-item .counter-icon { font-size: 1.8rem; margin-bottom: 10px; color: var(--color-accent); }
.counter-item h3 { color: #fff; font-size: 2.6rem; margin-bottom: 4px; }
.counter-item span { font-weight: 600; letter-spacing: .4px; font-size: 0.9rem; opacity: 0.95; }

/* -------------------- How It Works -------------------- */
.how-section { background: var(--color-white); }
.how-step { text-align: center; position: relative; padding: 10px 14px; }
.how-balloon {
  width: 92px; height: 108px;
  margin: 0 auto 20px;
  position: relative;
}
.how-balloon svg { width: 100%; height: 100%; }
.how-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.how-step p { font-size: 0.9rem; }
.how-connector {
  position: absolute;
  top: 46px;
  right: -50%;
  width: 100%;
  border-top: 3px dashed #f0c9d1;
  z-index: 0;
}

/* -------------------- Gallery -------------------- */
.gallery-section { background: var(--color-cream); }
.gallery-grid { --bs-gutter-x: 14px; --bs-gutter-y: 14px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(106,44,112,0.85) 0%, rgba(106,44,112,0) 55%);
  display: flex; align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: 0.85rem; }
.gallery-overlay i { color: var(--color-accent); margin-left: auto; }

/* -------------------- Testimonials -------------------- */
.testimonial-section { background: var(--color-white); }
.testimonial-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.testimonial-card .quote-icon { color: var(--color-accent); font-size: 2rem; margin-bottom: 14px; }
.testimonial-card p.quote { font-size: 1.08rem; color: var(--color-ink); font-style: italic; }
.testimonial-card .stars { color: var(--color-accent); margin: 14px 0; }
.testimonial-card img { width: 62px; height: 62px; border-radius: 50%; margin-bottom: 10px; box-shadow: var(--shadow-card); }
.testimonial-card h4 { font-size: 1rem; margin-bottom: 2px; }
.testimonial-card span { font-size: 0.82rem; color: var(--color-ink-soft); }
#testimonialCarousel .carousel-control-prev, #testimonialCarousel .carousel-control-next {
  position: static;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 1;
  margin: 0 8px;
}
#testimonialCarousel .carousel-control-prev-icon, #testimonialCarousel .carousel-control-next-icon { background-size: 45%; }
.testimonial-controls { display: flex; justify-content: center; margin-top: 26px; }

/* -------------------- FAQ -------------------- */
.faq-section { background: var(--color-cream); }
.accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-plum);
  padding: 20px 24px;
  background: var(--color-white);
}
.accordion-button:not(.collapsed) {
  background: var(--color-plum);
  color: #fff;
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after { filter: invert(1) brightness(2); }
.accordion-body { background: var(--color-white); color: var(--color-ink-soft); padding: 20px 24px 26px; }

/* -------------------- Booking CTA (Call / WhatsApp only) -------------------- */
.booking-section {
  position: relative;
  background: var(--color-plum);
  background-image:
    radial-gradient(circle at 15% 30%, rgba(255,201,60,0.18) 0, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(23,195,178,0.22) 0, transparent 45%),
    linear-gradient(120deg, var(--color-plum) 0%, var(--color-plum-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.booking-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.booking-card .eyebrow { background: rgba(255,255,255,0.14); color: var(--color-accent); }
.booking-card h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.booking-card p { color: #d7c4da; max-width: 560px; margin: 0 auto 30px; }
.booking-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.booking-actions .btn { min-width: 240px; font-size: 1.05rem; padding: 16px 30px; }
.booking-actions .btn i { margin-right: 10px; font-size: 1.15rem; }
.booking-note {
  margin-top: 22px;
  font-size: 0.85rem;
  color: #b79db9;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* -------------------- Contact -------------------- */
.contact-section { background: var(--color-white); }
.contact-info-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  height: 100%;
}
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item .contact-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: var(--shadow-pop);
}
.contact-item h4 { font-size: 1rem; margin-bottom: 3px; }
.contact-item p, .contact-item a { margin-bottom: 0; font-size: 0.92rem; color: var(--color-ink-soft); }
.contact-item a:hover { color: var(--color-primary); }

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(106,44,112,0.06);
}
.contact-form-card .form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid #ecdfe6;
  padding: 13px 16px;
  font-size: 0.94rem;
}
.contact-form-card .form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(23,195,178,0.14);
}
.contact-form-card label { font-weight: 600; font-size: 0.86rem; color: var(--color-ink); margin-bottom: 6px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* -------------------- Footer -------------------- */
.site-footer { background: #221c2a; color: #cbbfce; }
.site-footer h5 { color: #fff; font-family: var(--font-display); margin-bottom: 18px; font-size: 1.1rem;font-size: 1.1rem;
    background-color: #b71561;
    padding: 4px;
    border-top-right-radius: 20px; }
.site-footer p { color: #a698ab; font-size: 0.9rem; }
.site-footer .footer-logo img { height: 44px; margin-bottom: 16px; filter: brightness(1.4); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #a698ab; font-size: 0.92rem; transition: color .2s ease, padding-left .2s ease; }
.footer-links a:hover { color: var(--color-accent); padding-left: 4px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  margin-right: 8px;
  transition: background .25s ease, transform .25s ease;
}
.footer-social a:hover { background: var(--color-primary); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; font-size: 0.84rem; color: #8f829a; }
.footer-bottom a { color: #cbbfce; }
.footer-bottom a:hover { color: var(--color-accent); }

/* -------------------- Floating icons -------------------- */
.floating-icon {
  position: fixed;
  bottom: 26px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 26px rgba(43,35,56,0.3);
  transition: transform .25s ease;
  animation: pulse-icon 2.4s ease-in-out infinite;
}
.floating-icon:hover { transform: scale(1.1); color: #fff; }
.floating-call { right: 24px; background: var(--color-secondary); }
.floating-whatsapp { left: 24px; background: #25D366; }
@keyframes pulse-icon {
  0%, 100% { box-shadow: 0 10px 26px rgba(43,35,56,0.3), 0 0 0 0 rgba(255,255,255,0.0); }
  50% { box-shadow: 0 10px 26px rgba(43,35,56,0.3), 0 0 0 10px rgba(255,255,255,0.0); }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-plum);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-primary); color: #fff; }

/* -------------------- Scroll reveal -------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* -------------------- Preloader -------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--color-cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader .loader-balloon { width: 60px; height: 72px; animation: floaty 1.4s ease-in-out infinite; }
.cu-lg-wdth{
	width:250px;
}
/* -------------------- Responsive -------------------- */
@media (max-width: 991.98px) {
  :root { --section-pad: 64px; }
  .hero-slide { height: 78vh; min-height: 500px; }
  .navbar-collapse { background: var(--color-white); padding: 18px; border-radius: var(--radius-md); margin-top: 12px; box-shadow: var(--shadow-card); }
  .header-cta { display: none; }
  .about-badge { right: 10px; bottom: -20px; }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		Display:none!important
	}
	.cu-jf-vtnr{
		justify-content:center!important
	}
  .hero-slide { height: 86vh; min-height: 560px; text-align: center; }
  .hero-slide .container { display: flex; flex-direction: column; align-items: center; }
  .hero-slide p.lead { margin-left: auto; margin-right: auto; }
  .hero-stats .stat-item { padding: 18px 6px; }
  .hero-stats .stat-item h3 { font-size: 1.5rem; }
  .how-connector { display: none; }
  .booking-actions .btn { width: 100%; }
  .top-bar .top-bar-address { display: none; }
  .floating-icon { width: 50px; height: 50px; font-size: 1.3rem; bottom: 18px; }
  .floating-call { right: 16px; }
  .floating-whatsapp { left: 16px; }
  .back-to-top { right: 16px; bottom: 84px; }
}

@media (max-width: 575.98px) {
  .section-pad { padding-top: 54px; padding-bottom: 54px; }
  .testimonial-card { padding: 28px 20px; }
  .booking-card { padding: 34px 20px; }
}
#enu-st{
	    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 50px;
    padding: 13px 30px;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
	    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-pop);
	Display:block;
	width:100%
}
@media(max-width:374px)
{
	.cu-lg-wdth{
	width:220px;
}
}