@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   DESIGN TOKENS & RESET
   ========================================================================== */
:root {
  --bg-main: #0a0a0c;
  --bg-surface: #111115;
  --bg-card: #16161b;
  --bg-card-hover: #1c1c23;
  
  --gold-light: #f5e4b3;
  --gold: #d4af37;
  --gold-dark: #9e7d23;
  --gold-muted: rgba(212, 175, 55, 0.15);
  --gold-border: rgba(212, 175, 55, 0.22);
  --gold-border-hover: rgba(212, 175, 55, 0.6);

  --text-primary: #f8f8fa;
  --text-secondary: #c4c4cf;
  --text-muted: #838394;
  --text-gold: #e2bf65;

  --color-danger: #e05252;
  --color-success: #4ecb71;

  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-lock {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
}

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

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

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.95);
  border-bottom: 1px solid var(--gold-border);
  transition: background var(--transition-smooth), padding var(--transition-smooth), border-color var(--transition-smooth);
}

nav.scrolled {
  background: rgba(8, 8, 10, 0.98);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: transform var(--transition-fast);
}

.nav-logo:hover {
  transform: translateY(-1px);
}

.nav-logo img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}

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

.nav-logo-text .brand-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  line-height: 1.2;
}

.nav-logo-text .brand-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

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

.nav-cta {
  padding: 0.55rem 1.4rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold-light) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  transition: all var(--transition-smooth) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg-main) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition-smooth);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-filled {
  background: var(--gold);
  color: #0a0a0c;
  border-color: var(--gold);
  font-weight: 700;
}

.btn-filled:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #000;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.btn-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  background: var(--bg-main);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
  filter: grayscale(35%) contrast(1.1);
  transform: scale(1.05);
  animation: heroZoom 16s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1.03); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.92) 85%, #0a0a0c 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

.hero-crest {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.8rem;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.4));
  animation: floatCrest 6s ease-in-out infinite;
}

@keyframes floatCrest {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-tag {
  display: inline-block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding: 0.35rem 1.2rem;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-content p.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 2.8rem;
  font-weight: 400;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.hero-badge-item .icon-svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

/* ==========================================================================
   SECTIONS & TYPOGRAPHY
   ========================================================================== */
section {
  padding: 6rem 2rem;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3.8rem;
}

.section-subtitle-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
}

.section-title h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  max-width: 600px;
  margin: 0 auto;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1.2rem auto 0;
}

.divider::before,
.divider::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.divider-gem {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border: 1px solid var(--gold-border);
  padding: 12px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-smooth);
}

.about-img-frame:hover {
  border-color: var(--gold);
}

.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  filter: contrast(1.05);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  padding: 1.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.about-experience-badge .years {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
}

.about-text h3 {
  font-size: 1.85rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
  line-height: 1.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
}

.about-feature-item .icon-svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.service-card {
  background: var(--bg-card);
  padding: 2.8rem 2.2rem;
  border: 1px solid var(--gold-border);
  text-align: center;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-smooth);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-smooth);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.service-card:hover::before {
  width: 60%;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.service-card:hover .service-card-icon {
  border-color: var(--gold);
  transform: scale(1.08);
}

.service-card-icon .icon-svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.service-card h4 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card .price {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card .service-book-btn {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.service-card:hover .service-book-btn {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.4rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--gold-border);
  background: var(--bg-surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: contrast(1.02) grayscale(10%);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-item-overlay .zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.8);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform var(--transition-smooth);
}

.gallery-item-overlay .zoom-icon .icon-svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-light);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: contrast(1.05) grayscale(0%);
}

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

.gallery-item:hover .gallery-item-overlay .zoom-icon {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.94);
  backdrop-filter: none;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9);
  animation: zoomFade 0.3s ease;
}

@keyframes zoomFade {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: #000;
}

.lightbox-close {
  top: -24px;
  right: -24px;
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.testimonial {
  background: var(--bg-card);
  padding: 2.8rem 2.4rem;
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border-hover);
}

.testimonial .stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}

.testimonial p {
  color: var(--text-primary);
  font-size: 0.96rem;
  font-style: italic;
  margin-bottom: 1.6rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 1rem;
}

