:root {
  --black: #0B0B0B;
  --dark: #141414;
  --darker: #0B0B0B;
  --gold: #D4A43A;
  --gold-light: #F0C76A;
  --gold-dark: #C49530;
  --red: #B5121B;
  --red-dark: #7A0F14;
  --accent: #B5121B;
  --silver: #C0C0C0;
  --white: #FFFFFF;

  --card-bg: #1A1A1A;
  --card-border: rgba(212,164,58,0.25);

  --gold-gradient: linear-gradient(135deg, #D4A43A, #F0C76A);
  --gold-red: linear-gradient(135deg, #D4A43A 0%, #F0C76A 50%, #B5121B 100%);
  --footer-gradient: linear-gradient(180deg, #0B0B0B, #141414);
  --hero-overlay: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.75));

  --muted: #A0A0A0;
  --secondary-text: #D0D0D0;

  --gold-rgb: 212, 164, 58;
  --accent-rgb: 181, 18, 27;
  --red-rgb: 181, 18, 27;
  --red-dark-rgb: 122, 15, 20;
  --black-rgb: 11, 11, 11;
  --white-rgb: 255, 255, 255;

  --gold-opacity: .20;
  --accent-opacity: .20;
  --overlay-opacity: .60;

  --gold-line: rgba(var(--gold-rgb), var(--gold-opacity));
  --gold-bg: rgba(var(--gold-rgb), .10);
  --gold-soft: rgba(var(--gold-rgb), .15);
  --gold-shadow: rgba(var(--gold-rgb), .28);

  --accent-line: rgba(var(--accent-rgb), var(--accent-opacity));
  --accent-bg: rgba(var(--accent-rgb), .08);
  --accent-border: rgba(var(--accent-rgb), .25);
  --accent-shadow: rgba(var(--accent-rgb), .28);

  --overlay-dark: rgba(var(--black-rgb), var(--overlay-opacity));
  --overlay-soft: rgba(var(--black-rgb), .08);
  --overlay-mid: rgba(var(--black-rgb), .30);

  --white-soft: rgba(var(--white-rgb), .15);
  --white-mid: rgba(var(--white-rgb), .60);
  --white-text: rgba(var(--white-rgb), .78);

  --shadow: 0 10px 30px rgba(0,0,0,0.25);
  --shadow-lg: 0 20px 50px rgba(var(--black-rgb), .40);
  --shadow-gold: 0 20px 40px rgba(212,164,58,0.15);
  --shadow-gold-red: 0 8px 32px rgba(181,18,27,.28), 0 4px 16px rgba(212,164,58,.2);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

body {
  background: #0B0B0B;
  color: var(--text-primary);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--gold-soft);
  color: var(--text-primary);
}

/* ===== SECTION BACKGROUNDS ===== */
.section {
  padding: 60px 0;
}
.section + .section {
  border-top: 1px solid rgba(212,164,58,0.05);
}

.section-dark {
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(181,18,27,0.10) 0%,
      rgba(181,18,27,0.05) 25%,
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #0B0B0B 0%,
      #0F0F0F 100%
    );
}

.section-darker {
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(181,18,27,0.08) 0%,
      rgba(181,18,27,0.04) 30%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #0B0B0B 0%,
      #141414 100%
    );
}

.section-mid {
  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(181,18,27,0.12) 0%,
      rgba(181,18,27,0.06) 25%,
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #0B0B0B 0%,
      #151515 100%
    );
}

.section-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}
.section-head h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -.01em;
  color: var(--text-primary);
}
.section-head a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: .92rem;
  transition: all .35s ease;
}
.section-head a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.section-kicker {
  color: var(--gold);
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.section-head-accent {
  width: 50px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 4px;
  margin-bottom: 12px;
}

/* ===== TEXT UTILITIES ===== */
.text-gold { color: var(--gold) !important; }
.text-silver { color: var(--silver) !important; }
.text-black { color: var(--text-primary) !important; }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: #1A1A1A;
  border: 1px solid rgba(212,164,58,0.25);
  border-radius: 16px;
  padding: 32px 16px;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(212,164,58,0.15), 0 0 30px rgba(212,164,58,.08);
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: 50%;
  font-size: 1.5rem;
  color: #111;
}
.service-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 1rem;
}
.service-card p {
  font-size: .85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: var(--gold-gradient);
  border: none;
  border-radius: 14px;
  color: #111;
  font-weight: 600;
  padding: 10px 28px;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}
.btn-gold:hover {
  color: #111;
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(212,164,58,0.15);
}
.btn-gold:active { transform: translateY(-1px); }

.btn-gold-sm {
  background: var(--gold-gradient);
  border: none;
  border-radius: 14px;
  color: #111;
  font-weight: 600;
  padding: 7px 20px;
  font-size: .88rem;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}
.btn-gold-sm:hover {
  color: #111;
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(212,164,58,0.15);
}

.btn-gold-lg {
  background: var(--gold-gradient);
  border: none;
  border-radius: 14px;
  color: #111;
  font-weight: 600;
  padding: 14px 40px;
  font-size: 1.05rem;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}
.btn-gold-lg:hover {
  color: #111;
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(212,164,58,0.15);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 14px;
  color: var(--gold);
  font-weight: 600;
  padding: 8px 24px;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}
.btn-outline-gold:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(212,164,58,0.15);
}

.btn-outline-gold-sm {
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 14px;
  color: var(--gold);
  font-weight: 600;
  padding: 5px 16px;
  font-size: .85rem;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}
.btn-outline-gold-sm:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #111;
  transform: translateY(-2px);
}

.btn-white {
  background: rgba(255,255,255,.95);
  border: none;
  border-radius: 14px;
  color: #111;
  font-weight: 600;
  padding: 12px 36px;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}
.btn-white:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .30);
  transform: translateY(-3px);
  color: #111;
}

.btn-brand {
  background: var(--gold-gradient);
  border: none;
  border-radius: 14px;
  color: #111;
  font-weight: 600;
  padding: 10px 28px;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}
.btn-brand:hover {
  color: #111;
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(212,164,58,0.15);
}

