/* ============================================================
   MAMOTAJ M2 RESORT - Global Stylesheet
   Premium Luxury Resort Theme
   ============================================================ */

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

/* ============================================================
   AOS VISIBILITY FALLBACK
   By default all [data-aos] elements MUST be visible.
   AOS library hides them via opacity:0 in aos.css.
   If AOS JS fails to load or init, content stays hidden.
   This override ensures content is ALWAYS visible.
   AOS animations only apply when html.aos-init exists.
   ============================================================ */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition-duration: 0ms !important;
}
/* Once AOS JS has initialized, re-enable its transforms */
html.aos-initialized [data-aos]:not(.aos-animate) {
  opacity: 0 !important;
  transition-duration: 750ms !important;
}
html.aos-initialized [data-aos="fade-up"]:not(.aos-animate)    { transform: translateY(40px) !important; }
html.aos-initialized [data-aos="fade-down"]:not(.aos-animate)  { transform: translateY(-40px) !important; }
html.aos-initialized [data-aos="fade-right"]:not(.aos-animate) { transform: translateX(-40px) !important; }
html.aos-initialized [data-aos="fade-left"]:not(.aos-animate)  { transform: translateX(40px) !important; }
html.aos-initialized [data-aos="zoom-in"]:not(.aos-animate)    { transform: scale(.85) !important; opacity: 0 !important; }
html.aos-initialized [data-aos].aos-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --navy:       #0F172A;
  --navy-light: #1E293B;
  --navy-mid:   #162032;
  --gold:       #D4AF37;
  --gold-light: #E8CC65;
  --gold-dark:  #B8962E;
  --white:      #FAFAF9;
  --beige:      #F5F1E8;
  --beige-dark: #EDE8DC;
  --text-dark:  #1A1A2E;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --shadow-gold: 0 8px 32px rgba(212,175,55,.25);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --transition: .35s cubic-bezier(.4,0,.2,1);
  --transition-fast: .2s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: transparent; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
  color: var(--navy);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold) !important; }
.text-white  { color: var(--white) !important; }
.text-navy   { color: var(--navy) !important; }

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .04em;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212,175,55,.4);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--beige);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ---- Divider ---- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem auto;
}
.gold-divider.left { margin-left: 0; }

/* ---- Glass Card ---- */
.glass-card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ---- Navbar ---- */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(15,23,42,.97);
  backdrop-filter: blur(20px);
  padding: .75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 800;
  flex-shrink: 0;
}

.nav-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-text .brand-sub {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  border-radius: 1px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: .55rem 1.4rem;
  border-radius: var(--radius-sm);
  letter-spacing: .04em;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,.4);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: var(--navy);
  z-index: 1002;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: -8px 0 40px rgba(0,0,0,.4);
}
.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition-fast);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1001;
  backdrop-filter: blur(3px);
}
.mobile-nav-overlay.open { display: block; }

/* ---- Hero Base ---- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh; /* modern browsers — prevents mobile browser bar clipping */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform .1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,.88) 0%,
    rgba(15,23,42,.60) 50%,
    rgba(15,23,42,.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4rem;
  /* ALWAYS visible — never let AOS or anything else hide hero content */
  opacity: 1 !important;
  transform: none !important;
}
/* Hero children with data-aos are shown immediately */
.hero-content [data-aos],
.hero-content > * {
  opacity: 1 !important;
  transform: none !important;
}


.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.4);
  border-radius: 100px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

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

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Page hero (inner pages) */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
}
.page-hero .hero-content { padding: 8rem 0 3rem; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ---- Section Backgrounds ---- */
.bg-navy   { background: var(--navy); }
.bg-navy-light { background: var(--navy-light); }
.bg-beige  { background: var(--beige); }
.bg-white  { background: var(--white); }
.bg-dark-grad {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

/* ---- Feature / Why Cards ---- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,175,55,.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  transition: height var(--transition);
  border-radius: 0 0 2px 0;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { height: 100%; }

.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
  color: var(--navy);
}
.feature-card p { font-size: .9rem; color: var(--text-muted); }

/* ---- Room Card ---- */
.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.06);
}
.room-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.room-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.room-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.08); }

.room-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 100px;
}

.room-body { padding: 1.5rem; }
.room-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.room-body p  { font-size: .88rem; color: var(--text-muted); margin-bottom: 1rem; }

.room-amenities {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-bottom: 1.25rem;
}
.room-amenity-tag {
  font-size: .72rem;
  font-weight: 500;
  padding: .25rem .65rem;
  background: var(--beige);
  border-radius: 100px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: .3rem;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.room-capacity { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }

/* ---- Gallery Card ---- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.8), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 1rem;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { transform: translate(-50%, -50%) scale(1); }

/* ---- Testimonial ---- */
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(10px);
}
.testimonial-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-text {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-name { font-family: var(--font-heading); font-size: 1rem; color: var(--white); font-weight: 600; }
.testimonial-place { font-size: .78rem; color: var(--gold); }

/* ---- Counter / Stats ---- */
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.7); letter-spacing: .08em; text-transform: uppercase; }

