/* 
  İZMİR DANCE FESTIVAL – EPHESUS EDITION 2026
  Tema Yapısı:
  - Arka Plan: Beyaz (#ffffff) ve Antik Krem (#fcfbfa / #f7f4ec)
  - Vurgu Renkleri: Efes Altını (#d4af37), Turkuaz (#00a8b5), Lacivert (#121b2d)
*/

:root {
  --bg-dark: #ffffff;
  --bg-site: #ffffff;
  --bg-card-dark: #ffffff;
  --bg-section-alt: #ffffff;
  --primary-gold: #D4AF37;
  --primary-turquoise: #2FAFC4;
  --primary-pink: #D4AF37;
  --primary-blue: #2FAFC4;
  --text-light: #171411;
  --text-light-soft: #4d5d78;
  --text-dark: #171411;
  --glass-white: rgba(255, 255, 255, 0.96);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --transition-speed: 0.4s;
  --border-subtle: rgba(212, 175, 55, 0.3);
  --border-gold: rgba(212, 175, 55, 0.4);
  --border-turquoise: rgba(47, 175, 196, 0.4);
  --glow-pink: 0 0 25px rgba(212, 175, 55, 0.25);
  --glow-blue: 0 0 25px rgba(47, 175, 196, 0.25);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #a57f55 100%);
  --gradient-turquoise: linear-gradient(135deg, #2FAFC4 0%, #1e8799 100%);
  --gradient-pink: linear-gradient(135deg, #D4AF37 0%, #2FAFC4 100%);
}

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: #171411;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  background: #ffffff;
  transition: background var(--transition-speed), box-shadow var(--transition-speed);
  z-index: 1000;
  border-bottom: 1px solid rgba(18, 27, 45, 0.08);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(18, 27, 45, 0.08);
}

.navbar-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-light);
}

.brand-logo-img {
  height: 68px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease;
}

.brand-logo-img:hover {
  transform: scale(1.05);
}

.footer-logo-img {
  height: 68px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.logo-icon {
  color: var(--primary-pink);
  font-size: 22px;
}

.logo .highlight {
  color: var(--primary-pink);
}

.logo .edition-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 1.5px;
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-light);
  transition: color var(--transition-speed);
  position: relative;
  padding: 5px 0;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-pink);
  transition: width var(--transition-speed);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-pink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-check-ticket {
  background: transparent;
  color: var(--primary-gold) !important;
  border: 2px solid var(--primary-gold);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-check-ticket:hover {
  background: var(--primary-gold);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-check-ticket::after {
  display: none !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 24px 80px 24px;
  position: relative;
}

/* Full-screen Background Image Slider (Now local to hero-right) */
.slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  filter: brightness(0.95);
}

.slide.active {
  opacity: 1;
}

/* Hide background dark overlay */
.hero-section::after {
  display: none;
}

/* Sol Taraf - Tanıtım */
.hero-left {
  flex: 1.15;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 0;
}

/* Sağ Taraf - Slayt Gösterisi ve Sayaç Kartı */
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
}

.hero-right .slider-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(67, 89, 113, 0.12);
  border: 1px solid rgba(67, 89, 113, 0.15);
}

/* Slider Navigasyon Okları */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  color: #171411;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none;
  opacity: 0.85;
}

.slider-nav-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
  opacity: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.slider-nav-btn.prev-btn {
  left: 15px;
}

.slider-nav-btn.next-btn {
  right: 15px;
}

