/* ============================================================
   Al Gelani Jewellers — Premium Luxury CSS Stylesheet
   ============================================================ */

:root {
  --bg-main: #fcfbf9;          /* Premium luxury soft marble white */
  --bg-card: #ffffff;          /* Pure white card */
  --bg-card-hover: #faf7f0;    /* Warm alabaster cream hover */
  --bg-nav: rgba(252, 251, 249, 0.85);
  --bg-drawer: #ffffff;
  --bg-shade: #f5f4ef;
  --bg-footer: #f0ede6;
  --bg-fab: rgba(252, 251, 249, 0.95);
  --gold-primary: #aa7c11;     /* Rich gold for light backgrounds */
  --gold-dark: #8c6204;        /* Darker gold accents */
  --gold-light: #d4af37;       /* Metallic champagne gold details */
  --gold-glow: rgba(170, 124, 17, 0.1);
  --text-white: #0f1216;       /* Obsidian dark text */
  --text-muted: #5e646d;       /* Muted charcoal grey */
  --border-gold: rgba(170, 124, 17, 0.22);
  --border-glass: rgba(15, 18, 22, 0.06);
  --radius: 12px;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow: 0 10px 30px rgba(170,124,17,0.06);
}

[data-theme="dark"] {
  --bg-main: #06080b;          /* Pure luxurious deep obsidian */
  --bg-card: rgba(18, 22, 28, 0.75); /* Translucent high-end slate card */
  --bg-card-hover: rgba(26, 32, 40, 0.9);
  --bg-nav: rgba(6, 8, 11, 0.85);
  --bg-drawer: #0d0f13;
  --bg-shade: #07090c;
  --bg-footer: #040507;
  --bg-fab: rgba(13, 15, 19, 0.95);
  --gold-primary: #d4af37;     /* High-end metallic gold */
  --gold-dark: #aa7c11;        /* Brushed gold shadow */
  --gold-light: #f3e5ab;       /* Cream champagne shimmer */
  --gold-glow: rgba(212, 175, 55, 0.25);
  --text-white: #f9f6f0;       /* Fine alabaster text */
  --text-muted: #8a909a;       /* Warm grey description */
  --border-gold: rgba(212, 175, 55, 0.15);
  --border-glass: rgba(255, 255, 255, 0.05);
  --shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Reset & Base Elements */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: var(--bg-main);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-white);
}

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

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }

/* Buttons & Custom Inputs */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: #000;
  box-shadow: 0 4px 15px var(--gold-glow);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-primary);
  background: var(--gold-light);
}

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

.btn-outline:hover {
  background: var(--gold-primary);
  color: #000;
  transform: translateY(-2px);
}

/* 1. Live Gold Rates Marquee Bar */
.ticker-wrap {
  background: #000;
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 1000;
}

.ticker-content-container {
  width: 100%;
  display: flex;
}

.ticker-inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 65s linear infinite;
  padding-left: 100%;
}

.ticker-inner span {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* 2. Premium Navigation Header */
.luxury-nav-header {
  background: var(--bg-nav);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-glass);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 15px 0;
  transition: background-color 0.4s ease;
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-white);
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gold-primary);
}

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

.nav-menu-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

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

.btn-nav-phone {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  color: var(--gold-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-booking-nav {
  padding: 8px 18px;
  font-size: 0.78rem;
  border-radius: 50px;
}

.menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--gold-primary);
  cursor: pointer;
}

/* Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-drawer);
  border-left: 1px solid var(--border-gold);
  z-index: 10000;
  padding: 40px 30px;
  transition: var(--transition);
}

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

.drawer-close-btn {
  position: absolute;
  top: 25px; right: 25px;
  background: none; border: none;
  font-size: 1.5rem; color: var(--gold-primary);
}

.drawer-logo { margin-bottom: 40px; }

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

.drawer-links a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 3. Hero Showcase Section */
.hero-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-overlay-glow {
  position: absolute;
  top: -10%; right: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(circle, var(--gold-glow) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.hero-section h2 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  padding: 12px;
  border: 1px solid var(--border-gold);
  background: rgba(212, 175, 55, 0.03);
}

.hero-image-frame.luxury-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-glass);
  aspect-ratio: 1;
  background: #000;
  width: 100%;
}

.hero-image-frame.luxury-slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 4s ease-in-out;
  transform: scale(1.08);
}

.hero-image-frame.luxury-slider .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slider-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(6, 8, 11, 0.4), transparent);
  z-index: 3;
  pointer-events: none;
}

.hero-image-wrap:hover .hero-image-frame img {
  transform: scale(1.05);
}

