/*
 * =====================================================
 * SYDNEY TOWER EYE - Official Ticketing Website
 * Premium Blue & Orange Theme v1.0
 * =====================================================
 */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Brand Colors - Blue & Orange Theme */
  --ste-blue: #1a3a5c;
  --ste-blue-light: #2a5a8c;
  --ste-blue-dark: #0f2540;
  
  --ste-orange: #f7931e;
  --ste-orange-light: #ffab40;
  --ste-orange-dark: #e67300;
  
  /* Neutrals */
  --ste-white: #FFFFFF;
  --ste-gray-100: #F5F7FA;
  --ste-gray-200: #E8ECF0;
  --ste-gray-300: #CCD5DD;
  --ste-gray-500: #7A8B99;
  --ste-gray-700: #4A5968;
  --ste-gray-900: #1A2530;
  
  /* Typography */
  --ste-font-display: 'Playfair Display', Georgia, serif;
  --ste-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --ste-space-xs: 0.25rem;
  --ste-space-sm: 0.5rem;
  --ste-space-md: 1rem;
  --ste-space-lg: 1.5rem;
  --ste-space-xl: 2rem;
  --ste-space-2xl: 3rem;
  --ste-space-3xl: 4rem;
  
  /* Border Radius */
  --ste-radius-sm: 4px;
  --ste-radius-md: 8px;
  --ste-radius-lg: 12px;
  --ste-radius-xl: 20px;
  --ste-radius-full: 50px;
  
  /* Shadows */
  --ste-shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --ste-shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --ste-shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
  --ste-shadow-orange: 0 4px 15px rgba(247, 147, 30, 0.35);
  
  /* Transitions */
  --ste-transition: all 0.3s ease;
  
  /* Layout */
  --ste-promo-height: 48px;
  --ste-header-height: 70px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ste-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ste-gray-900);
  background: var(--ste-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--ste-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==================== CONTAINER ==================== */
.ste-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--ste-space-lg);
}

/* ==================== PROMO BANNER ==================== */
.ste-promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--ste-promo-height);
  background: linear-gradient(135deg, var(--ste-orange) 0%, var(--ste-orange-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ste-space-md);
  padding: 0 var(--ste-space-md);
  color: var(--ste-white);
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
}

.ste-promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: promo-shine 3s infinite;
}

@keyframes promo-shine {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.ste-promo-banner__icon {
  font-size: 1.2rem;
}

.ste-promo-banner__text {
  font-weight: 700;
}

.ste-promo-banner__discount {
  background: var(--ste-blue);
  color: var(--ste-white);
  padding: 4px 12px;
  border-radius: var(--ste-radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
}

.ste-promo-banner__timer {
  display: flex;
  align-items: center;
  gap: var(--ste-space-sm);
  background: rgba(0,0,0,0.2);
  padding: 4px 14px;
  border-radius: var(--ste-radius-full);
  font-weight: 600;
}

.ste-promo-banner__timer span:last-child {
  font-family: var(--ste-font-display);
  font-weight: 700;
  min-width: 45px;
  font-size: 1rem;
}

/* ==================== HEADER ==================== */
.ste-header {
  position: fixed;
  top: var(--ste-promo-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--ste-header-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 58, 92, 0.1);
  box-shadow: var(--ste-shadow-sm);
}

.ste-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.ste-header__logo {
  display: flex;
  align-items: center;
  gap: var(--ste-space-md);
}

.ste-header__logo img {
  height: 40px;
  width: auto;
  max-width: 180px;
}

.ste-header__logo-text {
  display: flex;
  flex-direction: column;
}

.ste-header__logo-text span {
  font-family: var(--ste-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ste-blue);
}

.ste-header__logo-text small {
  font-size: 0.7rem;
  color: var(--ste-gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
.ste-header__nav {
  display: flex;
  align-items: center;
  gap: var(--ste-space-xl);
}

.ste-header__link {
  color: var(--ste-gray-700);
  font-weight: 500;
  font-size: 0.9rem;
  padding: var(--ste-space-sm) 0;
  position: relative;
}

.ste-header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ste-orange);
  transition: var(--ste-transition);
}

.ste-header__link:hover,
.ste-header__link--active {
  color: var(--ste-blue);
}

.ste-header__link:hover::after,
.ste-header__link--active::after {
  width: 100%;
}

/* Header Actions */
.ste-header__actions {
  display: flex;
  align-items: center;
  gap: var(--ste-space-lg);
}

/* Mobile Menu Button */
.ste-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--ste-space-sm);
}

