/* ==========================================================================
   JUST & TRIM — LUXURY SALON DESIGN SYSTEM
   Palette: Warm White (#FAF8F4), Ivory (#F4F0E8), Champagne Gold (#C9A86A),
            Soft Beige (#E8DDC9), Charcoal (#202020), Muted Gray (#77736D)
   ========================================================================== */

:root {
  --bg-primary: #FAF8F4;
  --bg-secondary: #F4F0E8;
  --bg-card: #FFFFFF;
  --bg-sand: #E8DDC9;
  
  --accent-gold: #C9A86A;
  --accent-gold-hover: #B89355;
  --accent-gold-light: rgba(201, 168, 106, 0.12);
  --accent-gold-border: rgba(201, 168, 106, 0.28);
  
  --text-main: #202020;
  --text-muted: #77736D;
  --text-light: #9B9790;
  --text-inverse: #FFFFFF;
  
  --border-light: rgba(32, 32, 32, 0.08);
  --border-gold: rgba(201, 168, 106, 0.35);
  
  --shadow-subtle: 0 4px 20px rgba(32, 32, 32, 0.04);
  --shadow-medium: 0 10px 30px rgba(32, 32, 32, 0.08);
  --shadow-luxury: 0 20px 45px rgba(201, 168, 106, 0.15);
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 50px;
  
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold-hover);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--accent-gold);
}

.heading-xl {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.heading-lg {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.heading-md {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.3;
}

.text-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Button & CTA System */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--accent-gold);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-gold);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201, 168, 106, 0.25);
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 106, 0.35);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold-outline:hover {
  background-color: var(--bg-card);
  border-color: var(--accent-gold);
  color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.btn-link-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold-hover);
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 2px;
  transition: var(--transition);
}

.btn-link-gold:hover {
  color: var(--text-main);
  border-color: var(--text-main);
  gap: 10px;
}

/* Header & Sticky Navbar */
.navbar-custom {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition);
  padding: 16px 0;
}

.navbar-custom.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-logo .scissor-icon {
  color: var(--accent-gold);
  font-size: 1.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--accent-gold-hover);
}

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

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin-top: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.nav-dropdown-item i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  font-size: 0.75rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-dropdown-item:hover {
  background-color: var(--bg-secondary);
  color: var(--accent-gold-hover);
  padding-left: 22px;
}

.nav-dropdown-item:hover i {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.nav-dropdown-item.active {
  color: var(--accent-gold-hover);
  font-weight: 600;
  background-color: var(--bg-secondary);
}

.mobile-submenu {
  list-style: none;
  padding-left: 14px;
  margin-top: 6px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid var(--border-gold);
}

.mobile-submenu a {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.mobile-submenu a:hover,
.mobile-submenu a.active {
  color: var(--accent-gold-hover);
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: var(--bg-primary);
  padding: 60px 0 90px;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold-hover);
  margin-bottom: 24px;
}

.hero-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.hero-stat-item h4 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--accent-gold-hover);
  margin-bottom: 2px;
  line-height: 1;
}

.hero-stat-item p {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--border-gold);
}

.hero-image-wrapper img,
.hero-image-wrapper video {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover img,
.hero-image-wrapper:hover video {
  transform: scale(1.03);
}

@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
    padding: 40px 0 60px;
  }
  .hero-section .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section .heading-xl {
    text-align: center;
  }
  .hero-section .font-serif.fs-3 {
    text-align: center;
  }
  .hero-section .eyebrow {
    display: inline-flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero-section .eyebrow::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: var(--accent-gold);
  }
  .hero-section .text-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 540px;
    padding-right: 0 !important;
  }
  .hero-section .d-flex.flex-wrap.gap-3 {
    justify-content: center;
    align-items: center;
  }
  .hero-section .hero-stats-row {
    justify-content: center;
    gap: 28px;
    margin-top: 36px;
    padding-top: 24px;
  }
  .hero-section .hero-stat-item {
    text-align: center;
  }
  .hero-image-wrapper img,
  .hero-image-wrapper video {
    height: 420px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 30px 0 50px;
  }
  .hero-section .d-flex.flex-wrap.gap-3 {
    flex-direction: column;
    width: 100%;
  }
  .hero-section .d-flex.flex-wrap.gap-3 a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-section .hero-stats-row {
    gap: 16px;
  }
  .hero-stat-item h4 {
    font-size: 1.75rem;
  }
  .hero-stat-item p {
    font-size: 0.72rem;
  }
  .hero-image-wrapper img,
  .hero-image-wrapper video {
    height: 320px;
  }
}

