/* ============================================================
   GALAZONERA LUXURY APARTMENTS — ULTRA-LUXURY DARK RESORT
   5-Star Boutique Resort Design System (Champagne Gold & Midnight)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@200;300;400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --bg-dark:       #070A10;
  --bg-card:       #0E1420;
  --bg-card-hover: #141C2E;
  --bg-glass:      rgba(14, 20, 32, 0.75);
  --border-glass:  rgba(212, 175, 55, 0.2);
  --border-gold:   rgba(212, 175, 55, 0.4);

  --gold-primary:  #D4AF37;
  --gold-light:    #F5E6A3;
  --gold-dark:     #9A7B20;
  --gold-gradient: linear-gradient(135deg, #F5E6A3 0%, #D4AF37 50%, #9A7B20 100%);
  --gold-glow:     rgba(212, 175, 55, 0.25);

  --text-main:     #F0F3F8;
  --text-muted:    #A0AAB8;
  --text-dim:      #687588;

  --serif: 'Cormorant Garamond', serif;
  --sans:  'Outfit', sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; color-scheme: dark; }
body {
  font-family: var(--sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }

/* Language System */
[data-lang] { display: none !important; }
[data-lang].lang-active { display: inline !important; }

/* ---- Typography Helpers ---- */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 14px 48px;
  background: rgba(7, 10, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo img { height: 42px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; width: 0; height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Switcher */
.lang-selector {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lang-btn {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 2px 10px var(--gold-glow);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #070A10;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: var(--transition);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  filter: brightness(1.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--text-main);
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.92) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,10,16,0.35) 0%, rgba(7,10,16,0.1) 40%, rgba(7,10,16,0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  margin: auto auto 20px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 105px);
  font-weight: 300;
  line-height: 1.02;
  margin: 16px 0 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.9);
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: rgba(240, 243, 248, 0.95);
  max-width: 620px;
  margin: 0 auto 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

/* FLOATING QUICK BOOKING WIDGET */
.quick-booking-bar {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1100px;
  background: rgba(14, 20, 32, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 30px var(--gold-glow);
  margin-top: 40px;
  margin-bottom: -50px;
}

.booking-bar-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr auto;
  gap: 16px;
  align-items: center;
}

.bar-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.bar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
}
.bar-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-main);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}
.bar-input:focus {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}
.bar-input option { background: var(--bg-card); color: var(--text-main); }

/* ============================================================
   STATS / HIGHLIGHT STRIP
   ============================================================ */
.luxury-stats {
  background: var(--bg-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 40px 24px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-box {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-box:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   EDITORIAL INTRO
   ============================================================ */
.section-padding {
  padding: 120px 24px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text-side {
  padding-right: 20px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  margin: 16px 0 24px;
}
.section-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 32px;
}

.intro-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.intro-image-frame img {
  width: 100%; height: 540px;
  object-fit: cover;
  transition: var(--transition);
}
.intro-image-frame:hover img {
  transform: scale(1.04);
}

/* ============================================================
   SUITES SHOWCASE
   ============================================================ */
.rooms-section {
  background: #0B0F18;
  position: relative;
}

.rooms-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

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

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

.room-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 40px rgba(0,0,0,0.7), 0 0 25px var(--gold-glow);
}

.room-thumb {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.room-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.room-card:hover .room-thumb img {
  transform: scale(1.08);
}

.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(7, 10, 16, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.room-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 8px;
}

.room-meta {
  font-size: 12px;
  color: var(--gold-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.room-desc {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.btn-card-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-card-link:hover {
  color: #FFF;
  transform: translateX(4px);
}

/* ============================================================
   BUILDING EXTERIOR STRIP
   ============================================================ */
.exterior-gallery-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  height: 220px;
  overflow: hidden;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.ext-img-item {
  position: relative;
  overflow: hidden;
}
.ext-img-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: var(--transition);
}
.ext-img-item:hover img {
  filter: brightness(1.1);
  transform: scale(1.1);
}

/* ============================================================
   AMENITIES SECTION
   ============================================================ */
.amenities-section {
  background: var(--bg-dark);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.amenity-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.amenity-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.amenity-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.amenity-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.amenity-text {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================================================
   MINI MARKET FEATURE
   ============================================================ */
.market-feature {
  background: #0B0F18;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.market-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.market-img {
  position: relative;
  min-height: 400px;
}
.market-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.market-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================================
   AREA TEASER
   ============================================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.area-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.area-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.area-card:hover img {
  transform: scale(1.08);
}
.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,10,16,0.9) 0%, transparent 60%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.area-card-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--text-main);
}
.area-card-dist {
  font-size: 11px;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================
   BOOKING & CONTACT SECTION
   ============================================================ */
.booking-section {
  background: var(--bg-dark);
  position: relative;
}

.booking-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 64px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.form-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-main);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.form-input:focus {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}
textarea.form-input { resize: vertical; }

.form-msg {
  grid-column: 1 / -1;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: none;
}
.form-msg.ok {
  display: block;
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid #2e7d32;
  color: #81c784;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #04060A;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 80px 24px 32px;
}

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

.footer-logo img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-text {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 320px;
  font-weight: 300;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================================
   FLOATING QUICK CONTACT ACTION (WhatsApp / Phone)
   ============================================================ */
.floating-actions {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.floating-btn.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFF;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.floating-btn.phone-btn {
  background: var(--gold-gradient);
  color: #070A10;
  box-shadow: 0 8px 25px var(--gold-glow);
}

.floating-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* ============================================================
   ROOM PAGES (SINGLE APARTMENT VIEW)
   ============================================================ */
.rp-hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding: 64px 48px;
}
.rp-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.rp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,10,16,0.95) 0%, transparent 70%);
}
.rp-hero-content {
  position: relative; z-index: 3;
}
.rp-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 300;
}

.rp-body-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
}

