/* ============================================================
   GANESH FLORA - Main Stylesheet
   Color Palette: Rose Gold, Coral, Sage Green, Sky Blue, Cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --rose:       #E8476A;
  --rose-light: #F8B4C0;
  --coral:      #FF7043;
  --coral-light:#FFB8A0;
  --sky:        #29ABE2;
  --sky-light:  #B3E5FC;
  --green:      #4CAF50;
  --green-light:#C8E6C9;
  --cream:      #FFF8F0;
  --warm-white: #FFFAF6;
  --gold:       #D4AF37;
  --gold-light: #F5E6B3;
  --text-dark:  #2C1A0E;
  --text-mid:   #5A3E2B;
  --text-light: #9E7B5A;
  --shadow-sm:  0 4px 15px rgba(232,71,106,0.15);
  --shadow-md:  0 8px 30px rgba(232,71,106,0.2);
  --shadow-lg:  0 20px 60px rgba(232,71,106,0.25);
  --gradient-hero: linear-gradient(135deg, rgba(232,71,106,0.85) 0%, rgba(255,112,67,0.75) 50%, rgba(41,171,226,0.7) 100%);
  --gradient-section: linear-gradient(160deg, #FFF8F0 0%, #FFF0F5 50%, #F0F8FF 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body{
  overflow-x:hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 10px; }

/* ══════════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════════ */
#topbar {
  background: linear-gradient(90deg, var(--rose) 0%, var(--coral) 50%, var(--sky) 100%);
  padding: 8px 0;
  font-size: 0.78rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.03em;
}

#topbar .top-info a,
#topbar .top-info span {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
#topbar .top-info a:hover { opacity: 0.8; }
#topbar .top-info i { margin-right: 5px; }
#topbar .top-social a {
  color: #fff;
  font-size: 0.9rem;
  margin-left: 10px;
  transition: transform 0.2s, opacity 0.2s;
  display: inline-block;
}
#topbar .top-social a:hover { transform: scale(1.3); opacity: 0.85; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
#mainNav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(232,71,106,0.12);
  padding: 0;
  transition: all 0.35s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 0;
  box-shadow: 0 4px 30px rgba(232,71,106,0.2);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.brand-logo-wrap {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(232,71,106,0.4);
  flex-shrink: 0;
}

.brand-logo-wrap i {
  color: #fff;
  font-size: 1.4rem;
}

.brand-text-wrap .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  display: block;
}

.brand-text-wrap .brand-tagline {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 0.9rem !important;
  position: relative;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--coral));
  border-radius: 2px;
  transition: transform 0.3s ease;
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: #fff !important;
  border-radius: 25px;
  padding: 0.5rem 1.3rem !important;
  margin-left: 8px;
  box-shadow: 0 4px 15px rgba(232,71,106,0.3);
  transition: box-shadow 0.3s, transform 0.2s !important;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  color: #fff !important;
  box-shadow: 0 6px 25px rgba(232,71,106,0.5);
  transform: translateY(-1px);
}

.navbar-toggler {
  border: 2px solid var(--rose);
  border-radius: 8px;
  padding: 5px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E8476A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════════════════════════════════
   HERO CAROUSEL
══════════════════════════════════════════════════════════ */
#heroCarousel {
  position: relative;
}

.carousel-slide {
  height: 92vh;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.slide-1 {
  background-image:
    linear-gradient(135deg, rgba(30, 10, 10, 0.55) 0%, rgba(180, 50, 80, 0.45) 50%, rgba(10, 20, 40, 0.55) 100%),
    url('../img/banner-1.jpg');
  background-size: cover;
  background-position: center;
}

.slide-2 {
  background-image:
    linear-gradient(135deg, rgba(10, 30, 20, 0.5) 0%, rgba(180, 60, 80, 0.4) 50%, rgba(20, 10, 40, 0.55) 100%),
    url('../img/banner-2.jpg');
  background-size: cover;
  background-position: center top;
}

.slide-3 {
  background-image:
    linear-gradient(135deg, rgba(20, 5, 30, 0.5) 0%, rgba(200, 80, 60, 0.4) 50%, rgba(10, 30, 20, 0.55) 100%),
    url('../img/banner-3.jpg');
  background-size: cover;
  background-position: center;
}
/* floating petal shapes in slides */
.slide-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.petal {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.12;
  animation: floatPetal 8s ease-in-out infinite;
}
.petal:nth-child(1){ width:200px;height:200px;background:var(--rose);top:-40px;right:10%;animation-delay:0s; }
.petal:nth-child(2){ width:140px;height:140px;background:var(--coral);bottom:10%;left:5%;animation-delay:2s; }
.petal:nth-child(3){ width:100px;height:100px;background:var(--sky);top:30%;right:30%;animation-delay:4s; }
.petal:nth-child(4){ width:80px;height:80px;background:var(--gold);bottom:20%;right:20%;animation-delay:1s; }

@keyframes floatPetal {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
}

.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.slide-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.slide-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 500px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 30px rgba(232,71,106,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232,71,106,0.55);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 12px 30px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-left: 12px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  margin: 0 20px;
  opacity: 0.8;
  transition: opacity 0.2s, background 0.2s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(232,71,106,0.6);
  opacity: 1;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 5px;
  transition: background 0.3s, transform 0.3s;
}
.carousel-indicators button.active {
  background: var(--gold-light);
  transform: scale(1.3);
}