.hero-floating-card {
  position: absolute;
  bottom: 12px;
  left: 20px;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--accent-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  max-width: 270px;
  z-index: 2;
  transition: var(--transition);
}

.hero-floating-card:hover {
  background: rgba(15, 15, 15, 0.7);
  transform: translateY(-2px);
}

.hero-sound-toggle-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.hero-sound-toggle-btn:hover {
  background: #b89758;
  color: #111111;
  border-color: #b89758;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 151, 88, 0.4);
}

.hero-sound-toggle-btn.unmuted {
  background: rgba(184, 151, 88, 0.95);
  color: #111111;
  border-color: #d4af37;
}

.hero-sound-toggle-btn.unmuted #heroSoundIcon {
  color: #111111;
}

.hero-sound-toggle-btn i {
  font-size: 0.95rem;
  color: #d4af37;
  transition: color 0.3s ease;
}

.hero-floating-card h6 {
  color: #FFFFFF !important;
}

.hero-floating-card small,
.hero-floating-card .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

.hero-floating-card .contact-icon {
  background: rgba(201, 168, 106, 0.25);
  color: #F1D49B;
  border: 1px solid rgba(201, 168, 106, 0.4);
}

/* About Section */
.about-section {
  background-color: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
}

.about-collage {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-medium);
}

.about-sub-img {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--bg-secondary);
  box-shadow: var(--shadow-luxury);
}

.philosophy-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  margin-top: 32px;
  border-left: 4px solid var(--accent-gold);
}

/* Service Cards */
.services-section {
  background-color: var(--bg-primary);
  padding: 100px 0;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-luxury);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-icon-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  font-size: 1.1rem;
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

/* Signature Banner Section */
.signature-section {
  position: relative;
  background: linear-gradient(rgba(32, 32, 32, 0.78), rgba(32, 32, 32, 0.85)), url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #FFFFFF;
  padding: 110px 0;
  text-align: center;
}

.signature-section h2 {
  color: #FFFFFF;
}

.signature-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 106, 0.35);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.signature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

/* Products Section */
.products-section {
  background-color: var(--bg-primary);
  padding: 100px 0;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
}

.product-img-wrap {
  position: relative;
  height: 270px;
  background-color: #f7f5f0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 160, 80, 0.15);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold-hover);
  margin-bottom: 6px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Why Choose Us Section */
.why-section {
  background-color: var(--bg-secondary);
  padding: 100px 0;
}

.why-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.why-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.why-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 14px;
}

/* Video Showcase Section */
.video-section {
  background-color: var(--bg-primary);
  padding: 100px 0;
}

.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  cursor: pointer;
  height: 320px;
  box-shadow: var(--shadow-subtle);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.video-card:hover img {
  transform: scale(1.08);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 32, 32, 0.9) 0%, rgba(32, 32, 32, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #FFFFFF;
}

.play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.video-card:hover .play-btn-circle {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: var(--accent-gold);
  color: #FFFFFF;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--bg-secondary);
  padding: 100px 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #FFFFFF;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  border: 1px solid var(--border-gold);
}

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

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

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 32, 32, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #FFFFFF;
}

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

/* Testimonials */
.testimonials-section {
  background-color: var(--bg-primary);
  padding: 100px 0;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-medium);
}

.stars {
  color: #E2A63B;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* Booking Full Banner CTA */
.booking-cta-section {
  position: relative;
  background: linear-gradient(rgba(32, 32, 32, 0.8), rgba(32, 32, 32, 0.8)), url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  padding: 100px 0;
  color: #FFFFFF;
  text-align: center;
}

.booking-cta-section h2 {
  color: #FFFFFF;
}

/* Contact & Booking Form */
.contact-section {
  background-color: var(--bg-secondary);
  padding: 100px 0;
}

.form-control-luxury {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control-luxury:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.15);
}

.contact-info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px;
  height: 100%;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Footer */
.footer-custom {
  background-color: #FAF8F4;
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 30px;
  color: var(--text-main);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a:hover {
  color: var(--accent-gold-hover);
  padding-left: 4px;
}

.social-link-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
}

