/**
 * 21 Sahne İstanbul - Ana Stil Dosyası
 * Modern Twilight Tema
 */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* ============================================
   21 SAHNE İSTANBUL - DESIGN SYSTEM
   ============================================ */

/* Design Tokens - Spacing (8px Grid System) */
:root {
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 1rem;      /* 16px */
  --space-md: 1.5rem;    /* 24px */
  --space-lg: 2rem;      /* 32px */
  --space-xl: 3rem;      /* 48px */
  --space-2xl: 4rem;     /* 64px */
  --space-3xl: 5rem;     /* 80px */
  --space-4xl: 6rem;     /* 96px */
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Typography Scale */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 2rem;      /* 32px */
  --font-size-4xl: 2.5rem;    /* 40px */
  --font-size-5xl: 3rem;      /* 48px */
  
  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.2);
  --shadow-2xl: 0 20px 48px rgba(0, 0, 0, 0.24);
  --shadow-accent: 0 8px 24px rgba(220, 38, 38, 0.3);
  --shadow-accent-lg: 0 12px 40px rgba(220, 38, 38, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
}

/* CSS Custom Properties - Dark Mode */
:root[data-theme="dark"] {
  --bg-primary: #000000;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #2a2a2a;
  --bg-elevated: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --accent: #dc2626;
  --accent-hover: #ef4444;
  --accent-light: #f87171;
  --accent-dark: #b91c1c;
  --border: #333333;
  --border-light: #404040;
  --shadow: rgba(0, 0, 0, 0.5);
  --glass-bg: rgba(0, 0, 0, 0.85);
  --glass-border: rgba(220, 38, 38, 0.2);
  --whatsapp-color: #25d366;
  --whatsapp-hover: #20ba5a;
}

/* CSS Custom Properties - Light Mode */
:root[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-tertiary: #e5e5e5;
  --bg-elevated: #ffffff;
  --text-primary: #000000;
  --text-secondary: #333333;
  --text-muted: #666666;
  --accent: #dc2626;
  --accent-hover: #ef4444;
  --accent-light: #f87171;
  --accent-dark: #b91c1c;
  --border: #d1d1d1;
  --border-light: #e5e5e5;
  --shadow: rgba(0, 0, 0, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(220, 38, 38, 0.2);
  --whatsapp-color: #25d366;
  --whatsapp-hover: #20ba5a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-height: 100vh;
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: 700;
}

h5 {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

h6 {
  font-size: var(--font-size-base);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-base);
}

.lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
}

.text-small {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

/* ============================================
   BUTTON SYSTEM
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-size-base);
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-bounce);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: white;
  box-shadow: var(--shadow-accent);
  position: relative;
  z-index: var(--z-base);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-accent-lg);
}

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

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn-success {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-success:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* Glassmorphism Effect */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  box-shadow: 0 8px 32px var(--shadow);
}

/* Header & Navigation - Modern Glassmorphism */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent)) 1;
  padding: 1.25rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 60px rgba(220, 38, 38, 0.15);
  transition: all 0.4s ease;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

