/*
* ONE NIGHTCLUB DUBAI - Mobile-First Optimized Stylesheet
* Version: 2.0.0 - Lightweight & Clean
* Last Updated: 2025-09-26
*/

/* ===== CSS VARIABLES - MOBILE FIRST ===== */
:root {
  /* Colors - Optimized for mobile */
  --primary-color: #6a11cb;
  --secondary-color: #121212;
  --dark-color: #121212;
  --light-color: #ffffff;
  --gray-color: #f5f5f5;
  --text-color: #333333;
  --text-light: #ffffff;
  --text-muted: #888888;
  --border-color: #e0e0e0;
  --overlay-color: rgba(0, 0, 0, 0.7);
  --gradient-primary: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --accent-color: #e91e63;

  /* Typography - Mobile optimized */
  --font-primary: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-xxl: 28px;
  --font-size-hero: 32px;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;

  /* Spacing - Mobile optimized */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;

  /* Layout */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --container-padding: 20px;
  --container-width: 100%;

  /* Effects */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--dark-color);
  overflow-x: hidden;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-normal);
  font-weight: 500; /* Slightly bolder for better readability */
  position: relative;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: underline; /* Add underline on hover for better accessibility */
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

h1 {
  font-family: var(--font-display);
  font-size: var(--font-size-hero);
  letter-spacing: -0.5px;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-xxl);
  letter-spacing: -0.3px;
}

h3 {
  font-family: var(--font-primary);
  font-size: var(--font-size-xl);
  letter-spacing: -0.2px;
}

h4 {
  font-size: var(--font-size-lg);
}

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

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

.section-title {
  position: relative;
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: var(--spacing-md) auto 0;
}

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

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

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  text-align: center;
  margin-top: -20px;
  margin-bottom: var(--spacing-lg);
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.8);
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-normal);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo a {
  display: block;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
}

.nav-list li {
  margin: 0 var(--spacing-md);
}

.nav-list a {
  color: var(--text-light);
  font-weight: 600;
  padding: 8px 0;
  position: relative;
}

.nav-list a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

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

.menu-toggle {
  display: none;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  margin-left: var(--spacing-lg);
}

.current-lang {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-sm);
}

.current-lang:after {
  content: '▼';
  font-size: 8px;
  margin-left: 5px;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--dark-color);
  border-radius: var(--border-radius-sm);
  padding: var(--spacing-xs);
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 10;
}

.language-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  margin: 5px 0;
}

.lang-dropdown a {
  display: block;
  padding: 5px 10px;
  color: var(--text-light);
  transition: background-color var(--transition-fast);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

/* Hero slide background images */
.hero-slide:nth-child(1) {
  background-image: url('/assets/images/heroes/hero-1.jpg');
}

.hero-slide:nth-child(2) {
  background-image: url('/assets/images/heroes/hero-2.jpg');
}

.hero-slide:nth-child(3) {
  background-image: url('/assets/images/heroes/hero-3.jpg');
}

.hero-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 var(--spacing-lg);
}

.hero-title {
  font-size: var(--font-size-hero);
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-slide.active .hero-title,
.hero-slide.active .hero-subtitle,
.hero-slide.active .btn {
  animation-play-state: running;
}

.hero-slide .btn {
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.slider-prev,
.slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.slider-prev:before,
.slider-next:before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--text-light);
  border-right: 2px solid var(--text-light);
  display: block;
}

