/* ============================================================
   MEGHER BARI HOMESTAY – Main Stylesheet
   Nature-Inspired Green / Mountain Theme
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #1f6b3a;   /* deep forest green – dominant logo green */
  --primary-dark:  #0d3d1f;   /* darkest mountain green */
  --primary-light: #4caf72;   /* mid-tone fresh green */
  --accent:        #c8960a;   /* rich warm gold – logo gold */
  --accent-light:  #f5c842;   /* bright sunlit gold */
  --text-dark:     #121c14;
  --text-muted:    #6c757d;
  --bg-light:      #f5fdf7;
  --bg-section:    #e8f5ed;
  --white:         #ffffff;
  --shadow-sm:     0 2px 12px rgba(31,107,58,.13);
  --shadow-md:     0 6px 30px rgba(31,107,58,.20);
  --shadow-lg:     0 12px 48px rgba(31,107,58,.25);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all .35s ease;
  --navbar-height: 80px;
}

/* ---------- Base Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; line-height: 1.25; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}
.title-underline::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 10px auto 0;
}
.section-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: .5rem;
}

/* ---------- Section Spacing ---------- */
section { padding: 90px 0; }
.section-bg { background: var(--bg-section); }
.section-dark { background: var(--primary-dark); color: var(--white); }

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.btn-accent-custom {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-dark);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-accent-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
}
.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover { background: #20b858; transform: translateY(-3px); color: var(--white); }

/* ---------- Navbar ---------- */
#mainNavbar {
  background: transparent;
  transition: var(--transition);
  padding: 0;
  min-height: var(--navbar-height);
  z-index: 1050;
}
#mainNavbar.scrolled {
  background: rgba(27,67,50,.97) !important;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.navbar-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
  text-decoration: none;
}
.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.30);
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  flex-shrink: 0;
  transition: var(--transition);
}
.navbar-brand:hover .brand-logo { transform: scale(1.08); border-color: var(--accent-light); }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.brand-sub {
  font-size: .6rem;
  letter-spacing: 2px;
  color: var(--accent-light);
  text-transform: uppercase;
  display: block;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem 1rem !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: .3px;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent-light);
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }
.navbar-nav .nav-link:hover { color: var(--accent-light) !important; }
.nav-book-btn {
  background: var(--accent);
  color: var(--text-dark) !important;
  border-radius: 50px !important;
  padding: .5rem 1.4rem !important;
  font-weight: 700 !important;
  margin-left: .5rem;
  transition: var(--transition);
}
.nav-book-btn:hover { background: var(--accent-light); transform: translateY(-2px); }
.navbar-toggler { border: none; outline: none; }
.navbar-toggler-icon { filter: invert(1); }

/* ---------- Page Banner ---------- */
.page-banner {
  min-height: 380px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat;
  opacity: .25;
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(2rem,5vw,3.5rem); color: var(--white); font-weight: 700; }
.page-banner .breadcrumb { background: transparent; padding: 0; }
.page-banner .breadcrumb-item, .page-banner .breadcrumb-item a { color: rgba(255,255,255,.7); font-size: .9rem; }
.page-banner .breadcrumb-item.active { color: var(--accent-light); }
.page-banner .breadcrumb-divider { color: rgba(255,255,255,.4); }

/* ---------- Cards ---------- */
.card-custom {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: none;
}
.card-custom:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-img-wrapper { overflow: hidden; position: relative; }
.card-img-wrapper img { transition: transform .6s ease; }
.card-img-wrapper:hover img { transform: scale(1.08); }
.card-body-custom { padding: 1.6rem; }
.card-tag {
  display: inline-block;
  background: var(--bg-section);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: .8rem;
}

/* ---------- Icon Box ---------- */
.icon-box {
  width: 70px; height: 70px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.icon-box:hover { transform: rotate(5deg) scale(1.05); }
.icon-box-sm {
  width: 50px; height: 50px;
  font-size: 1.1rem;
  border-radius: 10px;
}
.icon-box-accent { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--text-dark); }

/* ---------- Stats Counter ---------- */
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: .5rem; letter-spacing: 1px; }