.btn-outline-brand {
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 14px;
  color: var(--gold);
  font-weight: 600;
  padding: 6px 20px;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}
.btn-outline-brand:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #111;
}

/* ===== HEADER / NAVBAR ===== */
.navbar-premium {
  background:
    radial-gradient(
      ellipse at 50% 100%,
      rgba(var(--accent-rgb), 0.15) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse at 50% 0%,
      rgba(var(--accent-rgb), 0.06) 0%,
      transparent 50%
    ),
    rgba(11, 11, 11, .95);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
  box-shadow: 0 4px 30px rgba(var(--accent-rgb), 0.08), 0 4px 30px rgba(0,0,0,.50);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar-premium .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-premium .navbar-brand:hover .brand-text {
  filter: brightness(1.1);
  transform: scale(1.03);
}

.navbar-premium .brand-logo { height: 50px; object-fit: contain; width: auto; }

.navbar-premium .brand-text {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #FFD76A 0%, #D4AF37 50%, #9C6B1A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(156, 107, 26, 0.25);
  text-shadow:
    0 0 30px rgba(255, 255, 255, 0.35),
    0 0 10px rgba(212, 164, 58, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.navbar-premium .nav-link {
  color: rgba(var(--text-primary-rgb), .92);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: 0.3px;
  padding: 8px 14px !important;
  transition: all .35s ease;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.navbar-premium .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold-red);
  transform: scaleX(0);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  border-radius: 2px;
  opacity: .85;
}
.navbar-premium .nav-link:hover {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(var(--accent-rgb), .35);
}
.navbar-premium .nav-link:hover::after {
  transform: scaleX(1);
}
.navbar-premium .nav-link.active {
  color: var(--gold-light) !important;
  text-shadow: 0 0 20px rgba(var(--accent-rgb), .25);
}
.navbar-premium .nav-link.active::after {
  transform: scaleX(1);
  background: var(--gold-red);
  opacity: 1;
}

.navbar-premium .navbar-toggler {
  border-color: rgba(212,164,58,0.20);
  color: var(--gold);
}
.navbar-premium .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212,164,58,.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
.hero {
  position: relative;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item { height: 100%; }

.hero .carousel-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 70vh;
}

.hero-overlay {
  align-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.80));
  display: flex;
  height: 100%;
  min-height: 70vh;
  padding: 40px 0;
  width: 100%;
}

.hero-overlay h1 {
  color: var(--text-primary);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.hero-overlay h1 .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-overlay p {
  color: rgba(var(--text-primary-rgb), .82);
  font-size: 1.1rem;
  margin: 16px 0 28px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-overlay .badge-premium {
  background: rgba(212,164,58,.12) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212,164,58,.30);
  color: var(--gold) !important;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 18px;
  font-size: .78rem;
  text-transform: uppercase;
}

/* ===== PAGE HERO (listing pages) ===== */
.page-hero {
  background: #0F0F0F;
  padding: 48px 0;
  position: relative;
  border-bottom: 1px solid rgba(212,164,58,0.20);
  box-shadow: 0 4px 30px rgba(0,0,0,.40);
}
.page-hero h1 { color: var(--text-primary); font-weight: 800; margin-bottom: 8px; }
.page-hero p { color: var(--text-secondary); margin: 0; }

.searchbar {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  max-width: 480px;
}
.searchbar .form-control {
  border-radius: 14px;
  padding: 10px 18px;
  border: 2px solid rgba(var(--text-primary-rgb), .12);
  background: rgba(11,11,11,.50);
  color: var(--text-primary);
}
.searchbar .form-control::placeholder { color: rgba(var(--text-primary-rgb), .45); }
.searchbar .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,164,58,.20);
  background: rgba(11,11,11,.65);
  color: var(--text-primary);
}

/* ===== TRAVEL CARD ===== */
.travel-card {
  background: #1A1A1A;
  border: 1px solid rgba(212,164,58,0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.travel-card:hover {
  box-shadow: 0 20px 40px rgba(212,164,58,0.15), 0 0 30px rgba(212,164,58,.06);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.travel-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform .4s ease;
}
.travel-card:hover img {
  transform: scale(1.05);
}
.travel-card .card-body {
  padding: 20px;
}
.travel-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); }
.travel-card p { color: var(--text-secondary); font-size: .9rem; margin: 6px 0 10px; line-height: 1.6; }
.travel-card strong { color: var(--gold); font-size: 1.05rem; }

/* ===== PAGINATION ===== */
.pagination .page-link {
  border-radius: 12px !important;
  color: var(--text-secondary);
  font-weight: 600;
  margin: 0 3px;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  transition: all .3s ease;
}
.pagination .page-item.active .page-link {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #111;
  box-shadow: 0 4px 15px rgba(212,164,58,.25);
}
.pagination .page-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--card-bg);
  filter: brightness(1.15);
}
.pagination .page-item.disabled .page-link {
  color: var(--text-secondary);
  opacity: .45;
  pointer-events: none;
  background: var(--card-bg);
}

nav[aria-label="Pagination Navigation"] svg.w-5.h-5 {
  width: 14px;
  height: 14px;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-grid img {
  border-radius: var(--radius);
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform .4s ease;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s ease;
  position: relative;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.30));
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gallery-thumb,
.travel-card .gallery-thumb {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  position: relative;
  background: #000;
}
.gallery-item .gallery-thumb {
  border-radius: 16px;
}

/* YouTube thumbnail: 16:9 full-frame */
.yt-thumb {
  aspect-ratio: 16 / 9;
  cursor: pointer;
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay on YouTube thumb */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.yt-thumb:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.35);
}

/* YouTube play button */
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #FF0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
.yt-thumb:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 28px rgba(255, 0, 0, 0.45);
}
.yt-play-btn svg {
  width: 34px;
  height: 34px;
  margin-left: 3px;
  display: block;
}

