:root {
  /* Taj Style Color Palette */
  --primary-navy: #0F172A;
  --primary-navy-light: #1E293B;
  --accent-gold: #D4AF37;
  --accent-gold-dark: #B5952F;
  --text-main: #334155;
  --text-light: #F8FAFC;
  --text-muted: #64748B;
  --bg-main: #FFFFFF;
  --bg-gray: #F8FAFC;
  
  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
  
  /* Utilities */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
  --section-padding: 80px 0;
  --card-padding: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { 
  font-family: var(--font-heading); 
  font-weight: 400; 
  color: var(--primary-navy);
  line-height: 1.3;
}

.text-white { color: var(--text-light) !important; }
.center { text-align: center; }
.full-width { width: 100%; display: block; text-align: center; }
.relative-z { position: relative; z-index: 2; }
.bg-gray { background-color: var(--bg-gray); }

/* Typography Scale */
.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent-gold);
  margin: 24px 0 32px 0;
}
.center-div { margin: 24px auto 32px auto; }

/* Layout spacing */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.luxury-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-main);
  padding: 14px 32px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border: 1px solid var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  padding: 14px 32px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border: 1px solid var(--text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}
.btn-secondary:hover {
  background: var(--text-light);
  color: var(--primary-navy);
}

.glow-btn {
  position: relative; overflow: hidden;
  transition: var(--transition-smooth);
}
.glow-btn:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-link {
  color: var(--accent-gold);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  transition: var(--transition-smooth);
}
.btn-link:hover { gap: 16px; color: var(--primary-navy); }

/* Navigation */
#navbar {
  position: fixed; top: 0; width: 100%; padding: 24px 0;
  z-index: 1000; transition: var(--transition-smooth); background: transparent;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: var(--shadow-soft);
}
#navbar.scrolled .logo-main, #navbar.scrolled .nav-links a { color: var(--primary-navy); }
#navbar.scrolled .logo-sub { color: var(--accent-gold-dark); }
#navbar.scrolled .hamburger span { background: var(--primary-navy); }

.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 24px; }

/* Logo Styles */
.nav-logo { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  text-decoration: none; 
}
.nav-logo-img { 
  height: 55px; /* Larger logo height */
  width: auto; 
  object-fit: contain; 
  transition: var(--transition-smooth);
}
.nav-logo-text { 
  display: flex; 
  flex-direction: column; 
}
.logo-main { font-family: var(--font-heading); font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--text-light); letter-spacing: 2px; font-weight: 600; transition: var(--transition-smooth);}
.logo-sub { font-size: clamp(0.55rem, 1.5vw, 0.7rem); color: var(--accent-gold); text-transform: uppercase; letter-spacing: 4px; margin-top: 4px; transition: var(--transition-smooth);}

.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a { 
  color: var(--text-light); text-decoration: none; font-size: 0.85rem; 
  text-transform: uppercase; letter-spacing: 1px; transition: var(--transition-smooth); 
  position: relative;
}
/* Navbar Link Hover Highlight */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent-gold) !important; }

.nav-call-btn {
  border: 1px solid var(--accent-gold);
  padding: 10px 24px;
  color: var(--accent-gold) !important;
}
.nav-call-btn::after { display: none; } /* Remove underline effect for button */
#navbar.scrolled .nav-call-btn { background: var(--accent-gold); color: white !important; border-color: var(--accent-gold); }
#navbar.scrolled .nav-call-btn:hover { background: transparent; color: var(--accent-gold) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; }
.hamburger span { display: block; width: 30px; height: 2px; background: var(--text-light); transition: var(--transition-smooth); }

/* Cinematic Hero Section */
#hero { height: 100vh; min-height: 700px; position: relative; display: flex; align-items: center; justify-content: center; /* removed overflow:hidden to allow booking bar to overlap */ }

/* Automated Hero Video System */
.hero-background-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: var(--primary-navy);
}

.hero-media-fallback {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("./assets/hero-bg.png") center/cover no-repeat;
  z-index: 2;
  transition: opacity 0.8s ease;
}