/* ---------- Hero Section ---------- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(27,67,50,.85), rgba(45,106,79,.7)),
              url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&q=90') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero .hero-content { position: relative; z-index: 2; padding-top: var(--navbar-height); }
#hero h1 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); color: var(--white); font-weight: 900; line-height: 1.1; }
#hero .hero-tagline { font-size: clamp(1rem, 2vw, 1.3rem); color: rgba(255,255,255,.85); font-weight: 300; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--accent-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  margin-bottom: 1.2rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ---------- Quick Booking Bar ---------- */
.booking-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 10;
  margin-top: -40px;
}
.booking-bar .form-control, .booking-bar .form-select {
  border: 1px solid #e0e8e2;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: .9rem;
  transition: var(--transition);
}
.booking-bar .form-control:focus, .booking-bar .form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(82,183,136,.15);
}
.booking-label { font-size: .72rem; font-weight: 600; letter-spacing: 1px; color: var(--primary); text-transform: uppercase; margin-bottom: .3rem; }

/* ---------- Room Cards ---------- */
.room-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); background: var(--white); }
.room-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.room-img { width: 100%; height: 260px; object-fit: cover; transition: transform .6s ease; }
.room-card:hover .room-img { transform: scale(1.06); }
.room-info { padding: 1.5rem; }
.room-price { font-size: 1.6rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }
.room-price span { font-size: .85rem; font-weight: 400; color: var(--text-muted); }
.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-section);
  color: var(--primary-dark);
  font-size: .75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  margin: 2px;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(27,67,50,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- Testimonial ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--primary-light);
  opacity: .2;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}
.stars { color: #ffc107; font-size: .9rem; }
.reviewer-avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); }

/* ---------- FAQ Accordion ---------- */
.faq-accordion .accordion-item {
  border: 1px solid #e0eae4;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--primary-dark);
  background: var(--white);
  padding: 1.1rem 1.4rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d6a4f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ---------- Contact Form ---------- */
.form-styled .form-control, .form-styled .form-select, .form-styled textarea {
  border: 1.5px solid #dde9e2;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .9rem;
  transition: var(--transition);
  background: #f8fdf9;
}
.form-styled .form-control:focus, .form-styled .form-select:focus, .form-styled textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(82,183,136,.15);
  background: #fff;
}
.form-styled label { font-weight: 600; font-size: .85rem; color: var(--primary-dark); margin-bottom: .4rem; }

/* ---------- Map ---------- */
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrapper iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.6); color: var(--white); }
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Footer ---------- */
footer {
  background: #0f2318;
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
footer .footer-brand { display: flex; align-items: center; gap: 12px; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: .4rem; }
.footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.20);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  flex-shrink: 0;
}
footer .footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); letter-spacing: 1px; }
footer h5 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 1.2rem;
}
footer h5::after { content:''; position:absolute; bottom:0; left:0; width:40px; height:2px; background:var(--primary-light); }
footer a { color: rgba(255,255,255,.65); font-size: .88rem; transition: var(--transition); }
footer a:hover { color: var(--accent-light); padding-left: 4px; }
footer .footer-link-list li { margin-bottom: .5rem; }
footer .contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: .9rem; font-size: .88rem; }
footer .contact-item i { color: var(--primary-light); margin-top: 2px; width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 50px;
  padding: 18px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  transition: var(--transition);
  margin: 3px;
}
.social-icon:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); border-color: var(--primary); }

/* ---------- Attraction Cards ---------- */
.attraction-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 340px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.attraction-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.attraction-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.attraction-card:hover img { transform: scale(1.08); }
.attraction-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,35,24,.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}
.attraction-dist { font-size: .75rem; color: var(--accent-light); font-weight: 600; margin-bottom: .3rem; }

/* ---------- Service Feature Box ---------- */
.service-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  height: 100%;
}
.service-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-bottom-color: var(--primary); }
.service-icon { font-size: 2.8rem; color: var(--primary); margin-bottom: 1rem; transition: var(--transition); }
.service-box:hover .service-icon { transform: scale(1.15) rotate(-5deg); color: var(--primary-dark); }

