/* ==========================================================================
   RAAGAN / [ARTIST NAME] - Premium Dark & Light Mode Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Default Dark Theme Variables */
:root {
  --bg-dark: #0a0a0c;
  --bg-card: #121218;
  --bg-card-hover: #181822;
  --bg-glass: rgba(18, 18, 24, 0.85);
  --border-subtle: rgba(212, 175, 55, 0.4);
  --border-card: rgba(212, 175, 55, 0.3);
  --border-focus: rgba(212, 175, 55, 0.7);
  
  --accent-gold: #d4af37;
  --accent-gold-light: #f3e5ab;
  --accent-gold-glow: rgba(212, 175, 55, 0.25);
  
  --text-main: #f4f4f6;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;

  --hero-overlay-bg: radial-gradient(circle at center, rgba(10, 10, 12, 0.2) 0%, rgba(10, 10, 12, 0.95) 90%),
                     linear-gradient(to bottom, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.95) 100%);
  --footer-bg: #060608;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  --max-width: 1280px;
  --header-height: 85px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-dark: #fafafd;
  --bg-card: #ffffff;
  --bg-card-hover: #f3f4f8;
  --bg-glass: rgba(255, 255, 255, 0.94);
  --border-subtle: rgba(184, 134, 11, 0.5);
  --border-card: rgba(184, 134, 11, 0.35);
  --border-focus: rgba(184, 134, 11, 0.7);
  
  --accent-gold: #b8860b;
  --accent-gold-light: #d4af37;
  --accent-gold-glow: rgba(184, 134, 11, 0.2);
  
  --text-main: #111116;
  --text-muted: #2d2d35;
  --text-dim: #555560;

  --hero-overlay-bg: radial-gradient(circle at center, rgba(250, 250, 253, 0.3) 0%, rgba(250, 250, 253, 0.92) 90%),
                     linear-gradient(to bottom, rgba(250, 250, 253, 0.5) 0%, rgba(250, 250, 253, 0.98) 100%);
  --footer-bg: #eaecee;
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.gold-text {
  color: var(--accent-gold);
  font-weight: 700;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background-color: var(--accent-gold);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.text-center { text-align: center; }

/* Theme Toggle Button */
.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition-normal);
  outline: none;
}

[data-theme="light"] .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.06);
  color: #1a1a1e;
}

.theme-toggle-btn:hover {
  transform: rotate(15deg) scale(1.1);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

/* Layout Helpers */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.section-padding {
  padding: 36px 0;
}

/* Page Header Banner */
.page-header {
  padding: 95px 0 28px;
  background: linear-gradient(to bottom, var(--bg-card) 0%, var(--bg-dark) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-card);
}

/* Sticky Header & Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-normal);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-card);
}

.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 12px var(--accent-gold-glow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.brand-logo:hover .brand-avatar {
  transform: scale(1.08);
  box-shadow: 0 0 18px var(--accent-gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-main);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.1;
}

.brand-title {
  font-size: clamp(0.55rem, 0.9vw, 0.65rem);
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-top: 1px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
  list-style: none;
}

.nav-link {
  font-size: clamp(0.78rem, 1vw, 0.85rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
  color: #0a0a0c;
  border: none;
  box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  color: #000;
}

.btn-outline {
  background: rgba(212, 175, 55, 0.04);
  color: var(--text-main);
  border: 1.5px solid rgba(212, 175, 55, 0.55);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-normal);
}

[data-theme="light"] .btn-outline {
  background: rgba(184, 134, 11, 0.04);
  color: #111111;
  border: 1.5px solid rgba(184, 134, 11, 0.65);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: #000000;
  background: var(--accent-gold);
  box-shadow: 0 6px 22px var(--accent-gold-glow);
  transform: translateY(-2px);
}

[data-theme="light"] .btn-outline:hover {
  background: #b8860b;
  color: #ffffff;
  border-color: #b8860b;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
  border: none;
}

.btn-whatsapp img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn-whatsapp:hover {
  background: #20ba59;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Floating WhatsApp Widget Container with Always-Visible Red Cancel Button */
.floating-whatsapp-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.floating-whatsapp-container.closed {
  display: none !important;
}

/* Always-Visible Red Cancel Button Badge */
.whatsapp-close-btn {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff3b30;
  color: #ffffff;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  z-index: 10001;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  outline: none;
  padding: 0;
}

.whatsapp-close-btn:hover {
  background: #e02b20;
  transform: scale(1.25);
}

.floating-whatsapp {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-normal);
  animation: gentleBlink 2.5s infinite ease-in-out;
  overflow: hidden;
}

