/* ============================================================
   RENT AGREEMENT JUNCTION - Main Stylesheet
   Color Palette: Deep Green, Red, Gray
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

:root {
  --green-dark:   #0b2c3d;
  --green-main:   #0b2c3d;
  --green-light:  #43a047;
  --green-pale:   #e8f5e9;
  --red-main:     #c72f06;
  --red-light:    #ef5350;
  --red-dark:     #a92502;
  --gray-dark:    #2c2c2c;
  --gray-mid:     #5a5a5a;
  --gray-light:   #f4f4f4;
  --white:        #ffffff;
  --gold:         #d4af37;
  --shadow-green: rgba(46,125,50,0.25);
  --shadow-red:   rgba(198,40,40,0.25);
  --transition:   0.35s ease;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── SECTION TITLES ───────────────────────────────────────── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-dark);
  position: relative;
  display: inline-block;
  margin-bottom: 0.4rem;
}
.section-title span { color: var(--red-main); }
.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px auto 36px;
}
.title-divider .line {
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, var(--green-main), var(--red-main));
  border-radius: 2px;
}
.title-divider .diamond {
  width: 10px; height: 10px;
  background: var(--red-main);
  transform: rotate(45deg);
}

/* ── TOP BAR ──────────────────────────────────────────────── */
#top-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 2px solid var(--red-main);
}
#top-bar a { color: #cde; transition: color var(--transition); }
#top-bar a:hover { color: var(--gold); }
#top-bar .top-item { display: flex; align-items: center; gap: 6px; }
#top-bar i { color: var(--gold); font-size: 0.85rem; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--white);
  font-size: 0.78rem; transition: all var(--transition);
  margin-left: 5px;
}
.social-links a:hover { background: var(--red-main); transform: translateY(-2px); }

/* ── NAVBAR ───────────────────────────────────────────────── */
#main-navbar {
  background: var(--white);
  box-shadow: 0 3px 20px rgba(0,0,0,0.10);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: all var(--transition);
}
#main-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.navbar-brand {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
}
.brand-logo {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px var(--shadow-green);
  flex-shrink: 0;
}
.brand-logo i { color: var(--white); font-size: 1.4rem; }
.brand-text .b-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.1;
  letter-spacing: 0.3px;
}
.brand-text .b-sub {
  font-size: 0.68rem;
  color: var(--red-main);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--gray-dark) !important;
  padding: 24px 14px !important;
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0.3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: linear-gradient(to right, var(--green-main), var(--red-main));
  border-radius: 3px 3px 0 0;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green-main) !important; }
.nav-link:hover::after, .nav-link.active::after { left: 10px; right: 10px; }
.nav-cta {
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  color: var(--white) !important;
  border-radius: 30px;
  padding: 10px 22px !important;
  margin-left: 8px;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px var(--shadow-red);
  transition: all var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  box-shadow: 0 4px 14px var(--shadow-green);
  transform: translateY(-2px);
}