.hero-countdown-container {
  background: #ffffff;
  border: 1px solid rgba(67, 89, 113, 0.15);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 18px 0 rgba(67, 89, 113, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.hero-countdown-container .countdown-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--sneat-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-countdown-container .countdown-timer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.hero-countdown-container .time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-countdown-container .time-lbl {
  font-size: 9.5px;
  font-weight: 800;
  color: #697a8d;
  letter-spacing: 0.5px;
}

/* Light Premium Card Container */
.hero-glass-container {
  background: #ffffff;
  border: 1px solid rgba(67, 89, 113, 0.15);
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow: 0 4px 18px 0 rgba(67, 89, 113, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hero-glass-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 10% 20%, rgba(105, 108, 255, 0.04) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(105, 108, 255, 0.08);
  border: 1px solid rgba(105, 108, 255, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--sneat-primary);
  width: fit-content;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(105, 108, 255, 0.05);
}

.hero-top-badge i {
  font-size: 13px;
}

/* Ana Başlık */
.main-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0;
  color: #32475c;
  letter-spacing: -0.5px;
}

.sub-title-highlight {
  background: linear-gradient(135deg, #be0849 0%, var(--primary-pink) 50%, #ff7da7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(224, 17, 95, 0.15));
}

/* Açıklama Paragrafı */
.hero-description {
  font-size: 14px;
  color: #697a8d;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 550px;
}

/* Kahraman Grid Sistemi (3x3 Düzeni) */
.hero-grid-unified {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.hero-carousel-wrapper {
  display: contents;
}

.mobile-hero-countdown {
  display: none;
}

/* Event Detail Badges and Feature Items Unified Sizing */
.event-badge,
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f5f9;
  border: 1px solid rgba(67, 89, 113, 0.15);
  padding: 12px 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-height: 64px;
  min-width: 0;
  overflow: hidden;
  box-shadow: none;
  flex: 1;
}

.event-badge:hover,
.feature-item:hover {
  background: rgba(105, 108, 255, 0.08);
  border-color: #696cff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(105, 108, 255, 0.12);
}

.event-badge-btn {
  text-decoration: none;
  background: rgba(105, 108, 255, 0.08) !important;
  border: 1px solid rgba(105, 108, 255, 0.3) !important;
  cursor: pointer;
}

.event-badge-btn:hover {
  background: rgba(105, 108, 255, 0.15) !important;
  border-color: #696cff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(105, 108, 255, 0.15);
}

/* Icon Container Sizing */
.event-badge i,
.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(105, 108, 255, 0.08);
  border: 1px solid rgba(105, 108, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #696cff;
  font-size: 15px;
  flex-shrink: 0;
}

/* Text Container Sizing */
.event-badge div,
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  text-align: left;
}

.event-badge strong,
.feature-text strong {
  font-size: 11px;
  font-weight: 800;
  color: #32475c;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: uppercase;
}

.event-badge span,
.feature-text span {
  font-size: 10px;
  color: #697a8d;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Hero Butonları */
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary-gold {
  background: var(--gradient-pink);
  color: #120a2b;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(224, 17, 95, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224, 17, 95, 0.45);
}

.btn-secondary-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(240, 236, 227, 0.3);
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary-outline:hover {
  border-color: var(--primary-pink);
  color: var(--primary-pink);
  background: rgba(224, 17, 95, 0.08);
}

/* Hızlı Özet Badge'leri */
.quick-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.3px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.stat-badge:hover {
  border-color: rgba(224, 17, 95, 0.3);
  transform: translateY(-2px);
}

.stat-badge i {
  color: var(--primary-pink);
  font-size: 14px;
}

/* Sağ Taraf - İnteraktif Kart */
/* Responsive Hero Layout Mobile/Tablet collapse */
@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    padding: 100px 16px 60px 16px;
    gap: 30px;
  }
  .hero-left {
    width: 100%;
  }
  .hero-right {
    width: 100%;
    height: auto;
    min-height: auto;
  }
  .hero-right .slider-wrapper {
    height: 250px;
  }
  .hero-glass-container {
    padding: 24px 20px;
  }
  .hero-grid-unified {
    grid-template-columns: 1fr;
  }
}

.glass-card {
  position: absolute;
  top: 50%;
  right: 6%;
  left: auto;
  transform: translateY(calc(-50% + 20px)) scale(0.98);
  width: 90%;
  max-width: 460px;
  background: var(--glass-white);
  border-radius: 20px;
  color: var(--text-dark);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
  z-index: 1;
  overflow: hidden;
}

.glass-card.active {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
  z-index: 5;
}

/* Card Content */
.card-main-content {
  padding: 30px 35px 15px 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-top-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #666677;
  font-weight: 600;
}

.btn-signup {
  background: #121b2d;
  color: #ffffff;
  border: none;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.btn-signup:hover {
  background: var(--primary-pink);
  color: #121b2d;
}

.card-header-login {
  margin: 5px 0;
  text-align: left;
}

.handwritten-title {
  font-family: 'Caveat', cursive;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 2px;
}

.subtitle-desc {
  font-size: 13px;
  color: #555566;
  font-weight: 600;
}

.home-login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group-login {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-login label {
  font-size: 10px;
  font-weight: 800;
  color: #555566;
  letter-spacing: 0.5px;
}

.input-wrapper-login {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper-login i {
  position: absolute;
  left: 15px;
  color: #787888;
  font-size: 13px;
}

.input-wrapper-login input {
  width: 100%;
  padding: 10px 15px 10px 42px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  outline: none;
  background: #ffffff;
  color: var(--text-dark);
  transition: border-color var(--transition-speed);
}

.input-wrapper-login input:focus {
  border-color: var(--primary-pink);
}

.btn-toggle-password {
  left: auto !important;
  right: 15px;
  cursor: pointer;
  transition: color var(--transition-speed);
}

.btn-toggle-password:hover {
  color: var(--primary-pink);
}

.form-row-remember {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  margin: 3px 0;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #555566;
  cursor: pointer;
  user-select: none;
}

.link-forgot {
  color: var(--primary-pink);
  font-weight: 700;
  transition: opacity var(--transition-speed);
}

.link-forgot:hover {
  opacity: 0.8;
}

.btn-login-gradient {
  background: linear-gradient(90deg, #e0115f 0%, #b00845 100%);
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(224, 17, 95, 0.25);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.btn-login-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 17, 95, 0.4);
}

.divider-text {
  text-align: center;
  position: relative;
  margin: 4px 0;
}

.divider-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.divider-text span {
  background: #ffffff;
  padding: 0 15px;
  color: #888899;
  font-size: 11px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.btn-buy-outline {
  background: #ffffff;
  color: var(--primary-pink);
  border: 1.5px solid var(--primary-pink);
  padding: 10px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition-speed), color var(--transition-speed);
}

.btn-buy-outline:hover {
  background: var(--primary-pink);
  color: #120a2b;
}

.card-bottom-security {
  background: #f8f5ff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.shield-icon {
  font-size: 24px;
  color: var(--primary-pink);
}

.security-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.security-text strong {
  font-size: 11px;
  letter-spacing: 1px;
  color: #121b2d;
}

.security-text span {
  font-size: 10px;
  color: #777788;
}

/* ==========================================
   COUNTDOWN
   ========================================== */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 120px;
}

/* Festival Countdown Section */
.festival-countdown-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  z-index: 10;
  padding: 50px 0 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.countdown-wrap {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.countdown-container {
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.countdown-label {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 24px;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.time-lbl {
  font-size: 11px;
  font-weight: 800;
  color: #4d5d78;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* FLIP CLOCK WIDGET STYLES */
.flip-group {
  display: flex;
  align-items: center;
  gap: 3px;
  perspective: 200px;
}

.flip-digit {
  position: relative;
  width: 34px;
  height: 50px;
  background: transparent;
  border: none;
  box-shadow: none;
  perspective: 200px;
  overflow: visible;
}

/* Common style for the halves */
.flip-digit .digit-top,
.flip-digit .digit-bottom,
.flip-digit .leaf-front,
.flip-digit .leaf-rear {
  position: absolute;
  left: 0;
  width: 100%;
  height: 25px;
  overflow: hidden;
  font-family: var(--font-heading), 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Default Dark Theme Halves */
.flip-digit .digit-top,
.flip-digit .leaf-front {
  top: 0;
  background: linear-gradient(to bottom, #2b2b2b 0%, #1a1a1a 100%);
  border-radius: 6px 6px 0 0;
  line-height: 50px; /* Align text top */
  border-bottom: 0.5px solid rgba(0,0,0,0.5);
  color: #e2e2e2;
}

.flip-digit .digit-bottom {
  bottom: 0;
  background: linear-gradient(to bottom, #111111 0%, #1f1f1f 100%);
  border-radius: 0 0 6px 6px;
  line-height: 0px; /* Align text bottom */
  border-top: 0.5px solid rgba(255,255,255,0.08);
  color: #eef2f5;
}

.flip-digit .leaf-rear {
  top: 0;
  background: linear-gradient(to bottom, #111111 0%, #1f1f1f 100%);
  border-radius: 0 0 6px 6px;
  line-height: 0px; /* Align text bottom */
  border-top: 0.5px solid rgba(255,255,255,0.08);
  color: #eef2f5;
  transform: rotateX(-180deg);
}

/* Red Theme Halves */
.flip-digit-red .digit-top,
.flip-digit-red .leaf-front {
  background: linear-gradient(to bottom, #dc3545 0%, #bd2130 100%);
  color: #ffffff;
}

.flip-digit-red .digit-bottom {
  background: linear-gradient(to bottom, #9c1c24 0%, #b21f2d 100%);
  color: #ffffff;
}

.flip-digit-red .leaf-rear {
  background: linear-gradient(to bottom, #9c1c24 0%, #b21f2d 100%);
  color: #ffffff;
}

/* Hinge line in the middle */
.flip-digit::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 4;
}

/* Side brackets/hinges */
.flip-digit::before {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  width: 100%;
  height: 6px;
  background: transparent;
  border-left: 2px solid #888;
  border-right: 2px solid #888;
  z-index: 5;
}

/* The leaf that flips */
.flip-digit .leaf {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 50px;
  transform-style: preserve-3d;
  transition: transform 0s;
  pointer-events: none;
}

.flip-digit .leaf.flipped {
  transform: rotateX(-180deg);
  transition: transform 0.45s ease-in-out;
}

/* Leaf faces */
.flip-digit .leaf-front,
.flip-digit .leaf-rear {
  margin: 0;
  transform: rotateX(0deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-digit .leaf-rear {
  transform: rotateX(-180deg);
}

/* Sticky Countdown Widget */
.sticky-countdown {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.08);
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sticky-countdown.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-countdown .sticky-label {
  justify-self: start;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.sticky-countdown .sticky-timer {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sticky-countdown .s-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sticky-countdown .s-lbl {
  font-size: 8px;
  font-weight: 800;
  color: #555566;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-sticky-login {
  display: none;
}

.btn-sticky-buy {
  justify-self: end;
  background: rgba(224, 17, 95, 0.12);
  color: var(--primary-pink);
  border: 1.5px solid rgba(224, 17, 95, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(224, 17, 95, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-sticky-buy:hover {
  background: rgba(224, 17, 95, 0.22);
  border-color: rgba(224, 17, 95, 0.8);
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(224, 17, 95, 0.2);
  transform: translateY(-2px);
}

.btn-close-sticky {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  color: #888899;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  border-radius: 50%;
}

.btn-close-sticky:hover {
  color: var(--primary-pink);
  background: rgba(224, 17, 95, 0.05);
  transform: scale(1.1);
}

/* ==========================================
   CHECKOUT CARD STEPS
   ========================================== */
.card-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 10px;
}

.btn-back {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #556;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.btn-back:hover {
  color: var(--primary-pink);
}

.badge-secure {
  font-size: 10px;
  font-weight: 700;
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 5px;
}

.checkout-step {
  padding: 15px 30px 20px;
}

.ticket-product-card {
  background: #f8f5ff;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 15px;
}

.ticket-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.ticket-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--gradient-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #120a2b;
  font-size: 18px;
}

.ticket-main-info h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
}

.ticket-main-info span {
  font-size: 11px;
  color: #777;
}

.ticket-price-box {
  margin-left: auto;
  text-align: right;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-pink);
  display: block;
}

.price-tax {
  font-size: 9px;
  color: #888;
  font-weight: 600;
}

.ticket-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ticket-features li {
  font-size: 11px;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-features li i {
  color: var(--primary-blue);
  font-size: 12px;
}

.checkout-calculator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.calc-label {
  font-size: 10px;
  font-weight: 800;
  color: #555566;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 8px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.qty-btn {
  width: 38px;
  height: 38px;
  background: #f8f5ff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.qty-btn:hover {
  background: var(--primary-pink);
  color: #120a2b;
}

.qty-controls input {
  width: 45px;
  text-align: center;
  border: none;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  background: white;
  outline: none;
}

.total-price-box {
  text-align: right;
}

.total-price-val {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--primary-pink);
}

.btn-primary {
  background: var(--gradient-pink);
  color: #120a2b;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(224, 17, 95, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 17, 95, 0.4);
}

.btn-primary span {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.7;
}

.checkout-form .form-group {
  margin-bottom: 0;
}

.checkout-form .form-group label {
  font-size: 10px;
  font-weight: 800;
  color: #555566;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
}

.checkout-form .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.checkout-form .input-wrapper i {
  position: absolute;
  left: 15px;
  color: #787888;
  font-size: 13px;
}

.checkout-form .input-wrapper input {
  width: 100%;
  padding: 12px 15px 12px 42px;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  outline: none;
  background: #ffffff;
  color: var(--text-dark);
  transition: border-color var(--transition-speed);
}

.checkout-form .input-wrapper input:focus {
  border-color: var(--primary-pink);
}

.btn-promo-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 60px);
  margin: 0 30px 15px;
  padding: 10px;
  background: transparent;
  border: 1.5px dashed rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-pink);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-promo-code:hover {
  border-color: var(--primary-pink);
  background: rgba(224, 17, 95, 0.05);
}

.payment-partners {
  padding: 12px 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  color: #aaa;
}

.troy-logo {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #2196f3;
}

.ssl-verify-text {
  font-size: 10px;
  font-weight: 600;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================
   SECTION TITLES (Shared)
   ========================================== */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary-pink);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--text-light);
}

.section-title .gold {
  color: var(--primary-pink);
}

.title-bar {
  width: 60px;
  height: 3px;
  background: var(--gradient-pink);
  margin: 16px auto 0;
  border-radius: 3px;
}

/* ==========================================
   FESTİVAL HAKKINDA SECTION
   ========================================== */
.info-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
  opacity: 0.3;
}

.festival-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.festival-intro p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light-soft);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 35px 28px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 17, 95, 0.35);
  box-shadow: var(--glow-pink);
}

.info-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(224, 17, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  color: var(--primary-pink);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light);
}

.info-card p {
  font-size: 13px;
  color: var(--text-light-soft);
  line-height: 1.6;
}

/* Ephesus Edition Special Box */
.ephesus-box {
  background: linear-gradient(135deg, rgba(224, 17, 95, 0.08), rgba(0, 194, 255, 0.05));
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 40px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ephesus-box h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-pink);
  margin-bottom: 14px;
}

.ephesus-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light-soft);
}

.special-nights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.night-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(18, 10, 43, 0.6);
  border: 1px solid var(--border-subtle);
  padding: 18px 22px;
  border-radius: 14px;
  transition: transform 0.3s;
}

.night-card:hover {
  transform: translateX(5px);
}

.night-card .night-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.night-card .night-icon.republic {
  background: rgba(194, 24, 91, 0.15);
  color: #C2185B;
}

.night-card .night-icon.halloween {
  background: rgba(255, 152, 0, 0.15);
  color: #FF9800;
}

.night-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}

.night-card span {
  font-size: 12px;
  color: var(--text-light-soft);
}

/* Who is it for */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-light-soft);
  transition: border-color 0.3s;
}

