/* ============================================
   Grand Taj Banquet Hall - Premium Website CSS
   Color Palette: Black, Gold, Red
   ============================================ */

/* ============================================
   CSS VARIABLES - COLOR PALETTE
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&display=swap');

:root {
  /* Primary Colors */
  --color-black: #000000;
  --color-black-dark: #000000;
  --color-gold: #D4AF37;
  --color-gold-light: #C9A961;
  --color-red: #B91C1C;
  --color-red-bright: #DC143C;

  /* Neutral Colors */
  --color-light: #F5F5F5;
  --color-white: #FFFFFF;
  --color-dark-text: #1F2937;
  --color-gray: #000000;

  /* Spacing Units */
  --spacing-xs: 16px;
  --spacing-sm: 20px;
  --spacing-md: 24px;
  --spacing-lg: 30px;
  --spacing-xl: 40px;
  --spacing-2xl: 60px;
  --spacing-3xl: 80px;

  /* Typography */
  --font-body: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
  --font-heading: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;

  /* Transitions */
  --transition-smooth: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
}

/* Mobile Typography */
@media (max-width: 767px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.1rem; }
  p { font-size: 0.95rem; }
}

/* Desktop Typography */
@media (min-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-xl) 0;
}

@media (min-width: 768px) {
  .section {
    padding: 50px 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--spacing-2xl) 0;
  }
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--color-gold);
  z-index: 1000;
  padding: var(--spacing-xs) 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 50px;
  width: auto;
}

.logo-image {
  height: 60px;
  width: auto;
  transition: transform var(--transition-smooth);
}

.logo-image:hover {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .logo-image {
    height: 45px;
  }
}

.navbar-logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-gold);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
}

.nav-menu {
  display: none;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-menu.active {
  display: flex;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--color-white);
  font-size: 1rem;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition-smooth);
}

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

.nav-link.active {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-red);
}

/* Dropdown Chevron */
.chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--color-gold);
  margin-left: 5px;
  transition: transform var(--transition-smooth);
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-black);
  min-width: 250px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  border: 1px solid var(--color-gold);
  border-top: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-smooth);
  z-index: 999;
}

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

.dropdown-item {
  padding: 12px var(--spacing-sm);
  color: var(--color-white);
  display: block;
  transition: all var(--transition-smooth);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.dropdown-item:hover {
  background-color: var(--color-gray);
  color: var(--color-gold);
  padding-left: 25px;
  border-left: 3px solid var(--color-red);
}

/* Dropdown Divider */
.dropdown-divider {
  height: 1px;
  background-color: var(--color-gold);
  margin: 10px 0;
}

.dropdown-header {
  padding: 10px var(--spacing-sm);
  color: var(--color-gold);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* Gurdwara Submenu Items - Slightly Indented */
.dropdown-item.submenu-item {
  padding-left: 30px;
  font-size: 0.95rem;
}

.dropdown-item.submenu-item:hover {
  padding-left: 35px;
}

/* Contact Info in Navbar */
.navbar-contact {
  display: none;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-gold);
  font-size: 0.9rem;
}

.navbar-contact a {
  color: var(--color-gold);
}

.navbar-contact a:hover {
  color: var(--color-red);
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-gold);
  transition: all var(--transition-smooth);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .nav-menu {
    display: flex;
  }

  .navbar-contact {
    display: flex;
  }
}

/* Mobile Navigation Overlay */
@media (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-black);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-lg);
    gap: 0;
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--color-gray);
  }

  .nav-link {
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    min-height: 44px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: none;
    border: none;
    background-color: var(--color-black-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
  }

  .nav-item.dropdown-open .dropdown-menu {
    max-height: 1000px;
  }

  .nav-item.dropdown-open .chevron {
    transform: rotate(180deg);
  }

  .dropdown-item {
    padding: 12px var(--spacing-sm);
    min-height: 44px;
  }

  .dropdown-item.submenu-item {
    padding-left: var(--spacing-lg);
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background-color: #991515;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(185, 28, 28, 0.3);
}

.btn-secondary {
  background-color: var(--color-black);
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-secondary:hover {
  background-color: var(--color-gray);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--color-gold);
  border: none;
  padding: 0;
  text-transform: none;
}

.btn-tertiary:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: var(--color-red);
}