.slider-prev:before {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.slider-next:before {
  transform: rotate(45deg);
  margin-right: 5px;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: var(--primary-color);
}

.slider-dots {
  display: flex;
  margin: 0 var(--spacing-md);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  transition: all var(--transition-normal);
}

.dot.active,
.dot:hover {
  background-color: var(--primary-color);
}

/* ===== FEATURED EVENTS ===== */
.featured-events {
  background-color: var(--dark-color);
  color: var(--text-light);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.event-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.event-date {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px;
  border-radius: var(--border-radius-sm);
  text-align: center;
  line-height: 1.2;
}

.event-date .day {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.event-date .month {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
}

.event-details {
  padding: var(--spacing-lg);
}

.event-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

.event-time {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

.icon-time {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../images/icons/clock.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}

.event-description {
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.8);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: var(--gray-color);
  color: var(--text-color);
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-text p {
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-lg);
}

.about-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== VIP SECTION ===== */
.vip-section {
  background-image: url('/assets/images/vip/vip-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: var(--text-light);
}

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

.vip-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.vip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.vip-feature {
  background-color: rgba(0, 0, 0, 0.5);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: transform var(--transition-normal);
}

.vip-feature:hover {
  transform: translateY(-10px);
}

.feature-icon {
  margin: 0 auto var(--spacing-md);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.vip-feature h3 {
  margin-bottom: var(--spacing-sm);
}

.vip-feature p {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
  background-color: var(--dark-color);
  color: var(--text-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

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

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

.gallery-item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: var(--gray-color);
}

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

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 1s ease;
}

.testimonial-content {
  background-color: var(--light-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-rating {
  color: var(--secondary-color);
  font-size: 24px;
  margin-bottom: var(--spacing-md);
}

.testimonial-text {
  font-size: var(--font-size-lg);
  font-style: italic;
  color: var(--text-color);
  margin-bottom: var(--spacing-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: var(--spacing-md);
}

.author-info h4 {
  margin-bottom: 0;
  color: var(--text-color);
}

.author-info p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-lg);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group {
  display: flex;
  margin-bottom: var(--spacing-md);
}

.form-group input {
  flex: 1;
  padding: 15px;
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  border: none;
}

.form-group button {
  padding: 0 30px;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  background-color: var(--dark-color);
  color: var(--text-light);
  font-weight: 600;
  transition: background-color var(--transition-normal);
}

.form-group button:hover {
  background-color: var(--secondary-color);
}

.form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.form-check input {
  margin-right: var(--spacing-sm);
}

.form-check label {
  font-size: var(--font-size-sm);
}

.form-message {
  min-height: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--dark-color);
  color: var(--text-light);
}

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

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

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.contact-icon {
  margin-right: var(--spacing-md);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-text h3 {
  margin-bottom: var(--spacing-xs);
  font-size: var(--font-size-lg);
}

.contact-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.contact-text a {
  color: rgba(255, 255, 255, 0.8);
}

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

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.contact-map {
  height: 100%;
  min-height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== LIVE CHAT WIDGET ===== */
.live-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.chat-toggle {
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.chat-toggle img {
  margin-right: 8px;
}

.chat-toggle:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.chat-container {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: none;
}

.chat-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  margin-bottom: 0;
}

.chat-close {
  font-size: 24px;
  color: var(--text-light);
  background: none;
  border: none;
}

.chat-messages {
  height: 300px;
  padding: var(--spacing-md);
  overflow-y: auto;
}

.message {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-md);
  max-width: 80%;
}

.message.system {
  background-color: var(--gray-color);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.message.user {
  background-color: var(--primary-color);
  color: var(--text-light);
  margin-left: auto;
}

.message.agent {
  background-color: var(--gray-color);
  margin-right: auto;
}

.chat-form {
  display: flex;
  border-top: 1px solid var(--border-color);
  padding: var(--spacing-sm);
}

.chat-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  margin-right: var(--spacing-sm);
}

.chat-form button {
  background-color: var(--primary-color);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-normal);
}

.chat-form button:hover {
  background-color: var(--secondary-color);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #0a0a0a;
  color: var(--text-light);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--spacing-md);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.footer-column h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.footer-column h3:after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  margin-top: var(--spacing-sm);
}

.footer-column ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-normal);
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

.payment-methods {
  display: flex;
  gap: var(--spacing-sm);
}

/* ===== BACK TO TOP BUTTON ===== */
#back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 99;
}

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

#back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/* ===== FIXED CONTACT BUTTONS ===== */
.fixed-contact-buttons {
  position: fixed;
  bottom: 110px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.whatsapp-button,
.phone-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.whatsapp-button {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.whatsapp-button:hover,
.phone-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  width: 180px;
  border-radius: 30px;
}

.button-text {
  opacity: 0;
  margin-left: 10px;
  white-space: nowrap;
  transition: opacity var(--transition-normal);
  font-size: 14px;
  font-weight: 600;
}

.whatsapp-button:hover .button-text,
.phone-button:hover .button-text {
  opacity: 1;
}

.whatsapp-button img,
.phone-button img {
  transition: transform var(--transition-normal);
  filter: invert(1);
}

.whatsapp-button:hover img,
.phone-button:hover img {
  transform: scale(1.1);
}

/* WhatsApp icon inline SVG replacement */
.whatsapp-button::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.516'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.whatsapp-button img {
  display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .fixed-contact-buttons {
    bottom: 90px;
    right: 20px;
    gap: 12px;
  }
  
  .whatsapp-button,
  .phone-button {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-button:hover,
  .phone-button:hover {
    width: 55px;
    border-radius: 50%;
  }
  
  .button-text {
    display: none;
  }
  
  #back-to-top {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: var(--spacing-md);
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cookie-content p {
  color: var(--text-light);
  margin-bottom: 0;
  margin-right: var(--spacing-lg);
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-md);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ICON SYSTEM ===== */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.icon-small {
  width: 16px;
  height: 16px;
}

.icon-medium {
  width: 32px;
  height: 32px;
}

.icon-large {
  width: 48px;
  height: 48px;
}

.icon-xl {
  width: 64px;
  height: 64px;
}

/* Social Media Icons */
.icon-instagram {
  background-image: url('/assets/images/icons/instagram.svg');
}

.icon-facebook {
  background-image: url('/assets/images/icons/facebook.svg');
}

.icon-twitter {
  background-image: url('/assets/images/icons/twitter.svg');
}

.icon-snapchat {
  background-image: url('/assets/images/icons/snapchat.svg');
}

/* Navigation Icons */
.icon-menu {
  background-image: url('/assets/images/icons/menu.svg');
}

.icon-close {
  background-image: url('/assets/images/icons/close.svg');
}

.icon-arrow-left {
  background-image: url('/assets/images/icons/arrow-left.svg');
}

.icon-arrow-right {
  background-image: url('/assets/images/icons/arrow-right.svg');
}

.icon-arrow-up {
  background-image: url('/assets/images/icons/arrow-up.svg');
}

.icon-arrow-down {
  background-image: url('/assets/images/icons/arrow-down.svg');
}

/* Contact Icons */
.icon-phone {
  background-image: url('/assets/images/icons/phone.svg');
}

.icon-email {
  background-image: url('/assets/images/icons/email.svg');
}

.icon-location {
  background-image: url('/assets/images/icons/location.svg');
}

.icon-clock {
  background-image: url('/assets/images/icons/clock.svg');
}

/* Feature Icons */
.icon-star {
  background-image: url('/assets/images/icons/star.svg');
}

.icon-heart {
  background-image: url('/assets/images/icons/heart.svg');
}

.icon-calendar {
  background-image: url('/assets/images/icons/calendar.svg');
}

.icon-users {
  background-image: url('/assets/images/icons/users.svg');
}

.icon-ticket {
  background-image: url('/assets/images/icons/ticket.svg');
}

/* VIP Icons */
.icon-crown {
  background-image: url('/assets/images/icons/crown.svg');
}

.icon-diamond {
  background-image: url('/assets/images/icons/diamond.svg');
}

.icon-champagne {
  background-image: url('/assets/images/icons/champagne.svg');
}

.icon-service {
  background-image: url('/assets/images/icons/service.svg');
}

.icon-parking {
  background-image: url('/assets/images/icons/parking.svg');
}

.icon-food {
  background-image: url('/assets/images/icons/food.svg');
}

.icon-entrance {
  background-image: url('/assets/images/icons/entrance.svg');
}

/* Payment Icons */
.icon-visa {
  background-image: url('/assets/images/icons/payment/visa.svg');
}

.icon-mastercard {
  background-image: url('/assets/images/icons/payment/mastercard.svg');
}

.icon-amex {
  background-image: url('/assets/images/icons/payment/amex.svg');
}

/* Gallery Icons */
.icon-camera {
  background-image: url('/assets/images/icons/camera.svg');
}

.icon-play {
  background-image: url('/assets/images/icons/play.svg');
}

.icon-gallery {
  background-image: url('/assets/images/icons/gallery.svg');
}

/* Form Icons */
.icon-send {
  background-image: url('/assets/images/icons/send.svg');
}

.icon-check {
  background-image: url('/assets/images/icons/check.svg');
}

.icon-error {
  background-image: url('/assets/images/icons/error.svg');
}

.icon-info {
  background-image: url('/assets/images/icons/info.svg');
}

/* Chat Icons */
.icon-chat {
  background-image: url('/assets/images/icons/chat.svg');
}

.icon-message {
  background-image: url('/assets/images/icons/message.svg');
}

/* Utility Icons */
.icon-search {
  background-image: url('/assets/images/icons/search.svg');
}

.icon-filter {
  background-image: url('/assets/images/icons/filter.svg');
}

.icon-download {
  background-image: url('/assets/images/icons/download.svg');
}

.icon-share {
  background-image: url('/assets/images/icons/share.svg');
}

.icon-bookmark {
  background-image: url('/assets/images/icons/bookmark.svg');
}

.icon-flag {
  background-image: url('/assets/images/icons/flag.svg');
}

.icon-language {
  background-image: url('/assets/images/icons/language.svg');
}

.icon-lock {
  background-image: url('/assets/images/icons/lock.svg');
}

.icon-security {
  background-image: url('/assets/images/icons/security.svg');
}

.icon-loading {
  background-image: url('/assets/images/icons/loading.svg');
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Icon with Text */
.icon-with-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-with-text .icon {
  flex-shrink: 0;
}

/* Icon Buttons */
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.icon-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.icon-button.primary:hover {
  background-color: var(--primary-color);
}

/* Icon Status Indicators */
.icon-status {
  position: relative;
}

.icon-status::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--light-color);
}

.icon-status.online::after {
  background-color: #4caf50;
}

.icon-status.offline::after {
  background-color: #f44336;
}

.icon-status.away::after {
  background-color: #ff9800;
}

/* Icon Groups */
.icon-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-group.vertical {
  flex-direction: column;
  gap: 15px;
}

/* Icon with Badge */
.icon-badge {
  position: relative;
}

.icon-badge::after {
  content: attr(data-badge);
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 10px;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
}

/* Icon Sizes */
.icon-xs {
  width: 12px;
  height: 12px;
}

.icon-sm {
  width: 20px;
  height: 20px;
}

.icon-md {
  width: 28px;
  height: 28px;
}

.icon-lg {
  width: 40px;
  height: 40px;
}

.icon-xl {
  width: 56px;
  height: 56px;
}

.icon-2x {
  width: 72px;
  height: 72px;
}

.icon-3x {
  width: 96px;
  height: 96px;
}

/* ===== UTILITY CLASSES ===== */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

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

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

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }
.mr-0 { margin-right: 0; }

.mt-1 { margin-top: var(--spacing-sm); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.ml-1 { margin-left: var(--spacing-sm); }
.mr-1 { margin-right: var(--spacing-sm); }

.mt-2 { margin-top: var(--spacing-md); }
.mb-2 { margin-bottom: var(--spacing-md); }
.ml-2 { margin-left: var(--spacing-md); }
.mr-2 { margin-right: var(--spacing-md); }

.mt-3 { margin-top: var(--spacing-lg); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.ml-3 { margin-left: var(--spacing-lg); }
.mr-3 { margin-right: var(--spacing-lg); }

.mt-4 { margin-top: var(--spacing-xl); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.ml-4 { margin-left: var(--spacing-xl); }
.mr-4 { margin-right: var(--spacing-xl); }

/* ===== MOBILE-FIRST RESPONSIVE STYLES ===== */

/* Small devices (576px and up) */
@media (min-width: 576px) {
  :root {
    --font-size-hero: 36px;
    --font-size-xxl: 32px;
    --container-width: 540px;
  }

  .hero-content {
    max-width: 500px;
  }

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

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

/* Medium devices (768px and up) */
@media (min-width: 768px) {
  :root {
    --font-size-hero: 42px;
    --font-size-xxl: 36px;
    --font-size-xl: 24px;
    --container-width: 720px;
    --spacing-xl: 40px;
  }

  .header-inner {
    height: 70px;
  }

  .logo img {
    height: 50px;
  }

  .hero-section {
    height: 80vh;
  }

  .hero-content {
    max-width: 600px;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }

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

  .footer-content {
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
  }

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

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

  .newsletter-form .form-group {
    flex-direction: row;
  }

  .newsletter-form .form-group input {
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  }

  .newsletter-form .form-group button {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    width: auto;
  }
}

/* Large devices (992px and up) */
@media (min-width: 992px) {
  :root {
    --font-size-hero: 48px;
    --font-size-xxl: 40px;
    --container-width: 960px;
    --spacing-xl: 50px;
  }

  .hero-section {
    height: 90vh;
  }

  .hero-content {
    max-width: 700px;
  }

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

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

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
  :root {
    --font-size-hero: 52px;
    --font-size-xxl: 44px;
    --container-width: 1140px;
    --spacing-xl: 60px;
  }

  .hero-content {
    max-width: 800px;
  }

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

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

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 767px) {
  .menu-toggle {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 2000;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    position: absolute;
    left: 0;
    transition: all var(--transition-normal);
    border-radius: 2px;
  }

  .menu-toggle span:nth-child(1) {
    top: 0;
  }

  .menu-toggle span:nth-child(2) {
    top: 9px;
  }

  .menu-toggle span:nth-child(3) {
    top: 18px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1500;
    transition: right var(--transition-normal);
    padding: var(--spacing-xl);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .nav-list.active {
    right: 0;
  }

  .nav-list li {
    margin: var(--spacing-md) 0;
    width: 100%;
    text-align: center;
  }

  .nav-list li a {
    font-size: var(--font-size-lg);
    padding: var(--spacing-md);
    display: block;
    width: 100%;
    color: var(--text-light);
  }

  .hero-content {
    text-align: center;
    padding: 0 var(--spacing-md);
  }

  .hero-section {
    height: 70vh;
    min-height: 500px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .about-image {
    order: -1;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .contact-map {
    min-height: 300px;
  }

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

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

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    margin-right: 0;
    margin-bottom: var(--spacing-md);
  }

  .vip-features {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-author img {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
  }

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

  .live-chat-widget {
    bottom: 20px;
    right: 20px;
  }

  .chat-container {
    width: 300px;
    right: -20px;
  }

  #back-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0000ff;
    --text-muted: #000000;
    --border-color: #000000;
  }
}

/* Dark mode preference */
@media (prefers-color-scheme: dark) {
  .about-section,
  .testimonials {
    background-color: #1a1a1a;
    color: var(--text-light);
  }

  .about-section .section-title,
  .testimonials .section-title {
    color: var(--text-light);
  }

  .testimonial-content {
    background-color: #2a2a2a;
    color: var(--text-light);
  }

  .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
  }

  .author-info h4 {
    color: var(--text-light);
  }

  .author-info p {
    color: rgba(255, 255, 255, 0.7);
  }
}
