/* ==========================================================================
   CHILL & SERVE — PREMIUM DESIGN SYSTEM & MAIN STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --wine-dark: #000000;      /* Pure black base */
  --wine-medium: #050505;    /* Deep charcoal */
  --wine-light: #120205;     /* Deep wine glow */
  --wine-glass: rgba(0, 0, 0, 0.85);
  
  --cream-base: #000000;     /* Dark theme background (pure black) */
  --cream-soft: #050505;     /* Dark theme secondary background */
  --cream-dark: #120205;     /* Deep wine border/hover color */
  
  --gold-primary: #8B0000;   /* Crimson red accent */
  --gold-light: #B76E79;     /* Rose Gold accent */
  --gold-gradient: linear-gradient(135deg, #8B0000 0%, #B76E79 50%, #8B0000 100%);
  --wine-gradient: linear-gradient(135deg, #8B0000 0%, #B76E79 100%);
  
  --text-dark: #ffffff;      /* White text for dark theme */
  --text-light: #ffffff;     /* White text for dark theme */
  --text-muted-dark: rgba(255, 255, 255, 0.7);
  --text-muted-light: rgba(255, 255, 255, 0.5);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;

  /* Layout & Spacing */
  --container-width: 1200px;
  --header-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 10px 30px rgba(139, 0, 0, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);
}

/* ──────────────────────────────────────────────────────────────────────────
   1. RESET & BASE STYLES
   ────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--cream-base);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

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

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

li {
  list-style: none;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: inherit;
}

h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

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

.subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  display: inline-block;
  margin-bottom: 0.75rem;
  position: relative;
}

.subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 8px auto 0;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-dark);
  font-weight: 700;
}

.dark-section .section-title {
  color: var(--text-light);
}

/* ──────────────────────────────────────────────────────────────────────────
   2. REUSABLE UTILITIES & LAYOUTS
   ────────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

.bg-wine {
  background: var(--wine-gradient);
  color: var(--text-light);
}

.bg-cream {
  background-color: var(--cream-soft);
  color: var(--text-dark);
}

/* Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--wine-gradient);
  color: var(--text-light);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  color: var(--wine-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--wine-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-light);
}

.btn-outline:hover,
.btn-outline.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: #000000;
}

/* Glass Card Definition */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

/* ──────────────────────────────────────────────────────────────────────────
   3. NAVIGATION BAR
   ────────────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: var(--wine-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 70px;
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Light page layout exceptions where navbar should display darker */
.navbar:not(.scrolled) {
  background: var(--wine-glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Override for pages that start with dark hero headers */
.has-dark-hero .navbar:not(.scrolled) {
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-light);
}

.has-dark-hero .navbar:not(.scrolled) .nav-logo {
  color: var(--text-light);
}

.navbar.scrolled .nav-logo {
  color: var(--text-light);
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-light);
  position: relative;
  padding: 0.5rem 0;
}

.has-dark-hero .navbar:not(.scrolled) .nav-link {
  color: var(--text-light);
}

.navbar.scrolled .nav-link {
  color: var(--text-light);
}

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

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

.nav-cta {
  background: var(--gold-gradient);
  color: #ffffff !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-gold);
}

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

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition-smooth);
}

.has-dark-hero .navbar:not(.scrolled) .nav-toggle span,
.navbar.scrolled .nav-toggle span {
  background: var(--text-light);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ──────────────────────────────────────────────────────────────────────────
   4. HERO SECTIONS (WITH VIDEO BACKGROUND)
   ────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-scroll-btn {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted-light);
  cursor: pointer;
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll-btn i {
  font-size: 1.2rem;
  color: var(--gold-light);
}

/* Inner Page Header */
.inner-header {
  position: relative;
  padding: 12rem 0 6rem;
  text-align: center;
  background: var(--wine-gradient);
  color: var(--text-light);
  overflow: hidden;
}

.inner-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.inner-header-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.inner-header-desc {
  font-size: 1.1rem;
  color: var(--text-muted-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────────────────────────────────────
   5. HOME & INNER PAGES - SECTIONS
   ────────────────────────────────────────────────────────────────────────── */

/* A. About Intro Section */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-intro-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.about-intro-video-wrap {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.about-intro-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold-gradient);
  color: var(--wine-dark);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-premium);
}

.about-intro-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--wine-medium);
}

.about-intro-text p {
  color: var(--text-muted-dark);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* B. Option Box Section (Flexible Booking Options) */
.options-wrap {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.option-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  position: relative;
}

.option-card.featured {
  background: var(--wine-gradient);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-premium);
}

.option-card.featured .option-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.option-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.option-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.option-card.featured h3 {
  color: var(--text-light);
}

.option-card p {
  margin-bottom: 2rem;
  color: inherit;
  opacity: 0.9;
}

.option-card ul {
  margin-bottom: 2.5rem;
}

.option-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.option-card li i {
  color: var(--gold-light);
}

.option-card.featured li i {
  color: #ffffff;
}