.social-link-btn:hover {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Floating Action Pill (Mobile) */
.mobile-floating-pill {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1020;
  display: none;
  background: rgba(32, 32, 32, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 168, 106, 0.4);
}

.mobile-floating-pill a {
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-pill);
}

.mobile-floating-pill a.btn-highlight {
  background-color: var(--accent-gold);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .mobile-floating-pill {
    display: flex;
    align-items: center;
    gap: 4px;
  }
}

/* Fullscreen Lightbox Modals */
.jt-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.jt-modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.jt-modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background-color: #000000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.jt-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.jt-modal-close:hover {
  background-color: var(--accent-gold);
}

/* Promotional Offer Popup */
.jt-offer-popup-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.jt-offer-popup-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.jt-offer-popup-dialog {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: #181512;
  border: 2px solid var(--accent-gold);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 35px rgba(201, 168, 106, 0.3);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.jt-offer-popup-backdrop.show .jt-offer-popup-dialog {
  transform: scale(1) translateY(0);
}

.jt-offer-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #FAF8F4;
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 20;
}

.jt-offer-popup-close:hover {
  background-color: var(--accent-gold);
  color: #111;
  transform: rotate(90deg);
}

.jt-offer-img-wrap {
  width: 100%;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jt-offer-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

.jt-offer-content {
  background: #181512;
  border-top: 1px solid rgba(201, 168, 106, 0.25);
}

/* Toast Notification */
.jt-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #FFFFFF;
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 16px 22px;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.jt-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* =======================================================
   LUXURY RATE CARD & PRICING MENU STYLING
   ======================================================= */
.pricing-hero {
  position: relative;
  background: linear-gradient(135deg, #FAF8F4 0%, #F3EDE2 50%, #FAF8F4 100%);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-search-wrap {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}

.pricing-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-main);
  box-shadow: 0 4px 20px rgba(201, 168, 106, 0.1);
  transition: var(--transition);
}

.pricing-search-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 6px 25px rgba(201, 168, 106, 0.25);
  background: #FFFFFF;
}

.pricing-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  font-size: 1rem;
}

.pricing-pills-bar {
  position: sticky;
  top: 75px;
  z-index: 1020;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  padding: 12px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pricing-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: 0 8px 30px rgba(32, 32, 32, 0.04);
  transition: var(--transition);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C9A86A 0%, #E8DDC9 50%, #C9A86A 100%);
}

.pricing-card:hover {
  box-shadow: 0 16px 45px rgba(201, 168, 106, 0.14);
  transform: translateY(-2px);
}

.pricing-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-bottom: 1px solid rgba(201, 168, 106, 0.15);
}

.pricing-item-row:last-child {
  border-bottom: none;
}

.pricing-item-row:hover {
  background-color: var(--bg-secondary);
  padding-left: 20px;
}

.pricing-item-info {
  flex: 1;
  padding-right: 15px;
}

.pricing-item-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pricing-tag-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  border: 1px solid var(--border-gold);
}

.pricing-tag-badge.signature {
  background: #202020;
  color: #DFC183;
  border-color: #202020;
}

.pricing-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.45;
}

.pricing-price-box {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #202020;
  white-space: nowrap;
}

.pricing-matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.pricing-matrix-table th {
  background-color: #202020;
  color: #DFC183;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 12px;
  border: none;
}

.pricing-matrix-table td {
  padding: 13px 12px;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(201, 168, 106, 0.15);
  border-right: 1px solid rgba(201, 168, 106, 0.1);
  background: #FFFFFF;
}

.pricing-matrix-table tr:nth-child(even) td {
  background-color: #FAF8F4;
}

.pricing-matrix-table tr:hover td {
  background-color: #F4EFE6;
}

.btn-book-action {
  background: transparent;
  color: var(--accent-gold-hover);
  border: 1.5px solid var(--accent-gold);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-book-action:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(201, 168, 106, 0.4);
  transform: translateY(-1px);
}

.sidebar-vip-box {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
  position: relative;
  overflow: hidden;
}

.sidebar-vip-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #C9A86A, #E8DDC9, #C9A86A);
}

.status-badge-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.status-badge-open::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #28a745;
  border-radius: 50%;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(201, 168, 106, 0.25);
}

.trust-item:last-child {
  border-bottom: none;
}

.trust-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
  width: 24px;
}