/* ══════════════════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════════════════ */
section { padding: 90px 0; }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(232,71,106,0.12), rgba(255,112,67,0.12));
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(232,71,106,0.2);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title span {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.divider-flower {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 15px 0 25px;
}
.divider-flower::before,
.divider-flower::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-light));
}
.divider-flower::after {
  background: linear-gradient(90deg, var(--rose-light), transparent);
}
.divider-flower i {
  color: var(--rose);
  font-size: 1rem;
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════
   ABOUT US
══════════════════════════════════════════════════════════ */
#about {
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,71,106,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.about-img-wrap {
  position: relative;
  padding: 20px 20px 0 0;
}


.about-img {
  width: 100%;
  border-radius: 20px 20px 20px 60px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--rose-light), var(--sky-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px 20px 20px 60px;
  background: linear-gradient(135deg, #fce4ec, #bbdefb, #f3e5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 110px;
  border: 1px solid rgba(232,71,106,0.15);
}

.about-badge-float .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
  display: block;
  line-height: 1;
}

.about-badge-float .lbl {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.about-dot-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--rose-light) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  border-radius: 50%;
  opacity: 0.6;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(232,71,106,0.12), rgba(255,112,67,0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--rose);
  border: 1px solid rgba(232,71,106,0.2);
}

.about-feature h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 35px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(232,71,106,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232,71,106,0.5);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
  padding: 11px 28px;
  border-radius: 35px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  display: inline-block;
  margin-left: 12px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn-outline-custom:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
#services {
  background: #fff;
  position: relative;
  overflow: hidden;
}

#services::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(41,171,226,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── SERVICE CARD WITH IMAGE ─────────────────────────── */
.service-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(232,71,106,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* remove old padding — body has its own now */
  padding: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--coral));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
  border-radius: 20px 20px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(232,71,106,0.18);
  border-color: rgba(232,71,106,0.3);
}

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

/* Image area */
.service-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

/* Subtle gradient overlay on image bottom for smooth blend into card body */
.service-img-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)       50%,
    rgba(255,255,255,0.95) 100%
  ); */
  pointer-events: none;
}

/* Card body (icon + text) */
.service-card-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body .service-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, rgba(232,71,106,0.1), rgba(255,112,67,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(232,71,106,0.15);
  transition: transform 0.35s, background 0.35s;
}

.service-card:hover .service-card-body .service-icon-wrap {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  transform: scale(1.1) rotate(5deg);
}

.service-card-body .service-icon-wrap i {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card:hover .service-card-body .service-icon-wrap i {
  background: none;
  -webkit-text-fill-color: #fff;
}

.service-card-body h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}

/* "Enquire Now" link at bottom of card */
.service-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.2s, color 0.2s;
  gap: 4px;
  margin-top: auto;
}

.service-link i {
  transition: transform 0.25s;
  font-size: 0.72rem;
}

.service-link:hover {
  color: var(--coral);
}

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

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════ */
#why {
  background: linear-gradient(135deg, #1a0a20 0%, #2d1440 50%, #0d2035 100%);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(232,71,106,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(41,171,226,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(76,175,80,0.1) 0%, transparent 50%);
  pointer-events: none;
}

#why .section-badge {
  background: rgba(255,255,255,0.1);
  color: var(--rose-light);
  border-color: rgba(255,255,255,0.2);
}

#why .section-title { color: #fff; }
#why .section-subtitle { color: rgba(255,255,255,0.65); }
#why .divider-flower::before { background: linear-gradient(90deg, transparent, rgba(232,71,106,0.5)); }
#why .divider-flower::after { background: linear-gradient(90deg, rgba(232,71,106,0.5), transparent); }

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.35s, background 0.35s, border-color 0.35s;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(232,71,106,0.12);
  border-color: rgba(232,71,106,0.4);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 25px rgba(232,71,106,0.4);
}

.why-card h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   ACHIEVEMENTS
══════════════════════════════════════════════════════════ */
#achievements {
  background: linear-gradient(135deg, #fff8f0, #fff0f5);
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(232,71,106,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--coral), var(--sky));
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(232,71,106,0.15);
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════ */
#gallery {
  background: #fff;
}

.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid rgba(232,71,106,0.3);
  color: var(--text-mid);
  padding: 7px 22px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.05em;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(232,71,106,0.35);
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--rose-light), var(--sky-light));
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,71,106,0.8), rgba(255,112,67,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: 16px;
}

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

.gallery-overlay i {
  font-size: 2rem;
  color: #fff;
  transform: scale(0.7);
  transition: transform 0.35s;
}