.who-item:hover {
  border-color: var(--border-subtle);
}

.who-item i {
  color: var(--primary-blue);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==========================================
   OTEL SECTION
   ========================================== */
.hotel-section {
  padding: 100px 0;
  background: var(--bg-section-alt);
  position: relative;
}

.hotel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
  opacity: 0.3;
}

.hotel-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.hotel-info h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
}

.hotel-info > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light-soft);
  margin-bottom: 30px;
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light-soft);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.services-list li i {
  color: var(--primary-blue);
  font-size: 14px;
  width: 20px;
  text-align: center;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.distance-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.distance-card:hover {
  transform: translateY(-3px);
}

.distance-card .dist-val {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-pink);
  display: block;
}

.distance-card .dist-label {
  font-size: 11px;
  color: var(--text-light-soft);
  margin-top: 4px;
  display: block;
}

/* ==========================================
/* Whats Included strip */
.whats-included-strip {
  background: rgba(165, 127, 85, 0.06);
  border: 1px solid rgba(165, 127, 85, 0.15);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.whats-included-strip .included-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #A57F55;
  font-size: 13.5px;
  font-weight: 700;
}

.tickets-pricing-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

.tickets-pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
  opacity: 0.3;
}

.pricing-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-table-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
}

.pricing-table-card.featured {
  border-color: rgba(224, 17, 95, 0.4);
  box-shadow: var(--glow-pink);
}