.hero-media-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 3;
  /* Enhanced video quality: optimized brightness, contrast, saturation & hardware acceleration */
  filter: brightness(0.75) contrast(1.15) saturate(1.2);
  transform: translateZ(0);
  transition: opacity 1s ease;
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.7)
  );
  z-index: 4;
  pointer-events: none;
  /* Add border radius if needed, but not on hero */
}

/* Hero Overlay Removed for Pure Cinematic Experience */

.hero-content { position: relative; text-align: center; color: var(--text-light); z-index: 5; padding: 0 24px; margin-top: -60px; max-width: 900px; width: 100%; }
.hero-heading { 
  font-size: clamp(2.2rem, 5vw + 1rem, 4rem); color: var(--text-light); 
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 20px rgba(255,255,255,0.15);
  margin-bottom: clamp(16px, 3vw, 24px);
}
.hero-sub { 
  font-family: var(--font-heading); font-size: clamp(1rem, 2vw + 0.5rem, 1.4rem); 
  letter-spacing: 3px; margin-bottom: clamp(24px, 5vw, 40px); 
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 15px rgba(255,255,255,0.1);
  color: var(--text-light);
}
.hero-btns { display: flex; gap: 24px; justify-content: center; }
.hero-btns .btn-primary { 
  border: 1px solid rgba(212, 175, 55, 0.8); 
  background: rgba(212, 175, 55, 0.95); 
  box-shadow: 0 4px 15px rgba(0,0,0,0.5); 
}
.hero-btns .btn-primary:hover { 
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8); 
  background: var(--accent-gold); 
  border-color: var(--accent-gold);
}
.hero-btns .btn-secondary { 
  background: rgba(0, 0, 0, 0.3); 
  border: 1px solid rgba(255, 255, 255, 0.7); 
  box-shadow: 0 4px 15px rgba(0,0,0,0.5); 
  backdrop-filter: blur(4px); 
}
.hero-btns .btn-secondary:hover { 
  background: rgba(255, 255, 255, 0.95); 
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6); 
  border-color: white; 
  color: var(--primary-navy); 
}

/* TAJ STYLE BOOKING BAR */
.booking-bar-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.booking-bar {
  background: var(--bg-main);
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.booking-field {
  flex: 1;
  padding: 24px 32px;
  border-right: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.booking-field label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.booking-field input, .booking-field select {
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-navy);
  background: transparent;
  outline: none;
  cursor: pointer;
}

.btn-check-avail {
  background: var(--primary-navy);
  color: var(--text-light);
  border: none;
  padding: 0 40px;
  height: 100%;
  align-self: stretch;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-check-avail:hover {
  background: var(--accent-gold);
}

/* SECTION 1: EXPERIENCE */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }

.story-image-wrap {
  position: relative;
  height: 500px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.story-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

/* DYNAMIC DIRECTIONAL HOVER GLOW FOR IMAGES */
.directional-border {
  position: relative;
  border-radius: 4px;
}

/* 1. Thin Edge Highlight Mask */
.directional-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* Thicker 2px border */
  border-radius: inherit;
  background: radial-gradient(
    1000px circle at var(--mouse-x) var(--mouse-y), 
    rgba(212, 175, 55, 0.95), /* Brighter Gold */
    transparent 35% /* Increased spread */
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

/* 2. Soft Inner/Outer Ambient Glow Combo */
.directional-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35), inset 0 0 20px rgba(212, 175, 55, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 9; /* Behind mask, over image */
}

.directional-border:hover::before,
.directional-border:hover::after {
  opacity: 1;
}

/* SECTION 2: ROOMS */
.urgency-text { color: var(--accent-gold-dark); font-family: var(--font-body); letter-spacing: 1px; margin-bottom: 48px; font-size: 0.9rem; }

.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 32px; justify-content: center; }

.luxury-room-card {
  background: var(--bg-main);
  transition: var(--transition-smooth);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.luxury-room-card:hover { 
  transform: translateY(-5px);
  /* Hover shadow is now handled by .directional-border ambient glow for perfect synergy */
}

.room-img-wrap { position: relative; height: 300px; border-radius: 4px 4px 0 0; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block;}

.room-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.3); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition-smooth);
  border-radius: 4px 4px 0 0;
}
.luxury-room-card:hover .room-overlay { opacity: 1; }