.floating-whatsapp-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
  animation-play-state: paused;
}

/* Minimized State */
.floating-whatsapp-container.minimized .floating-whatsapp {
  width: 36px;
  height: 36px;
  animation: none;
  opacity: 0.75;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp-container.minimized .floating-whatsapp-img {
  width: 22px;
  height: 22px;
}

.floating-whatsapp-container.minimized:hover .floating-whatsapp {
  opacity: 1;
  transform: scale(1.12);
}

@keyframes gentleBlink {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.75);
  }
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: all var(--transition-normal);
}

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

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

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  background-color: var(--bg-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.65) contrast(1.1);
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate cubic-bezier(0.25, 1, 0.5, 1);
}

[data-theme="light"] .hero-bg img {
  filter: brightness(0.85) contrast(1.05);
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: var(--hero-overlay-bg);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-card);
}

.hero-tag-item {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag-item:not(:last-child)::after {
  content: '•';
  color: var(--accent-gold);
  opacity: 0.6;
}

/* Credibility Trust Strip */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 30px 0;
  transition: background-color var(--transition-normal);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.trust-item {
  padding: 12px;
  border-right: 1px solid var(--border-card);
}

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

.trust-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* Feature Cards / Experience */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* About Grid & Biography Styling */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 25px var(--accent-gold-glow);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.about-image-wrap:hover img {
  transform: scale(1.04);
}

.about-text-p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text-p strong {
  color: var(--text-main);
  font-weight: 700;
}

/* Experience & Feature Cards Styling */
.experience-section {
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.07) 0%, rgba(10, 10, 15, 0) 70%);
}

.feature-card {
  background: linear-gradient(145deg, rgba(26, 26, 38, 0.85) 0%, rgba(16, 16, 24, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal), background var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), #fff7ad, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, rgba(34, 34, 48, 0.95) 0%, rgba(20, 20, 30, 1) 100%);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .feature-card {
  background: var(--bg-card);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .feature-card:hover {
  background: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-number-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.22);
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition-normal), transform var(--transition-normal);
}

.feature-card:hover .feature-number-badge {
  color: var(--accent-gold);
  transform: scale(1.1);
  opacity: 0.8;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-gold);
  font-size: 1.4rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
  border-color: var(--accent-gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Showreel & Featured Video Frame */
.video-featured-wrapper {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 40px auto 0;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, rgba(255, 255, 255, 0.15) 50%, var(--accent-gold) 100%);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(212, 175, 55, 0.25);
  transition: all var(--transition-normal);
}

.video-featured-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 50px rgba(212, 175, 55, 0.4);
}

.video-featured-container {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.video-featured-container video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  display: block;
}



/* Shows / Event Categories Grid */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.show-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.show-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-subtle);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.show-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.show-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.show-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.show-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.show-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Video Grid & Luxury Video Card Framing */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.video-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  cursor: pointer;
}

.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), transparent 50%, rgba(212, 175, 55, 0.15)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  transition: opacity var(--transition-normal);
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.25);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #14141e;
  background-position: center;
  background-size: cover;
}

.video-thumb img, .video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform var(--transition-slow);
}

.video-card:hover .video-thumb img, .video-card:hover .video-thumb video {
  transform: scale(1.06);
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.9);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition-normal);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  padding-left: 4px;
  z-index: 2;
}

.video-card:hover .play-btn-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: #ffffff;
}

.video-card.is-playing .play-btn-overlay {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.video-card.is-playing .video-thumb video {
  transform: none !important;
  z-index: 5;
}

.video-info {
  padding: 20px;
}

.video-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.video-title {
  font-size: 1.2rem;
  line-height: 1.3;
}

/* Gallery Masonry & Lightbox Frames */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), transparent 50%, rgba(212, 175, 55, 0.2)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.25);
  border-color: var(--accent-gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--transition-slow), filter var(--transition-normal);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.92) 0%, rgba(10, 10, 12, 0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  z-index: 3;
}

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