.pt-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pt-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 4px;
}

.pt-header span {
  font-size: 12px;
  color: var(--text-light-soft);
}

.pt-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(224, 17, 95, 0.15);
  color: var(--primary-pink);
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  margin-left: 10px;
  letter-spacing: 0.5px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead th {
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-pink);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.pricing-table tbody td {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text-light-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-table tbody td:not(:first-child) {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-light);
  font-size: 15px;
}

.pricing-table tbody tr:hover {
  background: rgba(224, 17, 95, 0.04);
}

.pt-note {
  padding: 16px 28px;
  font-size: 11px;
  color: var(--text-light-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Coming Soon Cards */
.coming-soon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.coming-soon-card {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  opacity: 0.7;
}

.coming-soon-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.coming-soon-card p {
  font-size: 12px;
  color: var(--text-light-soft);
}

.badge-soon {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 194, 255, 0.12);
  color: var(--primary-blue);
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* Bilet al scroll button */
.tickets-row-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-promo-action {
  display: inline-flex;
  text-decoration: none;
}

/* ==========================================
   PROGRAM SECTION
   ========================================== */
.program-schedule-section {
  padding: 100px 0;
  background: var(--bg-section-alt);
  position: relative;
}

.program-schedule-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
  opacity: 0.3;
}

/* Program Tabs */
.program-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.program-tab {
  padding: 12px 24px;
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light-soft);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.program-tab .tab-day {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.6;
}

.program-tab:hover {
  border-color: var(--border-subtle);
}

.program-tab.active {
  background: var(--gradient-pink);
  color: #120a2b;
  border-color: var(--primary-pink);
}

.program-tab.active .tab-day {
  opacity: 0.8;
}

.program-day-content {
  display: none;
}

.program-day-content.active {
  display: block;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-pink), var(--primary-blue));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 0 0 30px 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-pink);
  border: 3px solid var(--bg-section-alt);
  box-shadow: 0 0 10px rgba(224, 17, 95, 0.3);
}

.timeline-time {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-pink);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.timeline-content {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 18px 22px;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 13px;
  color: var(--text-light-soft);
  line-height: 1.5;
}

/* ==========================================
   SSS SECTION
   ========================================== */
.faq-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
  opacity: 0.3;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--border-subtle);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}

.faq-question i {
  color: var(--primary-pink);
  font-size: 14px;
  transition: transform 0.3s;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 18px;
  font-size: 13px;
  color: var(--text-light-soft);
  line-height: 1.6;
}

/* ==========================================
   İLETİŞİM SECTION
   ========================================== */
.contact-section {
  padding: 100px 0;
  background: var(--bg-section-alt);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
  opacity: 0.3;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.contact-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-pink);
}

.contact-card .contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
}

.contact-card .contact-icon.instagram {
  background: linear-gradient(135deg, rgba(193, 53, 132, 0.15), rgba(252, 175, 69, 0.15));
  color: #C13584;
}

.contact-card .contact-icon.email {
  background: rgba(224, 17, 95, 0.12);
  color: var(--primary-pink);
}

.contact-card .contact-icon.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 12px;
  color: var(--primary-pink);
  font-weight: 600;
}

.closing-cta {
  text-align: center;
  margin-top: 30px;
}

.closing-cta p {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.closing-cta span {
  font-size: 14px;
  color: var(--text-light-soft);
  display: block;
}

/* ==========================================
   ETKINLIK KURALLARI SECTION (Rules)
   ========================================== */
.rules-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.rules-box {
  max-width: 750px;
  margin: 0 auto;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 35px;
}

.rules-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rules-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  color: var(--text-light-soft);
  line-height: 1.5;
}

.rules-box ul li i {
  color: var(--primary-pink);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
/* ==========================================
   PREMIUM WHITE FOOTER
   ========================================== */
.main-footer {
  background: #ffffff;
  color: #1a113a;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-family: 'Outfit', sans-serif;
}

.main-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  .footer-grid {
    flex-direction: row;
    align-items: flex-start;
  }
}

.footer-brand-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-brand-column .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.footer-logo-img {
  height: 68px;
  width: auto;
  filter: none;
}