.rp-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 32px;
}
.rp-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: var(--text-muted);
}
.rp-info-item:last-child { border-bottom: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.gallery-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Lightbox Modal */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(4, 6, 10, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.9);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--gold-light);
  font-size: 32px;
  cursor: pointer;
  z-index: 10000;
  transition: var(--transition);
}
.lightbox-close { top: 24px; right: 36px; }
.lightbox-prev { left: 36px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 36px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute; bottom: 24px;
  color: var(--text-muted);
  font-size: 14px; letter-spacing: 2px;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE RESPONSIVE & OVERLAY MENU DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
  .nav-toggle { display: flex; z-index: 1001; }
  
  /* Hamburger Animation */
  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-menu {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(7, 10, 16, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform: translateY(-10px);
  }
  .nav-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--text-main);
  }
  .nav-link.active, .nav-link:hover {
    color: var(--gold-primary);
  }

  .booking-bar-form { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; }
  .stat-box:last-child { border-bottom: none; }

  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-image-frame img { height: 380px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .market-box { grid-template-columns: 1fr; }
  .market-content { padding: 40px 28px; }
  .booking-wrapper { padding: 36px 24px; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rp-body-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 120px 20px 60px; min-height: 90vh; }
  .hero-title { font-size: 42px; line-height: 1.1; margin: 12px 0 16px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 24px; }

  .quick-booking-bar {
    padding: 20px 18px;
    margin-top: 24px;
    margin-bottom: -30px;
  }
  .booking-bar-form { grid-template-columns: 1fr; gap: 12px; }
  .bar-input { height: 46px; font-size: 14px; }
  
  .section-padding { padding: 80px 20px; }
  .section-title { font-size: 34px; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 32px; }

  .rooms-grid { grid-template-columns: 1fr; gap: 24px; }
  .room-thumb { height: 240px; }
  .room-content { padding: 22px; }
  .room-name { font-size: 28px; }

  .amenities-grid { grid-template-columns: 1fr; gap: 16px; }
  .amenity-card { padding: 24px; }

  .area-grid { grid-template-columns: 1fr; gap: 16px; }
  .area-card { height: 260px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }

  .exterior-gallery-strip { grid-template-columns: repeat(4, 1fr); height: 140px; }
  
  .floating-actions { bottom: 20px; right: 20px; gap: 10px; }
  .floating-btn { width: 48px; height: 48px; font-size: 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .btn-gold { padding: 12px 20px; font-size: 11px; }
  .stats-container { grid-template-columns: 1fr; }
  .exterior-gallery-strip { grid-template-columns: repeat(3, 1fr); height: 120px; }
}