.gallery-caption {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-align: center;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Modal Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 5, 7, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

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

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img, .lightbox-content iframe {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

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

/* Cinema Video Lightbox Player */
.video-lightbox-player {
  position: relative;
  width: 90vw;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
  border: 1px solid var(--border-subtle);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
}

.video-lightbox-info {
  text-align: center;
  margin-top: 16px;
}

.video-lightbox-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  font-weight: 600;
}

.video-lightbox-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--text-main);
  margin-top: 4px;
}

/* About Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--accent-gold);
  opacity: 0.3;
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: -1;
}

/* Testimonials / Reviews */
.reviews-ticker-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 36px;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  padding: 24px 0 32px;
}

.reviews-ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: stretch;
  padding: 8px 4px;
  animation: scrollReviews 38s linear infinite;
  will-change: transform;
}

.reviews-ticker-wrapper:hover .reviews-ticker-track,
.reviews-ticker-track.paused {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 40px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-normal);
  width: 360px;
  max-width: 85vw;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.reviews-grid .review-card {
  width: 100%;
  max-width: 100%;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 30px var(--accent-gold-glow);
}

.review-card.featured-review {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.09) 0%, var(--bg-card) 100%);
  border-color: var(--border-subtle);
}

[data-theme="light"] .review-card {
  background: #ffffff;
  border-color: rgba(184, 134, 11, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .review-card.featured-review {
  background: linear-gradient(135deg, #fffdf5 0%, #ffffff 100%);
  border-color: rgba(184, 134, 11, 0.4);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}

.star-rating {
  font-size: 0.85rem;
  color: #ffc107;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  color: var(--accent-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent-gold);
  opacity: 0.25;
  line-height: 0.8;
  margin-bottom: 6px;
}

.review-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: block;
  overflow: visible;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-card);
  padding-top: 12px;
  margin-top: auto;
}

.review-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 2px 8px var(--accent-gold-glow);
  background: var(--bg-card);
  transition: transform var(--transition-fast);
}

.review-card:hover .review-author-avatar {
  transform: scale(1.08);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.author-info p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.2;
  margin-top: 2px;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.slider-btn {
  background: var(--bg-card);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  outline: none;
}

.slider-btn:hover {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
  box-shadow: 0 0 14px var(--accent-gold-glow);
}

.show-image-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
  color: var(--text-dim);
}

.star-rating {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* Booking CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Contact Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info-card, .form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: background-color var(--transition-normal);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 24px;
}

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

.form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

select.form-control {
  cursor: pointer;
}

select.form-control option {
  background-color: #121218;
  color: #ffffff;
  padding: 10px;
}

[data-theme="light"] .form-control {
  background-color: #ffffff;
  border: 1.5px solid rgba(184, 134, 11, 0.45);
  color: #111116;
}

[data-theme="light"] select.form-control option {
  background-color: #ffffff;
  color: #111111;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: rgba(212, 175, 55, 0.03);
}

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

/* EPK Page Styles */
.epk-header {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  transition: background-color var(--transition-normal);
}

.epk-section {
  margin-bottom: 60px;
}

/* Footer */
.site-footer {
  background-color: var(--footer-bg);
  border-top: 1px solid var(--border-card);
  padding: 80px 0 40px;
  transition: background-color var(--transition-normal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

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

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

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

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: 1px solid transparent;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

/* Authentic Social Icon Default Colors (Visible without hover) */
.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.35);
}

.social-icon.youtube {
  background: #FF0000;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.35);
}

.social-icon.facebook {
  background: #1877F2;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
}

.social-icon.whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.social-icon.whatsapp img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

/* Hover Enhancements */
.social-icon:hover {
  transform: translateY(-4px) scale(1.12);
  filter: brightness(1.12);
}

.social-icon.instagram:hover {
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6);
}

.social-icon.youtube:hover {
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.social-icon.facebook:hover {
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6);
}