.testimonial span.author-name {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.testimonial span.verified {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE BOOKING CALENDAR & TIME SLOTS
   ========================================================================== */
.booking-container {
  max-width: 860px;
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.booking-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.booking-form {
  background: var(--bg-card);
  padding: 3rem 2.8rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-fast);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
  background: #141419;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--text-muted);
}

.booking-form textarea {
  resize: vertical;
  min-height: 90px;
}

.booking-form select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

/* Dual Booking Actions & WhatsApp Styling */
.booking-dual-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
}

.booking-or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-or-divider::before,
.booking-or-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.booking-or-divider span {
  padding: 0 0.8rem;
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 1.05rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: #25d366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp .icon-svg {
  width: 20px;
  height: 20px;
  fill: #4ade80;
  transition: fill var(--transition-fast);
}

.btn-whatsapp:hover .icon-svg {
  fill: #fff;
}

/* Booking Success Confirmation Modal */
.booking-success-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.booking-success-modal.active {
  display: flex;
}

.booking-success-card {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(212, 175, 55, 0.2);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-check-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-check-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
}

.booking-summary-box {
  background: var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  margin: 1.4rem 0;
  text-align: left;
  font-size: 0.86rem;
}

.booking-summary-box .sum-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-summary-box .sum-row:last-child {
  border-bottom: none;
}

.booking-summary-box .sum-label {
  color: var(--text-muted);
}

.booking-summary-box .sum-val {
  color: var(--gold-light);
  font-weight: 600;
}

/* Visual Calendar Container */
.calendar-section-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  padding: 1.8rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding-bottom: 1rem;
}

.calendar-month-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.calendar-nav-btn {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.calendar-nav-btn:hover:not(:disabled) {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.calendar-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.8rem;
}

.calendar-weekdays div {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

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

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.calendar-day.empty {
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.calendar-day.available:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  color: var(--gold-light);
  transform: scale(1.05);
}

.calendar-day.selected {
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 700;
  border-color: var(--gold) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  transform: scale(1.06);
}

.calendar-day.today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.calendar-day.selected.today::after {
  background: #000;
}

.calendar-day.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  background: rgba(15, 15, 18, 0.4);
  border-color: transparent;
}

.calendar-day.blocked {
  background: rgba(224, 82, 82, 0.08);
  border-color: rgba(224, 82, 82, 0.25);
  color: #884444;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-day.blocked::before {
  content: 'Off';
  position: absolute;
  bottom: 2px;
  font-size: 0.55rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-danger);
}

.calendar-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.legend-dot.avail {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
}

.legend-dot.select {
  background: var(--gold);
}

.legend-dot.block {
  background: rgba(224, 82, 82, 0.3);
  border: 1px solid var(--color-danger);
}

/* Time Slots Section */
.time-slots-wrapper {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
  display: none;
  animation: fadeIn 0.3s ease;
}

.time-slots-wrapper.active {
  display: block;
}

.time-slots-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
  gap: 0.6rem;
}

.time-slot-btn {
  padding: 0.7rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
}

.time-slot-btn:hover:not(.disabled) {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.time-slot-btn.selected {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.time-slot-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
  background: rgba(15, 15, 18, 0.5);
  border-color: transparent;
}

.booking-selection-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-top: 0.5rem;
}

.booking-selection-summary .sum-highlight {
  font-weight: 700;
  color: #fff;
}

.booking-note {
  margin-top: 3rem;
  padding: 2.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  text-align: center;
}

.booking-note p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   ADMIN PORTAL STYLES
   ========================================================================== */
