/* ==========================================================================
   ВАШ ЗАЛ — RESTAURANT & GRAND BANQUET COMPLEX
   Royal Midnight Sapphire Navy & Warm Imperial Gold Theme
   ========================================================================== */

:root {
  /* Color Palette — Royal Midnight Navy & Imperial Gold */
  --bg-primary: #070d18;
  --bg-secondary: #0c1524;
  --bg-card: rgba(13, 23, 38, 0.88);
  --bg-card-hover: rgba(19, 34, 56, 0.98);
  --bg-glass: rgba(10, 18, 30, 0.85);
  --bg-light: #f8f6f0;
  
  --gold-primary: #d4af37;
  --gold-light: #f7e8b0;
  --gold-dark: #a0780f;
  --gold-gradient: linear-gradient(135deg, #f9e8a2 0%, #d4af37 50%, #99730e 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #f7e8b0 50%, #d4af37 100%);
  --gold-border: rgba(212, 175, 55, 0.35);
  --gold-glow: rgba(212, 175, 55, 0.28);
  
  --navy-accent: #132238;
  --navy-bright: #1b2f4d;
  
  --text-main: #f5f5f7;
  --text-muted: #a0aec0;
  --text-gold: #e6ca65;
  --text-dark: #101010;
  
  --success: #25d366;
  --whatsapp-color: #25d366;
  --gis-color: #1aa034;
  
  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Layout & Radii */
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.35);
  --shadow-navy: 0 10px 30px rgba(11, 22, 38, 0.7);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(19, 34, 56, 0.45) 0%, transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(19, 34, 56, 0.4) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

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

/* SVG Vector Icons System */
.svg-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  vertical-align: middle;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.svg-icon.stroke-only {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-xs { width: 16px; height: 16px; }
.svg-sm { width: 20px; height: 20px; }
.svg-md { width: 26px; height: 26px; }
.svg-lg { width: 34px; height: 34px; }
.svg-xl { width: 42px; height: 42px; }

.svg-gold {
  color: var(--gold-primary);
  fill: var(--gold-primary);
}
.svg-gold-light {
  color: var(--gold-light);
  fill: var(--gold-light);
}
.svg-white {
  color: #ffffff;
  fill: #ffffff;
}

.stars-rating-svg {
  display: inline-flex;
  gap: 3px;
  color: #ffc107;
  fill: #ffc107;
}

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

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-primary);
  margin-bottom: 12px;
  padding: 0 8px;
}

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #121e1d;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.5);
  color: #061211;
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.btn-gis {
  background-color: var(--gis-color);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(26, 160, 52, 0.35);
}
.btn-gis:hover {
  background-color: #15852b;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(8, 14, 24, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 10px 30px rgba(4, 8, 14, 0.85);
}

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

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

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.logo:hover .logo-img {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.6);
  border-color: var(--gold-light);
}

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

.logo-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 1px;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

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

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  padding: 3px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn.active {
  background: var(--gold-gradient);
  color: #121e1d;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.nav-drawer-header,
.nav-drawer-footer {
  display: none;
}

/* Hamburger */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px 10px;
  color: #ffffff;
  transition: var(--transition-smooth);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  margin: 5px 0;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.mobile-toggle.open {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold-primary);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.72) 0%, rgba(7, 13, 24, 0.94) 100%), 
              url('../assets/images/manas_wedding_real.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(7, 13, 24, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 25, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--gold-light);
}

.rating-badge {
  background: rgba(26, 160, 52, 0.2);
  border-color: rgba(26, 160, 52, 0.5);
  color: #4ef06e;
}

.hero-title {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-description {
  font-size: 1.15rem;
  color: #e2ece9;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   Quick Features / Highlights
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   Halls Presentation (Үлкен және Кіші Залдар)
   ========================================================================== */
.halls-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hall-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hall-row.reverse {
  grid-template-columns: 1fr 1fr;
}
.hall-row.reverse .hall-image-wrap {
  order: 2;
}
.hall-row.reverse .hall-content {
  order: 1;
}

.hall-image-wrap {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

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

.hall-row:hover .hall-img {
  transform: scale(1.05);
}

.hall-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(6, 18, 17, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hall-content {
  padding: 40px;
}

.hall-title {
  font-size: 1.85rem;
  margin-bottom: 14px;
}

.hall-desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.hall-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.spec-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.spec-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 1px;
}

.spec-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 4px;
}

.hall-features-list {
  list-style: none;
  margin-bottom: 28px;
}

.hall-features-list li {
  font-size: 0.9rem;
  color: #d1dedb;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hall-features-list li .svg-icon {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   Interactive Calculator Section
   ========================================================================== */
.calc-section {
  background: radial-gradient(circle at center, rgba(15, 56, 51, 0.3) 0%, rgba(6, 18, 17, 0.9) 100%);
  border-block: 1px solid var(--gold-border);
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.calc-step {
  margin-bottom: 32px;
}

.calc-step-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #061211;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

/* Event Types Grid */
.event-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.event-radio {
  display: none;
}

.event-card-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.event-card-label:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-primary);
}

.event-card-label .svg-icon {
  margin-bottom: 8px;
  color: var(--gold-primary);
}

.event-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e0e0e0;
}

.event-radio:checked + .event-card-label {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  color: #ffffff;
}

.event-radio:checked + .event-card-label .svg-icon {
  color: #ffffff;
}

/* Guests Range Slider */
.range-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
}