header:hover::before {
  opacity: 1;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.logo:hover {
  opacity: 0.8;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
  header {
    padding: 0.75rem 0;
  }
  
  nav.container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .nav-menu {
    order: 3;
    width: 100%;
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background: var(--bg-secondary);
    padding: 1.5rem;
    transition: left 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    gap: 0.75rem;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    display: block;
  }
  
  .nav-controls {
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
  
  .btn-secondary {
    padding: 0.4rem 0.65rem;
    font-size: 0.75rem;
    min-width: 36px;
    min-height: 36px;
  }
  
  .whatsapp-btn-header {
    padding: 0.4rem 0.65rem;
    font-size: 0.75rem;
  }
  
  .whatsapp-btn-header svg {
    width: 16px;
    height: 16px;
  }
  
  .theme-btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.65rem;
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .language-selector {
    z-index: 1000;
    position: relative;
  }
  
  .language-dropdown {
    right: 0;
    left: auto;
    min-width: 100px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  .language-option {
    padding: 0.6rem 0.875rem;
    font-size: 0.8rem;
  }
  
  .theme-btn {
    font-size: 1rem;
  }
  
  header nav.container {
    padding: 0 1rem;
  }
  
  .nav-controls {
    order: 2;
    margin-left: auto;
  }
  
  .logo {
    order: 1;
  }
  
  .mobile-menu-btn {
    order: 3;
  }
  
  .mobile-menu-btn {
    order: 2;
    margin-left: auto;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 2px solid transparent;
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

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

.nav-menu a:hover {
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-color: var(--accent);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.nav-menu a.active {
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.35);
  position: relative;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: white;
  border-radius: 2px;
  display: block;
}

.nav-menu a.active::after {
  display: none;
}

.nav-controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-secondary {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
}

.language-btn {
  background: white !important;
  color: #1a1a1a !important;
  border-color: #e5e5e5 !important;
}

[data-theme="dark"] .language-btn {
  background: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border-color: var(--border) !important;
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.language-selector {
  position: relative;
  z-index: 100;
  display: inline-block;
}

.language-btn {
  position: relative;
  background: white !important;
  color: var(--text-primary) !important;
  border-color: var(--border) !important;
}

[data-theme="dark"] .language-btn {
  background: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  min-width: 120px;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.language-selector:hover .language-dropdown,
.language-dropdown.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.language-option {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: var(--bg-tertiary);
  color: var(--accent);
  padding-left: 1.25rem;
}

.theme-btn {
  font-size: 1rem;
  line-height: 1;
  padding: 0.45rem 0.75rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: var(--bg-secondary);
    width: 100%;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow);
    gap: 1rem;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    width: 100%;
    text-align: center;
    display: block;
  }
  
  .nav-controls {
    gap: 0.5rem;
  }
  
  .whatsapp-btn-header {
    padding: 0.5rem;
    min-width: 44px;
  }
  
  .whatsapp-text {
    display: none;
  }
}

/* Hero Carousel Section */
.hero-carousel {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 80vh;
}

.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-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 31, 58, 0.6) 100%);
  z-index: 1;
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(220, 38, 38, 0.3) 100%);
}

[data-theme="dark"] .hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(220, 38, 38, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  color: white;
}

.hero-badge {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(239, 68, 68, 0.9) 100%);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5), 0 0 60px rgba(220, 38, 38, 0.3);
  animation: pulseGlow 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5), 0 0 60px rgba(220, 38, 38, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.6), 0 0 80px rgba(220, 38, 38, 0.5);
  }
}

.hero-badge strong {
  font-weight: 900;
  font-size: 1.1em;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8), 0 0 40px rgba(220, 38, 38, 0.5);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -1px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-highlight {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  padding: 0 0.5rem;
  border-radius: 8px;
  text-shadow: 
    0 0 30px rgba(220, 38, 38, 1),
    0 0 60px rgba(220, 38, 38, 0.8),
    4px 4px 8px rgba(0, 0, 0, 0.8);
  display: inline-block;
  animation: glowPulse 3s ease-in-out infinite alternate;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
}

@keyframes glowPulse {
  from {
    text-shadow: 
      0 0 30px rgba(220, 38, 38, 1),
      0 0 60px rgba(220, 38, 38, 0.8),
      4px 4px 8px rgba(0, 0, 0, 0.8);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
  }
  to {
    text-shadow: 
      0 0 40px rgba(220, 38, 38, 1),
      0 0 80px rgba(220, 38, 38, 1),
      4px 4px 8px rgba(0, 0, 0, 0.8);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.8);
  }
}

.hero-subtitle {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  font-weight: 500;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease-out;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: var(--space-lg) var(--space-3xl);
  font-size: var(--font-size-lg);
  font-weight: 800;
  border-radius: var(--radius-full);
}

.btn-large::after {
  content: '→';
  position: absolute;
  right: var(--space-xl);
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-base);
}

.btn-large:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.btn-large:hover {
  padding-right: var(--space-4xl);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {
  from {
    text-shadow: 
      0 0 20px rgba(220, 38, 38, 0.8),
      3px 3px 6px rgba(0, 0, 0, 0.7);
  }
  to {
    text-shadow: 
      0 0 30px rgba(220, 38, 38, 1),
      0 0 40px rgba(220, 38, 38, 0.8),
      3px 3px 6px rgba(0, 0, 0, 0.7);
  }
}

/* Carousel Controls - Modern Design */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(239, 68, 68, 0.8) 100%);
  backdrop-filter: blur(15px);
  border: 3px solid rgba(255, 255, 255, 0.4);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5), 0 0 50px rgba(220, 38, 38, 0.3);
}

