/* ==========================================================================
   HOTEL MIDWAY MALARI — ULTRA LUXURY RESORT STYLESHEET
   ========================================================================== */

:root {
  --bg-dark: #0B1120;
  --bg-card: rgba(30, 41, 59, 0.7);
  --accent-green: #16A34A;
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-bg: rgba(15, 23, 42, 0.88);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-glow: 0 0 35px rgba(22, 163, 74, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 70px 0;
  position: relative;
}

/* Strict Desktop 2-Column Room Card & Fixed Image Frame */
.room-card-full {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
}

.room-img-box {
  width: 320px;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.room-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.room-price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--gold-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
}

/* Section Header Typography */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: var(--accent-green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 650px;
  margin-bottom: 36px;
}

/* Page Header Banner */
.page-header {
  position: relative;
  padding: 130px 0 50px;
  background: linear-gradient(180deg, rgba(15,23,42,0.85), rgba(15,23,42,0.95)), url('himalayan_hero_bg_1785231406742.png') center/cover no-repeat;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #FFFFFF;
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--gold-primary);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  outline: none;
  min-height: 48px;
  text-align: center;
  box-sizing: border-box;
}

.btn-primary {
  background: #000000;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.btn-primary:hover {
  background: var(--accent-green);
  color: #FFFFFF;
  border-color: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), #B8860B);
  color: #0F172A;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background: var(--accent-green);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: #FFFFFF;
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* Glassmorphic Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all 0.35s ease;
}

.glass-card:hover {
  border-color: rgba(22, 163, 74, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

/* Clean Desktop & Mobile Contact Grid */
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  width: 100%;
}

.contact-card-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  width: 100%;
}

.contact-card-item:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
}

.contact-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-map-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  width: 100%;
  box-sizing: border-box;
}

.contact-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.contact-map-frame {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: relative;
}

.contact-map-frame iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  width: 100%;
}

.about-img-box {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-box-responsive {
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(22,163,74,0.1));
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  width: 100%;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-primary), #996515);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-size: 1.2rem;
}

.logo-text h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.6rem;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

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

.nav-links a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Header Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  color: #FFFFFF;
  font-size: 1.3rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #0B1120;
  border-left: 1px solid var(--glass-border);
  z-index: 1001;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { right: 0; }

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-links a {
  color: #E2E8F0;
  text-decoration: none;
  font-size: 1rem;
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

/* Footer */
footer {
  background: #090D16;
  border-top: 1px solid var(--glass-border);
  padding: 50px 0 24px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

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

.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: #64748B;
}

/* Floating WhatsApp & Sticky Mobile */
.floating-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 990;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.mobile-sticky-book {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 10px 16px;
  z-index: 998;
}

/* ==========================================================================
   DESKTOP vs MOBILE RESPONSIVE RULES
   ========================================================================== */

@media (min-width: 993px) {
  .contact-split-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .room-card-full {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .room-img-box {
    width: 100% !important;
    height: 240px !important;
  }

  .nav-links, .nav-cta { display: none !important; }
  .menu-toggle { display: flex !important; }
  .mobile-sticky-book { display: block !important; }

  section { padding: 40px 0 !important; }

  .contact-split-grid, .about-preview-grid, .grid-3 {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .about-img-box {
    height: 250px !important;
  }

  .about-img-box img {
    height: 100% !important;
  }

  .contact-map-wrapper {
    width: 100% !important;
    padding: 14px !important;
    gap: 14px !important;
    box-sizing: border-box !important;
  }

  .contact-map-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    width: 100% !important;
  }

  .contact-map-frame {
    width: 100% !important;
    height: 280px !important;
    box-sizing: border-box !important;
  }

  .cta-box-responsive {
    padding: 30px 16px !important;
    width: 100% !important;
  }

  .btn {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-header {
    padding: 95px 0 30px !important;
  }

  .page-header h1 {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px !important; }
  .section-title { font-size: 1.55rem !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  
  .room-img-box {
    height: 200px !important;
  }
}
