/* SAWDA SPA GULSHAN - MOBILE-FIRST LAYOUT & RESPONSIVE GRID (layout.css) */

/* 1. TOP ANNOUNCEMENT BANNER */
.top-offer-banner {
  background: linear-gradient(90deg, #181A22 0%, #282B38 50%, #181A22 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding: 8px 0;
  text-align: center;
  color: #FFFFFF;
}

/* 2. STICKY ULTRA-LUXURY ROYAL OBSIDIAN HEADER */
.header-main {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  background: linear-gradient(180deg, #161822 0%, #0F1015 100%) !important;
  border-bottom: 1px solid rgba(255, 184, 0, 0.45);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 184, 0, 0.15);
  height: 74px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.brand-logo-img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(255, 184, 0, 0.6));
}

.nav-menu, .header-cta {
  display: none !important;
}

/* 3-Dot / 3-Line Menu Toggle Button (Visible on Desktop & Mobile) */
.mobile-nav-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.4rem;
  color: #FFB800;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 1px solid rgba(255, 184, 0, 0.6);
  border-radius: 12px;
  padding: 6px 14px;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 184, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  background: rgba(255, 184, 0, 0.3);
  transform: scale(1.05);
}

/* 3. HERO SECTION - COMPACT FIRST FOLD SPACING FOR MOBILE */
.hero-section {
  position: relative;
  min-height: auto;
  padding: 30px 0 25px;
  background: linear-gradient(rgba(15, 16, 21, 0.82), rgba(15, 16, 21, 0.96)), 
              url('../images/twin_beds_suite.jpg') center/cover no-repeat;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 3rem);
  color: #FFFFFF;
  margin-top: 10px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 3.5vw, 1.15rem);
  color: #E2E8F0;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* 4. SECTION PADDING & RESPONSIVE TYPOGRAPHY */
.section-padding {
  padding: 45px 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 30px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4.5vw, 2.2rem);
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.3;
}

.section-subtitle {
  color: #A0A5B5;
  font-size: clamp(0.85rem, 3vw, 1.05rem);
  line-height: 1.6;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  align-items: center;
}

/* FOOTER LAYOUT */
.footer-main {
  background: #0B0C10;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 40px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.8fr;
  gap: 30px;
  margin-bottom: 30px;
}

/* MOBILE RESPONSIVE MEDIA QUERIES (< 768px) */
@media (max-width: 991px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; text-align: center; }
  .section-padding { padding: 32px 0 !important; }
  .hero-section { padding: 20px 0 16px !important; }
  .stats-grid-wrap { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
}

/* MOBILE/DESKTOP DRAWER MODAL OVERLAY & MENU */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 16, 0.88);
  backdrop-filter: blur(14px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  background: linear-gradient(180deg, #181A22 0%, #0F1015 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.35);
  z-index: 99999;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
  transition: transform 0.35s ease;
}

.mobile-drawer.active {
  transform: translateX(-340px);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 20px;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.4);
  color: #FFB800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.mobile-drawer-link {
  color: #E2E8F0;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-drawer-link:hover, .mobile-drawer-link.active {
  background: rgba(255, 184, 0, 0.15);
  border-color: rgba(255, 184, 0, 0.5);
  color: #FFB800;
}