.admin-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 8.5rem 2rem 5rem;
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--gold-border);
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.admin-actions-bar {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.admin-calendar-instructions {
  background: rgba(212, 175, 55, 0.06);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.admin-day-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.admin-day-modal.active {
  display: flex;
}

.admin-modal-box {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  padding: 2.5rem;
  border-radius: var(--radius-sm);
  max-width: 500px;
  width: 90%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9);
}

.admin-modal-box h3 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.slot-toggle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.slot-toggle-btn {
  padding: 0.6rem;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all var(--transition-fast);
}

.slot-toggle-btn.blocked {
  background: rgba(224, 82, 82, 0.15);
  border-color: var(--color-danger);
  color: var(--color-danger);
  text-decoration: line-through;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.contact-info-card,
.contact-social-card {
  background: var(--bg-card);
  padding: 2.8rem 2.4rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
}

.contact-info-card h3,
.contact-social-card h3 {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  font-weight: 700;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.contact-item .icon-box {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-border);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.contact-item:hover .icon-box {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-item .icon-svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.contact-item div p.label {
  color: var(--gold);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-item div .val {
  color: var(--text-primary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-item div a.val:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.map-container iframe {
  width: 100%;
  height: 260px;
  display: block;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1);
  border: none;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.social-link .icon-svg {
  width: 20px;
  height: 20px;
  fill: var(--text-primary);
  transition: fill var(--transition-fast);
  flex-shrink: 0;
}

.social-link:hover .icon-svg {
  fill: var(--gold-light);
}

.social-link span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.social-link:hover span {
  color: var(--gold-light);
}

.hours-box {
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--gold-border);
}

.hours-box h4 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.hours-box p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.9;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.blog-article {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  padding: 3.2rem 3rem;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-smooth);
}

.blog-article:hover {
  border-color: var(--gold-border-hover);
}

.blog-article h3 {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
  line-height: 1.35;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 1.2rem;
}

.blog-lang {
  margin-bottom: 2rem;
}

.blog-lang-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: inline-block;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
}

.blog-lang p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.95;
  margin-top: 0.4rem;
}

.blog-article .blog-signature {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--gold-border);
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #070709;
  border-top: 1px solid var(--gold-border);
  padding: 4.5rem 2rem 2.5rem;
  text-align: center;
  position: relative;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
}

.footer-logo span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.footer-nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-social-strip {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-border);
  background: var(--bg-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.footer-social-btn .icon-svg {
  width: 16px;
  height: 16px;
  fill: var(--text-primary);
  transition: fill var(--transition-fast);
}

.footer-social-btn:hover .icon-svg {
  fill: #000;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

.admin-portal-link {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  margin-top: 0.5rem;
  display: inline-block;
}

.admin-portal-link:hover {
  opacity: 1;
  color: var(--gold);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 380px;
    height: 100vh;
    background: #0d0d10;
    border-left: 1px solid var(--gold-border);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    transition: right var(--transition-smooth);
    z-index: 1050;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  }

  .nav-links.open {
    right: 0;
  }

  .about-grid,
  .contact-grid,
  .testimonials-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img-frame img {
    height: 360px;
  }

  .about-experience-badge {
    bottom: -15px;
    right: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .blog-article {
    padding: 2rem 1.5rem;
  }

  .lightbox-prev {
    left: -20px;
  }

  .lightbox-next {
    right: -20px;
  }

  .calendar-section-wrapper {
    padding: 1.2rem;
  }

  .calendar-days {
    gap: 4px;
  }

  .calendar-day {
    font-size: 0.82rem;
  }

  .admin-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-form {
    padding: 2rem 1.2rem;
  }
}

/* ==========================================================================
   AEO / SEO FAQ ACCORDION & GEO SERVICE AREA STYLES
   ========================================================================== */
.faq-section {
  padding: 5rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--gold-border-hover);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.12);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--text-gold);
}

.faq-item.active .faq-question {
  color: var(--text-gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-muted);
  color: var(--gold);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gold);
  color: var(--bg-main);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.35rem 1.5rem;
}

.geo-areas-pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.geo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(22, 22, 27, 0.7);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.geo-pill svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* ==========================================================================
   OFFERS PAGE LUXURY STYLING
   ========================================================================== */
.offers-hero {
  position: relative;
  padding: 8.5rem 1.5rem 4rem;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 12, 0.98) 70%);
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
}

.offers-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: 30px;
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.offers-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}

.offers-hero-subtitle {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
}

.offers-intro-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.offers-intro-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.offers-intro-item svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}

/* 3-Offer Showcase Grid */
.offers-section {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-head-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head-center h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.section-head-center p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

.offer-card-media {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #000;
}

.offer-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.offer-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(17,17,21,0.85) 100%);
  pointer-events: none;
}