.ste-header__menu span {
  width: 24px;
  height: 2px;
  background: var(--ste-blue);
  transition: var(--ste-transition);
}

/* ==================== BUTTONS ==================== */
.ste-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ste-space-sm);
  padding: 12px 28px;
  border-radius: var(--ste-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--ste-transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.ste-btn--primary {
  background: linear-gradient(135deg, var(--ste-orange-light) 0%, var(--ste-orange) 50%, var(--ste-orange-dark) 100%);
  color: var(--ste-white);
  box-shadow: var(--ste-shadow-orange);
}

.ste-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.5);
}

.ste-btn--outline {
  background: transparent;
  border-color: var(--ste-blue);
  color: var(--ste-blue);
}

.ste-btn--outline:hover {
  background: var(--ste-blue);
  color: var(--ste-white);
}

.ste-btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.ste-btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.ste-btn--block {
  width: 100%;
}

/* ==================== HERO SECTION ==================== */
.ste-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--ste-promo-height) + var(--ste-header-height) + var(--ste-space-2xl));
  padding-bottom: var(--ste-space-3xl);
  overflow: hidden;
}

.ste-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../img/hero.jpg') center center / cover no-repeat, linear-gradient(135deg, var(--ste-blue) 0%, var(--ste-blue-light) 100%);
}

.ste-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, 
    rgba(26, 58, 92, 0.3) 0%, 
    rgba(26, 58, 92, 0.7) 100%);
  pointer-events: none;
}

.ste-hero__content {
  text-align: center;
  color: var(--ste-white);
  max-width: 900px;
  padding: 0 var(--ste-space-lg);
}

.ste-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--ste-space-sm);
  background: rgba(247, 147, 30, 0.2);
  border: 1px solid rgba(247, 147, 30, 0.5);
  padding: var(--ste-space-sm) var(--ste-space-lg);
  border-radius: var(--ste-radius-full);
  font-size: 0.9rem;
  color: var(--ste-orange-light);
  margin-bottom: var(--ste-space-xl);
}

.ste-hero__title {
  font-family: var(--ste-font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--ste-space-lg);
}

.ste-hero__title span {
  display: block;
}