.footer-brand-column .footer-logo h2 {
  font-size: 20px;
  font-weight: 800;
  color: #120a2b;
  margin: 0;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #555566;
  max-width: 320px;
  margin: 0;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-links a {
  color: #888899;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social-links a:hover {
  color: var(--primary-pink);
}

.footer-links-grid {
  flex: 1.5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 576px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link-col h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #120a2b;
  margin: 0;
  text-transform: uppercase;
}

.footer-link-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-col ul a {
  font-size: 14px;
  font-weight: 600;
  color: #555566;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link-col ul a:hover {
  color: var(--primary-pink);
}

.footer-bottom-row {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-bottom-row {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 12px;
  font-weight: 500;
  color: #888899;
  margin: 0;
  order: 2;
}

@media (min-width: 768px) {
  .footer-copyright {
    order: 1;
  }
}

.footer-payments-secure {
  display: flex;
  align-items: center;
  gap: 15px;
  order: 1;
}

@media (min-width: 768px) {
  .footer-payments-secure {
    order: 2;
  }
}

.footer-payments-secure i {
  font-size: 26px;
  color: #888899;
}

.troy-logo-text {
  font-weight: 800;
  font-size: 16px;
  color: #888899;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-ssl-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #00a8b5;
  font-size: 11px;
  font-weight: 700;
}

.footer-ssl-secure i {
  font-size: 14px;
  color: #00a8b5;
}
  font-size: 10px;
  margin-top: 5px;
}

/* ==========================================
   3D SECURE & ALERT MODALS
   ========================================== */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(8px);
}

.login-overlay.hidden {
  display: none;
}

.login-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

/* ==========================================
   POLICY PAGES
   ========================================== */
.policy-body {
  background: var(--bg-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.policy-container {
  max-width: 700px;
  width: 100%;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 40px;
  color: var(--text-light-soft);
}

.policy-container h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-subtle);
}

.policy-container h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-pink);
  margin: 25px 0 10px;
}

.policy-container p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.policy-info-box {
  background: rgba(224, 17, 95, 0.06);
  border-left: 3px solid var(--primary-pink);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 12px 0;
}

.policy-info-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text-light);
  font-size: 13px;
}

.policy-info-box span {
  font-size: 12px;
  line-height: 1.8;
  display: block;
}

/* ==========================================
   PURCHASE NOTES BOX
   ========================================== */