.btn:active {
  transform: scale(0.98);
}

/* Mobile Button Sizing */
@media (max-width: 767px) {
  .btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--color-black);
  border-left: 4px solid var(--color-gold);
  border-radius: 4px;
  padding: var(--spacing-lg);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
  transition: all var(--transition-smooth);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  border-left-color: var(--color-red);
}

.card-title {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.card-text {
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.6;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: var(--spacing-sm);
}

/* Featured Card */
.card-featured {
  border-left: 4px solid var(--color-red);
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.2);
}

.card-featured:hover {
  border-left-color: var(--color-gold);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-dark) 100%);
  position: relative;
  padding: var(--spacing-2xl) var(--spacing-sm);
  margin-top: 0;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo {
  max-width: 200px;
  margin: 0 auto var(--spacing-lg);
}

.hero-title {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-white);
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-lg);
  font-weight: normal;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.2);
}

.scroll-indicator span {
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--color-gold);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

/* Mobile Hero */
@media (max-width: 767px) {
  .hero {
    min-height: 60vh;
    padding: var(--spacing-xl) var(--spacing-sm);
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* ============================================
   PAGE HERO (Smaller Hero for Interior Pages)
   ============================================ */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-dark) 100%);
  padding: var(--spacing-xl) var(--spacing-sm);
  margin-top: 70px;
  border-bottom: 2px solid var(--color-gold);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.page-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: var(--spacing-xs);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.page-hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-light);
  font-weight: normal;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 30vh;
  }

  .page-hero-title {
    font-size: 1.75rem;
  }

  .page-hero-subtitle {
    font-size: 1rem;
  }
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
  display: grid;
  gap: var(--spacing-sm);
}

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

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

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: var(--spacing-xl);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-light);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background-color: var(--color-black-dark);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-lg);
  background-color: var(--color-black);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  transition: all var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  color: var(--color-gold);
  font-weight: bold;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1rem;
  color: var(--color-white);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-dark) 100%);
  position: relative;
  overflow: hidden;
}

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

.features-section .container {
  position: relative;
  z-index: 1;
}

.feature-card {
  background: #000000;
  border-left: 5px solid var(--color-gold);
  padding: var(--spacing-xl);
  border-radius: 8px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.4);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(185, 28, 28, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3), 0 0 80px rgba(212, 175, 55, 0.1);
  border-color: var(--color-red);
  border-left-width: 6px;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-md);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  transition: all 0.4s ease;
}

.feature-card:hover .icon-circle {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(185, 28, 28, 0.2) 70%);
  border-color: var(--color-red);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), inset 0 8px 35px rgba(212, 175, 55, 0.5), 0 0 80px rgba(185, 28, 28, 0.7);
  transform: scale(1.05);
}

/* Premium Icon Styles - Lucide Icons - Perfect Fit */
.icon-circle i {
  width: 120px;
  height: 120px;
  color: var(--color-gold);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 15px 45px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
  transform-origin: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i svg {
  width: 120px;
  height: 120px;
  stroke-width: 1.5;
}

.feature-card:hover .icon-circle i {
  transform: perspective(1000px) rotateX(360deg) rotateY(360deg) scale(1.3);
  filter: drop-shadow(0 20px 50px rgba(212, 175, 55, 1)) drop-shadow(0 0 40px rgba(185, 28, 28, 0.8));
  color: var(--color-red);
  animation: dramaticTwirl 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes dramaticTwirl {
  0% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.7)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
  }
  25% {
    transform: perspective(1000px) rotateX(90deg) rotateY(90deg) scale(1.15);
    filter: drop-shadow(0 15px 40px rgba(212, 175, 55, 0.9)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.7));
  }
  50% {
    transform: perspective(1000px) rotateX(180deg) rotateY(180deg) scale(1.25);
    filter: drop-shadow(0 20px 50px rgba(185, 28, 28, 1)) drop-shadow(0 0 40px rgba(185, 28, 28, 0.8));
  }
  75% {
    transform: perspective(1000px) rotateX(270deg) rotateY(270deg) scale(1.15);
    filter: drop-shadow(0 15px 40px rgba(212, 175, 55, 0.9)) drop-shadow(0 0 30px rgba(185, 28, 28, 0.7));
  }
  100% {
    transform: perspective(1000px) rotateX(360deg) rotateY(360deg) scale(1.3);
    filter: drop-shadow(0 20px 50px rgba(212, 175, 55, 1)) drop-shadow(0 0 40px rgba(185, 28, 28, 0.8));
  }
}

