/* VENE Sauna & Massage - Luxury Styling */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-emerald-dark: #072218;
  --color-emerald-deep: #0c3b2e;
  --color-emerald-mid: #165643;
  --color-emerald-light: #237860;
  
  --color-gold-base: #d4af37;
  --color-gold-light: #f3e5ab;
  --color-gold-glow: #e2be53;
  --color-gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  
  --color-bg-dark: #051610;
  --color-bg-card: rgba(12, 59, 46, 0.55);
  --color-bg-glass: rgba(7, 34, 24, 0.75);
  --color-text-main: #f5f7f6;
  --color-text-muted: #b3c5bf;
  --color-border-gold: rgba(212, 175, 55, 0.3);
  
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at top center, #0c3b2e 0%, #051610 80%);
  min-height: 100vh;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Cinzel', serif;
}

/* Glassmorphism utility */
.glass-panel {
  background: var(--color-bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-card);
}

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

.gold-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--color-gold-base);
  color: var(--color-gold-light);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: var(--transition);
  background: rgba(5, 22, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

.brand-logo-img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  padding: 2px;
  border: 2px solid var(--color-gold-base);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
  transition: var(--transition);
}

.brand-logo-img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.6);
}

.brand-title {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title span {
  color: var(--color-gold-base);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.mobile-menu-btn {
  display: none;
  background: rgba(7, 34, 24, 0.6);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-light);
  font-size: 1.3rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--color-gold-base);
  color: var(--color-emerald-dark);
}

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

.nav-links a {
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--color-gold-light);
}

.btn-gold {
  background: var(--color-gold-gradient);
  color: #072218;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
  border: 1.5px solid var(--color-gold-base);
  color: var(--color-gold-light);
  background: rgba(7, 34, 24, 0.4);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-gold:hover {
  background: var(--color-gold-base);
  color: var(--color-emerald-dark);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 2rem 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, rgba(5, 22, 16, 0.75), rgba(5, 22, 16, 0.95)), url('assets/images/sauna_room.jpg') center/cover no-repeat;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
}

.hero-logo-wrapper {
  margin-bottom: 1.5rem;
}

.hero-logo {
  max-width: 180px;
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
  border: 3px solid var(--color-gold-base);
  background: #fff;
  padding: 6px;
}

.hero-subtitle {
  font-size: 1.25rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.hero-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  color: var(--color-gold-light);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Key Features Ribbon */
.pillars-ribbon {
  background: linear-gradient(90deg, #072218 0%, #0c3b2e 50%, #072218 100%);
  border-y: 1px solid var(--color-border-gold);
  padding: 2.5rem 2rem;
}

.pillars-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.pillar-item {
  padding: 1rem;
}

.pillar-icon {
  font-size: 2.2rem;
  color: var(--color-gold-base);
  margin-bottom: 0.8rem;
}

.pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: 0.3rem;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Sections */
.section {
  padding: 90px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.5rem;
  color: #fff;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Location Pricing Switcher */
.pricing-switcher-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.pricing-switcher {
  display: inline-flex;
  background: rgba(7, 34, 24, 0.9);
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-gold);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.switch-btn {
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.switch-btn.active {
  background: var(--color-gold-gradient);
  color: #072218;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.package-card {
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-base);
  box-shadow: var(--shadow-gold);
}

.package-card.featured {
  border: 2px solid var(--color-gold-base);
  background: linear-gradient(160deg, rgba(29, 82, 56, 0.8) 0%, rgba(7, 34, 24, 0.9) 100%);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--color-gold-gradient);
  color: #072218;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 35px;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.package-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.package-title {
  font-size: 1.3rem;
  color: var(--color-gold-light);
  margin-bottom: 0.8rem;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
}

.package-price span {
  font-size: 0.9rem;
  color: var(--color-gold-base);
  font-weight: 500;
}

/* Services Catalog & Filters */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(12, 59, 46, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--color-text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  border-color: var(--color-gold-base);
  color: var(--color-gold-light);
  background: rgba(212, 175, 55, 0.15);
}

.search-box {
  position: relative;
  min-width: 250px;
}

.search-input {
  width: 100%;
  background: rgba(7, 34, 24, 0.7);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-pill);
  padding: 10px 18px 10px 42px;
  color: #fff;
  outline: none;
  font-size: 0.9rem;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold-base);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.8rem;
}