@media (max-width: 575px) {
  .yt-play-btn {
    width: 72px;
    height: 72px;
  }
  .yt-play-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== TESTIMONIALS ===== */
.section-testimonial { padding: 60px 0; }
.testimonial-avatar {
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 8px;
  outline: 1.5px solid var(--gold);
  outline-offset: 2px;
}
.testimonial-name {
  text-align: center;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

.quote-card {
  background: #1A1A1A;
  border: 1px solid rgba(212,164,58,0.25);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}
.quote-card::before {
  content: '\201C';
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .20;
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: Georgia, serif;
}
.quote-card p { color: var(--text-secondary); margin: 12px 0; line-height: 1.7; }
.quote-card strong { color: var(--text-primary); }

.testimonial-slide {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 32px;
}
.testimonial-slide::before {
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
}
#testimonialCarousel {
  padding: 0 60px;
}
#testimonialCarousel .carousel-indicators {
  bottom: -2px;
}
#testimonialCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212,164,58,.25);
  border: none;
  margin: 0 5px;
  transition: all .35s ease;
}
#testimonialCarousel .carousel-indicators button.active {
  background: var(--gold);
  width: 28px;
  border-radius: 6px;
}
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212,164,58,.12);
  border: 1px solid rgba(212,164,58,.20);
  border-radius: 50%;
  opacity: .7;
  transition: all .35s ease;
}
#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
  background: rgba(212,164,58,.25);
  opacity: 1;
}
#testimonialCarousel .carousel-control-prev { left: 0; }
#testimonialCarousel .carousel-control-next { right: 0; }

/* ===== CONTACT BAND ===== */
.contact-band {
  background: linear-gradient(180deg, #0B0B0B, #141414);
  color: var(--text-primary);
  border-top: 1px solid rgba(212,164,58,0.20);
  box-shadow: 0 -4px 30px rgba(212,164,58,.06);
}
.contact-band h2 { font-weight: 800; }
.contact-band p { color: var(--text-secondary); }

/* ===== DETAIL PAGE ===== */
.detail-image {
  border-radius: var(--radius-lg);
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ===== GALLERY PREMIUM ===== */
.gallery-premium {
  position: relative;
  width: 100%;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: var(--card-bg);
  box-shadow: var(--shadow-lg);
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .3s ease;
}

.gallery-zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background .2s;
  z-index: 2;
}
.gallery-zoom-btn:hover { background: rgba(0,0,0,.7); }

.gallery-nav-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
  z-index: 2;
}
.gallery-nav-btn {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.4);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background .2s;
  opacity: 0;
  transition: opacity .3s, background .2s;
}
.gallery-main:hover .gallery-nav-btn { opacity: 1; }
.gallery-nav-btn:hover { background: rgba(0,0,0,.7); }
.gallery-nav-btn:disabled { opacity: 0 !important; cursor: default; }

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }

.gallery-thumb {
  flex: 0 0 auto;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  padding: 0;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  background: var(--card-bg);
}
.gallery-thumb:hover { border-color: var(--gold); transform: translateY(-2px); }
.gallery-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(var(--accent-rgb), .2); }
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== LIGHTBOX ===== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 20px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background .2s;
  z-index: 10;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

.lightbox-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  font-weight: 500;
  z-index: 10;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: background .2s;
  z-index: 10;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-nav:disabled { opacity: .3; cursor: default; }
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }

.lightbox-image-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: calc(100vh - 160px);
  cursor: pointer;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: thin;
}
.lightbox-thumbs::-webkit-scrollbar { height: 4px; }
.lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 4px; }

.lightbox-thumb {
  flex: 0 0 auto;
  width: 56px;
  height: 42px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.2);
  padding: 0;
  cursor: pointer;
  transition: border-color .2s;
  background: transparent;
}
.lightbox-thumb:hover { border-color: rgba(255,255,255,.5); }
.lightbox-thumb.active { border-color: var(--gold); }
.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-thumb { width: 64px; height: 48px; }
  .lightbox-thumb { width: 44px; height: 33px; }
  .gallery-lightbox { padding: 50px 8px 8px; }
  .lightbox-nav { width: 36px; height: 36px; font-size: 1rem; }
  .lightbox-nav.prev { left: 4px; }
  .lightbox-nav.next { right: 4px; }
  .lightbox-image-wrap { max-height: calc(100vh - 130px); }
}

/* ===== ARTICLE ===== */
.content-body { line-height: 1.8; font-size: 1.05rem; color: var(--text-secondary); }
.content-body p { margin-bottom: 1rem; }

.container.narrow { max-width: 780px; }

/* ===== FOOTER ===== */
.footer-premium {
  background: linear-gradient(180deg, #0B0B0B, #141414);
  color: var(--text-primary);
  border-top: 1px solid rgba(212,164,58,0.20);
  padding: 60px 0 0;
  position: relative;
}
.footer-premium::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: .5;
}

.footer-premium h4 {
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-premium h6 {
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-premium p {
  color: var(--text-secondary);
  font-size: .92rem;
  line-height: 1.7;
}

.footer-premium a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .35s ease;
}
.footer-premium a:hover {
  color: var(--gold-light);
}

.footer-premium .footer-link {
  display: block;
  padding: 4px 0;
  color: var(--text-secondary);
  transition: all .35s ease;
  font-size: .9rem;
}
.footer-premium .footer-link:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-premium .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--text-primary-rgb), .05);
  color: var(--gold);
  font-size: 1.1rem;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
  margin-right: 8px;
  border: 1px solid rgba(212,164,58,.15);
}
.footer-premium .social-icon:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #111;
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(212,164,58,.25);
}

.footer-premium .footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,164,58,.30), transparent);
  margin: 40px 0 0;
}

.footer-premium .footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,.30);
  border-top: 1px solid rgba(212,164,58,.10);
  margin-top: 0;
}