.ste-hero__title-accent {
  background: linear-gradient(135deg, var(--ste-orange-light), var(--ste-orange), var(--ste-orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ste-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto var(--ste-space-2xl);
  line-height: 1.8;
}

.ste-hero__cta {
  display: flex;
  gap: var(--ste-space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--ste-space-3xl);
}

.ste-hero__cta .ste-btn--outline {
  border-color: var(--ste-white);
  color: var(--ste-white);
}

.ste-hero__cta .ste-btn--outline:hover {
  background: var(--ste-white);
  color: var(--ste-blue);
}

/* Trust Items */
.ste-hero__trust {
  display: flex;
  gap: var(--ste-space-2xl);
  justify-content: center;
  flex-wrap: wrap;
}

.ste-trust-item {
  display: flex;
  align-items: center;
  gap: var(--ste-space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.ste-trust-item__icon {
  color: var(--ste-orange);
  font-weight: 700;
}

/* ==================== SECTIONS ==================== */
.ste-section {
  padding: var(--ste-space-3xl) 0;
}

.ste-section--dark {
  background: var(--ste-gray-100);
}

.ste-section--blue {
  background: linear-gradient(180deg, var(--ste-blue) 0%, var(--ste-blue-dark) 100%);
  color: var(--ste-white);
}

/* Section Header */
.ste-section-header {
  text-align: center;
  margin-bottom: var(--ste-space-2xl);
}

.ste-section-header__tag {
  display: inline-block;
  color: var(--ste-orange);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--ste-space-sm);
}

.ste-section--blue .ste-section-header__tag {
  color: var(--ste-orange-light);
}

.ste-section-header__title {
  font-family: var(--ste-font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ste-blue);
  margin-bottom: var(--ste-space-md);
}

.ste-section--blue .ste-section-header__title {
  color: var(--ste-white);
}

.ste-section-header__subtitle {
  color: var(--ste-gray-500);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== TICKET CARDS ==================== */
.ste-tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--ste-space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.ste-ticket-card {
  position: relative;
  background: var(--ste-white);
  border: 1px solid var(--ste-gray-200);
  border-radius: var(--ste-radius-lg);
  overflow: hidden;
  transition: var(--ste-transition);
  box-shadow: var(--ste-shadow-sm);
}

.ste-ticket-card:hover {
  border-color: var(--ste-blue);
  transform: translateY(-5px);
  box-shadow: var(--ste-shadow-lg);
}

.ste-ticket-card--featured {
  border-color: var(--ste-orange);
  box-shadow: var(--ste-shadow-orange);
}

.ste-ticket-card__badge {
  position: absolute;
  top: var(--ste-space-md);
  left: var(--ste-space-md);
  background: var(--ste-blue);
  color: var(--ste-white);
  padding: 4px 12px;
  border-radius: var(--ste-radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.ste-ticket-card__discount {
  position: absolute;
  top: var(--ste-space-md);
  right: var(--ste-space-md);
  background: #DC2626;
  color: var(--ste-white);
  padding: 4px 10px;
  border-radius: var(--ste-radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
  z-index: 2;
}

.ste-ticket-card__image {
  height: 180px;
  background: linear-gradient(135deg, var(--ste-blue) 0%, var(--ste-blue-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ste-ticket-card__image::before {
  content: '🏙️';
  font-size: 3rem;
  position: absolute;
  z-index: 0;
  opacity: 0.3;
}

.ste-ticket-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--ste-white) 100%);
  z-index: 1;
}

.ste-ticket-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.ste-ticket-card__content {
  padding: var(--ste-space-lg);
}

.ste-ticket-card__icon {
  font-size: 2rem;
  margin-bottom: var(--ste-space-sm);
}

.ste-ticket-card__title {
  font-family: var(--ste-font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ste-blue);
  margin-bottom: var(--ste-space-sm);
}

.ste-ticket-card__desc {
  color: var(--ste-gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--ste-space-md);
}

.ste-ticket-card__includes {
  margin-bottom: var(--ste-space-lg);
}

.ste-ticket-card__includes li {
  color: var(--ste-gray-700);
  font-size: 0.85rem;
  padding: 4px 0;
}

.ste-ticket-card__pricing-table {
  margin-bottom: var(--ste-space-lg);
}

.ste-ticket-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--ste-gray-200);
}

.ste-ticket-card__price-row:last-child {
  border-bottom: none;
}

.ste-ticket-card__price-row span:first-child {
  color: var(--ste-gray-700);
  font-size: 0.9rem;
}

.ste-ticket-card__price-row .old {
  color: var(--ste-gray-500);
  text-decoration: line-through;
  font-size: 0.85rem;
  margin-right: var(--ste-space-sm);
}

.ste-ticket-card__price-row .now {
  color: var(--ste-orange);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ==================== EXPERIENCES GRID ==================== */
.ste-experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--ste-space-xl);
}

.ste-experience-card {
  text-align: center;
  padding: var(--ste-space-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--ste-radius-lg);
  transition: var(--ste-transition);
}

.ste-experience-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.ste-experience-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--ste-space-md);
}

.ste-experience-card__title {
  font-family: var(--ste-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ste-white);
  margin-bottom: var(--ste-space-sm);
}

.ste-experience-card__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ==================== FEATURES GRID ==================== */
.ste-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--ste-space-xl);
}

.ste-feature-card {
  text-align: center;
  padding: var(--ste-space-xl);
  background: var(--ste-white);
  border: 1px solid var(--ste-gray-200);
  border-radius: var(--ste-radius-lg);
  transition: var(--ste-transition);
}

.ste-feature-card:hover {
  border-color: var(--ste-orange);
  transform: translateY(-3px);
  box-shadow: var(--ste-shadow-md);
}

.ste-feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--ste-space-md);
}

.ste-feature-card__title {
  font-family: var(--ste-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ste-blue);
  margin-bottom: var(--ste-space-sm);
}

.ste-feature-card__desc {
  color: var(--ste-gray-500);
  font-size: 0.9rem;
}

/* ==================== PROCESS STEPS ==================== */
.ste-process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--ste-space-md);
}

.ste-process-step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.ste-process-step__number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ste-orange), var(--ste-orange-dark));
  color: var(--ste-white);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--ste-space-md);
}