/* ---------- Pricing Table ---------- */
.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-head {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
}
.pricing-price { font-size: 2.8rem; font-weight: 900; font-family: 'Playfair Display', serif; }
.pricing-body { background: var(--white); padding: 2rem 1.5rem; }
.pricing-feature { padding: .5rem 0; border-bottom: 1px dashed #e0eae4; font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.pricing-feature i { color: var(--primary); }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content:''; position:absolute; left:16px; top:0; bottom:0; width:2px; background: linear-gradient(var(--primary), var(--primary-light)); }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-dot { position:absolute; left:-32px; top:4px; width:18px; height:18px; border-radius:50%; background:var(--primary); border:3px solid var(--white); box-shadow:var(--shadow-sm); }

/* ---------- Lightbox Styles ---------- */
.lb-overlay { position:fixed; inset:0; background:rgba(0,0,0,.9); z-index:99999; display:flex; align-items:center; justify-content:center; }
.lb-img { max-width:90vw; max-height:90vh; border-radius:8px; box-shadow:var(--shadow-lg); }
.lb-close { position:absolute; top:20px; right:28px; color:#fff; font-size:2rem; cursor:pointer; background:none; border:none; }
.lb-nav { position:absolute; top:50%; transform:translateY(-50%); color:#fff; font-size:2.5rem; background:rgba(255,255,255,.1); border:none; border-radius:50%; width:50px;height:50px; display:flex;align-items:center;justify-content:center; cursor:pointer; transition:var(--transition); }
.lb-nav:hover { background:rgba(255,255,255,.25); }
.lb-prev { left:20px; }
.lb-next { right:20px; }

/* ---------- Swiper Overrides ---------- */
.swiper-pagination-bullet-active { background: var(--primary) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--primary) !important; }

/* ---------- Scroll-to-top ---------- */
#scrollTop {
  position: fixed;
  bottom: 98px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  transition: opacity .5s ease;
}
.loader-ring {
  width: 60px; height: 60px;
  border: 4px solid rgba(255,255,255,.2);
  border-top-color: var(--accent-light);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text { color: rgba(255,255,255,.7); font-size: .85rem; letter-spacing: 3px; text-transform: uppercase; }

/* ---------- AOS Overrides ---------- */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ---------- Utility ---------- */
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.rounded-custom { border-radius: var(--radius) !important; }
.rounded-lg-custom { border-radius: var(--radius-lg) !important; }
.shadow-custom { box-shadow: var(--shadow-md) !important; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; margin: 12px 0; }
.divider-center { margin: 12px auto; }
.overlay-dark { background: rgba(15,35,24,.55); }

/* ---------- Responsive – Tablet (≤991px) ---------- */
@media (max-width: 991.98px) {
  html, body { overflow-x: hidden; }

  section { padding: 64px 0; }

  /* Navbar */
  .navbar-collapse {
    background: rgba(13,61,31,.98);
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    margin-top: .5rem;
    box-shadow: var(--shadow-md);
  }
  .navbar-nav .nav-link { padding: .65rem 1rem !important; border-bottom: 1px solid rgba(255,255,255,.07); }
  .navbar-nav .nav-link:last-child { border-bottom: none; }
  .nav-book-btn { margin: .5rem 0 0 0; text-align: center; justify-content: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Page Banner */
  .page-banner { text-align: center; }
  .page-banner .breadcrumb { justify-content: center; }

  /* Service boxes equal height fix */
  .service-box { padding: 1.5rem; }

  /* Stats */
  .stat-number { font-size: 2.4rem; }
}

/* ---------- Responsive – Mobile (≤767px) ---------- */
@media (max-width: 767.98px) {
  html, body { overflow-x: hidden; }

  section { padding: 52px 0; }

  /* ── Global centering: every section's label/title/subtitle block ── */
  .section-label { display: block; text-align: center; }
  .section-title { display: block; text-align: center; }
  .section-title.text-start { text-align: center !important; }
  .section-subtitle { text-align: center; }
  .title-underline::after { margin: 10px auto 0; }
  .divider { margin-left: auto; margin-right: auto; }

  /* ── Hero ── */
  #hero { background-attachment: scroll; }
  #hero .hero-content { text-align: center !important; padding-top: 100px; padding-bottom: 40px; }
  #hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  #hero .hero-tagline { font-size: .95rem; }
  .hero-badge { font-size: .7rem; letter-spacing: 2px; }
  #hero .d-flex.flex-wrap.gap-3 { justify-content: center; }
  #hero .d-flex.flex-wrap.gap-4 { justify-content: center; }
  #hero .col-lg-7 { text-align: center !important; }

  /* ── Welcome / About section ── */
  .col-lg-6 .section-label,
  .col-lg-5 .section-label,
  .col-lg-7 .section-label { text-align: center; }
  .col-lg-6 .section-title.text-start,
  .col-lg-5 .section-title.text-start { text-align: center !important; }
  .col-lg-6 .section-title.text-start::after,
  .col-lg-5 .section-title.text-start::after { margin: 10px auto 0; }
  .col-lg-6 > a.btn-primary-custom { width: fit-content; margin: 1.5rem auto 0; }

  /* Welcome featurettes row */
  .col-lg-6 .row.g-3 .col-6 { width: 50%; }

  /* ── Images ── */
  img.rounded-lg-custom { height: 280px !important; object-fit: cover; }
  .room-img { height: 200px; }
  .attraction-card { height: 260px; }

  /* ── Position-relative badge inside image ── */
  .position-relative .position-absolute { padding: .8rem 1rem !important; }

  /* ── Service highlight list ── */
  .d-flex.align-items-start.gap-4.p-3 { flex-direction: row; }

  /* ── Stats ── */
  .stat-number { font-size: 2rem; }
  .stat-card { padding: 1.5rem 1rem; }

  /* ── Room cards ── */
  .room-card { margin-bottom: .5rem; }
  .room-info { padding: 1.1rem; }
  .room-price { font-size: 1.3rem; }

  /* ── Page banner ── */
  .page-banner { min-height: 240px; text-align: center; }
  .page-banner h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .page-banner .breadcrumb { justify-content: center; }
  .page-banner-content { text-align: center; }

  /* ── Map ── */
  .map-wrapper iframe { height: 260px; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* ── FAQ section dual-col ── */
  .col-lg-5 > p.text-muted { text-align: center; }
  .col-lg-5 .d-flex, .col-lg-5 .mt-4 { justify-content: center; display: flex; flex-wrap: wrap; }

  /* ── CTA dark section ── */
  section[style*="background:linear-gradient"] .d-flex.flex-wrap { justify-content: center; }

  /* ── Contact info boxes ── */
  .col-lg-5 .d-flex.align-items-center.gap-3 { text-align: left; }

  /* ── Buttons full-width on small screens ── */
  .btn-accent-custom,
  .btn-primary-custom,
  .btn-whatsapp { justify-content: center; }

  /* ── Floating buttons position ── */
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.5rem; }
  #scrollTop { bottom: 78px; right: 16px; }

  /* ── Footer ── */
  footer { padding: 50px 0 0; }
  footer .footer-brand { justify-content: center; }
  footer .footer-tagline { text-align: center; }
  footer p[style*="font-size:.88rem"] { text-align: center; }
  footer .d-flex.gap-2 { justify-content: center; }
  footer h5 { text-align: center; }
  footer h5::after { left: 50%; transform: translateX(-50%); }
  .footer-bottom .d-flex { flex-direction: column; text-align: center; gap: .4rem !important; }
}

/* ---------- Responsive – Small Mobile (≤575px) ---------- */
@media (max-width: 575.98px) {
  html, body { overflow-x: hidden; }

  section { padding: 44px 0; }

  /* Containers get a safe padding */
  .container { padding-left: 16px; padding-right: 16px; }

  /* Gallery single column */
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Stats */
  .stat-number { font-size: 1.8rem; }
  .stat-card { padding: 1.2rem .8rem; }

  /* Hero */
  #hero h1 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  #hero .d-flex.flex-wrap.gap-3 a { width: 100%; justify-content: center; }
  #hero .d-flex.flex-wrap.gap-4 { gap: 1.2rem !important; }

  /* Buttons full width */
  section .btn-accent-custom,
  section .btn-primary-custom { width: 100%; max-width: 280px; }

  /* Room image */
  .room-img { height: 180px; }

  /* Attraction card */
  .attraction-card { height: 220px; }

  /* Welcome section image */
  img.rounded-lg-custom { height: 220px !important; }

  /* Page banner smaller */
  .page-banner { min-height: 200px; }
  .page-banner h1 { font-size: 1.5rem; }

  /* Service box */
  .service-box { padding: 1.2rem 1rem; }
  .service-icon { font-size: 2.2rem; }

  /* Testimonial */
  .testimonial-card { padding: 1.4rem 1rem; }

  /* FAQ button text size */
  .faq-accordion .accordion-button { font-size: .88rem; }

  /* Pricing */
  .pricing-head { padding: 1.5rem 1rem; }
  .pricing-price { font-size: 2.2rem; }

  /* Nav brand on tiny screens */
  .brand-name { font-size: 1.1rem; }
  .brand-logo { width: 40px; height: 40px; }

  /* Inline contact items */
  footer .contact-item { font-size: .82rem; }
}

/* ---------- Print ---------- */
@media print { #mainNavbar, .whatsapp-float, #scrollTop, #preloader { display: none !important; } }