.btn-secondary-light {
  background: rgba(255,255,255,0.95); color: var(--primary-navy);
  padding: 12px 32px; font-family: var(--font-body); text-transform: uppercase;
  letter-spacing: 2px; font-size: 0.8rem; text-decoration: none; transition: var(--transition-smooth);
}
.btn-secondary-light:hover { background: var(--accent-gold); color: white; }

.room-info { padding: var(--card-padding); display: flex; flex-direction: column; flex-grow: 1; }
.room-info h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); margin-bottom: 12px; }
.room-brief { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; flex-grow: 1;}

.room-features-inline { list-style: none; display: flex; gap: 16px; margin-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 24px;}
.room-features-inline li { font-size: 0.85rem; color: var(--text-main); display: flex; align-items: center; gap: 8px; }
.room-features-inline i { color: var(--accent-gold); }

.room-actions { display: flex; justify-content: space-between; align-items: center; margin-top: auto;}
.btn-text { color: var(--primary-navy); text-decoration: none; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition-smooth);}
.btn-text:hover { color: var(--accent-gold); }
.btn-primary-small { 
  background: var(--primary-navy); color: white; padding: 10px 24px; text-decoration: none; 
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition-smooth);
}
.btn-primary-small:hover { background: var(--accent-gold); }

/* SECTION 5: SPIRITUAL EXPERIENCE */
.spiritual-bg {
  background: linear-gradient(135deg, #0F172A 0%, #172554 100%);
  position: relative; 
  padding: 100px 0;
}
.spiritual-content { 
  max-width: 700px; 
  margin: 0 auto; 
}
.spiritual-desc { 
  font-size: 1.1rem; 
  color: #cbd5e1; 
  margin-bottom: 48px; 
  line-height: 1.8;
}
.glow-image-wrap { display: flex; justify-content: center; }
.spiritual-img-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid transparent;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.05);
  transition: all 0.4s ease;
}
.spiritual-img-container:hover {
  transform: scale(1.02);
  border-color: #D4AF37;
  box-shadow: 0 15px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212, 175, 55, 0.4);
}
.glow-image {
  width: 100%; 
  height: auto;
  object-fit: cover;
  display: block;
  filter: sepia(0.15) contrast(1.1); /* Adds slight golden warmth */
}
.spiritual-img-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle, transparent 60%, rgba(15, 23, 42, 0.5) 100%);
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.3);
}

/* SECTION 3: AMENITIES */
.amenities-grid-minimal {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: clamp(24px, 4vw, 40px); margin-top: 48px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.amenity-item {
  text-align: center; padding: 32px 24px; transition: var(--transition-smooth);
  background: var(--bg-main); border-radius: 4px; box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
}
.amenity-item i { font-size: 2rem; color: var(--primary-navy); margin-bottom: 20px; transition: var(--transition-smooth);}
.amenity-item span { display: block; font-family: var(--font-heading); font-size: 1.1rem; }
.amenity-item:hover { border-color: rgba(212, 175, 55, 0.3); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.amenity-item:hover i { color: var(--accent-gold); }

/* SECTION 4: GALLERY */
.masonry-grid { 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.masonry-item { 
  width: 100%; 
  position: relative; 
  border-radius: 4px; 
  overflow: hidden;
  cursor: pointer;
}
.masonry-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
  transition: transform 0.8s ease;
}
.gallery-hover {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.6);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition-smooth);
}
.gallery-hover i { color: white; font-size: 2rem; transform: scale(0.8); transition: var(--transition-smooth); }
.masonry-item:hover .gallery-hover { opacity: 1; }
.masonry-item:hover .gallery-hover i { transform: scale(1); }

/* LIGHTBOX */
#lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.98);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
#lightbox.active { opacity: 1; pointer-events: all; }
#lightbox img { max-width: 90%; max-height: 90vh; box-shadow: 0 0 50px rgba(0,0,0,0.5); }
.lb-close { position: absolute; top: 32px; right: 32px; background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer; }