.footer-premium .footer-bottom p {
  color: rgba(var(--text-primary-rgb), .45);
  font-size: .85rem;
  margin: 0;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  color: #fff;
  display: flex;
  font-size: 1.5rem;
  height: 54px;
  justify-content: center;
  position: fixed;
  right: 24px;
  text-decoration: none;
  width: 54px;
  z-index: 20;
  transition: all .3s ease;
}
.wa-float:hover { background: #1da851; color: #fff; transform: scale(1.08); }

/* ===== BOOKING STATUS ===== */
.booking-status {
  border-radius: 60px;
  font-size: .82rem;
  font-weight: 700;
  padding: 4px 14px;
  text-transform: uppercase;
}
.status-pending { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #dbeafe; color: #1e40af; }
.status-completed { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

/* Admin kicker */
.admin-kicker {
  color: var(--text-secondary);
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

/* CMS image preview */
.cms-image-preview {
  border-radius: var(--radius-sm);
  display: block;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  width: auto;
}

/* Metric card (admin dashboard) */
.metric { text-align: center; }
.metric span { color: var(--text-secondary); display: block; font-size: .85rem; font-weight: 600; margin-bottom: 4px; }
.metric strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--text-primary); }

/* Settings group */
.settings-group { margin-bottom: 24px; padding-bottom: 24px; }
.settings-group + .settings-group { border-top: 1px solid var(--border-color); padding-top: 24px; }
.settings-group h5 { font-weight: 700; margin-bottom: 16px; }

/* Invoice box */
.invoice-box { padding: 40px; max-width: 700px; margin: 0 auto; }
.invoice-box h1 { font-weight: 800; }
.invoice-box hr { margin: 24px 0; }

/* ===== PREMIUM BOOKING FORM ===== */
.booking-panel .card-header {
  background: var(--gold-gradient);
  color: #111;
  border-radius: var(--radius) var(--radius) 0 0 !important;
  font-weight: 800;
  padding: 18px 24px;
  border: none;
}

.form-control {
  background: rgba(11,11,11,.50);
  border: 1.5px solid rgba(var(--text-primary-rgb), .10);
  color: var(--text-primary);
  border-radius: 14px;
  padding: 10px 14px;
  transition: all .35s ease;
}
.form-control::placeholder {
  color: var(--placeholder-color);
}
.form-control:hover {
  border-color: rgba(var(--text-primary-rgb), .20);
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,164,58,.20);
  background: rgba(11,11,11,.65);
  color: var(--text-primary);
}

.form-control-lg {
  border-radius: 14px;
  padding: 14px 18px;
}
.form-control-lg:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,164,58,.20);
}

.form-label {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 6px;
}

.form-select {
  background: rgba(11,11,11,.50);
  border: 1.5px solid rgba(var(--text-primary-rgb), .10);
  color: var(--text-primary);
  border-radius: 14px;
  padding: 10px 14px;
  transition: all .35s ease;
}
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,164,58,.20);
}

textarea.form-control {
  min-height: 100px;
}

.input-group-text {
  background: rgba(11,11,11,.60);
  border: 1.5px solid rgba(var(--text-primary-rgb), .10);
  color: var(--gold);
  border-radius: 14px 0 0 14px;
}

/* ===== ADMIN OVERRIDES ===== */
.admin-sidebar .form-control:focus {
  box-shadow: none;
  outline: none;
}

.admin-card .table { margin: 0; }
.admin-card .table td {
  color: var(--text-primary);
  border-color: rgba(var(--text-primary-rgb), .06);
  padding: 12px 16px;
  vertical-align: middle;
}

.table thead th {
  background: var(--bg-secondary);
  color: var(--gold);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--border-color);
  padding: 14px 16px;
}

.table tbody tr:hover {
  background: rgba(var(--accent-rgb), .08);
}
.table tbody tr:nth-child(even) {
  background: rgba(var(--text-primary-rgb), .02);
}

.admin-body {
  background: #0B0B0B;
  min-height: 100vh;
}

.admin-shell {
  display: flex;
  min-height: 100vh;
  background: #0B0B0B;
}

/* ===== ADMIN SIDEBAR ===== */
.admin-sidebar {
  background: linear-gradient(180deg, #0B0B0B, #0F0F0F, #0B0B0B);
  border-right: 1px solid rgba(212,164,58,.10);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 100vh;
  inset: 0 auto 0 0;
  padding: 18px 16px 16px;
  position: sticky;
  top: 0;
  width: 260px;
  z-index: 15;
  box-shadow: 4px 0 30px rgba(0,0,0,.40);
}

.sidebar-brand {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,164,58,.10);
}

.sidebar-brand-top {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.sidebar-brand-top strong {
  display: block;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gold);
}

.sidebar-brand-top small {
  color: rgba(212,164,58,.7);
  display: block;
  font-size: .76rem;
}

.admin-logo {
  height: 34px;
  object-fit: contain;
  width: auto;
}

.sidebar-toggle {
  border-color: rgba(212,164,58,.20);
  color: var(--gold);
  border-radius: 8px;
  transition: all .3s ease;
}
.sidebar-toggle:hover {
  background: rgba(212,164,58,.10);
  color: var(--gold-light);
  border-color: rgba(212,164,58,.30);
}

.sidebar-search {
  align-items: center;
  background: rgba(11,11,11,.40);
  border: 1px solid rgba(212,164,58,.10);
  border-radius: 12px;
  color: rgba(var(--text-primary-rgb), .65);
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 12px;
  transition: border-color .3s ease;
}
.sidebar-search:focus-within {
  border-color: rgba(212,164,58,.30);
}

.sidebar-search input {
  background: transparent;
  border: 0;
  color: var(--text-primary);
  min-width: 0;
  padding: 0;
}
.sidebar-search input:focus {
  box-shadow: none;
  outline: none;
}
.sidebar-search input::placeholder {
  color: rgba(var(--text-primary-rgb), .45);
}

.sidebar-nav {
  overflow-y: auto;
  padding-right: 2px;
}
.sidebar-nav::-webkit-scrollbar {
  width: 6px;
}
.sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(212,164,58,.20);
  border-radius: 999px;
}