.social-icon.whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.social-icon:hover svg {
  transform: scale(1.15);
}

/* Brand Action Buttons (Follow section) */
.btn-social-brand {
  min-width: 170px;
  gap: 10px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-social-brand.instagram-brand {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.35);
  border: none;
}

.btn-social-brand.youtube-brand {
  background: #FF0000;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.35);
  border: none;
}

.btn-social-brand.facebook-brand {
  background: #1877F2;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.35);
  border: none;
}

.btn-social-brand:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.12);
}

.btn-social-brand.instagram-brand:hover {
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6);
}

.btn-social-brand.youtube-brand:hover {
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.btn-social-brand.facebook-brand:hover {
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6);
}

.footer-bottom {
  border-top: 1px solid var(--border-card);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.dev-link {
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.dev-link:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

[data-theme="light"] .dev-link {
  color: #111111;
}

[data-theme="light"] .dev-link:hover {
  color: #b8860b;
  text-decoration: underline;
}

/* Tabs UI for Gallery */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 24px;
  background: rgba(212, 175, 55, 0.04);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-pill);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

[data-theme="light"] .tab-btn {
  background: rgba(0, 0, 0, 0.03);
  border: 1.5px solid rgba(184, 134, 11, 0.5);
  color: #222222;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 16px var(--accent-gold-glow);
}

/* Comprehensive Responsiveness across All Devices (Mobile, Tablet, Laptop, Desktop) */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
    gap: 28px;
    transition: right var(--transition-normal);
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  }
  
  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }
  
  .mobile-toggle {
    display: flex;
  }

  .about-grid, .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card-grid, .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: 94%;
    padding: 0 12px;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: clamp(1.8rem, 6.5vw, 2.6rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border-card);
    padding: 16px 8px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .page-header {
    padding: 95px 16px 32px;
  }
}

@media (max-width: 580px) {
  .site-header {
    height: 65px;
  }

  .site-header.scrolled {
    height: 62px;
  }

  .nav-container {
    width: 100%;
    padding: 0 14px;
    gap: 8px;
  }

  .brand-logo {
    gap: 10px;
  }

  .brand-avatar {
    width: 38px;
    height: 38px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  }

  .brand-name {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }

  .brand-title {
    display: block; /* Keep subtle gold subtitle on mobile for premium look */
    font-size: 0.54rem;
    letter-spacing: 0.16em;
    opacity: 0.9;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-primary {
    padding: 8px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
  }

  .theme-toggle-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
  }

  .mobile-toggle {
    width: 34px;
    height: 34px;
    padding: 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .mobile-toggle span {
    height: 2px;
    border-radius: 2px;
    background-color: var(--text-main);
  }

  .mobile-toggle.active {
    border-color: var(--accent-gold);
    box-shadow: 0 0 12px var(--accent-gold-glow);
  }

  .mobile-toggle.active span {
    background-color: var(--accent-gold);
  }

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

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

  .nav-menu {
    width: 82%;
    max-width: 300px;
    background: var(--bg-dark);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 24px 40px;
  }

  .nav-link {
    font-size: 1.05rem;
    letter-spacing: 0.1em;
  }

  .trust-grid, .card-grid, .card-grid-3, .card-grid-2, .video-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card, .form-card {
    padding: 24px 16px;
  }

  .form-card form div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }

  .btn-whatsapp {
    max-width: 100%;
    white-space: normal;
    padding: 10px 18px;
    font-size: 0.82rem;
    word-break: break-word;
  }

  .floating-whatsapp-container {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-close-btn {
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    font-size: 9px;
  }
}

@media (max-width: 640px) {
  .filter-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    padding: 0;
    margin-bottom: 28px;
    width: 100%;
    overflow: visible;
  }

  .tab-btn {
    width: 100%;
    padding: 10px 10px;
    font-size: 0.76rem;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
    border-radius: var(--radius-sm);
    box-sizing: border-box;
  }
}

