/* ==========================================================================
   BIG CITY MINI - Modern Design System & CSS
   ========================================================================== */

:root {
  --primary: #FF5757;
  --primary-hover: #E04343;
  --secondary: #4F46E5;
  --secondary-hover: #4338CA;
  --accent-green: #10B981;
  --accent-yellow: #F59E0B;
  --accent-pink: #EC4899;
  
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Top Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #4F46E5, #EC4899);
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.announcement-bar code {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

.announcement-link {
  color: white;
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition);
}

.announcement-link:hover {
  opacity: 0.85;
}

/* Header & Navigation */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(255, 87, 87, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.logo-title .highlight {
  color: var(--primary);
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-badge {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 20px -4px rgba(255, 87, 87, 0.4);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(255, 87, 87, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: #F1F5F9;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 24px;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.45) 100%);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  color: white;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-chip i {
  color: var(--accent-yellow);
}

/* Sections Layout */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 24px;
}

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

.section-header.center {
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Stations Section */
.stations-section {
  background: white;
}

.stations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.station-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.station-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.station-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.station-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.station-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
}

.station-badge.fire { background: var(--primary); }
.station-badge.green { background: var(--accent-green); }
.station-badge.pink { background: var(--accent-pink); }

.station-body {
  padding: 28px;
  position: relative;
}

.station-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.fire-color { background: #FEE2E2; color: var(--primary); }
.green-color { background: #D1FAE5; color: var(--accent-green); }
.pink-color { background: #FCE7F3; color: var(--accent-pink); }
.purple-color { background: #E0E7FF; color: var(--secondary); }
.orange-color { background: #FEF3C7; color: var(--accent-yellow); }
.blue-color { background: #E0F2FE; color: #0284C7; }

.station-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.station-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.station-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;

}

.station-highlights li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.station-highlights li i {
  color: var(--accent-green);
}

.station-card.mini {
  padding: 28px;
}

/* Concept Section */
.concept-section {
  background: #F1F5F9;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.concept-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.concept-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.concept-quote-card {
  background: linear-gradient(135deg, var(--secondary), #312E81);
  color: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

.concept-quote-card p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
}

.quote-author strong {
  display: block;
  font-size: 1.05rem;
}

.quote-author span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Booking Widget */
.tickets-section {
  background: white;
}

.booking-widget {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.booking-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.booking-card h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.ticket-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ticket-option-card {
  background: white;
  border: 2px solid var(--border-light);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.ticket-option-card.active, .ticket-option-card:hover {
  border-color: var(--primary);
  background: #FFF5F5;
}

.ticket-info {
  display: flex;
  flex-direction: column;
}

.ticket-name {
  font-weight: 700;
  font-size: 0.92rem;
}

.ticket-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.ticket-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-main);
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.btn-count {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: white;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.count-val {
  font-weight: 700;
  font-size: 0.9rem;
}

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

.form-group label, .label-heading {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  font-family: inherit;
  font-size: 0.95rem;
}

.slot-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slot-btn {
  background: white;
  border: 2px solid var(--border-light);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.slot-btn.active, .slot-btn:hover {
  border-color: var(--secondary);
  background: #EEF2FF;
  color: var(--secondary);
}

.booking-card.summary {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.summary-details {
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.summary-row strong {
  color: var(--text-dark);
}

.summary-divider {
  height: 1px;
  background: var(--border-light);
  margin: 16px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.total-price {
  font-size: 1.5rem;
  color: var(--primary);
}

.security-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* Party Section */
.birthday-section {
  background: #F8FAFC;
}

.party-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.party-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.party-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.party-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.party-header {
  margin-bottom: 24px;
}

.party-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.party-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-dark);
}

.party-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.party-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.party-features li {
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.party-features li i {
  color: var(--accent-green);
}

/* Info Section */
.info-section {
  background: white;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.info-box {
  background: var(--bg-main);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
}

.info-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border-light);
}

/* FAQ Accordion */
.faq-section {
  background: #F8FAFC;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Footer */
.main-footer {
  background: var(--text-dark);
  color: white;
  padding-top: 80px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 60px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}

.footer-logo .logo-title {
  color: white;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);

}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-icon {
  font-size: 3.5rem;
  color: var(--accent-green);
  margin-bottom: 16px;
}

.ticket-qr-box {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.qr-code {
  font-size: 3rem;
  color: var(--text-dark);
}

.ticket-code-info {
  text-align: left;
}

.code-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.code-val {
  font-size: 1.1rem;
  color: var(--secondary);
}

.modal-summary-box {
  background: #EEF2FF;
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 24px;
  text-align: left;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-title { font-size: 2.5rem; }
  .stations-grid { grid-template-columns: 1fr; }
  .concept-grid { grid-template-columns: 1fr; }
  .booking-steps { grid-template-columns: 1fr; }
  .party-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
}