.carousel-prev:hover,
.carousel-next:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6), 0 0 70px rgba(220, 38, 38, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

.carousel-prev:active,
.carousel-next:active {
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 2rem;
}

.carousel-next {
  right: 2rem;
}

/* Carousel Indicators - Modern Design */
.carousel-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.carousel-indicators .indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 0;
  position: relative;
}

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

.carousel-indicators .indicator.active {
  background: var(--accent);
  border-color: white;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.8), 0 0 40px rgba(220, 38, 38, 0.4);
}

.carousel-indicators .indicator.active::before {
  width: 100%;
  height: 100%;
}

.carousel-indicators .indicator:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.15);
  border-color: white;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet & Below (768px) */
@media (max-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .section-title {
    margin-bottom: var(--space-2xl);
  }
  
  .section-title h2 {
    font-size: var(--font-size-3xl);
  }
  
  .section-title p {
    font-size: var(--font-size-base);
    margin-top: var(--space-md);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-tight);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
  }
  
  .hero-badge {
    font-size: var(--font-size-sm);
    padding: var(--space-sm) var(--space-lg);
  }
  
  .btn-large {
    font-size: var(--font-size-base);
    padding: var(--space-md) var(--space-xl);
  }
  
  .services-grid,
  .why-grid,
  .testimonials-grid,
  .gallery-preview-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .service-card,
  .why-card,
  .testimonial-card,
  .mission-card,
  .vision-card {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .carousel-prev,
  .carousel-next {
    width: 48px;
    height: 48px;
    font-size: var(--font-size-2xl);
  }
  
  .carousel-indicators {
    bottom: var(--space-lg);
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-xs);
  }
}

/* ============================================
   SECTION SYSTEM
   ============================================ */

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-lg {
  padding: var(--space-4xl) 0 var(--space-4xl);
}

/* Section with Background Image */
.section-with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

@media (max-width: 768px) {
  .section-with-bg {
    background-attachment: scroll;
  }
}

.section-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(220, 38, 38, 0.4) 100%);
  z-index: 1;
}

[data-theme="light"] .section-bg-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(220, 38, 38, 0.3) 100%);
}

/* Page Hero (for non-carousel pages) */
.page-hero {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(220, 38, 38, 0.5) 100%);
  z-index: 1;
}

[data-theme="light"] .page-hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(220, 38, 38, 0.4) 100%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.page-hero .hero-content h1 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-hero .hero-content p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

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

.section-title h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
  color: var(--text-primary);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: calc(-1 * var(--space-md));
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-hover), var(--accent), transparent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-accent);
}

.section-title p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-top: var(--space-lg);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Section title in background sections */
.section-with-bg .section-title h2 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.section-with-bg .section-title p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.section-with-bg .section-title h2::after {
  background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.7));
}