.sidebar-link,
.sidebar-group-toggle,
.sidebar-sublink {
  align-items: center;
  border: 0;
  color: rgba(var(--text-primary-rgb), .78);
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.sidebar-link {
  background: rgba(11,11,11,.30);
  border: 1px solid rgba(var(--text-primary-rgb), .04);
  border-radius: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 12px 14px;
  transition: all .3s ease;
}
.sidebar-link i {
  color: var(--gold);
}
.sidebar-link:hover {
  color: var(--text-primary);
  background: rgba(11,11,11,.50);
  border-color: rgba(212,164,58,.15);
  box-shadow: 0 0 20px rgba(212,164,58,.04);
}
.sidebar-sublink:hover,
.sidebar-group-toggle:hover {
  color: var(--text-primary);
}

.sidebar-link.is-active {
  background: var(--gold-gradient);
  border-color: transparent;
  border-left: 4px solid var(--gold-light);
  color: #111;
  border-radius: 14px 8px 8px 14px;
  box-shadow: 0 4px 20px rgba(212,164,58,.25);
}
.sidebar-link.is-active i {
  color: #111;
}

.sidebar-group {
  margin-bottom: 8px;
}

.sidebar-group-toggle {
  background: rgba(11,11,11,.30);
  border: 1px solid rgba(var(--text-primary-rgb), .04);
  border-radius: 14px;
  cursor: pointer;
  justify-content: space-between;
  padding: 12px 14px;
  width: 100%;
  transition: all .3s ease;
}
.sidebar-group-toggle:hover {
  background: rgba(11,11,11,.50);
  border-color: rgba(212,164,58,.10);
}
.sidebar-group-toggle i {
  color: var(--gold);
}

.sidebar-group-title {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}
.sidebar-group-title span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-chevron {
  color: rgba(212,164,58,.6);
  font-size: .8rem;
  transition: transform .25s ease;
}

.sidebar-group-body {
  display: grid;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 14px;
  transition: max-height .3s ease, padding-top .3s ease;
}

.sidebar-group.is-open .sidebar-group-body {
  max-height: 540px;
  padding-top: 10px;
}
.sidebar-group.is-open .sidebar-chevron {
  transform: rotate(180deg);
}

.sidebar-sublink {
  border-left: 1px solid rgba(212,164,58,.15);
  padding: 8px 12px;
  position: relative;
  transition: all .3s ease;
}
.sidebar-sublink::before {
  background: var(--gold);
  border-radius: 50%;
  content: '';
  height: 6px;
  left: -3px;
  position: absolute;
  top: 16px;
  width: 6px;
}
.sidebar-sublink.is-active {
  background: rgba(var(--gold-rgb), .08);
  border-radius: 12px;
  color: var(--gold-light);
  border-left-color: var(--gold);
}
.sidebar-sublink:hover {
  color: var(--gold-light);
}

/* ===== ADMIN MAIN ===== */
.admin-main {
  flex: 1;
  min-width: 0;
  padding: 28px;
  background: #0B0B0B;
}

.admin-top {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-top-actions,
.admin-user {
  align-items: center;
  display: flex;
  gap: 12px;
}

.admin-user {
  color: var(--text-secondary);
  font-weight: 700;
}

.admin-top .btn-outline-secondary,
.admin-page-head .btn-outline-secondary {
  border-color: rgba(var(--text-primary-rgb), .12);
  color: var(--text-secondary);
  background: rgba(11,11,11,.30);
  transition: all .3s ease;
}
.admin-top .btn-outline-secondary:hover,
.admin-page-head .btn-outline-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(11,11,11,.50);
}

.admin-page-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.admin-page-head h1 {
  color: var(--text-primary);
}

.metric,
.quote-card,
.booking-panel,
.invoice-box,
.admin-card,
.price-tile,
.availability-panel,
.booking-summary-sticky,
.admin-filter {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.quote-card,
.booking-panel,
.invoice-box,
.admin-card,
.metric {
  padding: 24px;
}

.price-tile {
  padding: 18px;
}
.price-tile span,
.price-tile small {
  color: var(--text-secondary);
  display: block;
}
.price-tile strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold);
}

.availability-panel {
  margin: 24px 0;
  padding: 20px;
  background: #222;
}

.availability-legend {
  color: var(--text-secondary);
  display: flex;
  font-size: .9rem;
  gap: 14px;
}
.availability-legend i {
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin-right: 4px;
  width: 10px;
}
.availability-legend .available {
  background: rgba(22, 163, 74, .35);
  border: 1px solid rgba(22, 163, 74, .25);
}
.availability-legend .booked {
  background: var(--red);
}

.availability-calendar {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
  align-items: center;
  background: #242424;
  border: 1px solid rgba(212,164,58,0.25);
  border-radius: var(--radius-sm);
  color: rgba(var(--text-primary-rgb), .78);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
  padding: 8px;
  transition: all .3s ease;
}
.calendar-day strong {
  font-size: 1.25rem;
}
.calendar-day.is-available {
  background: rgba(22, 163, 74, .18);
  border-color: rgba(22, 163, 74, .35);
}
.calendar-day.is-available:hover {
  background: rgba(22, 163, 74, .25);
  border-color: rgba(22, 163, 74, .50);
}
.calendar-day.is-booked {
  background: rgba(var(--accent-rgb), .10);
  border-color: rgba(var(--accent-rgb), .25);
  color: var(--red);
  cursor: not-allowed;
  opacity: .78;
}
.calendar-day.is-selected {
  border-color: var(--gold);
  outline: 3px solid rgba(212,164,58,.20);
}

.rental-options {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.rental-options label {
  background: #1A1A1A;
  border: 1px solid rgba(212,164,58,0.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 12px;
  transition: all .3s ease;
  color: rgba(var(--text-primary-rgb), .78);
}
.rental-options label:hover {
  border-color: rgba(212,164,58,.35);
}
.rental-options label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212,164,58,.08);
}
.rental-options label:has(input:disabled) {
  opacity: .5;
  cursor: not-allowed;
}
.rental-options label:has(input:disabled):hover {
  border-color: rgba(212,164,58,0.25);
}

.booking-summary-sticky {
  padding: 22px;
  position: sticky;
  top: 92px;
}
.booking-summary-sticky dl {
  display: grid;
  gap: 8px 16px;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}