/* ── CAROUSEL / HERO ──────────────────────────────────────── */
#heroCarousel { margin-top: 0; }
.carousel-slide {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
}
.carousel-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,71,49,0.85) 0%, rgba(140,30,30,0.6) 100%);
  z-index: 1;
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.carousel-item.active .carousel-slide img { transform: scale(1); }
.carousel-caption-custom {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 20px;
}
.carousel-caption-custom .badge-pill {
  background: var(--red-main);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  display: inline-block;
  animation: fadeInDown 0.8s ease 0.2s both;
}
.carousel-caption-custom h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 3px 20px rgba(0,0,0,0.4);
  animation: fadeInUp 0.8s ease 0.4s both;
}
.carousel-caption-custom h1 span { color: var(--gold); }
.carousel-caption-custom p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 30px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.carousel-caption-custom .btn-hero-primary {
  background: var(--red-main);
  color: var(--white);
  padding: 13px 34px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  box-shadow: 0 6px 24px var(--shadow-red);
  transition: all var(--transition);
  animation: fadeInUp 0.8s ease 0.8s both;
}
.carousel-caption-custom .btn-hero-primary:hover {
  background: transparent;
  border-color: var(--white);
  transform: translateY(-3px);
}
.carousel-caption-custom .btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 34px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all var(--transition);
  animation: fadeInUp 0.8s ease 1s both;
}
.carousel-caption-custom .btn-hero-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-3px);
}
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: 2px solid var(--white);
  margin: 0 5px;
  transition: all var(--transition);
}
.carousel-indicators .active {
  background-color: var(--red-main);
  width: 28px; border-radius: 5px;
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
#about { padding: 90px 0; background: var(--white); }
.about-img-wrap {
  position: relative;
  display: inline-block;
}
.about-img-wrap img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  width: 100%;
}
.about-img-wrap .about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  color: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 30px var(--shadow-red);
}
.about-badge .num { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-badge .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; }
.about-content { padding-left: 40px; }
.about-content p { color: var(--gray-mid); line-height: 1.85; margin-bottom: 14px; }
.about-feature {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.about-feature i {
  color: var(--green-main);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-feature span { font-size: 0.9rem; color: var(--gray-dark); font-weight: 500; }
.btn-green {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  padding: 12px 32px;
  border-radius: 35px;
  font-weight: 600;
  border: none;
  box-shadow: 0 6px 20px var(--shadow-green);
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--shadow-green);
  color: var(--white);
}

/* ── SERVICES ─────────────────────────────────────────────── */
#services {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--green-pale) 0%, #fff5f5 100%);
  position: relative;
}
#services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--green-main), var(--red-main));
}
.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 26px 30px;
  text-align: center;
  box-shadow: 0 8px 36px rgba(0,0,0,0.07);
  transition: all 0.4s ease;
  border: 1px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green-main), var(--red-main));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); border-color: var(--green-pale); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-pale), #fff);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px var(--shadow-green);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
}
.service-icon i {
  font-size: 1.6rem;
  color: var(--green-main);
  transition: color var(--transition);
}
.service-card:hover .service-icon i { color: var(--white); }
.service-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--green-dark);
}
.service-card p { font-size: 0.86rem; color: var(--gray-mid); line-height: 1.7; }

/* ── WHY CHOOSE US ────────────────────────────────────────── */
#why-us {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d2b1d 100%);
  position: relative; overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#why-us .section-title { color: var(--white); }
#why-us .section-subtitle { color: rgba(255,255,255,0.6); }
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  height: 100%;
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-8px);
  border-color: var(--gold);
}
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px var(--shadow-red);
}
.why-icon i { color: var(--white); font-size: 1.5rem; }
.why-card h5 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.84rem; line-height: 1.7; }

/* ── ACHIEVEMENTS ─────────────────────────────────────────── */
#achievements { padding: 80px 0; background: var(--white); }
.achievement-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 36px rgba(0,0,0,0.07);
  border-bottom: 4px solid var(--green-main);
  transition: all 0.4s ease;
}
.achievement-item:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--red-main);
  box-shadow: 0 16px 46px rgba(0,0,0,0.12);
}
.achievement-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--green-main), var(--red-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.achievement-item .lbl { font-size: 0.88rem; color: var(--gray-mid); font-weight: 500; }

/* ── GALLERY ──────────────────────────────────────────────── */
#gallery {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--gray-light) 0%, #fff 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative; border-radius: 12px;
  overflow: hidden; cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,71,49,0.88) 100%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-overlay i { color: var(--white); font-size: 2rem; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff5f5 0%, var(--green-pale) 100%);
  position: relative;
}
.testi-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin: 20px 10px;
  position: relative;
  border-top: 4px solid var(--green-main);
}
.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 1;
  color: var(--green-pale);
  position: absolute; top: 10px; left: 24px;
}
.testi-stars { color: var(--gold); margin-bottom: 12px; font-size: 0.9rem; }
.testi-text {
  font-size: 0.93rem; color: var(--gray-mid);
  line-height: 1.8; margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
}
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-avatar i { color: var(--white); font-size: 1.2rem; }
.testi-author-info .name { font-weight: 700; color: var(--green-dark); font-size: 0.95rem; }
.testi-author-info .loc { font-size: 0.78rem; color: var(--red-main); }
.swiper-pagination-bullet { background: var(--green-main); }
.swiper-pagination-bullet-active { background: var(--red-main); width: 22px; border-radius: 5px; }