.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* placeholder colors for gallery items without images */
.gallery-item.placeholder-1 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.gallery-item.placeholder-2 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.gallery-item.placeholder-3 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.gallery-item.placeholder-4 { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
.gallery-item.placeholder-5 { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.gallery-item.placeholder-6 { background: linear-gradient(135deg, #fbe9e7, #ffccbc); }

.gallery-placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(232,71,106,0.5);
}
.gallery-placeholder-icon i { font-size: 2.5rem; margin-bottom: 8px; }
.gallery-placeholder-icon span { font-size: 0.72rem; color: var(--text-light); }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  text-align: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: var(--rose);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(232,71,106,0.4);
  transition: transform 0.2s;
}
.lightbox-close:hover { transform: scale(1.1); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: var(--rose); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-caption {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin-top: 14px;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
#contact {
  background: var(--gradient-section);
}

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(232,71,106,0.1);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(232,71,106,0.1);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(232,71,106,0.3);
}

.contact-item h6 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
  text-decoration: none;
  line-height: 1.5;
}

.contact-item a:hover { color: var(--rose); }

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(232,71,106,0.1);
}

.form-control {
  border: 1.5px solid rgba(232,71,106,0.15);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-control:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232,71,106,0.12);
  background: #fff;
  outline: none;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-select {
  border: 1.5px solid rgba(232,71,106,0.15);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--warm-white);
}
.form-select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232,71,106,0.12);
  outline: none;
}

/* ══════════════════════════════════════════════════════════
   MAP
══════════════════════════════════════════════════════════ */
#map-section {
  padding: 0;
}

.map-wrap {
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  display: block;
  filter: saturate(0.9) hue-rotate(5deg);
}

.map-overlay-card {
  position: absolute;
  top: 30px;
  left: 30px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  max-width: 280px;
  border-left: 4px solid var(--rose);
  z-index: 2;
}

.map-overlay-card h5 {
  font-size: 1rem;
  color: var(--rose);
  margin-bottom: 6px;
}

.map-overlay-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, #1a0a0e 0%, #2d1018 50%, #0d1a2d 100%);
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 30%, rgba(232,71,106,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 70%, rgba(41,171,226,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.footer-brand .brand-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--rose-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-right: 8px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--coral));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.25s, padding-left 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--rose);
  transition: transform 0.2s;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.9);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--rose);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--rose-light); }

.footer-newsletter {
  position: relative;
  margin-top: 8px;
}

.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 11px 50px 11px 16px;
  font-size: 0.83rem;
  color: #fff;
  outline: none;
  transition: border-color 0.25s;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter input:focus { border-color: var(--rose); }

.footer-newsletter button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--rose), var(--coral));
  border: none;
  border-radius: 7px;
  width: 34px;
  height: 34px;
  color: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.footer-newsletter button:hover { transform: translateY(-50%) scale(1.05); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-bottom a { color: var(--rose-light); text-decoration: none; }

/* ══════════════════════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════════════════════ */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  position: relative;
  transition: transform 0.25s;
}

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

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  animation: glowGreen 2.5s ease-in-out infinite;
}

.float-btn.call {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  box-shadow: 0 6px 20px rgba(232,71,106,0.45);
  animation: glowRose 2.5s ease-in-out infinite;
}

@keyframes glowGreen {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

@keyframes glowRose {
  0%,100% { box-shadow: 0 6px 20px rgba(232,71,106,0.45), 0 0 0 0 rgba(232,71,106,0); }
  50% { box-shadow: 0 6px 30px rgba(232,71,106,0.6), 0 0 0 10px rgba(232,71,106,0.1); }
}

.float-btn-label {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30,30,30,0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateY(-50%) translateX(8px);
}

.float-btn:hover .float-btn-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* scroll to top */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: rgba(30,30,30,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  z-index: 5000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  text-decoration: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--rose); transform: translateY(-3px); color: #fff; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  section { padding: 70px 0; }
  .carousel-slide { height: 70vh; min-height: 480px; }
  .lightbox-prev { left: -20px; }
  .lightbox-next { right: -20px; }
}

@media (max-width: 767px) {
  section { padding: 55px 0; }
  .carousel-slide { height: 80vh; min-height: 420px; }
  .slide-content h1 { font-size: 2rem; }
  .about-badge-float { right: 10px; bottom: 15px; }
  .btn-hero-outline { margin-left: 0; margin-top: 10px; display: block; text-align: center; }
  .map-overlay-card { position: relative; top: auto; left: auto; max-width: 100%; margin: 0; border-radius: 0; }
  .float-btn { width: 48px; height: 48px; font-size: 1.25rem; }
  .lightbox-prev, .lightbox-next { display: none; }
  .cu-mb-ds-nn{
	  Display:none!important
  }
  .cu-jf-cntr{
	  justify-content:center!important
  }
}

@media (max-width: 575px) {
  #topbar .top-info.d-flex { flex-direction: column; gap: 4px; align-items: center; }
  .navbar-brand .brand-text-wrap .brand-name { font-size: 1.15rem;  }
  .navbar-brand{
	  margin-right:0px
  }
  .section-title { font-size: 1.8rem; }
}