/* Legacy support for old animated icons */
.premium-icon {
  width: 56px;
  height: 56px;
  color: var(--color-gold);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
  stroke-width: 2.5;
  transform-origin: center;
}

.feature-card:hover .premium-icon {
  transform: perspective(600px) rotateX(360deg) rotateY(360deg) scale(1.07);
  filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.6));
  color: var(--color-white);
  animation: twirl 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Legacy support for old animated icons */
.animated-icon {
  width: 48px;
  height: 48px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
  stroke-width: 1.5;
}

.feature-card:hover .animated-icon {
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.4));
}

/* Icon Background Circle - Premium Design */
.icon-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(31, 31, 31, 0.95) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-xl);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  border: 4px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 4px 20px rgba(212, 175, 55, 0.2), 0 0 40px rgba(212, 175, 55, 0.4);
}

.icon-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-red));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.icon-circle::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.feature-card:hover .icon-circle::before {
  opacity: 1;
  animation: borderRotate 3s linear infinite;
}

.feature-card:hover .icon-circle::after {
  opacity: 1;
}

@keyframes borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.feature-card:hover .icon-circle {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(185, 28, 28, 0.15));
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.35), 0 0 80px rgba(212, 175, 55, 0.15);
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(212, 175, 55, 0.5);
}

/* Clipboard Icon Animation - Smooth Float */
@keyframes clipboardFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.02); }
}

.icon-clipboard {
  animation: clipboardFloat 3s ease-in-out infinite;
}

.feature-card:hover .icon-clipboard {
  animation: clipboardFloat 1.5s ease-in-out infinite;
}

/* Utensils Icon Animation - Gentle Sway */
@keyframes utensilsSway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

.icon-utensils {
  animation: utensilsSway 4s ease-in-out infinite;
}

.feature-card:hover .icon-utensils {
  animation: utensilsSway 2s ease-in-out infinite;
}

/* Palette Icon Animation - Gentle Spin */
@keyframes paletteFloat {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-2px); }
}

.icon-palette {
  animation: paletteFloat 3s ease-in-out infinite;
}

.feature-card:hover .icon-palette {
  animation: paletteFloat 1.5s ease-in-out infinite;
}

/* Music Icon Animation - Subtle Pulse */
@keyframes musicPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.icon-music {
  animation: musicPulse 2.5s ease-in-out infinite;
}

.feature-card:hover .icon-music {
  animation: musicPulse 1.2s ease-in-out infinite;
}

/* Chef Icon Animation - Subtle Float */
@keyframes chefFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.icon-chef {
  animation: chefFloat 3s ease-in-out infinite;
}

.feature-card:hover .icon-chef {
  animation: chefFloat 1.5s ease-in-out infinite;
}

/* Settings Icon Animation - Slow Rotate */
@keyframes settingsRotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.icon-settings {
  animation: settingsRotate 8s ease-in-out infinite;
}

.feature-card:hover .icon-settings {
  animation: settingsRotate 4s ease-in-out infinite;
}

/* Snowflake Icon Animation - Slow Spin */
@keyframes snowflakeSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.icon-snowflake {
  animation: snowflakeSpin 12s linear infinite;
}

.feature-card:hover .icon-snowflake {
  animation: snowflakeSpin 6s linear infinite;
}

/* Car Icon Animation - Smooth Slide */
@keyframes carSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.icon-car {
  animation: carSlide 3s ease-in-out infinite;
}