/* ── OPD / BOOKING SECTION ────────────────────────────────── */
#opd {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--green-dark), #1b2a22);
  position: relative; overflow: hidden;
}
#opd::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(198,40,40,0.12);
}
.opd-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}
.opd-info h3 span { color: var(--gold); }
.opd-info p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 28px; }
.opd-detail {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.opd-detail:hover { background: rgba(255,255,255,0.12); }
.opd-detail i { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }
.opd-detail-text .label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }
.opd-detail-text .value { font-size: 0.95rem; color: var(--white); font-weight: 600; }
.opd-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.opd-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}
.opd-card .form-label { font-weight: 600; font-size: 0.85rem; color: var(--gray-dark); }
.opd-card .form-control, .opd-card .form-select {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.opd-card .form-control:focus, .opd-card .form-select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}
.btn-book {
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  color: var(--white);
  border: none;
  padding: 13px 0;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  box-shadow: 0 6px 20px var(--shadow-red);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.btn-book:hover {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  box-shadow: 0 6px 20px var(--shadow-green);
  transform: translateY(-2px);
}

/* ── ENQUIRE FORM ─────────────────────────────────────────── */
#enquire {
  padding: 90px 0;
  background: var(--white);
}
.enquire-wrapper {
  background: linear-gradient(135deg, var(--green-pale), #fff5f5);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.enquire-left {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-main) 100%);
  padding: 60px 40px;
  color: var(--white);
}
.enquire-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700;
  margin-bottom: 14px;
}
.enquire-left p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 30px; }
.eq-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.eq-contact-item .ic {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.eq-contact-item .ic i { color: var(--gold); font-size: 1rem; }
.eq-contact-item .txt .l { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }
.eq-contact-item .txt .v { font-size: 0.9rem; color: var(--white); font-weight: 500; }
.enquire-right { padding: 50px 44px; }
.enquire-right .form-control, .enquire-right .form-select {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.enquire-right .form-control:focus, .enquire-right .form-select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}
.enquire-right .form-label { font-weight: 600; font-size: 0.84rem; color: var(--gray-dark); }
.btn-enquire {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white); border: none;
  padding: 13px 40px; border-radius: 35px;
  font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 6px 20px var(--shadow-green);
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-enquire:hover {
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  box-shadow: 0 6px 20px var(--shadow-red);
  transform: translateY(-3px);
  color: var(--white);
}

/* ── CONTACT ──────────────────────────────────────────────── */
#contact { padding: 90px 0; background: var(--gray-light); }
.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 36px rgba(0,0,0,0.07);
  height: 100%;
  border-bottom: 4px solid transparent;
  transition: all 0.4s ease;
}
.contact-card:hover { transform: translateY(-8px); border-bottom-color: var(--green-main); box-shadow: 0 16px 46px rgba(0,0,0,0.12); }
.contact-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-pale), #fff);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px var(--shadow-green);
}
.contact-icon i { font-size: 1.6rem; color: var(--green-main); }
.contact-card h6 { font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.contact-card p { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.7; }

/* ── MAP ──────────────────────────────────────────────────── */
#map-section { position: relative; }
#map-section iframe {
  width: 100%; height: 440px; border: 0;
  display: block;
  filter: grayscale(10%) contrast(1.05);
}
.map-overlay {
  position: absolute; top: 30px; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 14px;
  padding: 18px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 12px;
  z-index: 10;
  white-space: nowrap;
}
.map-overlay i { color: var(--red-main); font-size: 1.4rem; }
.map-overlay span { font-weight: 600; color: var(--green-dark); font-size: 0.95rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  background: linear-gradient(160deg, #0d1f15 0%, #1a1a1a 100%);
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.footer-top { padding: 70px 0 40px; }
.footer-logo-box { margin-bottom: 20px; }
.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.footer-brand-sub { font-size: 0.72rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.footer-about p { line-height: 1.85; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  margin-right: 8px; font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--red-main); color: var(--white); transform: translateY(-3px); }
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 154px; height: 3px;
  background: linear-gradient(to right, var(--green-main), var(--red-main));
  border-radius: 2px;
}
.footer-links li {
  list-style: none;
  margin-bottom: 10px;
}
.footer-links li a {
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links li a::before {
  content: '▸';
  color: var(--green-main);
  font-size: 0.8rem;
}
.footer-links li a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 0; }
.footer-bottom { padding: 18px 0; background: rgba(0,0,0,0.25); }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: var(--gold); }

/* ── FLOATING BUTTONS ─────────────────────────────────────── */
.float-btns {
  position: fixed;
  bottom: 34px; right: 24px;
  z-index: 9999;
  display: flex; flex-direction: column; gap: 14px;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.28);
  transition: all 0.35s ease;
  position: relative;
}
.float-btn::before {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  z-index: -1;
  animation: glowPulse 2s ease-in-out infinite;
}
.float-wa { background: #25d366; color: var(--white); }
.float-wa::before { background: rgba(37,211,102,0.4); }
.float-call { background: var(--green-main); color: var(--white); }
.float-call::before { background: rgba(46,125,50,0.4); animation-delay: 0.5s; }
.float-btn:hover { transform: scale(1.15) translateY(-3px); }
.float-tooltip {
  position: absolute; right: 64px;
  background: var(--gray-dark); color: var(--white);
  font-size: 0.78rem; padding: 5px 12px;
  border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.float-btn:hover .float-tooltip { opacity: 1; }

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.25); opacity: 0; }
}