.purchase-notes-box {
  font-size: 11px;
  padding: 10px 12px;
  background: rgba(224, 17, 95, 0.08);
  border-left: 3px solid var(--primary-pink);
  border-radius: 4px;
  color: var(--text-light-soft);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-left {
    padding: 100px 30px 40px;
    flex: none;
  }

  /* Mobilde sağ taraftaki giriş kartını gizle - giriş artık navbar dropdown'da */
  .hero-right {
    flex: none;
    height: auto;
    min-height: auto;
    position: relative;
    padding: 0 20px 40px;
    display: none;
  }

  .glass-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 20px auto;
    width: 90%;
    max-width: 460px;
  }

  .glass-card.active {
    transform: none;
  }

  .main-title {
    font-size: 36px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .ephesus-box {
    grid-template-columns: 1fr;
  }

  .hotel-main {
    grid-template-columns: 1fr;
  }

  .pricing-tables {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-row {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .festival-countdown-section {
    position: relative;
    bottom: auto;
  }
  .wave-divider {
    height: 60px;
  }
  .wave-divider svg {
    height: 60px;
  }
  .countdown-container {
    padding: 10px;
  }

  .brand-logo-img {
    height: 48px !important;
    max-width: 180px !important;
  }

  .navbar {
    height: 72px !important;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: rgba(18, 27, 45, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-links a {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    letter-spacing: 2px !important;
    padding: 8px 0 !important;
    width: auto !important;
    text-align: center;
    border: none !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary-gold) !important;
  }

  .nav-links a::after {
    display: none !important;
  }

  .nav-links .btn-login-nav {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: #ffffff !important;
    color: #121b2d !important;
    margin-top: 20px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15) !important;
    width: auto !important;
    max-width: 180px !important;
    transition: all 0.3s ease !important;
  }

  .nav-links a.btn-login-nav:hover,
  .nav-links a.btn-login-nav:active {
    color: #121b2d !important;
    background: #f5f6f7 !important;
    transform: translateY(-1px) !important;
  }

  /* Desktop dropdown is hidden inside mobile view */
  .lang-dropdown {
    display: none !important;
  }

  /* Mobile Hamburger button */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 10005;
    position: relative;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: #121b2d;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #ffffff;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: #ffffff;
  }

  /* Mobile Lang Switcher inside mobile menu */
  .mobile-lang-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 80%;
    max-width: 260px;
    justify-content: center;
  }

  .mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
  }

  .mobile-lang-item img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
  }

  .mobile-lang-item.active {
    background: linear-gradient(135deg, #d4af37 0%, #b89220 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }

  /* === BİLETLER & PAKETLER MOBİL DÜZENLEME === */
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .pricing-cards-grid > div {
    padding: 20px 10px !important;
    border-radius: 14px !important;
  }

  .pricing-cards-grid h4 {
    font-size: 12px !important;
    letter-spacing: 0.3px !important;
  }

  .pricing-cards-grid div[style*="font-size:20px"] {
    font-size: 15px !important;
  }

  .pricing-eu-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .pricing-eu-grid > div {
    padding: 20px 10px !important;
    border-radius: 14px !important;
  }

  .transfer-party-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .contact-social-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .contact-social-grid > div, .contact-social-grid > a {
    padding: 22px 16px !important;
    border-radius: 14px !important;
  }

  .contact-social-grid p {
    word-break: break-word !important;
    font-size: 13px !important;
  }

  .distance-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .navbar-container {
    padding: 0 20px;
  }

  .logo {
    font-size: 13px;
  }

  /* === HERO SECTION MOBİL DÜZENLEME === */

  /* Mobilde slider arka planını ve overlay'ini kaldır */
  .slider-wrapper {
    display: none !important;
  }

  .hero-section::after {
    display: none !important;
  }

  .hero-section {
    min-height: auto;
    background: #ffffff; /* PC'deki gibi beyaz arka plan */
  }

  /* Mobilde avantaj grid'ini gizle */
  .features-grid {
    display: none !important;
  }

  /* Glass container'a mobilde de PC ile aynı açık renk tasarımı ver */
  .hero-glass-container {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(67, 89, 113, 0.15) !important;
    box-shadow: 0 4px 18px 0 rgba(67, 89, 113, 0.08) !important;
    padding: 22px 18px !important;
    border-radius: 16px !important;
    gap: 14px !important;
    max-width: 100% !important;
  }

  .hero-container {
    min-height: auto;
  }

  .hero-left {
    padding: 10px 16px 24px;
    min-height: auto;
  }

  /* Mobilde kartları carousel olarak yatay diz */
  .hero-carousel-wrapper {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    scrollbar-width: none !important; /* Firefox */
    padding: 4px 2px !important;
  }

  .hero-carousel-wrapper::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
  }

  .hero-carousel-wrapper .event-badge,
  .hero-carousel-wrapper .feature-item {
    flex: 0 0 calc(100% - 24px) !important; /* Her seferinde bir kart görünüp sağından diğeri gözüksün */
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    min-height: 64px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: #f5f5f9 !important;
    border: 1px solid rgba(67, 89, 113, 0.15) !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
  }

  .hero-carousel-wrapper .feature-icon {
    width: 26px !important;
    height: 26px !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(105, 108, 255, 0.08) !important;
    border: 1px solid rgba(105, 108, 255, 0.2) !important;
    color: #696cff !important;
  }

  .hero-carousel-wrapper .feature-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    overflow: hidden !important;
    text-align: left !important;
  }

  .hero-carousel-wrapper .feature-text strong {
    font-size: 9.5px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: block !important;
    color: #32475c !important;
    font-weight: 800 !important;
  }

  .hero-carousel-wrapper .feature-text span {
    font-size: 8.5px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: block !important;
    color: #697a8d !important;
  }

  /* Mobilde 4'lü rozet (badges) 2x2 grid yapısı */
  .event-detail-badges {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .event-badge {
    padding: 8px 8px !important;
    border-radius: 10px !important;
    gap: 6px !important;
    min-width: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .event-badge i {
    width: 26px !important;
    height: 26px !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    flex-shrink: 0 !important;
  }

  .event-badge div {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .event-badge strong {
    font-size: 9.5px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: block !important;
  }

  .event-badge span {
    font-size: 8.5px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: block !important;
  }

  /* Ana Sayfadaki Geri Sayım Bölümü (Otel bölümünün üstü) mobilde büyütülmüş görünüm */
  .festival-countdown-section {
    position: relative !important;
    bottom: auto !important;
    background: #ffffff !important;
    padding: 35px 10px 30px !important;
  }

  .countdown-wrap {
    display: flex !important;
    padding: 0 !important;
    background: #ffffff !important;
  }

  .countdown-container {
    gap: 14px !important;
  }

  .countdown-label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    color: var(--primary-gold) !important;
    letter-spacing: 1.5px !important;
    text-align: center !important;
  }

  .countdown-timer {
    display: flex !important;
    gap: 10px !important;
    justify-content: center !important;
  }

  /* Mobilde ana sayfadaki günlerin ilk (yüzler basamağı) sıfır kutusunu gizleme */
  #days-group .flip-group .flip-digit:first-child {
    display: none !important;
  }

  .countdown-timer .flip-digit {
    width: 25px !important;
    height: 36px !important;
  }

  .countdown-timer .flip-digit .digit-top,
  .countdown-timer .flip-digit .digit-bottom,
  .countdown-timer .flip-digit .leaf-front,
  .countdown-timer .flip-digit .leaf-rear {
    height: 18px !important;
    font-size: 19px !important;
    line-height: 36px !important;
    border-radius: 5px !important;
  }

  .countdown-timer .flip-digit .digit-bottom,
  .countdown-timer .flip-digit .leaf-rear {
    line-height: 0px !important;
  }

  .countdown-timer .flip-digit .leaf {
    height: 36px !important;
  }

  .countdown-timer .time-lbl {
    font-size: 9.5px !important;
    font-weight: 800 !important;
    color: #4d5d78 !important;
    letter-spacing: 0.5px !important;
  }

  /* Alt Kısımda Sabit Duran Çubukta (Sticky Bar) BEYAZ Arka Plan & Yan Yana 2 Buton */
  .sticky-countdown {
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px 15px !important;
    gap: 10px !important;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-top: 1px solid rgba(18, 27, 45, 0.12) !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
  }

  .sticky-countdown .sticky-label,
  .sticky-countdown .sticky-timer {
    display: none !important;
  }

  .sticky-countdown .btn-sticky-login {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex: 1 !important;
    max-width: 160px !important;
    padding: 10px 12px !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    border-radius: 25px !important;
    background: #f0f2f5 !important;
    border: 1px solid rgba(18, 27, 45, 0.15) !important;
    color: #121b2d !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    margin: 0 !important;
  }

  .sticky-countdown .btn-sticky-buy {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex: 1 !important;
    max-width: 170px !important;
    padding: 10px 12px !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    border-radius: 25px !important;
    background: linear-gradient(135deg, #d4af37 0%, #b89220 100%) !important;
    color: #121b2d !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25) !important;
    margin: 0 !important;
  }

  .program-tabs {
    gap: 6px;
  }

  .program-tab {
    padding: 10px 16px;
    font-size: 11px;
  }

  .distance-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .f-sep {
    display: none;
  }

  /* Mobilde masaüstü geri sayımını gizle */
  .hero-right .hero-countdown-container {
    display: none !important;
  }

  /* Mobil Kahraman Geri Sayım Sayacı */
  .mobile-hero-countdown {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 15px !important;
    padding: 15px !important;
    background: #f5f5f9 !important;
    border: 1px solid rgba(67, 89, 113, 0.15) !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mobile-hero-countdown .countdown-label {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #697a8d !important;
    letter-spacing: 1.5px !important;
  }

  .mobile-hero-countdown .countdown-timer {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .mobile-hero-countdown .time-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
  }

  .mobile-hero-countdown .time-lbl {
    font-size: 8.5px !important;
    font-weight: 800 !important;
    color: #697a8d !important;
  }

  /* Mobil Whats Included listeleme */
  .whats-included-strip {
    flex-direction: column !important;
    align-items: center !important;
    padding: 24px 20px !important;
    gap: 14px !important;
    margin-top: 30px !important; /* Üstteki fiyat kartı ile arasına boşluk eklendi */
    margin-bottom: 25px !important;
  }
  
  .whats-included-strip .included-item {
    width: 100% !important;
    max-width: 250px !important; /* Ortalanmış bir blok olarak görünmesini sağlar */
    justify-content: flex-start !important;
    text-align: left !important;
    font-size: 13px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important; /* Dış boşlukları sıfırlayarak tam eşit aralık sağladık */
  }

  /* Mobil Footer Düzenlemeleri (Yalnızca Mobilde!) */
  .main-footer {
    padding: 50px 0 30px !important;
    background: #fafafc !important; /* Soft, premium light blue-grey background */
    text-align: center !important;
  }

  .footer-brand-column {
    align-items: center !important;
    text-align: center !important;
    gap: 15px !important;
  }

  .footer-description {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 280px !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    color: #697a8d !important;
  }

  .footer-social-links {
    justify-content: center !important;
    gap: 20px !important;
  }

  .footer-social-links a {
    font-size: 20px !important;
  }

  .footer-links-grid {
    gap: 30px !important;
    margin-top: 20px !important;
  }

  .footer-link-col {
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
  }

  .footer-link-col h3 {
    font-size: 13px !important;
    color: #121b2d !important;
    margin-bottom: 5px !important;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3) !important;
    padding-bottom: 4px !important;
    display: inline-block !important;
  }

  .footer-link-col ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .footer-link-col ul a {
    font-size: 13.5px !important;
    color: #566a7f !important;
  }

  .footer-bottom-row {
    margin-top: 30px !important;
    border-top: 1px solid rgba(67, 89, 113, 0.1) !important;
    padding-top: 25px !important;
    gap: 15px !important;
  }

  .footer-copyright {
    font-size: 11px !important;
    line-height: 1.4 !important;
    color: #a1acb8 !important;
  }
}

/* ==========================================
   LANGUAGE SWITCHER & PREMIUM CHECK TICKET
   ========================================== */
.btn-login-nav {
  background: linear-gradient(135deg, #d4af37 0%, #b89220 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease !important;
}

.btn-login-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  filter: brightness(1.08);
}

.btn-login-nav::after {
  display: none !important;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.lang-dropdown-btn {
  background: #ffffff;
  border: 1px solid rgba(18, 27, 45, 0.12);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
  background: #fcfbfa;
  border-color: rgba(18, 27, 45, 0.2);
}

.lang-dropdown-btn img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lang-dropdown-btn i {
  font-size: 10px;
  color: #888;
  transition: transform 0.3s ease;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(18, 27, 45, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  padding: 6px;
  min-width: 125px;
  z-index: 1010;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lang-dropdown-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light-soft);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-dropdown-item img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-dropdown-item:hover {
  background: #f7f4ec;
  color: var(--primary-gold);
}

/* Hide mobile language switcher globally (only shown inside mobile media queries) */
.mobile-lang-switcher {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-lang-switcher {
    display: flex;
  }
}

.slogan-glass-card {
  cursor: default;
}

.slogan-glass-card:hover {
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.9) !important;
  background: rgba(10, 5, 32, 0.95) !important;
}

.btn-hotel-glass-primary:hover {
  background: rgba(18, 27, 45, 0.12) !important;
  border-color: rgba(18, 27, 45, 0.3) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05) !important;
}

.btn-hotel-glass-secondary:hover {
  background: rgba(0, 168, 181, 0.12) !important;
  border-color: rgba(0, 168, 181, 0.4) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 181, 0.1) !important;
}