/* C. Services Section & Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.services-grid > * {
  flex: 1 1 300px;
  max-width: 380px;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: var(--gold-light);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--gold-light);
  margin: 0 auto 2rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover .service-card-icon {
  background: var(--wine-gradient);
  color: #ffffff;
  border-color: transparent;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
}

/* D. Showcase Stats */
.stats-banner {
  padding: 5rem 0;
  background: var(--wine-gradient);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-item p {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-muted-light);
}

/* E. Clients Slider / Grid */
.clients-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.client-tag {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}

.client-tag:hover {
  background: var(--wine-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.05);
}

/* F. Gallery Grid */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

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

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--cream-dark);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 8, 17, 0.8);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--text-light);
  padding: 2rem;
  text-align: center;
}

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

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.1);
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--gold-light);
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.gallery-overlay p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

/* Video Play Overlay Indicator */
.video-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.gallery-item:hover .video-indicator {
  opacity: 0;
}

/* G. FAQ Accordion Section */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.open {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-premium);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.faq-question i {
  color: var(--gold-light);
  transition: var(--transition-smooth);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-answer-inner {
  padding: 0 2rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-item.open .faq-answer-inner {
  border-top-color: rgba(255, 255, 255, 0.05);
}

/* H. Contact Page Layout & Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info-panel {
  background: var(--wine-gradient);
  color: var(--text-light);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 100% 0, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.contact-info-panel h3 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-detail-item i {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-detail-content p, 
.contact-detail-content a {
  color: var(--text-muted-light);
  font-size: 0.95rem;
}

.contact-detail-content a:hover {
  color: var(--gold-primary);
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  outline: none;
  color: #ffffff;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 12px;
  padding-right: 3rem;
  cursor: pointer;
  background-color: rgba(30, 10, 18, 0.95);
  color-scheme: dark;
}

select.form-control:focus {
  background-color: rgba(40, 14, 24, 0.98);
}

select.form-control option {
  background-color: #1e0a12;
  color: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

/* ──────────────────────────────────────────────────────────────────────────
   6. FOOTER STYLES
   ────────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--wine-dark);
  color: var(--text-light);
  position: relative;
  padding-bottom: 3rem;
}

.footer-wave {
  width: 100%;
  height: 60px;
  line-height: 0;
  margin-bottom: 4rem;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background: var(--gold-gradient);
  color: var(--wine-dark);
  transform: translateY(-3px);
}

.footer-links-col h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 2rem;
}

.footer-links-col ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-col a,
.footer-contact li {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

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

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.footer-credit i {
  color: #e74c3c;
}

/* ──────────────────────────────────────────────────────────────────────────
   7. INTERACTIVE & POPUP COMPONENTS
   ────────────────────────────────────────────────────────────────────────── */
/* WhatsApp Floating Action Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--wine-gradient);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-premium);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-gradient);
  color: var(--wine-dark);
  transform: translateY(-5px);
}

/* Lightbox Popups */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 4, 10, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 2rem;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lb-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
}

.lb-img,
.lb-video {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.1);
}

.lb-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* ──────────────────────────────────────────────────────────────────────────
   8. ANIMATIONS & REVEAL EFFECTS
   ────────────────────────────────────────────────────────────────────────── */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger parent & children */
.stagger-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────────────────────
   9. RESPONSIVE DESIGN (MEDIA QUERIES)
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.6rem;
  }
  
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-intro-video-wrap {
    height: 380px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--wine-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    overflow-y: auto;
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-link {
    font-size: 1.2rem;
    color: var(--text-light);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .hero-btns .btn {
    width: 100%;
  }
  
  .options-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .option-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-form-panel {
    padding: 2rem 1.5rem;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   10. REVIEWS & TESTIMONIALS SLIDER
   ────────────────────────────────────────────────────────────────────────── */
.reviews-section {
  padding: 6rem 0;
  background-color: var(--cream-soft);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--cream-dark);
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(74, 18, 30, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.reviews-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 1rem 0;
}

.reviews-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.review-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

.review-bubble {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-premium);
  position: relative;
  transition: var(--transition-smooth);
}

.review-bubble::after {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-light);
  opacity: 0.15;
}

.review-stars {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-style: italic;
}

.reviewer-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.reviewer-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--wine-gradient);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  z-index: 10;
}

.reviews-nav-btn:hover {
  background: var(--gold-gradient);
  color: var(--wine-dark);
}

.reviews-nav-btn.prev {
  left: -60px;
}