.service-card {
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-base);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.service-number {
  background: var(--color-gold-gradient);
  color: #072218;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.service-time {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.service-name {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.price-comparison-box {
  background: rgba(5, 22, 16, 0.6);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 1rem 0 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px dashed rgba(212, 175, 55, 0.25);
}

.price-item-column {
  display: flex;
  flex-direction: column;
}

.price-label-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-gold-light);
}

.price-value-text.highlight {
  color: #55efc4;
}

/* Facility Feature Showcase */
.facility-section {
  background: rgba(7, 34, 24, 0.4);
  border-y: 1px solid var(--color-border-gold);
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.facility-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-gold);
}

.facility-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.facility-card:hover .facility-img {
  transform: scale(1.04);
}

.facility-overlay {
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(5, 22, 16, 0.95), transparent);
}

/* VIP Free Parking Banner */
.parking-banner {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gold-base);
  background: linear-gradient(135deg, rgba(12, 59, 46, 0.95) 0%, rgba(7, 34, 24, 0.98) 100%);
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.parking-banner-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  color: #072218;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.parking-banner-content {
  flex: 1;
}

.parking-banner-content h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.parking-banner-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.parking-banner-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--color-gold-base);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  color: var(--color-gold-light);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Gallery Grid System */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.gallery-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(5, 22, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
}

.gallery-zoom-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(5, 22, 16, 0.85);
  border: 1px solid var(--color-gold-base);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: var(--transition);
}

.gallery-card:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1.1);
  background: var(--color-gold-gradient);
  color: #072218;
}

.gallery-info {
  padding: 1.2rem;
}

.gallery-info h4 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.gallery-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Lightbox Preview Modal */
.lightbox-box {
  width: 90%;
  max-width: 750px;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
}

.lightbox-preview-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-gold);
}