.booking-summary-sticky dt {
  color: var(--text-secondary);
  font-weight: 700;
}
.booking-summary-sticky dd {
  font-weight: 800;
  margin: 0;
  text-align: right;
  color: rgba(var(--text-primary-rgb), .9);
}
.summary-total {
  color: var(--gold);
  font-size: 1.25rem;
}

.admin-filter {
  margin-bottom: 18px;
  padding: 16px;
}

/* Sidebar collapsed state */
.admin-sidebar.is-collapsed {
  width: 72px;
  overflow: hidden;
}
.admin-sidebar.is-collapsed .sidebar-brand-top strong,
.admin-sidebar.is-collapsed .sidebar-brand-top small,
.admin-sidebar.is-collapsed .sidebar-search input,
.admin-sidebar.is-collapsed .sidebar-link span,
.admin-sidebar.is-collapsed .sidebar-group-title span,
.admin-sidebar.is-collapsed .sidebar-chevron,
.admin-sidebar.is-collapsed .sidebar-sublink span,
.admin-sidebar.is-collapsed .sidebar-group-body {
  display: none;
}
.admin-sidebar.is-collapsed .sidebar-search {
  justify-content: center;
  padding: 8px;
}
.admin-sidebar.is-collapsed .sidebar-link {
  justify-content: center;
  padding: 12px;
}
.admin-sidebar.is-collapsed .sidebar-group-toggle {
  justify-content: center;
  padding: 12px;
}
.admin-sidebar.is-collapsed + .admin-main {
  flex: 1;
}

/* ===== ACCORDION (FAQ) ===== */
.accordion-item {
  background: #141414;
  border: 1px solid rgba(212,164,58,0.15);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-button {
  font-weight: 700;
  font-size: .95rem;
  padding: 16px 20px;
  color: var(--text-primary);
  background: transparent;
  transition: all .3s ease;
}
.accordion-button:not(.collapsed) {
  background: rgba(212,164,58,.06);
  color: var(--gold);
  box-shadow: none;
}
.accordion-button::after {
  background-size: 1rem;
  filter: brightness(0) invert(1);
  transition: transform .3s ease;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.accordion-body {
  color: var(--text-secondary);
  line-height: 1.7;
}
.accordion-collapse {
  transition: all .3s ease;
}

/* ===== AUTH (Login / Register) ===== */
.auth-body {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(181,18,27,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.05) 0%, transparent 40%),
    linear-gradient(160deg, #0B0B0B 0%, #111111 40%, #0B0B0B 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.auth-shell {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.auth-brand {
  text-align: center;
  margin-bottom: 24px;
}
.auth-brand a {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-size: 1.35rem;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}
.auth-brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #D4AF37, #F4D06F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.auth-card {
  background: rgba(26,26,26,0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 22px;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(212,175,55,0.06);
  padding: 36px 32px 32px;
}

.auth-fade-in {
  animation: authFadeIn 0.6s ease-out;
}

@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-card-header {
  margin-bottom: 24px;
  text-align: center;
}
.auth-card-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.auth-card-header p {
  color: var(--text-secondary);
  font-size: .92rem;
  margin: 0;
  line-height: 1.5;
}

.auth-field {
  margin-bottom: 18px;
}

.auth-input-icon {
  align-items: center;
  background: rgba(11,11,11,0.6);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  gap: 12px;
  padding: 0 16px;
  min-height: 50px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.auth-input-icon:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.auth-input-icon i {
  color: rgba(255,255,255,0.35);
  font-size: 1.15rem;
  flex-shrink: 0;
  line-height: 1;
}
.auth-input-icon input {
  background: transparent;
  border: 0;
  flex: 1;
  font-size: .95rem;
  min-width: 0;
  padding: 14px 0;
  color: var(--text-primary);
  line-height: 1.4;
}
.auth-input-icon input:focus {
  box-shadow: none;
  outline: none;
}
.auth-input-icon input::placeholder {
  color: rgba(255,255,255,0.3);
}
.auth-input-icon .auth-pw-toggle {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  flex-shrink: 0;
  padding: 6px;
  line-height: 1;
  transition: color .2s ease;
}
.auth-pw-toggle:hover {
  color: var(--gold);
}

.auth-input-default {
  background: rgba(11,11,11,0.6);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  font-size: .95rem;
  padding: 14px 16px;
  transition: border-color .3s ease, box-shadow .3s ease;
  width: 100%;
  color: var(--text-primary);
  min-height: 50px;
}
.auth-input-default::placeholder {
  color: rgba(255,255,255,0.3);
}
.auth-input-default:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  outline: none;
}

.auth-options {
  align-items: center;
  display: flex;
  font-size: .88rem;
  justify-content: space-between;
  margin-bottom: 24px;
}

.auth-checkbox {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  color: var(--text-secondary);
}
.auth-checkbox input[type="checkbox"] {
  accent-color: var(--red);
  height: 16px;
  width: 16px;
  cursor: pointer;
}

.auth-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s ease;
}
.auth-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.auth-btn {
  background: linear-gradient(135deg, #D4AF37, #F4D06F);
  border: 0;
  border-radius: 60px;
  color: #111;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 54px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 54px;
  padding: 0;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(212,175,55,0.15);
}
.auth-btn:hover {
  box-shadow: 0 8px 32px rgba(212,175,55,0.25);
  transform: translateY(-2px);
}
.auth-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(212,175,55,0.2);
}
.auth-btn:focus {
  outline: 3px solid rgba(212,175,55,0.3);
  outline-offset: 2px;
}

.auth-divider {
  align-items: center;
  color: var(--text-secondary);
  display: flex;
  font-size: .85rem;
  gap: 12px;
  margin: 24px 0 16px;
  text-align: center;
}
.auth-divider::before,
.auth-divider::after {
  border-top: 1px solid rgba(255,255,255,0.08);
  content: '';
  flex: 1;
}
.auth-divider span {
  flex-shrink: 0;
}

.auth-social {
  display: flex;
  gap: 12px;
}

.auth-social-btn {
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  flex: 1;
  font-size: .9rem;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  padding: 14px 12px;
  transition: all .25s ease;
  min-height: 50px;
}
.auth-social-btn i {
  font-size: 1.2rem;
}
.auth-social-btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.auth-social-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.4);
}