/* CTA Section with Background - Enhanced */
.section-cta {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(220, 38, 38, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.section-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .section-cta {
    background-attachment: scroll;
    min-height: 400px;
  }
}

/* Why Section */
.why-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.why-card {
  background: var(--bg-elevated);
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-lg);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

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

.why-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.why-card:hover .why-icon {
  transform: scale(1.3) rotate(10deg);
}

.why-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  margin: 1rem 0;
  display: block;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.why-card:hover .why-number {
  transform: scale(1.1);
}

.why-card h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-card:hover h3 {
  color: var(--accent);
}

.why-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.why-card:hover p {
  color: var(--text-primary);
}

.why-content {
  max-width: 900px;
  margin: 0 auto;
}

.why-content p {
  color: var(--text-primary);
  line-height: 1.9;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.why-content .lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.why-content .highlight-text {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  padding: 2rem;
  border-left: 4px solid var(--accent);
  border-radius: 0.5rem;
  font-style: italic;
  margin-top: 2rem;
}

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

/* Event Types Section */
.event-types-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.event-type-card {
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
}

.event-type-card.corporate::before {
  background: linear-gradient(90deg, #1e40af, #3b82f6);
}

.event-type-card.personal::before {
  background: linear-gradient(90deg, #be185d, #ec4899);
}

.event-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.25);
}

.event-type-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
}

.event-type-card h3 {
  color: var(--accent);
  font-size: 1.75rem;
  margin-bottom: 2rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-type-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.event-type-card ul li {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.event-type-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.event-type-feature {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--accent);
}

.event-type-feature strong {
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.event-type-feature {
  color: var(--text-primary);
  line-height: 1.7;
}

/* Services List Section */
.services-list-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.service-item:hover {
  transform: translateX(10px);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.15);
}

.service-bullet {
  font-size: 1.5rem;
  color: var(--accent);
}

.services-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-radius: 1rem;
  border: 2px solid var(--border);
}

.cta-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-emoji {
  font-size: 1.8rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

.cta-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.mission-list,
.vision-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.mission-list li,
.vision-list li {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.mission-list li::before,
.vision-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.mission-intro,
.vision-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  padding: var(--space-4xl) 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card,
.vision-card {
  background: var(--bg-elevated);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-accent-lg);
  border-color: var(--accent);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.mission-card h2,
.vision-card h2 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.mission-card p,
.vision-card p {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* ============================================
   CARD SYSTEM
   ============================================ */

.card {
  background: var(--bg-elevated);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

/* 3 Column Grid for Homepage Services */
.services-grid-5 {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

@media (max-width: 1024px) {
  .services-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (max-width: 640px) {
  .services-grid-5 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.service-card {
  background: var(--bg-elevated);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Animated Background Gradient */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.service-card:hover::after {
  opacity: 1;
}

/* Top Border Accent */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
  z-index: var(--z-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-accent-lg);
  border-color: var(--accent);
}

/* Service Icon - Modern Style */
.service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  filter: grayscale(0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
  filter: grayscale(0);
}

/* Service Number */
.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.08;
  line-height: 1;
  transition: all 0.5s ease;
  z-index: 0;
}

.service-card:hover .service-number {
  opacity: 0.15;
  transform: scale(1.2) rotate(-5deg);
}

/* Service Card Content */
.service-card h3 {
  color: var(--accent);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-2xl);
  text-align: left;
  transition: all var(--transition-base);
  position: relative;
  z-index: var(--z-base);
  font-weight: 800;
  line-height: var(--line-height-tight);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-card:hover h3 {
  color: var(--accent-hover);
}

.service-card p {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-base);
  text-align: left;
  position: relative;
  z-index: var(--z-base);
  margin: 0 0 var(--space-md) 0;
  transition: color var(--transition-base);
  flex-grow: 1;
}

.service-card:hover p {
  color: var(--text-primary);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-link:hover {
  gap: 1rem;
  color: var(--accent-hover);
}

/* Light Theme Adjustments */
[data-theme="light"] .service-card {
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .service-card:hover {
  background: white;
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .page-hero {
    min-height: 40vh;
    padding: 3rem 0;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-card,
  .vision-card {
    padding: 2rem;
  }
  
  .event-types-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .event-type-card {
    padding: 2rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    padding: 2rem;
    border-radius: 0.75rem;
  }
  
  .service-card:hover {
    transform: translateY(-3px);
  }
  
  .service-card h3 {
    font-size: 1.25rem;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.form-label .required {
  color: var(--accent);
  margin-left: 0.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-success {
  background: #10b981;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* Footer - Modern Design */
footer {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--accent), transparent, var(--accent)) 1;
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-logo h3 {
  margin: 0;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-info p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.contact-info strong {
  color: var(--text-primary);
  font-weight: 600;
  margin-right: 0.5rem;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.maps-link-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: white !important;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
  border: 2px solid transparent;
}

.maps-link-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
  color: white !important;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-links .social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.social-links .social-link.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  border: none;
}

.social-links .social-link.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(131, 58, 180, 0.4);
}

.social-links .social-link.whatsapp {
  background: var(--whatsapp-color);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-links .social-link.whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.social-links .social-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Header WhatsApp Button */
.whatsapp-btn-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--whatsapp-color);
  color: white;
  border-radius: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  border: 2px solid transparent;
}

.whatsapp-btn-header:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-btn-header svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.whatsapp-text {
  display: inline-block;
}

@media (max-width: 768px) {
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-btn-header {
    padding: 0.75rem;
    width: 44px;
    height: 44px;
    justify-content: center;
    border-radius: 50%;
  }
  
  .social-links .social-link span {
    display: none;
  }
  
  .social-links .social-link {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

.footer-legal {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2rem 0;
}

.legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.legal-links .separator {
  color: var(--text-secondary);
  opacity: 0.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .legal-links .separator {
    display: none;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Gallery Preview Section */
.gallery-preview-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-preview-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

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

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

.gallery-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-preview-overlay span {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-preview-item:hover .gallery-preview-overlay span {
  transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.testimonial-card {
  background: var(--bg-elevated);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  color: var(--accent);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-accent-lg);
  border-color: var(--accent);
}

.testimonial-rating {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border);
  transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
  border-color: var(--accent);
}

.testimonial-author strong {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
}

.testimonial-author span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* Scroll reveal animations */
.scroll-reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth Transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Focus States for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 1rem;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .btn-primary,
  .btn-secondary {
    border: 3px solid currentColor;
  }
  
  .service-card,
  .why-card,
  .testimonial-card {
    border: 3px solid var(--border);
  }
}

/* Loading Animation for Images */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--bg-secondary) 100%);
  background-size: 1000px 100%;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
  border-color: var(--accent);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-view-btn {
  background: var(--accent);
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.gallery-view-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.gallery-view-btn svg {
  width: 28px;
  height: 28px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
  color: white;
  font-size: 1.1rem;
  margin-top: 1rem;
  font-weight: 600;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(220, 38, 38, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 2rem;
    top: 10px;
    right: 10px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

/* Legal Pages Styles */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  color: var(--accent);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.legal-section h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-section p {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-section li {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.legal-section strong {
  color: var(--accent);
  font-weight: 600;
}

.legal-section a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 1.5rem 0;
  }
  
  .legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.2rem;
  }
  
  .legal-section p,
  .legal-section li {
    font-size: 1rem;
  }
}

/* Extra Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .page-hero {
    min-height: 35vh;
    padding: 2rem 0;
  }
  
  .page-hero .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
}

/* Modern Utility Classes */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-lg {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.shadow-accent {
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.4);
}

.rounded-modern {
  border-radius: 20px;
}

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.backdrop-blur {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.bg-gradient-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
}

/* Text Utilities */
.text-shadow-strong {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

.text-glow {
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
}

/* Border Utilities */
.border-gradient {
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--accent), var(--accent-hover)) 1;
}

/* Animated Underline */
.animated-underline {
  position: relative;
  text-decoration: none;
}

.animated-underline::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transition: width 0.4s ease;
}

.animated-underline:hover::after {
  width: 100%;
}

/* Pulsating Dot */
.pulse-dot {
  position: relative;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Floating Animation */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

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

/* Hover Glow Effect */
.hover-glow {
  transition: all 0.4s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.6), 0 0 60px rgba(220, 38, 38, 0.3);
}

/* Gradient Border Animation */
.gradient-border {
  position: relative;
  background: var(--bg-secondary);
  border-radius: 15px;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover), var(--accent));
  background-size: 200% 200%;
  border-radius: 15px;
  z-index: -1;
  animation: gradient-rotate 3s linear infinite;
}

@keyframes gradient-rotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Modern Card Hover */
.card-3d-hover {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.card-3d-hover:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
}

/* Loading Spinner */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--bg-tertiary);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 5px;
  background: var(--bg-tertiary);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* ============================================
   PACKAGE CARDS SYSTEM
   ============================================ */

.packages-section {
  padding: var(--space-4xl) 0;
}

.packages-section.alt-bg {
  background: var(--bg-secondary);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.packages-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.package-card {
  background: var(--bg-elevated);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 3px solid var(--border);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-secondary) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
  z-index: var(--z-base);
}

.package-card:hover::before {
  transform: scaleX(1);
}

.package-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(239, 68, 68, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.package-card:hover::after {
  opacity: 1;
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-accent-lg), 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.package-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent-lg);
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.package-card.featured::before {
  transform: scaleX(1);
  height: 6px;
}

.package-card.featured::after {
  opacity: 1;
}

.package-badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
  align-self: center;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: var(--z-base);
  transition: all var(--transition-base);
}

.package-badge:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.package-badge.economic {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.package-badge.popular {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
}

.package-badge.premium {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.package-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  text-align: center;
  transition: transform var(--transition-bounce);
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.package-card:hover .package-icon {
  transform: scale(1.2) rotate(10deg);
}

.package-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  margin-bottom: var(--space-md);
  text-align: center;
  color: var(--text-primary);
  line-height: var(--line-height-tight);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: var(--z-base);
}

.package-price {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  position: relative;
  z-index: var(--z-base);
}

.price-label {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}

.price-value {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--accent);
  margin-top: var(--space-xs);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
  flex-grow: 1;
  position: relative;
  z-index: var(--z-base);
}

.package-features li {
  padding: var(--space-md) var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.package-features li:hover {
  background: var(--bg-tertiary);
  border-left-color: var(--accent);
  transform: translateX(5px);
  color: var(--text-primary);
}

.package-features .check {
  color: var(--accent);
  font-weight: 900;
  font-size: var(--font-size-xl);
  flex-shrink: 0;
  margin-top: 2px;
  text-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

.package-card:hover .package-features li {
  color: var(--text-primary);
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: var(--space-lg);
  position: relative;
  z-index: var(--z-base);
  font-weight: 800;
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--font-size-lg);
}

/* Package Card Buttons - White Background with Red Text */
.package-card .btn {
  background: white;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.package-card .btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-accent);
}

.package-card .btn-primary {
  background: white;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.package-card .btn-primary:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-accent-lg);
}

.package-card .btn-primary::after {
  display: none;
}

.package-card .btn-secondary {
  background: white;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.package-card .btn-secondary:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-accent);
}

[data-theme="dark"] .package-card .btn {
  background: var(--bg-elevated);
  color: var(--accent);
  border: 2px solid var(--accent);
}

[data-theme="dark"] .package-card .btn:hover {
  background: var(--accent);
  color: white;
}

.package-notice-section {
  padding: var(--space-lg) 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  border-bottom: 2px solid var(--border);
}

.package-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.notice-icon {
  font-size: var(--font-size-2xl);
  flex-shrink: 0;
}

.package-notice p {
  margin: 0;
  color: var(--text-primary);
  font-size: var(--font-size-base);
  font-weight: 500;
}

.custom-package-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.custom-package-card {
  background: var(--bg-elevated);
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-accent-lg);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.custom-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
}

.custom-package-card h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.custom-package-card p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  color: var(--text-secondary);
}

.custom-cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .packages-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .package-card {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .custom-package-card {
    padding: var(--space-xl);
  }
  
  .custom-cta-buttons {
    flex-direction: column;
  }
  
  .custom-cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   SERVICE DETAIL SECTION
   ============================================ */

.service-detail-section {
  padding: var(--space-4xl) 0;
}

.service-detail-section.alt-bg {
  background: var(--bg-secondary);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.service-icon-large {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  text-align: center;
  transition: transform var(--transition-base);
}

.service-detail-content:hover .service-icon-large {
  transform: scale(1.1) rotate(5deg);
}

.service-detail-content h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.service-detail-content .lead-text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.service-detail-content h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

.service-features-list .check-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: var(--font-size-lg);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-packages {
  margin: var(--space-lg) 0;
}

.service-packages h3 {
  margin-bottom: var(--space-md);
}

.package-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.package-badges .package-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--bg-tertiary);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.package-badges .package-badge:hover {
  border-color: var(--accent);
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

.service-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.service-cta .btn {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .service-detail-grid.reverse {
    direction: ltr;
  }
  
  .service-detail-image {
    min-height: 300px;
    order: -1;
  }
  
  .service-detail-grid.reverse .service-detail-image {
    order: 0;
  }
}

@media (max-width: 768px) {
  .service-detail-section {
    padding: var(--space-2xl) 0;
  }
  
  .service-detail-grid {
    gap: var(--space-xl);
  }
  
  .service-detail-image {
    min-height: 250px;
  }
  
  .service-icon-large {
    font-size: 3rem;
  }
  
  .service-detail-content h2 {
    font-size: var(--font-size-2xl);
  }
  
  .service-cta {
    flex-direction: column;
  }
  
  .service-cta .btn {
    width: 100%;
    min-width: auto;
  }
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.team-roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.team-role-card {
  background: var(--bg-elevated);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 3px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
  z-index: var(--z-base);
}

.team-role-card:hover::before {
  transform: scaleX(1);
}

.team-role-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(239, 68, 68, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.team-role-card:hover::after {
  opacity: 1;
}

.team-role-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-accent-lg);
  border-color: var(--accent);
}

.role-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  display: block;
  transition: transform var(--transition-bounce);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.team-role-card:hover .role-icon {
  transform: scale(1.2) rotate(10deg);
}

.team-role-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: var(--z-base);
}

.role-description {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin: 0;
  position: relative;
  z-index: var(--z-base);
  transition: color var(--transition-base);
}

.team-role-card:hover .role-description {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .team-roles-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .team-role-card {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .role-icon {
    font-size: 3rem;
  }
}