/* Location & Map Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.info-card {
  border-radius: var(--radius-md);
  padding: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--color-gold-base);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--color-border-gold);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Booking Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gold-light);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.form-input, .form-select {
  width: 100%;
  background: rgba(7, 34, 24, 0.9);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.form-input:focus, .form-select:focus {
  border-color: var(--color-gold-glow);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.7);
}

/* Footer */
.footer {
  background: #030f0b;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-logo {
  max-width: 90px;
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   MOBILE-FIRST RESPONSIVE SYSTEM
   Design Priority: Mobile → Tablet → Desktop
   ============================================================ */

/* Prevent iOS input zoom - global rule */
input, select, textarea, button {
  font-size: 16px;
  font-family: inherit;
}

/* ─── MOBILE BOTTOM NAV ─── */
.mobile-bottom-nav {
  display: none;
}

/* ─── DESKTOP (1200px+) ─── */
@media (min-width: 1200px) {
  .section {
    padding: 90px 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* ─── TABLET (769px – 1024px) ─── */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── MOBILE (≤ 768px) – PRIMARY EXPERIENCE ─── */
@media (max-width: 768px) {

  /* === BASE === */
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

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

  body {
    /* Push content above bottom nav bar (70px nav + safe area) */
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }

  /* === TOP NAVBAR === */
  .navbar {
    padding: 0.7rem 1rem;
  }

  .nav-container {
    max-width: 100%;
  }

  /* Hide the desktop nav links — bottom nav replaces them */
  .nav-links {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(5, 22, 16, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--color-border-gold);
    flex-direction: column;
    padding: 0 1.2rem;
    gap: 0;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1),
                opacity 0.25s ease,
                padding 0.3s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
  }

  .nav-links.mobile-open {
    max-height: 80vh;
    opacity: 1;
    pointer-events: auto;
    padding: 1rem 1.2rem 1.4rem;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a,
  .nav-links button {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    color: var(--color-text-main);
    text-decoration: none;
    background: transparent;
    border-radius: 0;
    min-height: 52px;
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }

  .nav-links li:last-child a,
  .nav-links li:last-child button {
    border-bottom: none;
    margin-top: 0.5rem;
    border-radius: var(--radius-pill);
    justify-content: center;
    padding: 14px 20px;
  }

  .nav-links a:hover,
  .nav-links button:hover {
    color: var(--color-gold-light);
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    padding: 0;
  }

  .brand-logo-img {
    height: 38px;
    width: 38px;
  }

  .brand-title {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .brand-title span {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }

  /* Hide desktop WhatsApp FAB on mobile */
  .whatsapp-float {
    display: none;
  }

  /* === MOBILE BOTTOM NAV (App-style) === */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(5, 22, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212,175,55,0.25);
    align-items: stretch;
    justify-content: space-around;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.6);
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 10px 4px 8px;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 0.2s, transform 0.15s;
    min-height: 58px;
    -webkit-tap-highlight-color: transparent;
  }

  .bottom-nav-item i {
    font-size: 1.25rem;
    transition: transform 0.2s;
  }

  .bottom-nav-item.active {
    color: var(--color-gold-light);
  }

  .bottom-nav-item.active i {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
  }

  .bottom-nav-item:active {
    transform: scale(0.92);
  }

  /* Center Book Now button raised above bar */
  .bottom-nav-cta {
    position: relative;
    flex: 1.2;
    padding-top: 0;
    justify-content: flex-end;
    padding-bottom: 6px;
    color: var(--color-gold-light);
  }

  .bottom-nav-cta-circle {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #051610;
    border: 3px solid rgba(5,22,16,0.97);
    box-shadow: 0 4px 18px rgba(212,175,55,0.55);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .bottom-nav-cta:active .bottom-nav-cta-circle {
    transform: translateX(-50%) scale(0.9);
    box-shadow: 0 2px 10px rgba(212,175,55,0.35);
  }

  .bottom-nav-cta span {
    margin-top: 28px;
    font-size: 0.6rem;
  }

  /* === HERO === */
  .hero {
    padding: 80px 1.2rem 2.5rem;
    min-height: auto;
    text-align: center;
  }

  .hero-logo {
    max-width: 110px;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.78rem;
    letter-spacing: 3px;
    margin-bottom: 0.6rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-location-tag {
    font-size: 0.8rem;
    padding: 6px 14px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-description {
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 1.8rem;
    color: var(--color-text-muted);
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-outline-gold {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 1rem;
    min-height: 52px;
  }

  /* === PILLARS RIBBON === */
  .pillars-ribbon {
    padding: 1.5rem 1rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pillar-item {
    background: rgba(7,34,24,0.5);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: var(--radius-md);
    padding: 1.2rem 0.8rem;
  }

  .pillar-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .pillar-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .pillar-desc {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  /* === SECTIONS === */
  .section {
    padding: 2.5rem 1.2rem;
    max-width: 100%;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-top: 0.4rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  /* === LOCATION SWITCHER === */
  .pricing-switcher-wrapper {
    margin-bottom: 1.5rem;
  }

  .pricing-switcher {
    flex-direction: column;
    width: 100%;
    gap: 6px;
    padding: 6px;
    border-radius: var(--radius-md);
  }

  .switch-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 14px;
    font-size: 0.9rem;
    min-height: 50px;
    text-align: center;
    gap: 8px;
  }

  /* === PACKAGES GRID === */
  .packages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .package-card {
    padding: 1.4rem 1rem;
  }

  .package-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }

  .package-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .package-price {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .package-price span {
    font-size: 0.75rem;
  }

  /* === FILTER BAR (swipeable) === */
  .filter-bar {
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    align-items: stretch;
  }

  .filter-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex-shrink: 0;
    padding: 9px 16px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .search-box {
    width: 100%;
    min-width: unset;
  }

  /* === SERVICE CARDS === */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-card {
    padding: 1.3rem 1.1rem;
  }

  .service-name {
    font-size: 1.1rem;
  }

  .price-comparison-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    margin: 0.75rem 0 1rem;
  }

  .price-value-text {
    font-size: 1.1rem;
  }

  .price-label-text {
    font-size: 0.68rem;
  }

  /* === FACILITY SECTION === */
  .facility-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .facility-img {
    height: 210px;
  }

  /* === CONTACT & MAP === */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .info-card {
    padding: 1.5rem 1.2rem;
  }

  .map-container {
    height: 260px;
  }

  /* === MODAL === */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal-box {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 1.8rem 1.4rem calc(1.4rem + env(safe-area-inset-bottom, 0px));
    max-height: 92vh;
    overflow-y: auto;
    transform: translateY(100%);
  }

  .modal-overlay.active .modal-box {
    transform: translateY(0);
  }

  /* === FOOTER === */
  .footer {
    padding: 2rem 1.2rem 1.5rem;
  }

  .footer-logo {
    max-width: 70px;
  }
}

/* ─── SMALL PHONES (≤ 390px: iPhone SE, Galaxy A series) ─── */
@media (max-width: 390px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-outline-gold {
    font-size: 0.9rem;
    padding: 13px 18px;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .switch-btn {
    font-size: 0.82rem;
    padding: 12px 10px;
  }
}