/* ---- Facilities ---- */
.facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,175,55,.1);
  transition: var(--transition);
}
.facility-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.facility-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--navy);
  transition: var(--transition);
}
.facility-item:hover .facility-icon { transform: rotate(10deg) scale(1.1); }
.facility-label { font-size: .85rem; font-weight: 600; color: var(--navy); text-align: center; }

/* ---- CTA Banner ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(212,175,55,.06) 0%, transparent 50%);
}
.cta-content { position: relative; z-index: 1; }

/* ---- Footer ---- */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}
.footer-brand { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.footer-brand-sub { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.footer-desc { font-size: .88rem; line-height: 1.8; margin-bottom: 1.5rem; }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links li + li { margin-top: .6rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { font-size: .7rem; color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: .9rem;
  font-size: .88rem;
}
.footer-contact-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: .85rem;
}
.footer-contact-text a { color: rgba(255,255,255,.75); transition: color var(--transition-fast); }
.footer-contact-text a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright { font-size: .82rem; color: rgba(255,255,255,.4); }

.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ---- Form Styles ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-control {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* ---- Accordion ---- */
.accordion-item {
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: .75rem;
  transition: var(--transition);
}
.accordion-item.open { border-color: var(--gold); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  transition: background var(--transition-fast);
}
.accordion-header:hover { background: var(--beige); }
.accordion-icon {
  width: 28px; height: 28px;
  background: var(--beige);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: .8rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); background: var(--gold); color: var(--navy); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.accordion-body-inner { padding: 0 1.25rem 1.1rem; font-size: .9rem; color: var(--text-muted); line-height: 1.8; }
.accordion-item.open .accordion-body { max-height: 400px; }

/* ---- Lightbox ---- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-container { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--navy); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: var(--navy); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}

/* ---- Map Section ---- */
.map-wrapper { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }

/* ---- Swiper Customization ---- */
.swiper-pagination-bullet { background: rgba(255,255,255,.5); width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--gold); width: 24px; border-radius: 4px; }
.swiper-button-prev, .swiper-button-next {
  color: var(--gold) !important;
  background: rgba(255,255,255,.1);
  width: 44px !important; height: 44px !important;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.3);
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: .9rem !important; font-weight: 900 !important; }

/* ---- Gallery Filter ---- */
.filter-btns { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 100px;
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid rgba(0,0,0,.1);
  transition: var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ---- Masonry ---- */
.masonry-grid {
  columns: 4;
  column-gap: 1rem;
}
.masonry-item {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative; /* required for overlay */
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}
.masonry-item:hover .gallery-overlay { opacity: 1; }

/* ---- Scroll To Top ---- */
#scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  z-index: 900;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(212,175,55,.4);
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { transform: translateY(-4px); }

/* ---- Welcome Section ---- */
.welcome-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible; /* allow badge to protrude */
  height: 520px;
  box-shadow: var(--shadow-lg);
}
.welcome-img-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.welcome-badge {
  position: absolute;
  bottom: 2rem; left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 3;
}
.welcome-badge .badge-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; line-height: 1; }
.welcome-badge .badge-text { font-size: .75rem; font-weight: 600; letter-spacing: .06em; }

/* ---- Team Card ---- */
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img-wrap { height: 240px; overflow: hidden; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-body { padding: 1.5rem; }
.team-name { font-size: 1.1rem; color: var(--navy); margin-bottom: .25rem; }
.team-role { font-size: .82rem; color: var(--gold); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* ---- Contact Info Card ---- */
.contact-info-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  height: 100%;
}
.contact-info-item { display: flex; gap: 1.25rem; margin-bottom: 1.75rem; }
.contact-info-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-info-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 600; margin-bottom: .25rem; }
.contact-info-value { font-size: .92rem; color: rgba(255,255,255,.85); }
.contact-info-value a { color: rgba(255,255,255,.85); transition: color var(--transition-fast); }
.contact-info-value a:hover { color: var(--gold); }

/* ---- Room Showcase Alternating ---- */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.showcase-row > * {
  min-width: 0;
}
.showcase-row.reverse .showcase-img { order: 2; }
.showcase-row.reverse .showcase-content { order: 1; }
.showcase-img { border-radius: var(--radius-md); overflow: hidden; height: 400px; box-shadow: var(--shadow-md); min-width: 0; width: 100%; }
.showcase-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }

.showcase-img:hover img { transform: scale(1.05); }
.showcase-content h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.showcase-content p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: .95rem; }
.amenity-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.amenity-chip {
  display: flex; align-items: center; gap: .4rem;
  padding: .35rem .85rem;
  background: var(--beige);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--navy);
}
.amenity-chip i { color: var(--gold); }

/* ---- Mission Vision Cards ---- */
.mv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 auto 1.5rem;
}
.mv-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.mv-card p { color: var(--text-muted); line-height: 1.8; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .masonry-grid { columns: 3; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section-pad { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .masonry-grid { columns: 2; }
  .showcase-row { grid-template-columns: 1fr; }
  .showcase-row.reverse .showcase-img { order: 0; }
  .showcase-row.reverse .showcase-content { order: 0; }
  .welcome-badge { left: 1rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2rem; }
  .container { padding: 0 1rem; }
}

/* ---- Menu Card Styles & Swiper Adjustments ---- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.menu-card-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  transition: var(--transition);
  border: 1px solid rgba(212,175,55,.1);
}
.menu-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.menu-card-img {
  width: 160px;
  height: 100%;
  min-height: 160px;
  flex-shrink: 0;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.menu-card-item:hover .menu-card-img img {
  transform: scale(1.08);
}
.menu-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.menu-card-title {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-heading);
}
.menu-card-price {
  font-size: 1.15rem;
  color: var(--gold-dark);
  font-weight: 800;
  font-family: var(--font-heading);
}
.menu-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.menu-card-footer {
  display: flex;
  align-items: center;
}
.menu-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.menu-card-tag.veg {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.menu-card-tag.non-veg {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Swiper Customizations */
.showcase-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-swiper .swiper-button-prev,
.showcase-swiper .swiper-button-next {
  width: 38px !important;
  height: 38px !important;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white) !important;
}
.showcase-swiper .swiper-button-prev::after,
.showcase-swiper .swiper-button-next::after {
  font-size: 0.8rem !important;
}
.showcase-swiper .swiper-button-prev:hover,
.showcase-swiper .swiper-button-next:hover {
  background: var(--gold);
  color: var(--navy) !important;
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .menu-card-item {
    flex-direction: column;
  }
  .menu-card-img {
    width: 100%;
    height: 200px;
  }
}

/* ============================================================
   MOBILE NAV CLOSE BUTTON
   ============================================================ */
.mobile-nav-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 1001;
  transition: background var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}
.mobile-nav-close-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============================================================
   ENHANCED USER-SIDE RESPONSIVE (MOBILE-FIRST IMPROVEMENTS)
   ============================================================ */

/* Welcome section responsive */
@media (max-width: 768px) {
  .welcome-img-wrap {
    height: 320px;
    margin-bottom: 1.5rem;
  }
  .welcome-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.5rem;
    white-space: nowrap;
  }
}

/* Showcase / Accommodation rows */
@media (max-width: 768px) {
  .showcase-img {
    height: 260px;
  }
  .showcase-content h3 {
    font-size: 1.35rem;
  }
}

/* Contact page */
@media (max-width: 768px) {
  .contact-info-card {
    padding: 1.75rem;
  }
  .contact-info-item {
    gap: 0.85rem;
  }
}

/* Page hero inner pages */
@media (max-width: 768px) {
  .page-hero {
    min-height: 45vh;
  }
  .page-hero .hero-content {
    padding: 6rem 0 2rem;
  }
  .page-hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
}

/* Footer responsive */
@media (max-width: 768px) {
  #footer {
    padding: 3rem 0 0;
  }
  .footer-grid {
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem 0;
  }
  .social-links {
    justify-content: center;
  }
}

/* Stat / feature cards */
@media (max-width: 480px) {
  .feature-card {
    padding: 1.5rem 1.25rem;
  }
  .stat-card {
    padding: 1.5rem 0.75rem;
  }
  .mv-card {
    padding: 1.75rem 1.5rem;
  }
  .contact-info-card {
    padding: 1.5rem 1.25rem;
  }
}

/* Testimonial grid */
@media (max-width: 600px) {
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Hero buttons mobile */
@media (max-width: 480px) {
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-tag {
    font-size: .65rem;
  }
}

/* Gallery masonry on very small screens */
@media (max-width: 360px) {
  .masonry-grid { columns: 1; }
  .filter-btns { gap: 0.4rem; }
  .filter-btn { padding: .4rem .9rem; font-size: .78rem; }
}

/* Accommodation showcase on mobile */
@media (max-width: 480px) {
  .room-img-wrap { height: 200px; }
  .room-body { padding: 1.25rem; }
  .room-footer { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}

/* Scroll to top button — keep away from mobile bottom nav */
@media (max-width: 480px) {
  #scroll-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}

/* end of stylesheet */