/* Ornament Divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 15px auto 25px;
}

.ornament::before, .ornament::after {
  content: '';
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.ornament-icon {
  font-size: 0.8rem;
  color: var(--gold-primary);
  letter-spacing: 2px;
}

/* 4. Showcase & Collections */
.section {
  padding: 80px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Category grid filter */
.category-filter-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-chip {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-chip.active, .filter-chip:hover {
  border-color: var(--gold-primary);
  color: var(--text-white);
  background: var(--border-gold);
}

/* Showcase Grid */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.jewelry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

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

.jewelry-img-box {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #15181e;
  position: relative;
}

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

.jewelry-card:hover .jewelry-img-box img {
  transform: scale(1.06);
}

.jewelry-tag {
  position: absolute;
  top: 15px; left: 15px;
  background: rgba(0,0,0,0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.jewelry-info {
  padding: 20px;
}

.jewelry-info h4 {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.jewelry-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.jewelry-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.jewelry-weight {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* 5. Outlets Locator */
.outlets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.outlet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.outlet-card:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.outlet-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.outlet-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}

.outlet-address {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.outlet-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.outlet-info-row i {
  color: var(--gold-primary);
  width: 16px;
}

.outlet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.outlet-actions .btn {
  padding: 10px 0;
  font-size: 0.75rem;
  justify-content: center;
}

.booking-section {
  background: var(--bg-main);
}

.booking-card-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

/* Stepper progress */
.step-indicator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 40px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 12px;
  border-bottom: 2px solid var(--border-glass);
  color: var(--text-muted);
  transition: var(--transition);
}

.step-card.active {
  border-bottom-color: var(--gold-primary);
  color: var(--gold-primary);
}

.step-circle-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.step-card.active .step-circle-badge {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.booking-form-step {
  display: none;
}

.booking-form-step.active {
  display: block;
}

/* Booking Layout Columns */
.booking-step-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-shade);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-white);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}

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

.calendar-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 16px;
}

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

.cal-month-lbl {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
}

.cal-nav-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  color: var(--gold-primary);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.cal-week-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

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

.cal-day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-white);
}

.cal-day-cell:hover:not(.disabled) {
  background: rgba(212,175,55,0.15);
  color: var(--gold-primary);
}

.cal-day-cell.selected {
  background: var(--gold-primary) !important;
  color: #000 !important;
  font-weight: 700;
}

.cal-day-cell.disabled {
  opacity: 0.15;
  cursor: not-allowed;
}

.cal-day-cell.today {
  border: 1px solid var(--gold-primary);
}

/* Time Slot card chips */
.slots-chips-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.slot-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  text-align: center;
  padding: 12px 6px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition);
}

.slot-chip.available:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212,175,55,0.05);
}

.slot-chip.selected {
  background: var(--gold-primary) !important;
  color: #000 !important;
  border-color: var(--gold-primary) !important;
  font-weight: 700;
}

.slot-chip.booked {
  opacity: 0.35;
  cursor: not-allowed;
  background: rgba(255,255,255,0.01);
  border-color: transparent;
}

/* Consultation Package Cards */
.packages-grid-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.package-card-option input {
  display: none;
}

.package-card-option label {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 24px 20px;
  cursor: pointer;
  transition: var(--transition);
  height: 100%;
  text-align: center;
}

.package-card-option input:checked + label {
  border-color: var(--gold-primary);
  background: rgba(212,175,55,0.05);
  box-shadow: 0 0 15px rgba(212,175,55,0.1);
}

.pkg-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.pkg-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--text-white);
}

.pkg-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.pkg-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 7. Premium Footer & Action Bar */
.luxury-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 20px;
}

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

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.trust-marks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}

.trust-badge strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text-white);
}

.trust-badge span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-title {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-links i {
  color: var(--gold-primary);
  margin-top: 4px;
}

.footer-links strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-white);
}

.footer-links span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.footer-links-list a {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-contacts p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-contacts i {
  color: var(--gold-primary);
  margin-right: 6px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  color: var(--gold-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}

.footer-socials a:hover {
  background: var(--gold-primary);
  color: #000;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Floating Responsive mobile action bar */
.floating-action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg-fab);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-gold);
  z-index: 998;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
}

.fab-item {
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  text-transform: uppercase;
  font-weight: 600;
}

.fab-item i {
  font-size: 1.1rem;
  color: var(--gold-primary);
}

.fab-item.highlight {
  color: #fff;
}

.fab-item.highlight i {
  color: #fff;
  background: var(--gold-primary);
  color: #000;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: -15px;
  box-shadow: 0 4px 15px var(--gold-glow);
}

/* Budget range slider */
.budget-slider-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.budget-val-display {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.slider-range-control {
  width: 100%;
  accent-color: var(--gold-primary);
  height: 4px;
  border-radius: 2px;
  background: var(--border-glass);
  cursor: pointer;
}

/* Alerts styling */
.alert {
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ============================================================
   RESPONSIVE DESIGN Breakpoints
   ============================================================ */

@media (max-width: 1024px) {
  .hero-section h2 { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .packages-grid-selector { grid-template-columns: 1fr; gap: 15px; }
}

@media (max-width: 768px) {
  .menu-toggle-btn { display:block; }
  .nav-menu-links, .btn-booking-nav { display:none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 30px; }
  .outlets-grid { grid-template-columns: 1fr; }
  .booking-step-row { grid-template-columns: 1fr; }
  .floating-action-bar { display: grid; }
  body { padding-bottom: 60px; } /* Offset for mobile action bar */
  .footer-grid { grid-template-columns: 1fr; }
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}
.fade-in {
  opacity: 0;
}
