/* Rameswaram Yatra Stay - Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-bg: #090d16;
  --card-bg: #131c2e;
  --card-border: rgba(217, 119, 6, 0.2);
  --card-hover-border: rgba(245, 158, 11, 0.6);
  --gold-primary: #d97706;
  --gold-secondary: #f59e0b;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --teal-accent: #0d9488;
  --teal-light: rgba(13, 148, 136, 0.15);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --glass-bg: rgba(19, 28, 46, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 25px -5px rgba(217, 119, 6, 0.3);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

img, video, iframe, embed, object {
  max-width: 100%;
}

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

.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout utilities */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 46px;
  width: auto;
  max-height: 46px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 22px;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.brand-sub {
  font-size: 11px;
  color: var(--gold-secondary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0d0e15;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -5px rgba(245, 158, 11, 0.5);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 14px 25px -5px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, rgba(217, 119, 6, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
              var(--primary-bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-secondary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.highlight-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Media Card */
.hero-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  background: var(--card-bg);
}

.hero-media-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-media-card:hover img {
  transform: scale(1.03);
}

.hero-media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0) 100%);
}

.hero-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  color: var(--gold-secondary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--gold-secondary);
  color: var(--text-primary);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #0d0e15;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* Accommodation Grid */
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.room-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-hover-border);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.6), var(--shadow-gold);
}

.room-gallery-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #000;
}

.room-gallery-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.room-card:hover .room-gallery-main {
  transform: scale(1.05);
}

.room-type-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--gold-secondary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-thumbs-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
}

.thumb-mini {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--transition);
}

.thumb-mini:hover {
  transform: scale(1.1);
  border-color: var(--gold-secondary);
}

.room-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.room-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.badge-pill {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.badge-pill.ac {
  background: var(--teal-light);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.3);
}