.ste-process-step h3 {
  font-family: var(--ste-font-display);
  font-size: 1.1rem;
  color: var(--ste-blue);
  margin-bottom: var(--ste-space-sm);
}

.ste-process-step p {
  color: var(--ste-gray-500);
  font-size: 0.9rem;
}

.ste-process-arrow {
  color: var(--ste-orange);
  font-size: 1.5rem;
  padding-top: 10px;
}

/* ==================== CTA SECTION ==================== */
.ste-cta-section {
  position: relative;
  padding: var(--ste-space-3xl) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--ste-blue) 0%, var(--ste-blue-dark) 100%);
  color: var(--ste-white);
}

.ste-cta-section__title {
  font-family: var(--ste-font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--ste-white);
  margin-bottom: var(--ste-space-md);
}

.ste-cta-section__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: var(--ste-space-xl);
}

.ste-cta-section__timer {
  display: inline-flex;
  align-items: center;
  gap: var(--ste-space-sm);
  background: rgba(247, 147, 30, 0.2);
  border: 1px solid rgba(247, 147, 30, 0.4);
  padding: var(--ste-space-sm) var(--ste-space-lg);
  border-radius: var(--ste-radius-full);
  margin-bottom: var(--ste-space-xl);
  color: var(--ste-orange-light);
  font-weight: 600;
}

/* ==================== FOOTER ==================== */
.ste-footer {
  background: var(--ste-gray-900);
  color: var(--ste-white);
  padding: var(--ste-space-3xl) 0 var(--ste-space-xl);
}

.ste-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--ste-space-2xl);
  margin-bottom: var(--ste-space-2xl);
}

.ste-footer__col h4 {
  font-family: var(--ste-font-display);
  font-size: 1.1rem;
  color: var(--ste-orange);
  margin-bottom: var(--ste-space-md);
}

.ste-footer__col p,
.ste-footer__col li,
.ste-footer__col a {
  color: var(--ste-gray-300);
  font-size: 0.9rem;
  line-height: 1.8;
}

.ste-footer__col a:hover {
  color: var(--ste-orange);
}

.ste-footer__logo {
  display: flex;
  align-items: center;
  gap: var(--ste-space-md);
  margin-bottom: var(--ste-space-md);
}

.ste-footer__logo img {
  height: 45px;
}

.ste-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--ste-space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ste-space-md);
}

.ste-footer__bottom p {
  color: var(--ste-gray-500);
  font-size: 0.85rem;
}

.ste-footer__payments {
  display: flex;
  gap: var(--ste-space-sm);
  color: var(--ste-gray-500);
  font-size: 0.85rem;
}

/* ==================== MODAL ==================== */
.ste-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 58, 92, 0.92);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--ste-space-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--ste-transition);
}

.ste-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.ste-modal {
  background: var(--ste-white);
  border-radius: var(--ste-radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 98vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.ste-modal__header {
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--ste-blue) 0%, var(--ste-blue-light) 100%);
  border-radius: var(--ste-radius-lg) var(--ste-radius-lg) 0 0;
  position: relative;
  border-bottom: 3px solid var(--ste-orange);
}

.ste-modal__logo-wrap {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.ste-modal__logo {
  height: 32px;
  width: auto;
  background: none;
}

/* Date picker icon visibility */
.ste-modal__field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

.ste-modal__field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.ste-modal__header h2 {
  font-family: var(--ste-font-display);
  font-size: 1.1rem;
  color: var(--ste-white);
  margin-bottom: 2px;
}

.ste-modal__header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.ste-modal__close {
  position: absolute;
  top: var(--ste-space-md);
  right: var(--ste-space-md);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--ste-white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ste-transition);
}

.ste-modal__close:hover {
  background: var(--ste-orange);
  color: var(--ste-white);
}

.ste-modal__body {
  padding: 16px 20px;
  flex: 1;
  overflow-y: auto;
}