/* GLOBAL MOBİL YATAY KAYMA (HORIZONTAL OVERFLOW) ENGELLEME */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
  }

  .container, .navbar-container, .hero-container, .hero-left, .hero-right, section, header, footer, main {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ==========================================================================
   IDF ENHANCEMENTS: CORPORATE COLORS, QUICK ACTIONS, NEW SECTIONS & ANIMATIONS
   ========================================================================== */

:root {
  /* Corporate Colors Overrides */
  --primary-gold: #D4AF37;
  --premium-black: #171411;
  --off-white: #F6F3EC;
  --aegean-turquoise: #2FAFC4;
  --ephesus-stone: #A57F55;
  --primary-pink: #D4AF37; /* Override main pink accents with Gold */
}

/* Base Body Background Color Adjustment */
body {
  background-color: #ffffff !important;
  color: var(--premium-black);
}

/* Gold CTA Button Accent Improvements */
.btn-primary, 
.btn-login-gradient {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #b89220 100%) !important;
  color: #171411 !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
  border: none !important;
  font-weight: 800 !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.btn-primary:hover, 
.btn-login-gradient:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
  filter: brightness(1.06) !important;
}

/* HERO QUICK ACTIONS MENU */
.hero-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0;
  width: 100%;
}

.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 12px;
  background: #f5f5f9;
  border: 1.5px solid rgba(67, 89, 113, 0.15);
  color: #32475c;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12.5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(67, 89, 113, 0.05);
  text-decoration: none;
}

.quick-action-btn:hover {
  transform: translateY(-3px);
  background: rgba(105, 108, 255, 0.08);
  border-color: #696cff;
  box-shadow: 0 8px 25px rgba(105, 108, 255, 0.12);
  color: #696cff;
}

.quick-action-btn .qa-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.quick-action-btn:hover .qa-icon {
  transform: scale(1.18);
}

/* Gold CTA Highlight for Ticket Buying */
.quick-action-btn.qa-buy-ticket {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #b89220 100%);
  border-color: var(--primary-gold);
  color: #171411;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.quick-action-btn.qa-buy-ticket:hover {
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, #e5c04f 0%, var(--primary-gold) 100%);
  color: #171411;
}

@media (max-width: 768px) {
  .hero-quick-actions {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .quick-action-btn {
    padding: 12px 6px !important;
    font-size: 11.5px !important;
  }
}

/* SOCIAL PROOF SECTION */
.social-proof-section {
  background: var(--premium-black);
  padding: 55px 0;
  border-top: 2px solid rgba(212, 175, 55, 0.25);
  border-bottom: 2px solid rgba(212, 175, 55, 0.25);
  position: relative;
  z-index: 10;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.proof-card {
  padding: 10px;
  transition: transform 0.3s ease;
}

.proof-card:hover {
  transform: translateY(-3px);
}

.proof-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  color: var(--primary-gold);
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
}

.proof-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .social-proof-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 10px !important;
  }
  .proof-number {
    font-size: 32px !important;
  }
  .proof-label {
    font-size: 12px !important;
  }
}

/* ARTISTS & DJS LINE-UP SECTION */
.lineup-section {
  padding: 90px 0;
  background: #ffffff !important;
}

.lineup-tabs-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
}

.lineup-tab-btn {
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(18, 27, 45, 0.12);
  background: #ffffff;
  color: #121b2d;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lineup-tab-btn:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-1px);
}

.lineup-tab-btn.active {
  background: var(--premium-black) !important;
  color: var(--primary-gold) !important;
  border-color: var(--premium-black) !important;
  box-shadow: 0 6px 15px rgba(23, 20, 17, 0.15) !important;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lineup-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(18, 27, 45, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lineup-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.12);
}

.card-image-placeholder {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.lineup-card:hover .card-image-placeholder {
  transform: scale(1.04);
}

.lineup-card-info {
  padding: 16px 12px;
  text-align: center;
}

.lineup-card-info h3 {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--premium-black);
  margin-bottom: 4px;
}