.reviews-nav-btn.next {
  right: -60px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.reviews-dot.active {
  background: var(--wine-medium);
  transform: scale(1.3);
}

.reviews-cta-wrap {
  text-align: center;
  margin-top: 3.5rem;
}

/* Review Popup Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 8, 17, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-card {
  background: var(--cream-base);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  width: 100%;
  max-width: 550px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(44, 8, 17, 0.2);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--wine-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--gold-primary);
}

.modal-content-card h3 {
  font-size: 2rem;
  color: var(--wine-dark);
  margin-bottom: 0.5rem;
}

.modal-content-card p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.star-rating-select {
  display: flex;
  gap: 8px;
  font-size: 1.8rem;
  color: var(--cream-dark);
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.star-rating-select i {
  transition: var(--transition-smooth);
}

.star-rating-select i.selected,
.star-rating-select i:hover {
  color: var(--gold-primary);
}

@media (max-width: 900px) {
  .reviews-nav-btn {
    display: none;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   11. SPINNING FLOATING SOCIAL ICONS
   ────────────────────────────────────────────────────────────────────────── */
.social-float-group {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.social-float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  animation: gentle-spin 8s linear infinite;
}

.wa-float-btn {
  background-color: #25d366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.wa-float-btn:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  animation: hover-spin 0.6s ease-in-out;
}

.ig-float-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.35);
}

.ig-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(220, 39, 67, 0.5);
  animation: hover-spin 0.6s ease-in-out;
}

/* Animation keyframes */
@keyframes gentle-spin {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}

@keyframes hover-spin {
  0% { transform: scale(1.1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(360deg); }
}

@media (max-width: 768px) {
  .social-float-group {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .social-float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   12. VIDEO MUTE CONTROL & REVIEW ENGAGEMENT STYLES
   ────────────────────────────────────────────────────────────────────────── */
.video-mute-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(44, 8, 17, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  font-size: 1.1rem;
}

.video-mute-btn:hover {
  background: var(--gold-gradient);
  color: var(--wine-dark);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.review-engagement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.review-like-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
  font-family: var(--font-sans);
}

.review-like-btn i {
  font-size: 1.05rem;
  transition: transform 0.2s ease-in-out;
}

.review-like-btn:hover {
  color: #e0245e;
}

.review-like-btn:hover i {
  transform: scale(1.2);
}

.review-like-btn.liked {
  color: #e0245e;
}

.review-like-btn.liked i {
  color: #e0245e;
}

.review-views {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ──────────────────────────────────────────────────────────────────────────
   13. FUTURISTIC PRELOADER STYLES
   ────────────────────────────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--wine-dark);
  background-image: radial-gradient(circle at 50% 50%, rgba(74, 18, 30, 0.6) 0%, rgba(44, 8, 17, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease-in-out;
}

#preloader.loaded {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loader-logo {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 5px;
  background: var(--wine-dark);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
  margin-bottom: 2rem;
  animation: logo-pulse 2s infinite ease-in-out;
  z-index: 2;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.loader-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
  animation: loader-spin 1.5s linear infinite;
  z-index: 1;
}

.loader-progress-text {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.loader-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 4px;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.loader-amp {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .loader-title {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }
}

.loader-bar-wrap {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transition: width 0.08s linear;
}

.loader-status {
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Animations */
@keyframes logo-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(212, 175, 55, 0.15); }
  50% { transform: scale(1.04); box-shadow: 0 0 45px rgba(212, 175, 55, 0.3); }
}

@keyframes loader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ──────────────────────────────────────────────────────────────────────────
   14. HEART PARTICLES MICRO-ANIMATIONS
   ────────────────────────────────────────────────────────────────────────── */
.heart-particle {
  position: absolute;
  color: #e0245e;
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 9999;
  animation: floatUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0.5) rotate(var(--rot));
  }
}

/* Mobile responsive styles for Reviews and Engagement */
@media (max-width: 600px) {
  .review-bubble {
    padding: 2.2rem 1.2rem 1.8rem 1.2rem !important;
    border-radius: 16px !important;
  }
  .review-bubble::after {
    font-size: 3.5rem !important;
    top: 1rem !important;
    left: 1rem !important;
  }
  .review-text {
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.2rem !important;
  }
  .review-engagement {
    font-size: 0.8rem !important;
    padding-top: 1rem !important;
    margin-top: 1.2rem !important;
    gap: 8px !important;
  }
  .review-like-btn {
    font-size: 0.82rem !important;
    gap: 4px !important;
  }
  .review-like-btn i {
    font-size: 0.95rem !important;
  }
  .review-views {
    gap: 4px !important;
  }
  .reviews-cta-wrap {
    gap: 1rem !important;
    flex-direction: column !important;
  }
  .reviews-cta-wrap .btn {
    width: 100% !important;
  }
}

/* Creative Mixed Gallery Grid */
.gallery-mix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-mix-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-mix-media-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-mix-media-wrap img,
.gallery-mix-media-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-mix-item:hover img,
.gallery-mix-item:hover video {
  transform: scale(1.06);
}

.gallery-mix-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  padding: 3rem 1.5rem 1.5rem;
  color: #ffffff;
  z-index: 2;
  transition: var(--transition-smooth);
}

.gallery-mix-caption h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.gallery-mix-caption p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.gallery-mix-mute-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.gallery-mix-mute-btn:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  transform: scale(1.1);
}

/* Responsive design for gallery mix */
@media (max-width: 1024px) {
  .gallery-mix-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .gallery-mix-item {
    height: 350px;
  }
}

@media (max-width: 640px) {
  .gallery-mix-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .gallery-mix-item {
    height: 320px;
  }
}