/* ── BACK TO TOP ──────────────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 34px; left: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red-main); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; z-index: 9999;
  box-shadow: 0 4px 18px var(--shadow-red);
  opacity: 0; transform: translateY(20px);
  transition: all 0.35s ease; border: none;
}
#back-to-top.show { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--green-main); transform: translateY(-3px); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .nav-link { padding: 12px 10px !important; }
  .about-content { padding-left: 0; margin-top: 50px; }
  .about-img-wrap .about-badge { bottom: -12px; right: 10px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .enquire-left { padding: 40px 28px; }
  .enquire-right { padding: 36px 28px; }
  .carousel-slide { height: 70vh; }
}
@media (max-width: 767.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { height: 60vh; min-height: 400px; }
  .carousel-caption-custom h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.8rem; }
  #top-bar .d-flex { flex-direction: column; gap: 4px; }
  .map-overlay { padding: 12px 18px; font-size: 0.82rem; }
  .float-btns { bottom: 22px; right: 14px; }
  .opd-card { padding: 28px 20px; }
}
@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-caption-custom h1 { font-size: 1.5rem; }
  .carousel-caption-custom .btn-hero-primary,
  .carousel-caption-custom .btn-hero-outline {
    padding: 10px 20px; font-size: 0.85rem;
  }
}

/* ── SWIPER OVERRIDES ─────────────────────────────────────── */
.swiper { padding-bottom: 48px !important; }
.swiper-pagination { bottom: 0 !important; }
.cu-lg-wdth{
	width:200px;
}
	.hero-section {
  background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.9)),
              url('https://images.unsplash.com/photo-1507089947368-19c1da9775ae');
  background-size: cover;
  background-position: center;
}

/* BUTTON */
.hero-btn {
  background: #e5390a;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  border-radius: 10px;
}
.hero-btn:hover {
  background: #c72f06;
}

/* COUPON */
.coupon {
  background: #0b2c3d;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
}
.coupon small {
  display: block;
  font-size: 10px;
}

/* FORM BOX */
.calc-box {
  background: #e5390a;
  padding: 25px;
  border-radius: 12px;
  color: #fff;
}

.calc-box input {
  border: none;
  border-radius: 6px;
  padding: 10px;
}
.uc-fnt-19{
	font-size:19px;
}
.cupn-lft img{
	float:left;
	margin-right:5px;
}
.service-box {
  text-align: center;
}

.service-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #ddd;
  padding: 5px;
  transition: 0.3s;
}

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

.view-btn {
  background: #111;
  color: #fff;
  margin-top: 10px;
  padding: 6px 15px;
  border-radius: 6px;
}

.view-btn:hover {
  background: #e5390a;
}
  .faq-title {
        text-align: center;
        font-weight: 600;
        margin-bottom: 40px;
    }

    .accordion-button {
        font-weight: 500;
        /* background: #f1f1f1; */
		font-size:16px;
    }

    .accordion-button:not(.collapsed) {
        background-color: #6c757d;
        color: #fff;
    }

    .accordion-body {
        background: #0d2b45;
        color: #fff;
        font-size: 14px;
        line-height: 1.6;
    }

    .accordion-item {
        border: none;
        border-bottom: 1px solid #ddd;
    }
.why-pr {
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab') no-repeat center center/cover;
    color: #000;
}
.overlay {
    background: rgba(0,0,0,0.6);
    padding: 80px 0;
}


.timeline {
    position: relative;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #ff5722;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.step-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 45%;
    position: relative;
}

.step-left {
    left: 0;
}

.step-right {
    left: 55%;
}

.step-number {
    font-size: 40px;
    font-weight: bold;
    color: #000;
}

.timeline-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #ff5722;
    border-radius: 50%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Mobile Responsive */
@media(max-width: 768px){
    .timeline::after {
        left: 10px;
    }

    .step-box {
        width: 96%;
        left: 0 !important;
        margin-left: 20px;
        margin-bottom: 30px;
    }

    .timeline-dot {
        left: 10px;
    }
}

#enu-st{
	background-color:#212529;
	width:100%;
	display:block;
	Color:#fff;
}
@media(max-width:767px)
{
	.cu-md-ds-nn{
		display:none!important
	}
	#about{
		width:95%;
	}
}