.feature-card:hover .icon-car {
  animation: carSlide 1.5s ease-in-out infinite;
}

/* Kitchen Icon Animation - Gentle Sway */
@keyframes kitchenSway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}

.icon-kitchen {
  animation: kitchenSway 4s ease-in-out infinite;
}

.feature-card:hover .icon-kitchen {
  animation: kitchenSway 2s ease-in-out infinite;
}

/* Audio Icon Animation - Subtle Wave */
@keyframes audioWave {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-1px); }
}

.icon-audio {
  animation: audioWave 2s ease-in-out infinite;
}

.feature-card:hover .icon-audio {
  animation: audioWave 1s ease-in-out infinite;
}

/* Sparkle Icon Animation - Gentle Shine */
@keyframes sparkleShine {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.85; transform: scale(1.05) rotate(45deg); }
}

.icon-sparkle {
  animation: sparkleShine 3s ease-in-out infinite;
}

.feature-card:hover .icon-sparkle {
  animation: sparkleShine 1.5s ease-in-out infinite;
}

/* Users Icon Animation - Subtle Float */
@keyframes usersFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.icon-users {
  animation: usersFloat 3s ease-in-out infinite;
}

.feature-card:hover .icon-users {
  animation: usersFloat 1.5s ease-in-out infinite;
}

/* Star Icon Animation - Elegant Pulse */
@keyframes starPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.08) rotate(15deg); opacity: 0.9; }
}

.icon-star {
  animation: starPulse 4s ease-in-out infinite;
}

.feature-card:hover .icon-star {
  animation: starPulse 2s ease-in-out infinite;
}

/* Location Pin Animation - Smooth Bounce */
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.icon-pin {
  animation: pinBounce 2.5s ease-in-out infinite;
}

/* Phone Icon Animation - Gentle Ring */
@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-8deg); }
  20%, 40% { transform: rotate(8deg); }
  50%, 100% { transform: rotate(0deg); }
}

.icon-phone {
  animation: phoneRing 4s ease-in-out infinite;
}

/* Envelope Icon Animation - Smooth Float */
@keyframes envelopeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.icon-envelope {
  animation: envelopeFloat 3s ease-in-out infinite;
}

/* Clock Icon Animation - Smooth Tick */
@keyframes clockTick {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.icon-clock {
  animation: clockTick 8s linear infinite;
}

/* Globe Icon Animation - Gentle Spin */
@keyframes globeSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.icon-globe {
  animation: globeSpin 10s linear infinite;
}

/* Leaf Icon Animation - Natural Sway */
@keyframes leafSway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

.icon-leaf {
  animation: leafSway 4s ease-in-out infinite;
}

.feature-card:hover .icon-leaf {
  animation: leafSway 2s ease-in-out infinite;
}

/* Flame Icon Animation - Natural Flicker */
@keyframes flameFlicker {
  0%, 100% { transform: scale(1) translateY(0); }
  25% { transform: scale(1.03) translateY(-1px); }
  50% { transform: scale(0.98) translateY(1px); }
  75% { transform: scale(1.02) translateY(-1px); }
}

.icon-flame {
  animation: flameFlicker 2s ease-in-out infinite;
}

.feature-card:hover .icon-flame {
  animation: flameFlicker 1s ease-in-out infinite;
}

.feature-title {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.feature-text {
  color: var(--color-white);
  line-height: 1.6;
}

/* ============================================
   HALLS SECTION
   ============================================ */
.halls-section {
  background-color: var(--color-gray);
}

.hall-card {
  background-color: var(--color-black);
  border-left: 4px solid var(--color-gold);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hall-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s;
}

.hall-card:hover {
  animation: float 0.6s ease-in-out;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  border-color: var(--color-red);
}

.hall-card:hover::before {
  left: 100%;
}

.hall-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.2), 0 8px 25px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
}