.lineup-card-info span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--ephesus-stone);
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .lineup-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
}

/* DRESS CODE SECTION */
.dresscode-section {
  padding: 90px 0;
  background: #ffffff;
  border-top: 1px solid rgba(18, 27, 45, 0.05);
}

.dresscode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dresscode-card {
  background: var(--off-white);
  border-radius: 16px;
  border: 1px solid rgba(165, 127, 85, 0.15);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.dresscode-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: var(--primary-gold);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.dc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--premium-black);
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.dc-icon {
  font-size: 26px;
  margin-bottom: 15px;
  margin-top: 5px;
}

.dc-icon i {
  transition: transform 0.3s ease;
}

.dresscode-card:hover .dc-icon i {
  transform: scale(1.2) rotate(5deg);
}

.dresscode-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--premium-black);
  margin-bottom: 8px;
}

.dresscode-card p {
  font-family: var(--font-body);
  font-size: 12px;
  color: #4d5d78;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .dresscode-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px 15px !important;
  }
}

/* SHOWS SECTION */
.shows-section {
  padding: 90px 0;
  background: #ffffff !important;
  border-top: 1px solid rgba(18, 27, 45, 0.05);
}

.shows-container-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.shows-image-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.shows-main-img {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.shows-image-box:hover .shows-main-img {
  transform: scale(1.02);
}

.shows-decor-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(23, 20, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.shows-content-box h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--premium-black);
  margin: 8px 0 14px 0;
}

.section-subtitle-alt {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.shows-content-box p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #4d5d78;
  line-height: 1.65;
  margin-bottom: 20px;
}

.shows-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shows-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #121b2d;
}

.shows-list li i {
  color: var(--primary-gold);
  font-size: 14.5px;
}

@media (max-width: 992px) {
  .shows-container-inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .shows-main-img {
    height: 280px !important;
  }
}

/* COMPETITIONS SECTION */
.competitions-section {
  padding: 90px 0;
  background: #ffffff;
  border-top: 1px solid rgba(18, 27, 45, 0.05);
}

.competitions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.comp-card {
  background: var(--off-white);
  border-radius: 20px;
  border: 1.5px solid rgba(165, 127, 85, 0.12);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.comp-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.08);
}

.comp-icon {
  font-size: 28px;
  color: var(--primary-gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.06);
  margin: 0 auto 16px auto;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.comp-icon i {
  transition: transform 0.3s ease;
}

.comp-card:hover .comp-icon i {
  transform: scale(1.2) rotate(-5deg);
}

.comp-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--premium-black);
  margin-bottom: 10px;
}

.comp-card p {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #4d5d78;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .competitions-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

/* SPONSORS SECTION */
.sponsors-section {
  padding: 85px 0;
  background: #ffffff;
  border-top: 1px solid rgba(18, 27, 45, 0.05);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.sponsor-card {
  background: var(--off-white);
  border: 1px solid rgba(165, 127, 85, 0.12);
  border-radius: 12px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.3s ease;
}

.sponsor-card:hover {
  border-color: var(--primary-gold);
  background: #ffffff;
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.06);
}

.sponsor-logo {
  max-height: 44px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
  filter: grayscale(0);
}

.sponsor-logo-placeholder {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--ephesus-stone);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .sponsor-card {
    height: 70px !important;
  }
}

/* GENTLE SECTION TRANSITIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-proof-section,
.lineup-section,
.dresscode-section,
.shows-section,
.competitions-section,
.sponsors-section {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* MOBILE PRICE CARDS IMPROVED SIZING & LEGIBILITY */
@media (max-width: 550px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    max-width: 380px !important;
    margin: 0 auto !important;
  }
  .pricing-cards-grid > div {
    padding: 24px 18px !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
  }
  .pricing-cards-grid h4 {
    font-size: 13.5px !important;
    font-weight: 800 !important;
  }
  .pricing-cards-grid div[style*="font-size:20px"] {
    font-size: 20px !important;
  }
  
  .pricing-eu-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    max-width: 380px !important;
    margin: 0 auto !important;
  }
  .pricing-eu-grid > div {
    padding: 24px 18px !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
  }
}

/* ==========================================================================
   LIQUID METAL BUTTON SHADER STYLING (REACT COMPONENT REPLICAS)
   ========================================================================== */
.liquid-metal-button {
  position: relative;
  display: inline-block;
  perspective: 1000px;
  text-decoration: none;
  cursor: pointer;
  width: 250px;
  height: 52px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: visible;
  user-select: none;
}

/* Specific sizing for sticky buy button in countdown */
.sticky-countdown .liquid-metal-button {
  width: 170px !important;
  height: 42px !important;
  justify-self: end !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  .sticky-countdown .liquid-metal-button {
    width: 160px !important;
    height: 38px !important;
  }
}

/* Inner dark button overlay */
.liquid-metal-inner {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 100px;
  background: linear-gradient(180deg, #A57F55 0%, #876239 100%);
  z-index: 2;
  transition: all 0.3s ease;
  pointer-events: none;
}

.liquid-metal-button:active .liquid-metal-inner {
  background: linear-gradient(180deg, #8c6843 0%, #634626 100%);
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.4), inset 0px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Shader canvas container */
.liquid-metal-shader-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.3), 
              0px 20px 12px 0px rgba(0, 0, 0, 0.04), 
              0px 9px 9px 0px rgba(0, 0, 0, 0.08), 
              0px 2px 5px 0px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

.liquid-metal-button:hover .liquid-metal-shader-wrap {
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.4), 
              0px 12px 6px 0px rgba(0, 0, 0, 0.05), 
              0px 8px 5px 0px rgba(0, 0, 0, 0.1), 
              0px 4px 4px 0px rgba(0, 0, 0, 0.15), 
              0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

.liquid-metal-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 100px;
}

/* Content wrapper */
.liquid-metal-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff; /* Clear white text */
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 3;
  pointer-events: none;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sticky-countdown .liquid-metal-buy-button .liquid-metal-content {
  font-size: 12.5px;
  gap: 6px;
}

.liquid-metal-button:hover .liquid-metal-content {
  color: #ffffff;
  transform: scale(1.03);
}

.liquid-metal-button:active .liquid-metal-content {
  transform: scale(0.97);
}

/* Click ripples */
.liquid-metal-ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-animation 0.6s cubic-bezier(0.1, 0.8, 0.3, 1);
  z-index: 4;
}

@keyframes ripple-animation {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(15);
    opacity: 0;
  }
}