.auth-switch {
  margin: 22px 0 0;
  text-align: center;
  font-size: .92rem;
  color: var(--text-secondary);
}
.auth-switch a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
.auth-switch a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.auth-footer {
  color: rgba(255,255,255,0.3);
  font-size: .82rem;
  margin-top: 24px;
  padding-bottom: 24px;
  text-align: center;
}

/* ===== AUTH RESPONSIVE ===== */
@media (max-width: 768px) {
  .auth-body {
    padding: 20px;
  }
  .auth-card {
    padding: 28px 24px 24px;
    border-radius: 20px;
  }
  .auth-card-header h2 {
    font-size: 1.3rem;
  }
  .auth-brand {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .auth-body {
    padding: 16px;
  }
  .auth-card {
    padding: 24px 18px 20px;
    border-radius: 18px;
  }
  .auth-card-header h2 {
    font-size: 1.2rem;
  }
  .auth-card-header p {
    font-size: .88rem;
  }
  .auth-btn {
    height: 50px;
    line-height: 50px;
    font-size: 1rem;
  }
  .auth-social-btn {
    padding: 12px 10px;
    font-size: .85rem;
    min-height: 46px;
  }
  .auth-logo {
    height: 48px;
  }
  .auth-brand-text {
    font-size: 1.3rem;
  }
}

/* ===== PERMISSION TOGGLES ===== */
.permission-grid {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 8px;
}
.permission-group {
  background: rgba(11,11,11,.40);
  border-radius: 8px;
  padding: 10px 14px;
}
.permission-group strong {
  font-size: .85rem;
  color: rgba(var(--text-primary-rgb), .65);
  text-transform: uppercase;
  letter-spacing: .03em;
}
[data-theme="light"] .permission-group {
  background: #f3f4f6;
}
.permission-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: .82rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(var(--text-primary-rgb), .15);
  background: rgba(11,11,11,.40);
  color: rgba(var(--text-primary-rgb), .70);
  transition: all .25s ease;
  user-select: none;
}
[data-theme="light"] .permission-toggle {
  background: #ffffff;
  border-color: rgba(0,0,0,.20);
  color: rgba(0,0,0,.80);
}
.permission-toggle input {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}
.permission-toggle:has(input:checked) {
  background: var(--gold-gradient);
  color: #111;
  border-color: transparent;
}
.permission-toggle.is-checked {
  background: var(--gold-gradient) !important;
  color: #111 !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 0 10px rgba(212,175,55,0.35);
}
.permission-toggle:has(input:checked) span {
  color: #111;
}
.permission-toggle.is-checked span {
  color: #111 !important;
}

.permission-toggle:hover {
  filter: brightness(1.2);
}
.permission-toggle.is-checked:hover {
  filter: brightness(1.1);
}
/* Settings tabs */
.settings-tabs .nav-link {
  color: var(--text-secondary);
}
.settings-tabs .nav-link:hover {
  color: var(--gold);
}
.settings-tabs .nav-link.active {
  color: var(--gold-light);
}
.settings-group h5 {
  color: var(--text-primary);
  border-bottom-color: rgba(212,164,58,.15);
}
.settings-group + .settings-group {
  border-top-color: rgba(212,164,58,.10);
}

/* ===== MODAL ===== */
.modal-content {
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}
.modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 24px;
}
.modal-header .btn-close {
  filter: invert(1);
}
.modal-body {
  padding: 24px;
  color: var(--text-primary);
}
.modal-footer {
  border-top: 1px solid var(--border-color);
  padding: 16px 24px;
}
.modal-title {
  color: var(--text-primary);
  font-weight: 700;
}
.modal-backdrop.show {
  opacity: .6;
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.dropdown-item {
  color: var(--text-primary);
  padding: 8px 16px;
  font-size: .88rem;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(var(--accent-rgb), .08);
  color: var(--text-primary);
}
.dropdown-item.active,
.dropdown-item:active {
  background: rgba(var(--accent-rgb), .12);
  color: var(--text-primary);
}
.dropdown-divider {
  border-color: var(--border-color);
}
.dropdown-header {
  color: var(--text-secondary);
}

/* ===== ALERT ===== */
.alert {
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}
.alert-success {
  border-left: 4px solid var(--gold);
}
.alert-danger {
  border-left: 4px solid var(--red);
}
.alert-warning {
  border-left: 4px solid var(--gold);
}
.alert-info {
  border-left: 4px solid rgba(var(--accent-rgb), .6);
}
.alert .btn-close {
  filter: invert(1);
}

/* ===== BADGE ===== */
.badge {
  font-weight: 600;
  letter-spacing: .02em;
}
.badge.bg-success {
  background: #065f46 !important;
  color: #d1fae5 !important;
}
.badge.bg-danger {
  background: #991b1b !important;
  color: #fee2e2 !important;
}
.badge.bg-warning {
  background: #92400e !important;
  color: #fef3c7 !important;
}
.badge.bg-info {
  background: #1e40af !important;
  color: #dbeafe !important;
}
.badge.bg-secondary {
  background: #4b5563 !important;
  color: #f3f4f6 !important;
}
.badge.bg-primary {
  background: rgba(var(--accent-rgb), .15) !important;
  color: var(--accent) !important;
}

/* ===== DATATABLES OVERRIDES ===== */
.dt-length label,
.dt-search label,
.dt-info {
  color: var(--text-secondary);
}
.dt-input {
  background: var(--card-bg) !important;
  color: var(--text-primary) !important;
  border: 1.5px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
  padding: 6px 12px !important;
}
.dt-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212,164,58,.20) !important;
  outline: none !important;
}
table.dataTable {
  color: var(--text-primary);
}
table.dataTable > tbody > tr {
  background: transparent;
}
table.dataTable > tbody > tr:hover {
  background: rgba(var(--accent-rgb), .08) !important;
}
table.dataTable > tbody > tr.even {
  background: rgba(var(--text-primary-rgb), .02);
}
table.dataTable > thead > tr > th {
  background: var(--bg-secondary) !important;
  color: var(--gold) !important;
  border-bottom: 1px solid var(--border-color) !important;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
}
table.dataTable > thead > tr > td,
table.dataTable > tbody > tr > td {
  color: var(--text-primary);
  border-bottom: 1px solid rgba(var(--text-primary-rgb), .06);
  padding: 12px 16px;
}
table.dataTable > thead > tr > th.sorting_asc,
table.dataTable > thead > tr > th.sorting_desc {
  background: var(--bg-secondary) !important;
}
table.dataTable.no-footer {
  border-bottom: 1px solid var(--border-color);
}
.dt-processing {
  background: var(--card-bg) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
table.dataTable thead .dt-orderable-asc,
table.dataTable thead .dt-orderable-desc {
  color: var(--gold);
}

/* ===== FORM CHECK (SWITCH / CHECKBOX) ===== */
.form-check-input {
  background-color: rgba(var(--text-primary-rgb), .15);
  border-color: var(--border-color);
}
.form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}
.form-check-label {
  color: var(--text-primary);
}