@media (max-width: 410px) {
  .brand-avatar {
    width: 35px;
    height: 35px;
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .brand-title {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  .nav-actions .btn-primary {
    display: none; /* Hide header Book Now button on tiny screens < 410px so header never wraps or overflows */
  }
}

/* ==========================================================================
   Featured Poster Showcase & Dual Portrait Styling
   ========================================================================== */
.poster-showcase-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 36px auto 0;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, rgba(255, 255, 255, 0.2) 50%, var(--accent-gold) 100%);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 30px rgba(212, 175, 55, 0.2);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.poster-showcase-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.6), 0 0 45px rgba(212, 175, 55, 0.35);
}

.poster-showcase-container,
.poster-showcase-container.gallery-item {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: auto !important;
  border-radius: 12px;
  overflow: hidden;
  background: transparent !important;
  background-image: none !important;
  cursor: pointer;
}

.poster-showcase-container img {
  width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: cover !important;
  display: block;
  transition: transform var(--transition-slow);
}

.poster-showcase-container:hover img {
  transform: scale(1.02);
}

.poster-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 15, 22, 0.85);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.portrait-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.portrait-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  cursor: pointer;
}

.portrait-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), transparent 50%, rgba(212, 175, 55, 0.2)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: opacity var(--transition-normal);
}

.portrait-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.25);
  border-color: var(--accent-gold);
}

.portrait-card-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--transition-slow);
}

.portrait-card:hover .portrait-card-img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .portrait-trio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.portrait-card-body {
  padding: 20px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
}

.portrait-card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.portrait-card-title {
  font-size: 1.15rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .portrait-duo-grid {
    grid-template-columns: 1fr;
  }
  .portrait-card-img {
    height: 340px;
  }
}

/* ==========================================================================
   Luxury High-Converting CTA Showcase Banner
   ========================================================================== */
.cta-banner-wrapper {
  position: relative;
  border-radius: 20px;
  padding: 48px 28px;
  background: linear-gradient(145deg, #12121a 0%, #0a0a10 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(212, 175, 55, 0.2);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.cta-bg-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(37, 211, 102, 0.15) 50%, transparent 80%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--accent-gold);
  border-radius: 30px;
  color: #F3E5AB;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cta-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 10px #25D366;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.cta-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 14px;
  color: #FFFFFF !important;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFF099 0%, #D4AF37 50%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}

.cta-subtext {
  color: #E2E8F0 !important;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 26px;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #F8FAFC !important;
  backdrop-filter: blur(6px);
  font-weight: 500;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-glow {
  position: relative;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transition: all var(--transition-normal);
}

.btn-glow:hover {
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.7);
  transform: translateY(-3px);
}

.btn-glow-green {
  position: relative;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-normal);
}

.btn-glow-green:hover {
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.65);
  transform: translateY(-3px);
}

.btn-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--transition-fast);
}

.btn-glow:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   EPK Header Hero Showcase Styling
   ========================================================================== */
.epk-header-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(145deg, #12121a 0%, #0a0a10 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 32px 36px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.18);
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}

.epk-hero-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.epk-hero-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
}

.epk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--accent-gold);
  border-radius: 20px;
  color: #F3E5AB;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.epk-hero-name {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-family: var(--font-heading);
  color: #FFFFFF !important;
  line-height: 1.1;
  margin: 2px 0 4px;
}

.epk-hero-sub {
  color: #CBD5E1 !important;
  font-size: 0.95rem;
}

.epk-hero-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ==========================================================================
   Light Mode Theme Enhancements & High-Contrast Border System
   ========================================================================== */
[data-theme="light"] .feature-card,
[data-theme="light"] .show-card,
[data-theme="light"] .video-card,
[data-theme="light"] .gallery-item,
[data-theme="light"] .review-card,
[data-theme="light"] .contact-info-card,
[data-theme="light"] .form-card,
[data-theme="light"] .portrait-card,
[data-theme="light"] .about-image-wrap,
[data-theme="light"] .cta-banner-wrapper,
[data-theme="light"] .epk-header-hero,
[data-theme="light"] .poster-showcase-wrapper,
[data-theme="light"] .video-featured-wrapper {
  background: #ffffff;
  border: 1.5px solid rgba(184, 134, 11, 0.4) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .feature-card:hover,
[data-theme="light"] .show-card:hover,
[data-theme="light"] .video-card:hover,
[data-theme="light"] .gallery-item:hover,
[data-theme="light"] .review-card:hover,
[data-theme="light"] .contact-info-card:hover,
[data-theme="light"] .form-card:hover,
[data-theme="light"] .portrait-card:hover {
  border-color: #b8860b !important;
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.25);
}