.offer-badge-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 2;
}

.offer-duration-pill {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(10, 10, 12, 0.88);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.offer-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offer-header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.offer-title {
  font-size: 1.25rem;
  color: var(--gold-light);
  line-height: 1.35;
  font-family: var(--font-serif);
}

.offer-price-tag {
  text-align: right;
  flex-shrink: 0;
}

.offer-price-tag .regular-price {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 2px;
}

.offer-price-tag .special-price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
  line-height: 1.1;
}

.offer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.offer-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 1.2rem;
}

.offer-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.86rem;
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.offer-highlights-list li:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.offer-actions-group {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
  align-items: center;
}

.offer-book-btn {
  flex: 1;
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp-sm {
  width: 44px;
  height: 44px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.btn-whatsapp-sm:hover {
  background: #20bd5a;
  transform: scale(1.05);
}

.btn-whatsapp-sm svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Bundles / Passes Section */
.offers-bundles-section {
  padding: 5rem 1.5rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.bundles-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.bundle-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.bundle-card.featured-bundle {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(22,22,27,1) 0%, rgba(28,28,35,1) 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(212, 175, 55, 0.12);
}

.bundle-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border-hover);
}

.bundle-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bundle-title {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.bundle-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.bundle-price-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.bundle-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
}

.bundle-per-session {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.bundle-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.bundle-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
}

/* Guarantee / VIP Booking Banner */
.offers-guarantee-wrap {
  max-width: 1200px;
  margin: 5rem auto 0;
  padding: 0 1.5rem;
}

.offers-guarantee-box {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, rgba(17, 17, 21, 0.95) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.guarantee-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.guarantee-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.guarantee-text h4 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.guarantee-text p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ==========================================================================
   ADMIN PORTAL TABS & 3-PHOTO UPLOADER STYLING
   ========================================================================== */
.admin-nav-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 0.8rem;
}

.admin-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
}

.admin-tab-btn:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
}