.badge-pill.group {
  background: rgba(217, 119, 6, 0.15);
  color: var(--gold-secondary);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.room-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.room-features-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.room-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.room-feature-item svg {
  color: var(--gold-secondary);
  flex-shrink: 0;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 10px;
}

/* Video Section */
.video-section {
  background: linear-gradient(180deg, var(--primary-bg) 0%, #0d1322 100%);
  position: relative;
}

.video-container-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-player {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.video-info-content {
  padding: 40px;
}

.video-tag {
  color: var(--gold-secondary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.video-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.video-desc {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

/* Why Choose Us Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-secondary);
  box-shadow: var(--shadow-gold);
}

.feature-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-card-title {
  font-size: 18px;
  font-weight: 700;
}

.feature-card-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Contact & Map Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.contact-details h4 {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-details p, .contact-details a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--gold-secondary);
}

.map-wrapper-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 450px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.map-wrapper-card iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  filter: contrast(1.05) brightness(0.95);
}

/* Booking Form */
.booking-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
  box-shadow: var(--shadow-lg);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-control {
  background: rgba(9, 13, 22, 0.7);
  border: 1px solid var(--glass-border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Footer */
.site-footer {
  background: #05080e;
  border-top: 1px solid var(--glass-border);
  padding: 50px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 15px;
  max-width: 400px;
}

.footer-title {
  font-size: 16px;
  color: var(--gold-secondary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 13px;
}

/* Sticky Mobile Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(9, 13, 22, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  padding: 12px 15px;
  z-index: 999;
  justify-content: space-around;
  gap: 10px;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 1000px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin-top: 15px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--gold-secondary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--gold-gradient);
  color: #000;
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-media-card img {
    height: 380px;
  }
  .video-container-card {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #090d16;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
  }
  .nav-links.show {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 36px;
  }
  .section-title {
    font-size: 28px;
  }
  .accommodation-grid {
    grid-template-columns: 1fr;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Hero Slider Section Styles
   ========================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  margin-top: 80px; /* offset fixed header height */
  overflow: hidden;
  background: #05080f;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 540px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
  transform: scale(1.06);
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide.active img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.35) 0%, rgba(9, 13, 22, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 20px;
}

.slide-content {
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid var(--gold-secondary);
  border-radius: 50px;
  color: var(--gold-secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  backdrop-filter: blur(8px);
}

.slide-title {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.slide-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 680px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  line-height: 1.5;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(19, 28, 46, 0.7);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
  width: 32px;
  border-radius: 12px;
  background: var(--gold-secondary);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.8);
}

/* ==========================================
   Gallery Section Grid & Card Styles
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.gallery-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-secondary);
  box-shadow: var(--shadow-gold);
}

.gallery-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #05080f;
}

.gallery-thumb-wrap img,
.gallery-thumb-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover .gallery-thumb-wrap img,
.gallery-card:hover .gallery-thumb-wrap video {
  transform: scale(1.08);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 13, 22, 0.72);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold-secondary);
  transition: var(--transition);
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(4px);
}

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

.gallery-card-label {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  border-top: 1px solid var(--glass-border);
  background: var(--card-bg);
}

/* Video Thumbnail Card Specifics */
.gallery-card.video-card {
  border-color: rgba(245, 158, 11, 0.4);
}

.video-badge-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: var(--gold-gradient);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}

.play-btn-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.9);
  transition: transform 0.3s ease;
}

.gallery-card:hover .play-btn-circle {
  transform: scale(1.15);
}

.gallery-card-label.video-label {
  color: var(--gold-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Lightbox Video Element */
.lightbox-video {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  outline: none;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  background: #000;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .hero-slider-section {
    margin-top: 80px;
  }
  .slider-container {
    height: 420px;
  }
  .slide-title {
    font-size: 26px;
  }
  .slide-desc {
    font-size: 14px;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  .slider-prev {
    left: 12px;
  }
  .slider-next {
    right: 12px;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
  }
  .gallery-card-label {
    padding: 8px 10px;
    font-size: 12px;
  }
}

/* Below 570px Viewports (Mobile Phones & Narrow Screens) */
@media (max-width: 570px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin: 0 auto !important;
  }

  .section-padding {
    padding: 36px 0;
  }
  .section-header {
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
    padding: 0 4px;
  }
  .section-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .section-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .section-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Prevent button overflow or text clipping */
  .btn {
    white-space: normal !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }

  /* Header Mobile Optimization */
  .site-header {
    width: 100%;
  }
  .header-container {
    height: 64px;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .brand-logo {
    gap: 8px;
    max-width: 65%;
  }
  .logo-img {
    height: 36px;
    max-height: 36px;
    flex-shrink: 0;
  }
  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
    flex-shrink: 0;
  }
  .logo-text {
    overflow: hidden;
  }
  .brand-title {
    font-size: 15px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-sub {
    display: none;
  }
  .header-cta {
    gap: 6px;
    flex-shrink: 0;
  }
  .header-phone-btn .btn-text,
  .header-wa-btn .btn-text {
    display: none;
  }
  .header-phone-btn,
  .header-wa-btn {
    padding: 8px 10px;
    font-size: 13px;
    gap: 0;
  }
  .mobile-toggle {
    font-size: 22px;
    padding: 4px;
  }
  .nav-links {
    top: 64px;
    width: 100%;
  }

  /* Hero Slider Mobile */
  .hero-slider-section {
    margin-top: 64px;
    width: 100%;
  }
  .slider-container {
    height: 440px;
    width: 100%;
  }
  .slide-overlay {
    padding: 0 16px;
    width: 100%;
  }
  .slide-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    gap: 12px;
  }
  .slide-badge {
    font-size: 11px;
    padding: 4px 12px;
  }
  .slide-title {
    font-size: 20px;
    line-height: 1.3;
    width: 100%;
  }
  .slide-desc {
    font-size: 13px;
    line-height: 1.4;
    width: 100%;
    max-width: 100%;
  }
  .slide-actions {
    gap: 8px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .slide-actions .btn {
    width: 100%;
    min-width: 0;
    padding: 10px 14px;
    font-size: 13px;
    justify-content: center;
  }
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .slider-prev {
    left: 4px;
  }
  .slider-next {
    right: 4px;
  }
  .slider-dots {
    bottom: 10px;
    gap: 6px;
  }

  /* Main Hero Section */
  .hero-section {
    padding-top: 80px;
    padding-bottom: 35px;
    width: 100%;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
  }
  .hero-content {
    width: 100%;
  }
  .hero-badge {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .hero-content h2 {
    font-size: 16px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 100%;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
    width: 100%;
  }
  .highlight-item {
    font-size: 13px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
  .hero-media {
    width: 100%;
  }
  .hero-media-card {
    width: 100%;
  }
  .hero-media-card img {
    height: 240px;
    width: 100%;
  }
  .hero-media-overlay {
    padding: 14px;
  }
  .hero-stat-badge {
    font-size: 11px;
    padding: 6px 10px;
    width: 100%;
  }

  /* Accommodation Options & Scrollable Filter Bar */
  .filter-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
    margin-bottom: 20px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    width: calc(100% + 32px);
  }
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 13px;
  }
  .accommodation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
  .room-card {
    width: 100%;
  }
  .room-gallery-wrap {
    height: 190px;
    width: 100%;
  }
  .room-details {
    padding: 16px;
    width: 100%;
  }
  .room-title {
    font-size: 18px;
  }
  .room-description {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .room-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .room-footer .btn {
    width: 100%;
    justify-content: center;
  }

  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }
  .gallery-card {
    width: 100%;
  }

  /* Video Tour Section */
  .video-container-card {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .video-wrapper {
    width: 100%;
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
  .video-info-content {
    padding: 20px 16px;
    width: 100%;
  }
  .video-title {
    font-size: 20px;
  }
  .video-desc {
    font-size: 13px;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .feature-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 14px;
    gap: 12px;
    width: 100%;
  }
  .feature-icon-box {
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
  }

  /* Contact & Booking Form */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
  .contact-info-card {
    padding: 20px 16px;
    width: 100%;
  }
  .contact-details p,
  .contact-details a {
    font-size: 14px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .map-wrapper-card {
    width: 100%;
    min-height: 240px;
    height: 240px;
  }
  .map-wrapper-card iframe {
    width: 100%;
    min-height: 240px;
    height: 240px;
  }
  .booking-box {
    padding: 20px 16px;
    width: 100%;
    margin-top: 20px;
  }
  .booking-box h3 {
    font-size: 18px !important;
  }
  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .booking-form-grid .btn {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    justify-content: center;
  }
  .form-control {
    width: 100%;
  }

  /* Sticky Mobile Bar */
  .mobile-sticky-bar {
    padding: 8px 8px;
    gap: 6px;
    width: 100%;
  }
  .mobile-sticky-bar .btn {
    flex: 1;
    padding: 8px 4px;
    font-size: 11px;
    justify-content: center;
  }

  /* Lightbox */
  .lightbox-close {
    position: fixed;
    top: 10px;
    right: 12px;
    font-size: 32px;
  }
}

/* Extra Fine Tuning for Narrow Screens (<= 380px) */
@media (max-width: 380px) {
  .brand-title {
    font-size: 14px;
  }
  .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .slide-title {
    font-size: 18px;
  }
  .hero-title {
    font-size: 22px;
  }
  .gallery-grid {
    gap: 8px;
  }
  .mobile-sticky-bar .btn {
    font-size: 11px;
    padding: 8px 2px;
  }
}