/* SECTION 6 & 7: LOCATION & CONTACT */
.dark-theme { background: var(--primary-navy); color: var(--text-light); }
.contact-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); gap: 0; background: var(--bg-main); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-soft);}
.contact-form-side { padding: 80px 60px; background: var(--primary-navy); }
.location-side { position: relative; }

.minimal-form { margin-top: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.minimal-form input, .minimal-form select {
  width: 100%; padding: 12px 0; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2); color: white;
  font-family: var(--font-body); font-size: 1rem; transition: var(--transition-smooth);
  outline: none;
}
.minimal-form input:focus, .minimal-form select:focus { border-bottom-color: var(--accent-gold); }
.minimal-form select option { background: var(--primary-navy); color: white; }
.minimal-form button { margin-top: 40px; border: none; padding: 16px; font-size: 1rem;}

.direct-contact-blocks { display: flex; gap: 40px; margin-top: 60px; flex-wrap: wrap;}
.contact-block { display: flex; align-items: center; gap: 16px; color: white; text-decoration: none; transition: var(--transition-smooth);}
.contact-block i { font-size: 2rem; color: var(--accent-gold); }
.contact-block span { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted);}
.contact-block strong { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400;}
.contact-block:hover { transform: translateY(-3px); }

.map-container { height: 100%; min-height: 600px; }
.address-box {
  position: absolute; bottom: 40px; left: 40px; background: var(--bg-main);
  padding: 40px; box-shadow: var(--shadow-hover); z-index: 2; max-width: 380px; border-radius: 4px;
}
.address-box h3 { font-size: 1.5rem; margin-bottom: 16px; }
.address-box p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }

/* FOOTER */
.minimal-footer { background: #080d17; padding: 80px 0 32px 0; color: #94a3b8; }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-logo { font-family: var(--font-heading); font-size: 1.5rem; color: white; letter-spacing: 3px; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; justify-content: center;}
.footer-nav a { color: #94a3b8; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; transition: var(--transition-smooth); }
.footer-nav a:hover { color: var(--accent-gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.social-links { display: flex; gap: 24px; }
.social-links a { color: white; transition: var(--transition-smooth); font-size: 1.2rem;}
.social-links a:hover { color: var(--accent-gold); }

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 15px rgba(37, 211, 102, 0.5);
}

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 1s ease-out forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .booking-bar-wrapper { padding: 0 24px; }
  .booking-field { padding: 16px; }
  .btn-check-avail { padding: 0 24px; }
  .story-grid { gap: 40px; }
  .contact-form-side { padding: 64px 40px; }
  .map-container { min-height: 400px; }
  .address-box { position: relative; bottom: 0; left: 0; max-width: 100%; border-radius: 0; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  /* Mobile Logo Sizing */
  .nav-logo-img { height: 40px; }
  .nav-logo { gap: 10px; }
  
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--primary-navy); flex-direction: column; justify-content: center; transition: 0.5s ease;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.1rem; margin-bottom: 16px;}
  
  .booking-bar-wrapper { position: absolute; bottom: 0; left: 0; transform: translateY(50%); padding: 0 16px; width: 100%; }
  .booking-bar { flex-direction: column; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
  .booking-field { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); width: 100%; padding: 16px 24px;}
  .btn-check-avail { padding: 20px; width: 100%; border-radius: 0 0 8px 8px; }
  
  .hero-content { margin-top: 0; }
  .hero-btns { flex-direction: column; gap: 16px;}
  .hero-btns a { width: 100%; text-align: center; }
  
  .story-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
  .story-text { text-align: center; }
  .center-div { margin-left: auto; margin-right: auto; }
  .story-image-wrap { height: auto; }
  
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footer-top { flex-direction: column; gap: 32px; text-align: center; padding-bottom: 40px;}
  .footer-nav { gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 24px; }
  
  .whatsapp-float { bottom: 24px; right: 24px; }
}

@media (max-width: 480px) {
  .masonry-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
  .contact-form-side { padding: 40px 24px; }
}