.admin-tab-btn.active {
  background: var(--gold-muted);
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.admin-tab-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Offers Admin Manager */
.admin-offers-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.admin-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.admin-photo-slot-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.slot-number-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.slot-circle {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.slot-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.slot-toggle-label input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

/* Photo Upload Box */
.photo-upload-container {
  margin-bottom: 1.5rem;
}

.photo-preview-box {
  width: 100%;
  height: 180px;
  background: #0a0a0c;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  margin-bottom: 0.8rem;
}

.photo-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.3rem 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.upload-dropzone {
  border: 2px dashed rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1rem;
  text-align: center;
  cursor: pointer;
  background: rgba(17, 17, 21, 0.5);
  transition: all var(--transition-fast);
}

.upload-dropzone:hover,
.upload-dropzone.drag-active {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.dropzone-title {
  display: block;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.dropzone-sub {
  display: block;
  color: var(--text-muted);
  font-size: 0.74rem;
  margin-top: 2px;
}

.preset-select-row {
  margin-top: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.preset-select-row label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.admin-select-sm {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  color: #fff;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  outline: none;
}

.admin-select-sm:focus {
  border-color: var(--gold);
}

/* Slot Fields */
.slot-fields {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-form-group label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.admin-form-group input,
.admin-form-group textarea {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  color: #fff;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--transition-fast);
}

.admin-form-group input:focus,
.admin-form-group textarea:focus {
  border-color: var(--gold);
}

.admin-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

/* Admin Toast Notification */
.admin-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 99999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.admin-toast.active {
  transform: translateY(0);
  opacity: 1;
}

.admin-toast.toast-success {
  border-color: var(--color-success);
  color: #a8f0be;
}

/* ==========================================================================
   ADMIN GALLERY PHOTOS MANAGER STYLING
   ========================================================================== */
.admin-gallery-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.gallery-upload-panel {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 860px) {
  .gallery-upload-panel {
    grid-template-columns: 1fr;
  }
}

.gallery-bulk-dropzone {
  padding: 1.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 21, 0.6);
  border: 2px dashed rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.gallery-bulk-dropzone:hover,
.gallery-bulk-dropzone.drag-active {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.upload-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.upload-icon-circle svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.upload-status-pill {
  margin-top: 0.8rem;
  background: var(--gold);
  color: #000;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  animation: pulse 1.5s infinite;
}

.gallery-preset-adder-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  background: rgba(15, 15, 18, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.stats-count {
  display: flex;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.stats-count strong {
  color: var(--gold-light);
}

.admin-gallery-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.2rem;
}

.admin-gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  position: relative;
}

.admin-gallery-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.admin-gallery-card.is-hidden {
  opacity: 0.6;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(20, 20, 24, 0.5);
}

.card-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #08080a;
  overflow: hidden;
}

.card-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.admin-gallery-card:hover .card-thumb-wrapper img {
  transform: scale(1.04);
}

.thumb-badge-top {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 0.35rem;
  z-index: 2;
}

.order-badge {
  background: rgba(0, 0, 0, 0.8);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
}

.custom-badge {
  background: var(--gold);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.preset-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.thumb-actions-overlay {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 0.35rem;
  z-index: 2;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.admin-gallery-card:hover .thumb-actions-overlay {
  opacity: 1;
}

.thumb-btn {
  width: 26px;
  height: 26px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.thumb-btn:hover:not(:disabled) {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.thumb-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.thumb-btn.delete-btn:hover {
  background: var(--color-danger);
  color: #fff;
  border-color: var(--color-danger);
}

.card-meta-body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-caption-input {
  width: 100%;
  font-size: 0.78rem !important;
  padding: 0.45rem 0.6rem !important;
}

.gallery-item-caption {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  right: 0.8rem;
  font-size: 0.82rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  padding: 0.35rem 0.65rem;
  border-radius: 3px;
  border-left: 2px solid var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

/* ==========================================================================
   TERMS & CONDITIONS PAGE STYLES
   ========================================================================== */
.terms-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 8.5rem 1.5rem 5rem;
}

.terms-header-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 2.8rem 2.4rem;
  margin-bottom: 2.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.terms-header-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.terms-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.terms-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.terms-toc-card {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  margin-bottom: 2.5rem;
}

.terms-toc-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.terms-toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.65rem;
}

.terms-toc-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.terms-toc-link .toc-num {
  font-family: var(--font-serif);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
}

.terms-toc-link:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateX(3px);
}

.terms-clause-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 2.2rem 2.2rem;
  margin-bottom: 1.8rem;
  scroll-margin-top: 6.5rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.terms-clause-card:hover {
  border-color: var(--gold-border-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.terms-clause-header {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.terms-clause-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.85;
}

.terms-clause-header h3 {
  font-size: 1.22rem;
  color: var(--gold-light);
  font-weight: 600;
  margin: 0;
}

.terms-clause-body {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.85;
}

.terms-clause-body p {
  margin-bottom: 1rem;
}

.terms-clause-body p:last-child {
  margin-bottom: 0;
}

.terms-clause-body ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.terms-clause-body ul li {
  position: relative;
  padding-left: 1.4rem;
}

.terms-clause-body ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--gold);
  font-size: 0.65rem;
}

.terms-alert-box {
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin: 1.2rem 0;
  font-size: 0.88rem;
  color: var(--text-primary);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.terms-alert-box.danger {
  background: rgba(224, 82, 82, 0.08);
  border-left-color: var(--color-danger);
}

.terms-alert-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
}

.terms-alert-box.danger .terms-alert-icon svg {
  fill: var(--color-danger);
}

.terms-alert-icon svg {
  fill: var(--gold);
  width: 100%;
  height: 100%;
}

.terms-contact-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.terms-contact-card h3 {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.terms-contact-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  max-width: 600px;
  margin: 0 auto 1.6rem;
  line-height: 1.7;
}

.booking-terms-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.65rem;
  line-height: 1.5;
}

.booking-terms-note a {
  color: var(--gold);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.booking-terms-note a:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .terms-container {
    padding: 7.5rem 1rem 3.5rem;
  }

  .terms-header-card {
    padding: 2rem 1.4rem;
  }

  .terms-toc-grid {
    grid-template-columns: 1fr;
  }

  .terms-clause-card {
    padding: 1.6rem 1.25rem;
  }

  .terms-contact-card {
    padding: 2rem 1.25rem;
  }
}