.range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.range-val-badge {
  background: var(--gold-gradient);
  color: #061211;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.1rem;
}

.custom-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #193834;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
  cursor: pointer;
  border: 2px solid #ffffff;
  transition: transform 0.1s;
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Package Selector */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.package-radio {
  display: none;
}

.package-card {
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.package-card:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
}

.package-radio:checked + .package-card {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.18);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.package-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 1px;
}

.package-title {
  font-size: 1.15rem;
  margin: 6px 0;
}

.package-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.package-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.package-summary {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Add-on Services */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.addon-checkbox-label:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-primary);
}

.addon-checkbox {
  accent-color: var(--gold-primary);
  width: 18px;
  height: 18px;
}

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

.addon-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.addon-price {
  font-size: 0.75rem;
  color: var(--gold-light);
}

/* Calculator Summary Box (Sticky) */
.calc-summary-box {
  background: linear-gradient(180deg, rgba(15, 45, 41, 0.95) 0%, rgba(6, 18, 17, 0.98) 100%);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), var(--shadow-gold);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.calc-summary-header {
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 18px;
  margin-bottom: 24px;
  text-align: center;
}

.summary-title {
  font-size: 1.4rem;
  color: #ffffff;
}

.summary-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.summary-row.bold {
  color: #ffffff;
  font-weight: 600;
}

.total-estimate-wrap {
  background: rgba(212, 175, 55, 0.1);
  border: 1px dashed var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-bottom: 28px;
}

.total-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.total-amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
}

.per-person-calc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.calc-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   Menu & Gastronomy Section
   ========================================================================== */
.menu-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.menu-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
  background: var(--gold-gradient);
  color: #061211;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-smooth);
}

.menu-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card);
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  border-bottom: 1px dotted rgba(212, 175, 55, 0.3);
  padding-bottom: 8px;
}

.dish-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #ffffff;
}

.dish-tag {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  background: rgba(212, 175, 55, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.dish-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Gallery Section & Lightbox
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  border-color: var(--gold-primary);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 18, 17, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-item-title {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 600;
}

.gallery-item-cat {
  font-size: 0.75rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold-border);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
  text-align: center;
  color: #ffffff;
  margin-top: 14px;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   2GIS Reviews & Reputation
   ========================================================================== */
.reviews-banner {
  background: linear-gradient(135deg, rgba(26, 160, 52, 0.15) 0%, rgba(6, 18, 17, 0.8) 100%);
  border: 1px solid rgba(26, 160, 52, 0.4);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gis-logo-badge {
  background: #1aa034;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  letter-spacing: 1px;
}

.gis-score-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.reviewer-name {
  font-weight: 700;
  color: #ffffff;
}

.review-event {
  font-size: 0.8rem;
  color: var(--gold-primary);
}

.review-body {
  font-size: 0.9rem;
  color: #d1dedb;
  line-height: 1.6;
  font-style: italic;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: right;
}

/* ==========================================================================
   Location & Contacts
   ========================================================================== */
.contacts-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  transform: translateX(6px);
}

.contact-icon {
  background: rgba(212, 175, 55, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
}

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

.contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 4px;
}

.contact-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-border);
  box-shadow: var(--shadow-card);
  height: 420px;
  position: relative;
  background: #080e18;
}

.map-view {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-container iframe {
  width: 100%;
  height: calc(100% + 35px);
  margin-bottom: -35px;
  border: 0;
}

.map-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(8, 14, 24, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  z-index: 500;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   Booking Modal
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-dialog {
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  padding: 36px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--shadow-gold);
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-close:hover {
  color: #ffffff;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.form-control option {
  background-color: #061211;
  color: #ffffff;
}

/* ==========================================================================
   Floating Action Buttons & Speed Dial
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 990;
}

.float-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
  position: relative;
}

.float-btn .svg-icon {
  width: 36px;
  height: 36px;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-4px);
}

.float-whatsapp {
  background: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.float-whatsapp .svg-icon {
  width: 38px;
  height: 38px;
  color: #ffffff;
  fill: #ffffff;
}

.float-call {
  background: var(--gold-gradient);
  color: #061211;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.float-call .svg-icon {
  width: 32px;
  height: 32px;
  color: #061211;
  fill: #061211;
}

/* Ripple animation */
.float-btn::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid currentColor;
  opacity: 0.8;
  animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.85; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #030a09;
  border-top: 1px solid var(--gold-border);
  padding: 80px 0 30px;
  position: relative;
}

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

.footer-col-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold-primary);
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  align-items: center;
}

.social-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: var(--transition-smooth);
}

.social-icon-btn .svg-icon {
  width: 26px;
  height: 26px;
}

.social-icon-btn:hover {
  background: var(--gold-gradient);
  color: #061211;
  border-color: transparent;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.social-icon-btn:hover .svg-icon {
  color: #061211;
  fill: #061211;
}

/* Distinctive WhatsApp Footer Button */
.social-icon-btn.whatsapp-btn-social {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.6);
  color: #25d366;
}

.social-icon-btn.whatsapp-btn-social .svg-icon {
  width: 28px;
  height: 28px;
  color: #25d366;
  fill: #25d366;
}

.social-icon-btn.whatsapp-btn-social:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55);
}

.social-icon-btn.whatsapp-btn-social:hover .svg-icon {
  color: #ffffff;
  fill: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