/* ===== BOOTSTRAP TABLE COLOR OVERRIDE ===== */
.table {
  --bs-table-color: var(--text-primary);
  --bs-table-bg: transparent;
  --bs-table-striped-color: var(--text-primary);
  color: var(--text-primary);
}

/* ===== TABLE-STRIPED BOOTSTRAP OVERRIDE ===== */
.table-striped > tbody > tr:nth-of-type(odd) > * {
  color: var(--text-primary);
}

/* ===== TABLE SORTING ICONS ===== */
.table-sortable .th-sort-asc,
.table-sortable .th-sort-desc {
  color: var(--gold);
}

/* ===== BOOTSTRAP CLOSE BUTTON INVERT ===== */
.btn-close {
  filter: invert(1);
}
@media (max-width: 1199px) {
  .admin-sidebar {
    width: 260px;
  }
  .admin-main {
    flex: 1;
  }
  .hero-overlay h1 { font-size: 2.2rem; }
}

@media (max-width: 991px) {
  .admin-shell {
    display: block;
  }
  .admin-sidebar {
    height: auto;
    position: static;
    width: 100%;
  }
  .admin-main {
    margin-left: 0;
    width: 100%;
  }
  .admin-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-summary-sticky {
    position: static;
  }
  .hero-overlay h1 { font-size: 1.8rem; }
  .section { padding: 44px 0; }
  .navbar-premium .navbar-collapse {
    background: rgba(11,11,11,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 12px;
    margin-top: 8px;
    border: 1px solid rgba(212,164,58,.15);
    box-shadow: 0 20px 40px rgba(0,0,0,.50);
  }
  .footer-premium { padding: 40px 0 0; }
}

@media (max-width: 575px) {
  .availability-calendar {
    grid-template-columns: repeat(3, 1fr);
  }
  .booking-summary-sticky dd {
    text-align: left;
  }
  .rental-options {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid img { height: 160px; }
  .hero-overlay h1 { font-size: 1.5rem; }
  .section { padding: 32px 0; }
  .page-hero { padding: 28px 0; }
  .travel-card img { height: 160px; }
  .container.narrow { padding: 0 16px; }
  #testimonialCarousel { padding: 0 40px; }
  .testimonial-slide { padding: 24px 16px; }
}

/* =============================================
   VIDEO GALLERY STYLES
   ============================================= */

/* Play button overlay on thumbnails */
.gallery-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background: rgba(0,0,0,.25);
  transition: background .3s ease;
  cursor: pointer;
  z-index: 1;
}
.gallery-thumb:hover .gallery-play-btn {
  background: rgba(0,0,0,.35);
}
.gallery-play-btn i {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  transition: transform .3s ease, filter .3s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.gallery-thumb:hover .gallery-play-btn i {
  transform: scale(1.12);
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.6));
}

/* Inline YouTube player container */
.gallery-player {
  border-radius: inherit;
  overflow: hidden;
  display: none;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.gallery-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Close button for inline player */
.player-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s ease, transform .2s ease;
  border: none;
  color: #fff;
}
.player-close:hover {
  background: rgba(255,0,0,.7);
  transform: scale(1.1);
}

/* Video Overlay (TikTok/Instagram) */
.video-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: videoOverlayFadeIn .25s ease;
}
.video-overlay.open {
  display: flex;
}

@keyframes videoOverlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes videoOverlayZoomIn {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.video-overlay-inner {
  position: relative;
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  animation: videoOverlayZoomIn .3s ease;
}

.video-overlay-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s ease, transform .2s ease;
  border: none;
  color: #fff;
  font-size: 1.1rem;
}
.video-overlay-close:hover {
  background: rgba(255,0,0,.6);
  transform: scale(1.1);
}

/* Overlay aspect ratio variants */
.video-overlay-inner.ratio-tiktok,
.video-overlay-inner.ratio-instagram {
  aspect-ratio: 9/16;
  max-width: 380px;
}
.video-overlay-inner.ratio-youtube {
  aspect-ratio: 16/9;
  max-width: 700px;
}

.video-overlay-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video badge on gallery thumbnails */
.video-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.1);
}
.video-badge i {
  font-size: .75rem;
}

/* Gallery item video support in premium component */
.gallery-main.is-video {
  cursor: default;
}
.gallery-main-video {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
}
.gallery-main-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.gallery-main-video .gallery-play-btn {
  background: rgba(0,0,0,.4);
}
.gallery-main-video .gallery-play-btn i {
  font-size: 4rem;
}

/* Lightbox video support */
.lightbox-video-player {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.lightbox-video-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 576px) {
  .video-overlay-inner { width: 95%; }
  .video-overlay-inner.ratio-tiktok,
  .video-overlay-inner.ratio-instagram { max-width: 320px; }
  .video-overlay-close { top: -40px; }
}