.ste-modal__promo {
  background: linear-gradient(135deg, var(--ste-orange), var(--ste-orange-dark));
  color: var(--ste-white);
  padding: 8px 14px;
  border-radius: var(--ste-radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 6px;
}

.ste-modal__field {
  margin-bottom: 10px;
}

.ste-modal__field label {
  display: block;
  color: var(--ste-gray-700);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ste-modal__field input,
.ste-modal__field select {
  width: 100%;
  padding: 10px 12px;
  background: var(--ste-gray-100);
  border: 2px solid var(--ste-gray-200);
  border-radius: var(--ste-radius-md);
  color: var(--ste-gray-900);
  font-size: 0.9rem;
  transition: var(--ste-transition);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.ste-modal__field select {
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A5968' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  cursor: pointer;
}

.ste-modal__field input:focus,
.ste-modal__field select:focus {
  outline: none;
  border-color: var(--ste-blue);
  background: var(--ste-white);
}

.ste-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Ticket Items in Modal */
.ste-ticket-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--ste-gray-100);
  border: 2px solid var(--ste-gray-200);
  border-radius: var(--ste-radius-md);
  margin-bottom: 8px;
  transition: var(--ste-transition);
}

.ste-ticket-item:hover {
  border-color: var(--ste-blue-light);
}

.ste-ticket-item.has-qty {
  border-color: var(--ste-blue);
  background: rgba(26, 58, 92, 0.05);
}

.ste-ticket-item__info {
  flex: 1;
}

.ste-ticket-item__info strong {
  display: block;
  color: var(--ste-blue);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.ste-ticket-item__info small {
  color: var(--ste-gray-500);
  font-size: 0.75rem;
}

.ste-ticket-item__pricing {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-right: 12px;
}

.ste-ticket-item__pricing .old {
  color: var(--ste-gray-500);
  text-decoration: line-through;
  font-size: 0.75rem;
}

.ste-ticket-item__pricing .now {
  color: var(--ste-orange);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Quantity Controls */
.ste-qty-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ste-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--ste-radius-sm);
  background: var(--ste-white);
  border: 1px solid var(--ste-gray-300);
  color: var(--ste-blue);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ste-transition);
}

.ste-qty-btn:hover {
  background: var(--ste-blue);
  color: var(--ste-white);
  border-color: var(--ste-blue);
}

.ste-qty-input {
  width: 36px;
  height: 28px;
  text-align: center;
  background: var(--ste-white);
  border: 1px solid var(--ste-gray-300);
  border-radius: var(--ste-radius-sm);
  color: var(--ste-blue);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Totals */
.ste-totals {
  background: var(--ste-gray-100);
  border: 1px solid var(--ste-gray-200);
  border-radius: var(--ste-radius-md);
  padding: 10px 14px;
  margin: 12px 0;
}

.ste-totals__row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: var(--ste-gray-700);
  font-size: 0.85rem;
}

.ste-totals__row.final {
  border-top: 1px solid var(--ste-gray-300);
  padding-top: 8px;
  margin-top: 8px;
  color: var(--ste-blue);
  font-size: 1rem;
  font-weight: 600;
}

.ste-totals__row.final span:last-child {
  color: var(--ste-orange);
}

.ste-secure-note {
  text-align: center;
  color: var(--ste-gray-500);
  font-size: 0.75rem;
  margin: 8px 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .ste-promo-banner {
    font-size: 0.75rem;
    gap: var(--ste-space-sm);
  }
  
  .ste-promo-banner__text {
    display: none;
  }
  
  .ste-header__logo {
    gap: var(--ste-space-sm);
    max-width: 180px;
  }
  
  .ste-header__logo img {
    height: 36px;
  }
  
  .ste-header__logo-text span {
    font-size: 0.95rem;
  }
  
  .ste-header__logo-text small {
    font-size: 0.6rem;
  }
  
  .ste-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ste-white);
    flex-direction: column;
    padding: var(--ste-space-lg);
    border-top: 1px solid var(--ste-gray-200);
    box-shadow: var(--ste-shadow-md);
  }
  
  .ste-header__nav.is-open {
    display: flex;
  }
  
  .ste-header__menu {
    display: flex;
  }
  
  .ste-hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .ste-hero__trust {
    flex-direction: column;
    align-items: center;
  }
  
  .ste-tickets-grid {
    grid-template-columns: 1fr;
  }
  
  .ste-process-arrow {
    display: none;
  }
  
  .ste-modal-overlay {
    padding: 0;
    align-items: stretch;
  }
  
  .ste-modal {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  
  .ste-modal__header {
    border-radius: 0;
    padding: 12px 16px;
  }
  
  .ste-modal__body {
    padding: 12px 16px;
  }
  
  .ste-modal__row {
    grid-template-columns: 1fr;
  }
  
  .ste-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