.hall-image::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.hall-content {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hall-name {
  color: var(--color-gold);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hall-capacity {
  color: var(--color-gold);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.5px;
}

.hall-description {
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.hall-features {
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.hall-features li {
  color: var(--color-white);
  padding: 5px 0;
  padding-left: var(--spacing-sm);
  position: relative;
}

.hall-features li:before {
  content: "•";
  color: var(--color-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  padding: var(--spacing-2xl) var(--spacing-sm);
  text-align: center;
}

.cta-title {
  color: var(--color-black);
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

.cta-text {
  color: var(--color-black);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

.cta-button {
  background-color: var(--color-black);
  color: var(--color-gold);
  border: 2px solid var(--color-black);
}

.cta-button:hover {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-black);
}

.cta-secondary {
  display: block;
  margin-top: var(--spacing-sm);
  color: var(--color-white);
  text-decoration: underline;
}

/* ============================================
   MENU GRID
   ============================================ */
.menu-grid {
  display: grid;
  gap: var(--spacing-sm);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  background-color: var(--color-black);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  padding: 25px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s;
}

.menu-card:hover {
  animation: float 0.6s ease-in-out;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  border-color: var(--color-red);
}

.menu-card:hover::before {
  left: 100%;
}

.menu-card-name {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.menu-card-description {
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.menu-card-highlights {
  margin-bottom: var(--spacing-sm);
}

.menu-card-highlights li {
  color: var(--color-white);
  padding: 5px 0;
  padding-left: var(--spacing-sm);
  position: relative;
}

.menu-card-highlights li:before {
  content: "•";
  color: var(--color-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.menu-card-price {
  color: var(--color-gold);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   INDIVIDUAL MENU PAGES
   ============================================ */
.breadcrumb {
  margin-top: 80px;
  padding: var(--spacing-sm) 0;
  font-size: 0.9rem;
  color: var(--color-gold);
}

.breadcrumb a {
  color: var(--color-gold);
}

.breadcrumb a:hover {
  color: var(--color-red);
}

.breadcrumb span {
  margin: 0 10px;
  color: var(--color-white);
}

.menu-overview {
  background-color: var(--color-black);
  padding: var(--spacing-lg);
  border-left: 4px solid var(--color-gold);
  margin-bottom: var(--spacing-xl);
  border-radius: 4px;
}

.menu-section {
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(43, 43, 43, 0.98) 100%);
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(185, 28, 28, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.menu-section:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.3), inset 0 2px 15px rgba(212, 175, 55, 0.15);
  background: linear-gradient(135deg, rgba(43, 43, 43, 1) 0%, rgba(31, 31, 31, 1) 100%);
}

.menu-section:hover::before {
  opacity: 1;
}

.menu-section-title {
  color: var(--color-gold);
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  border-bottom: 3px solid var(--color-gold);
  padding-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 0 2px 15px rgba(212, 175, 55, 0.4);
  position: relative;
  z-index: 1;
}

.menu-items {
  display: grid;
  gap: 15px;
}

.menu-item {
  color: var(--color-white);
  padding: 12px 15px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.menu-item:hover {
  background: rgba(212, 175, 55, 0.15);
  border-left-color: var(--color-gold);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.menu-item-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.menu-item:hover .menu-item-name {
  color: var(--color-gold);
}

.menu-item-special {
  color: var(--color-red);
  font-weight: bold;
}

.menu-item-note {
  color: var(--color-gold);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 5px;
}

.menu-selection-note {
  color: var(--color-gold);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
  padding: 12px 25px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 6px 6px 0;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  position: relative;
  z-index: 1;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--color-black);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.gallery-grid {
  display: grid;
  gap: var(--spacing-sm);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  height: 300px;
  background: linear-gradient(135deg, var(--color-black-dark) 0%, var(--color-gray) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

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

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

.gallery-item:hover {
  border: 2px solid var(--color-gold);
}

/* ============================================
   TESTIMONIALS CAROUSEL - HIGH-END SLIDESHOW
   ============================================ */
.testimonials-carousel-section {
  background: linear-gradient(180deg, var(--color-black-dark) 0%, var(--color-black) 50%, var(--color-black-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
}

.carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 100px;
}

.testimonials-carousel {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: visible;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 10;
}

.carousel-slide.prev {
  opacity: 0;
  transform: translateX(-100%);
}

.carousel-slide.next {
  opacity: 0;
  transform: translateX(100%);
}

.testimonial-content {
  background: #000000;
  border: 3px solid var(--color-gold);
  border-radius: 20px;
  padding: 60px 70px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 120px rgba(212, 175, 55, 0.2), inset 0 0 40px rgba(212, 175, 55, 0.5);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  min-height: 500px;
  max-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(185, 28, 28, 0.02) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.carousel-slide.active .testimonial-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.8), 0 0 150px rgba(212, 175, 55, 0.3), inset 0 3px 25px rgba(212, 175, 55, 0.15);
  border-color: var(--color-red);
}

.carousel-slide.active .testimonial-content:hover::before {
  opacity: 1.5;
}

.quote-icon {
  display: none;
}

.quote-icon i {
  width: 60px;
  height: 60px;
}

.testimonial-quote {
  color: var(--color-white);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.9;
  margin: 0 0 30px 0;
  padding-left: 0;
  padding-top: 0;
  font-weight: 400;
  letter-spacing: 0.03em;
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.testimonial-meta {
  border-top: 3px solid rgba(212, 175, 55, 0.4);
  padding-top: 30px;
  text-align: left;
  margin-top: auto;
}

.testimonial-author {
  color: var(--color-gold);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.testimonial-event {
  color: var(--color-light);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 500;
  opacity: 0.9;
}

.testimonial-rating {
  color: var(--color-gold);
  font-size: 1.3rem;
  letter-spacing: 4px;
  text-shadow: 0 2px 15px rgba(212, 175, 55, 0.5);
}

/* Carousel Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-black);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.carousel-nav:hover {
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, var(--color-red), var(--color-red-bright));
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav i {
  width: 28px;
  height: 28px;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 50px;
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.3);
  border: 2px solid var(--color-gold);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
  margin: 0;
  position: relative;
}

.carousel-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: var(--color-gold);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.carousel-dot:hover {
  background-color: rgba(212, 175, 55, 0.6);
  transform: scale(1.3);
  border-width: 3px;
}

.carousel-dot.active {
  background-color: var(--color-gold);
  transform: scale(1.5);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  animation: dotPulse 2.5s ease-in-out infinite;
}

.carousel-dot.active::before {
  width: 8px;
  height: 8px;
}

@keyframes dotPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 1);
  }
}

/* Mobile adjustments for carousel */
@media (max-width: 768px) {
  .carousel-wrapper {
    padding: 0 60px;
  }

  .testimonial-content {
    padding: 35px 30px;
  }

  .quote-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
  }

  .quote-icon i {
    width: 45px;
    height: 45px;
  }

  .testimonial-quote {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  .testimonial-author {
    font-size: 1.1rem;
  }

  .testimonial-event {
    font-size: 0.95rem;
  }

  .carousel-nav {
    width: 45px;
    height: 45px;
  }

  .carousel-nav i {
    width: 22px;
    height: 22px;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }

  .carousel-indicators {
    margin-top: 40px;
    gap: 12px;
  }

  .carousel-dot {
    width: 12px;
    height: 12px;
  }
}

/* ============================================
   TESTIMONIALS SLIDER (Legacy)
   ============================================ */
.bg-black {
  position: relative;
}

.bg-black.section {
  background: linear-gradient(180deg, var(--color-black-dark) 0%, var(--color-black) 50%, var(--color-black-dark) 100%);
}

.testimonials-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
  padding: var(--spacing-sm) 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: var(--spacing-lg);
}

.testimonial-slide {
  min-width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .testimonial-slide {
    min-width: calc(50% - var(--spacing-lg) / 2);
  }
}

@media (min-width: 1024px) {
  .testimonial-slide {
    min-width: calc(33.333% - var(--spacing-lg) * 2 / 3);
  }
}

.testimonial-card {
  background-color: var(--color-black);
  border-left: 4px solid var(--color-gold);
  padding: var(--spacing-xl);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 350px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
  border-left-color: var(--color-red);
}

.testimonial-quote {
  color: var(--color-white);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  line-height: 1.9;
  font-size: 1.05rem;
  flex-grow: 1;
  position: relative;
  padding-top: 25px;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.2;
  position: absolute;
  top: -15px;
  left: -10px;
  font-family: Georgia, serif;
}

.testimonial-author {
  color: var(--color-gold);
  font-weight: bold;
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.testimonial-event {
  color: var(--color-light);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-xs);
}

.testimonial-rating {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-top: var(--spacing-xs);
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-black);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--color-red), var(--color-red-bright));
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev {
  left: 0;
}

.slider-btn-next {
  right: 0;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: var(--spacing-xl);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.3);
  border: 2px solid var(--color-gold);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot:hover {
  background-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.2);
}

.slider-dot.active {
  background-color: var(--color-gold);
  transform: scale(1.3);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .testimonials-slider-container {
    padding: 0 50px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.map-container {
  width: 100%;
  margin: var(--spacing-xl) 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
  transition: all var(--transition-smooth);
}

.map-container:hover {
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.map-container iframe {
  width: 100%;
  min-height: 450px;
  display: block;
}

@media (max-width: 767px) {
  .map-container iframe {
    min-height: 350px;
  }
}

.contact-layout {
  display: grid;
  gap: var(--spacing-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  background-color: var(--color-black);
  padding: var(--spacing-lg);
  border-radius: 4px;
  border-left: 4px solid var(--color-gold);
}

.contact-item {
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-md) 0;
}

.contact-item-title {
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item-text {
  color: var(--color-white);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: var(--spacing-xs);
}

.contact-item-text a {
  color: var(--color-gold);
}

.contact-item-text a:hover {
  color: var(--color-red);
}

.contact-form {
  background-color: var(--color-black);
  padding: var(--spacing-lg);
  border-radius: 4px;
  border-left: 4px solid var(--color-gold);
}

.form-title {
  color: var(--color-gold);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-label {
  display: block;
  color: var(--color-gold);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  background-color: var(--color-black-dark);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 10px rgba(185, 28, 28, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
}

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

.form-submit {
  width: 100%;
  background-color: var(--color-red);
  color: var(--color-white);
  border: 2px solid var(--color-gold);
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-submit:hover {
  background-color: #991515;
  border-color: var(--color-red);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-black);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  border-top: 2px solid var(--color-gold);
}

.footer-content {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: 1fr;
  margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section {
  color: var(--color-white);
}

.footer-title {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xs);
}

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

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

.footer-links a {
  color: var(--color-white);
  font-size: 0.95rem;
  transition: all var(--transition-smooth);
}

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

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gold);
  color: var(--color-black);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--color-red);
  color: var(--color-white);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--color-gray);
}

.footer-copyright {
  color: var(--color-gold);
  font-size: 0.9rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

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

.text-red {
  color: var(--color-red);
}

.text-white {
  color: var(--color-white);
}

.bg-black {
  background-color: var(--color-black);
}

.bg-gray {
  background-color: var(--color-gray);
}

/* Force black background for menu pages */
section.bg-black {
  background-color: var(--color-black) !important;
  background-image: none !important;
  position: relative;
}

section.bg-black::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  z-index: 0;
}

section.bg-black .container {
  position: relative;
  z-index: 1;
}

.menu-overview {
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(43, 43, 43, 0.7) 0%, rgba(31, 31, 31, 0.8) 100%);
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.bg-dark {
  background-color: var(--color-black-dark);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

/* ============================================
   FLOATING PHONE BUTTON
   ============================================ */
.floating-phone-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
  z-index: 999;
  transition: all var(--transition-smooth);
  animation: phoneFloat 3s ease-in-out infinite;
}

.floating-phone-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.7);
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-bright) 100%);
}

.floating-phone-btn svg {
  color: var(--color-black);
  transition: transform var(--transition-smooth);
}

.floating-phone-btn:hover svg {
  transform: rotate(15deg);
}

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

/* Pulse animation for attention */
.floating-phone-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-gold);
  animation: phonePulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes phonePulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .floating-phone-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .floating-phone-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   RESPONSIVE HELPERS
   ============================================ */
.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
  }
}