[data-theme="light"] .cta-heading,
[data-theme="light"] .epk-hero-name {
  color: #1a1a1e !important;
}

[data-theme="light"] .cta-subtext,
[data-theme="light"] .epk-hero-sub {
  color: #4a4a52 !important;
}

[data-theme="light"] .cta-badge,
[data-theme="light"] .epk-hero-badge {
  background: rgba(184, 134, 11, 0.1);
  color: #b8860b;
  border: 1.5px solid #b8860b;
}

[data-theme="light"] .cta-feature-item {
  background: #ffffff;
  border: 1.5px solid rgba(184, 134, 11, 0.35);
  color: #1a1a1e !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

[data-theme="light"] .form-control {
  background: #ffffff;
  color: #1a1a1e;
  border: 1.5px solid rgba(184, 134, 11, 0.45) !important;
}

[data-theme="light"] .form-control:focus {
  background: #ffffff;
  border-color: #b8860b !important;
  box-shadow: 0 0 12px rgba(184, 134, 11, 0.25);
}

[data-theme="light"] .site-header {
  border-bottom: 1.5px solid rgba(184, 134, 11, 0.35);
}

[data-theme="light"] .site-footer {
  border-top: 1.5px solid rgba(184, 134, 11, 0.35);
}

[data-theme="light"] .footer-bottom {
  border-top: 1.5px solid rgba(184, 134, 11, 0.3);
}

[data-theme="light"] .contact-item-icon {
  background: rgba(184, 134, 11, 0.08);
  border: 1.5px solid rgba(184, 134, 11, 0.45);
}

[data-theme="light"] .portrait-card-body {
  border-top: 1.5px solid rgba(184, 134, 11, 0.3);
}

[data-theme="light"] .review-author {
  border-top: 1.5px solid rgba(184, 134, 11, 0.25);
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Optimizations (All Screen Sizes)
   ========================================================================== */

@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }
  
  .nav-container {
    padding: 0 10px;
    gap: 8px;
  }

  .brand-logo {
    gap: 8px;
  }

  .brand-avatar {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
  }

  .brand-title {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .theme-toggle-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .cta-banner-wrapper {
    padding: 24px 16px;
    border-radius: 16px;
    margin: 0 auto;
  }

  .cta-heading {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .cta-subtext {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .cta-badge {
    font-size: 0.68rem;
    padding: 4px 12px;
    letter-spacing: 0.06em;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  .cta-features {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .cta-feature-item {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    font-size: 0.8rem;
    padding: 8px 12px;
    text-align: center;
  }

  .cta-btn-group, .hero-cta-group, .epk-hero-right {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cta-btn-group .btn, 
  .hero-cta-group .btn, 
  .epk-hero-right .btn, 
  .btn-whatsapp, 
  .btn-primary, 
  .btn-outline {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-align: center;
  }

  .epk-header-hero {
    padding: 22px 14px;
    border-radius: 16px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .epk-hero-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .epk-hero-avatar {
    width: 68px;
    height: 68px;
  }

  .epk-hero-name {
    font-size: 2rem;
  }

  .epk-hero-badge {
    font-size: 0.68rem;
    padding: 4px 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  .btn-social-brand {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    margin: 0 auto;
  }

  .floating-whatsapp-container {
    bottom: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-text-p {
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  body {
    padding-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .brand-title {
    display: none;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .nav-actions {
    gap: 6px;
  }

  .cta-heading {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-padding {
    padding: 24px 0;
  }

  .container {
    width: 96%;
    padding: 0 8px;
  }

  .card-grid, .card-grid-3, .card-grid-2, .shows-grid, .video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-card div[style*="grid"], .contact-container {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .contact-info-card, .form-card {
    padding: 20px 14px !important;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .about-grid {
    text-align: center;
  }

  .about-text-p {
    text-align: left;
    font-size: 0.94rem;
  }

  .about-grid .section-tag {
    justify-content: center;
  }
}

