/**
 * Ocean Park Hong Kong - Premium Ticket Booking
 * Hong Kong Ocean Theme with 40% Discount
 */

/* ============================
   CSS Variables
   ============================ */
:root {
  /* Ocean Park brand colors */
  --op-primary: #0077BE;        /* Ocean blue */
  --op-primary-dark: #005A8F;
  --op-primary-light: #0091E6;
  --op-secondary: #FF6B35;      /* Coral orange */
  --op-secondary-dark: #e0501a;
  --op-accent: #00D9FF;         /* Bright cyan */
  --op-nature: #00C9A7;         /* Teal green */
  --op-night: #1a1a2e;          /* Dark blue */
  --op-dark: #1a1a1a;
  --op-darker: #0d0d0d;
  --op-text: #333333;
  --op-text-muted: #666666;
  --op-text-light: #999999;
  --op-light: #f5f5f5;
  --op-lighter: #fafafa;
  --op-white: #ffffff;
  
  /* Typography */
  --op-font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --op-font-secondary: 'DM Sans', sans-serif;
  
  /* Spacing */
  --op-space-xs: 0.25rem;
  --op-space-sm: 0.5rem;
  --op-space-md: 1rem;
  --op-space-lg: 1.5rem;
  --op-space-xl: 2rem;
  --op-space-2xl: 3rem;
  --op-space-3xl: 4rem;
  
  /* Borders */
  --op-radius-sm: 8px;
  --op-radius-md: 12px;
  --op-radius-lg: 20px;
  --op-radius-xl: 28px;
  --op-radius-full: 9999px;
  
  /* Shadows */
  --op-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --op-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --op-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --op-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --op-transition-fast: 0.15s ease;
  --op-transition-base: 0.3s ease;
}

/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--op-font-secondary);
  color: var(--op-text);
  background-color: var(--op-lighter);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ============================
   Container
   ============================ */
.op-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--op-space-xl);
}

/* ============================
   Promo Banner
   ============================ */
.op-promo-banner {
  background: linear-gradient(90deg, var(--op-primary) 0%, #005A8F 100%);
  color: var(--op-white);
  padding: var(--op-space-sm) var(--op-space-md);
  text-align: center;
  position: relative;
  z-index: 1000;
}

.op-promo-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--op-space-md);
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
}

.op-promo-banner__icon {
  font-size: 1.2rem;
}

.op-promo-banner__discount {
  background: var(--op-secondary);
  color: var(--op-white);
  padding: 4px 14px;
  border-radius: var(--op-radius-full);
  font-weight: 700;
}

.op-promo-banner__timer {
  display: flex;
  align-items: center;
  gap: var(--op-space-sm);
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 14px;
  border-radius: var(--op-radius-full);
}

.op-promo-banner__timer span:last-child {
  font-family: 'Courier New', monospace;
  font-weight: 700;
}

/* ============================
   Header
   ============================ */
.op-header {
  background: var(--op-white);
  box-shadow: var(--op-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
}

.op-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--op-space-md) var(--op-space-xl);
  gap: var(--op-space-xl);
}

.op-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.op-header__logo img {
  height: 40px;
  width: auto;
  max-width: 160px;
}

.op-header__nav {
  display: flex;
  gap: var(--op-space-xl);
}

.op-header__link {
  font-weight: 500;
  color: var(--op-text);
  transition: color var(--op-transition-base);
  position: relative;
}

.op-header__link:hover {
  color: var(--op-primary);
}

.op-header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--op-primary);
  transition: width var(--op-transition-base);
}

.op-header__link:hover::after {
  width: 100%;
}

.op-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.op-header__menu span {
  width: 100%;
  height: 2px;
  background: var(--op-primary);
  border-radius: 2px;
  transition: var(--op-transition-base);
}

/* Language Switcher */
.op-lang-switcher {
  display: flex;
  gap: 4px;
  margin-right: 12px;
}

.op-lang-btn {
  background: transparent;
  border: 1px solid var(--op-primary);
  color: var(--op-primary);
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--op-transition-base);
}

.op-lang-btn:hover,
.op-lang-btn.active {
  background: var(--op-primary);
  color: var(--op-white);
}

/* ============================
   Buttons
   ============================ */
.op-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--op-space-sm);
  padding: var(--op-space-sm) var(--op-space-lg);
  font-weight: 600;
  border-radius: var(--op-radius-md);
  transition: all var(--op-transition-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.op-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.op-btn:hover::before {
  width: 300px;
  height: 300px;
}

.op-btn--primary {
  background: linear-gradient(135deg, var(--op-primary) 0%, var(--op-primary-light) 100%);
  color: var(--op-white);
  box-shadow: 0 4px 12px rgba(0, 119, 190, 0.3);
}

.op-btn--primary:hover {
  box-shadow: 0 6px 20px rgba(0, 119, 190, 0.4);
  transform: translateY(-2px);
}

.op-btn--outline {
  border: 2px solid var(--op-primary);
  color: var(--op-primary);
  background: transparent;
}

.op-btn--outline:hover {
  background: var(--op-primary);
  color: var(--op-white);
}

.op-btn--sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.op-btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.op-btn--block {
  width: 100%;
}

/* ============================
   Hero Section
   ============================ */
.op-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--op-space-3xl) var(--op-space-xl);
}

.op-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero-desktop.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.op-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 190, 0.7) 0%, rgba(0, 90, 143, 0.85) 100%);
  z-index: 2;
}

.op-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  color: var(--op-white);
}

.op-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--op-space-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: var(--op-radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--op-space-lg);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.op-hero__title {
  font-family: var(--op-font-primary);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--op-space-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.op-hero__title-accent {
  background: linear-gradient(90deg, var(--op-accent) 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.op-hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: var(--op-space-2xl);
  opacity: 0.95;
}

.op-hero__cta {
  display: flex;
  gap: var(--op-space-lg);
  justify-content: center;
  margin-bottom: var(--op-space-3xl);
  flex-wrap: wrap;
}

/* Hero outline button - white on blue background */
.op-hero__cta .op-btn--outline {
  border-color: var(--op-white);
  color: var(--op-white);
  background: transparent;
}

.op-hero__cta .op-btn--outline:hover {
  background: var(--op-white);
  color: var(--op-primary);
}

.op-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--op-space-xl);
  max-width: 700px;
  margin: 0 auto;
}

.op-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--op-space-xs);
}

.op-stat-item__value {
  font-family: var(--op-font-primary);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--op-accent);
}

.op-stat-item span:last-child {
  font-size: 0.9rem;
  opacity: 0.9;
}

.op-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--op-space-sm);
  color: var(--op-white);
  opacity: 0.7;
  font-size: 0.85rem;
}

.op-hero__scroll-icon {
  width: 24px;
  height: 36px;
  border: 2px solid var(--op-white);
  border-radius: 12px;
  position: relative;
}

.op-hero__scroll-icon::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--op-white);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ============================
   Section
   ============================ */
.op-section {
  padding: var(--op-space-3xl) 0;
}

.op-section--dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--op-white);
}

.op-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--op-space-3xl);
}

.op-section-title {
  font-family: var(--op-font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--op-space-md);
  background: linear-gradient(90deg, var(--op-primary) 0%, var(--op-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.op-section--dark .op-section-title {
  background: linear-gradient(90deg, var(--op-white) 0%, var(--op-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.op-section-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* ============================
   Ticket Cards
   ============================ */
.op-ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--op-space-xl);
  margin-top: var(--op-space-3xl);
}

.op-ticket-card {
  background: var(--op-white);
  border-radius: var(--op-radius-lg);
  padding: var(--op-space-2xl);
  box-shadow: var(--op-shadow-md);
  transition: all var(--op-transition-base);
  position: relative;
  overflow: hidden;
}

.op-ticket-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--op-primary-light) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--op-transition-base);
}

.op-ticket-card:hover::before {
  opacity: 0.1;
}

.op-ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--op-shadow-xl);
}

.op-ticket-card--premium {
  border: 2px solid var(--op-accent);
  background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
}

.op-ticket-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--op-secondary);
  color: var(--op-white);
  padding: 6px 14px;
  border-radius: var(--op-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.op-ticket-card__icon {
  font-size: 3rem;
  margin-bottom: var(--op-space-md);
}

.op-ticket-card__title {
  font-family: var(--op-font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--op-space-xs);
  color: var(--op-primary);
}

.op-ticket-card__description {
  color: var(--op-text-muted);
  margin-bottom: var(--op-space-lg);
}

.op-ticket-card__pricing {
  margin-bottom: var(--op-space-lg);
  padding: var(--op-space-lg) 0;
  border-top: 2px dashed var(--op-light);
  border-bottom: 2px dashed var(--op-light);
}

.op-ticket-card__price-old {
  font-size: 1rem;
  color: var(--op-text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.op-ticket-card__price-new {
  font-family: var(--op-font-primary);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--op-primary);
}

.op-ticket-card__savings {
  font-size: 0.9rem;
  color: var(--op-secondary);
  font-weight: 600;
  margin-top: 4px;
}

.op-ticket-card__features {
  margin-bottom: var(--op-space-lg);
}

.op-ticket-card__features li {
  padding: 8px 0;
  color: var(--op-text-muted);
  font-size: 0.95rem;
}

/* ============================
   Attraction Cards
   ============================ */
.op-attraction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--op-space-xl);
}

.op-attraction-card {
  background: var(--op-white);
  border-radius: var(--op-radius-lg);
  overflow: hidden;
  box-shadow: var(--op-shadow-md);
  transition: all var(--op-transition-base);
}

.op-attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--op-shadow-xl);
}

.op-attraction-card__image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.op-attraction-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.op-attraction-card:hover .op-attraction-card__image img {
  transform: scale(1.1);
}

.op-attraction-card__content {
  padding: var(--op-space-xl);
}

.op-attraction-card__content h3 {
  font-family: var(--op-font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--op-space-sm);
  color: var(--op-primary);
}

.op-attraction-card__content p {
  color: var(--op-text-muted);
  line-height: 1.7;
}

/* ============================
   Experience Grid
   ============================ */
.op-experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--op-space-xl);
}

.op-experience-item {
  text-align: center;
  padding: var(--op-space-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--op-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--op-transition-base);
}

.op-experience-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.op-experience-item__icon {
  font-size: 3rem;
  margin-bottom: var(--op-space-md);
}

.op-experience-item h3 {
  font-family: var(--op-font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--op-space-sm);
}

.op-experience-item p {
  opacity: 0.9;
  line-height: 1.7;
}

/* ============================
   Steps
   ============================ */
.op-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--op-space-2xl);
  margin-top: var(--op-space-3xl);
}

.op-step {
  text-align: center;
  position: relative;
}

.op-step::after {
  content: '→';
  position: absolute;
  top: 50px;
  right: -40px;
  font-size: 2rem;
  color: var(--op-primary-light);
  opacity: 0.3;
}

.op-step:last-child::after {
  display: none;
}

.op-step__number {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--op-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--op-primary) 0%, var(--op-primary-light) 100%);
  color: var(--op-white);
  font-family: var(--op-font-primary);
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--op-shadow-lg);
}

.op-step__title {
  font-family: var(--op-font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--op-space-sm);
  color: var(--op-primary);
}

.op-step__description {
  color: var(--op-text-muted);
  line-height: 1.7;
}

/* ============================
   Info Cards
   ============================ */
.op-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--op-space-xl);
}

.op-info-card {
  text-align: center;
  padding: var(--op-space-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--op-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.op-info-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--op-space-md);
}

.op-info-card h3 {
  font-family: var(--op-font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--op-space-sm);
}

.op-info-card p {
  opacity: 0.9;
  line-height: 1.7;
}

/* ============================
   CTA Section
   ============================ */
.op-cta-section {
  background: linear-gradient(135deg, var(--op-primary) 0%, var(--op-primary-dark) 100%);
  color: var(--op-white);
  padding: var(--op-space-3xl) 0;
  text-align: center;
}

.op-cta-content h2 {
  font-family: var(--op-font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--op-space-lg);
}

.op-cta-content p {
  font-size: 1.2rem;
  margin-bottom: var(--op-space-xl);
  opacity: 0.95;
}

.op-cta-content #ctaTimer {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--op-accent);
}

/* ============================
   Footer
   ============================ */
.op-footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--op-space-3xl) 0 var(--op-space-lg);
}

.op-footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--op-space-2xl);
  margin-bottom: var(--op-space-2xl);
}

.op-footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: var(--op-space-md);
  /* Use original colored logo - no filter */
}

.op-footer__tagline {
  font-size: 0.95rem;
  opacity: 0.7;
}

.op-footer__section h4 {
  font-family: var(--op-font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--op-space-md);
  color: var(--op-white);
}

.op-footer__section ul li {
  margin-bottom: var(--op-space-sm);
}

.op-footer__section a:hover {
  color: var(--op-accent);
}

.op-footer__bottom {
  text-align: center;
  padding-top: var(--op-space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ============================
   Modal
   ============================ */
.op-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--op-transition-base);
}

.op-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.op-modal {
  background: var(--op-white);
  border-radius: var(--op-radius-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--op-shadow-xl);
  transform: scale(0.9);
  transition: transform var(--op-transition-base);
}

.op-modal-overlay.active .op-modal {
  transform: scale(1);
}

.op-modal__header {
  background: linear-gradient(135deg, var(--op-primary) 0%, var(--op-primary-dark) 100%);
  color: var(--op-white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.op-modal__header-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.op-modal-logo-img {
  height: 36px;
  width: auto;
  /* Use original colored logo - no filter */
}

.op-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
}

.op-modal__close {
  font-size: 2rem;
  color: var(--op-white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--op-transition-base);
}

.op-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.op-modal__body {
  padding: 16px;
}

/* Timer Bar */
.op-modal__timer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* Free Note */
.op-modal__free-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--op-text-muted);
  padding: 6px 0;
}

/* Form Row - Date, Email, Phone inline */
.op-modal__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.op-modal__input {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}

.op-modal__input:focus {
  outline: none;
  border-color: var(--op-primary);
}

/* Checkout Row - Inline Summary + Button */
.op-modal__checkout-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--op-light);
  border-radius: 10px;
  margin-bottom: 10px;
}

.op-modal__summary-inline {
  flex: 1;
}

.op-modal__summary-items {
  font-size: 0.8rem;
  color: var(--op-text-muted);
}

.op-modal__summary-prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.op-modal__summary-prices .op-price-old {
  font-size: 0.85rem;
}

.op-modal__summary-prices .op-price-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--op-primary);
}

.op-modal__checkout-btn {
  background: var(--op-secondary);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.op-modal__checkout-btn:hover:not(:disabled) {
  background: var(--op-secondary-dark);
  transform: translateY(-1px);
}

.op-modal__checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Trust Badges */
.op-modal__trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--op-text-muted);
}

.op-modal__promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--op-space-md);
  padding: var(--op-space-md);
  background: #f0f9ff;
  border-radius: var(--op-radius-md);
  margin-bottom: var(--op-space-xl);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.op-badge {
  padding: 6px 14px;
  border-radius: var(--op-radius-full);
  font-weight: 700;
  font-size: 0.85rem;
}

.op-badge--success {
  background: var(--op-secondary);
  color: var(--op-white);
}

/* ============================
   Ticket Selectors
   ============================ */
.op-ticket-selectors {
  margin-bottom: var(--op-space-xl);
}

.op-ticket-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--op-white);
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 8px;
}

.op-ticket-selector__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.op-ticket-selector__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--op-text);
}

.op-ticket-selector__prices {
  display: flex;
  align-items: center;
  gap: 6px;
}

.op-ticket-selector__price {
  display: flex;
  align-items: center;
  gap: var(--op-space-sm);
}

.op-price-old {
  font-size: 0.85rem;
  color: var(--op-text-light);
  text-decoration: line-through;
}

.op-price-new {
  font-weight: 700;
  color: var(--op-primary);
  font-size: 1.1rem;
}

.op-ticket-selector__controls {
  display: flex;
  align-items: center;
  gap: var(--op-space-md);
}

.op-ticket-selector__btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--op-primary);
  color: var(--op-white);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all var(--op-transition-base);
}

.op-ticket-selector__btn:hover {
  background: var(--op-primary-dark);
  transform: scale(1.1);
}

.op-ticket-selector__qty {
  font-family: var(--op-font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  min-width: 30px;
  text-align: center;
}

/* ============================
   Form Elements
   ============================ */
.op-form-group {
  margin-bottom: var(--op-space-lg);
}

.op-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--op-space-sm);
  color: var(--op-text);
}

.op-form-input {
  width: 100%;
  padding: var(--op-space-md);
  border: 2px solid var(--op-light);
  border-radius: var(--op-radius-md);
  font-size: 1rem;
  transition: border-color var(--op-transition-base);
}

.op-form-input:focus {
  outline: none;
  border-color: var(--op-primary);
}

.op-form-help {
  display: block;
  margin-top: var(--op-space-xs);
  font-size: 0.85rem;
  color: var(--op-text-muted);
}

/* ============================
   Summary
   ============================ */
.op-summary {
  background: var(--op-light);
  border-radius: var(--op-radius-md);
  padding: var(--op-space-lg);
  margin-bottom: var(--op-space-xl);
}

.op-summary__row {
  display: flex;
  justify-content: space-between;
  padding: var(--op-space-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.op-summary__row:last-child {
  border-bottom: none;
}

.op-summary__row--discount {
  color: var(--op-secondary);
  font-weight: 600;
}

.op-summary__row--total {
  padding-top: var(--op-space-md);
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  font-family: var(--op-font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--op-primary);
}

.op-modal__footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--op-text-muted);
  margin-top: var(--op-space-lg);
  line-height: 1.8;
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 1024px) {
  .op-header__nav {
    display: none;
  }
  
  .op-header__menu {
    display: flex;
  }
}

@media (max-width: 768px) {
  .op-container {
    padding: 0 var(--op-space-lg);
  }
  
  .op-hero {
    min-height: 70vh;
    padding: var(--op-space-2xl) var(--op-space-lg);
  }
  
  .op-hero__cta {
    flex-direction: column;
    width: 100%;
  }
  
  .op-hero__cta .op-btn {
    width: 100%;
  }
  
  .op-ticket-grid,
  .op-attraction-grid {
    grid-template-columns: 1fr;
  }
  
  .op-step::after {
    display: none;
  }
  
  /* MOBILE MODAL - ULTRA COMPACT DESIGN */
  .op-modal-overlay {
    padding: 0;
    align-items: flex-start;
  }
  
  .op-modal {
    border-radius: 0;
    max-height: 100vh;
    width: 100%;
  }
  
  .op-modal__header {
    padding: 8px 12px;
  }
  
  .op-modal__header-logo {
    gap: 2px;
  }
  
  .op-modal-logo-img {
    height: 24px;
  }
  
  .op-subtitle {
    font-size: 0.7rem;
  }
  
  .op-modal__close {
    font-size: 1.3rem;
    width: 28px;
    height: 28px;
  }
  
  .op-modal__body {
    padding: 10px 12px;
  }
  
  /* Compact timer bar */
  .op-modal__timer-bar {
    padding: 6px 10px;
    font-size: 0.75rem;
    margin-bottom: 8px;
  }
  
  .op-badge {
    padding: 2px 6px;
    font-size: 0.65rem;
  }
  
  /* Compact ticket selectors */
  .op-ticket-selector {
    padding: 8px 10px;
    margin-bottom: 6px;
  }
  
  .op-ticket-selector__name {
    font-size: 0.8rem;
  }
  
  .op-ticket-selector__prices {
    gap: 4px;
  }
  
  .op-price-old {
    font-size: 0.7rem;
  }
  
  .op-price-new {
    font-size: 0.85rem;
  }
  
  .op-ticket-selector__btn {
    width: 26px;
    height: 26px;
    font-size: 0.95rem;
  }
  
  .op-ticket-selector__qty {
    font-size: 0.9rem;
    min-width: 18px;
  }
  
  .op-modal__free-note {
    font-size: 0.7rem;
    padding: 4px 0;
  }
  
  /* Form row stacked on mobile */
  .op-modal__form-row {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .op-modal__input {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  
  /* Checkout row compact */
  .op-modal__checkout-row {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }
  
  .op-modal__summary-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .op-modal__checkout-btn {
    width: 100%;
    padding: 12px;
  }
  
  /* Trust badges */
  .op-modal__trust {
    gap: 10px;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .op-promo-banner__content {
    font-size: 0.75rem;
    gap: 6px;
    padding: 4px 8px;
  }
  
  .op-promo-banner__discount {
    padding: 2px 8px;
    font-size: 0.7rem;
  }
  
  .op-promo-banner__timer {
    padding: 2px 8px;
    font-size: 0.7rem;
  }
  
  .op-header__inner {
    padding: 8px 12px;
  }
  
  .op-header__logo img {
    height: 28px;
  }
  
  .op-btn--sm {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .op-hero {
    min-height: 60vh;
    padding: var(--op-space-xl) var(--op-space-md);
  }
  
  .op-hero__badge {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
  
  .op-hero__title {
    font-size: 2rem;
  }
  
  .op-hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: var(--op-space-lg);
  }
  
  .op-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--op-space-md);
  }
  
  .op-stat-item__value {
    font-size: 1.8rem;
  }
  
  .op-stat-item span:last-child {
    font-size: 0.75rem;
  }
  
  .op-hero__scroll {
    display: none;
  }
  
  /* Extra compact modal for small phones */
  .op-modal__header {
    padding: 6px 8px;
  }
  
  .op-modal-logo-img {
    height: 20px;
  }
  
  .op-subtitle {
    font-size: 0.6rem;
  }
  
  .op-modal__body {
    padding: 8px 10px;
  }
  
  .op-modal__timer-bar {
    padding: 5px 8px;
    font-size: 0.7rem;
    margin-bottom: 6px;
  }
  
  .op-ticket-selector {
    padding: 6px 8px;
    margin-bottom: 4px;
  }
  
  .op-ticket-selector__name {
    font-size: 0.75rem;
  }
  
  .op-price-old {
    font-size: 0.6rem;
  }
  
  .op-price-new {
    font-size: 0.8rem;
  }
  
  .op-ticket-selector__btn {
    width: 22px;
    height: 22px;
    font-size: 0.85rem;
  }
  
  .op-ticket-selector__qty {
    font-size: 0.85rem;
    min-width: 14px;
  }
  
  .op-modal__free-note {
    font-size: 0.65rem;
    padding: 3px 0;
  }
  
  .op-modal__input {
    padding: 7px 8px;
    font-size: 0.8rem;
  }
  
  .op-modal__checkout-row {
    padding: 8px;
    gap: 6px;
  }
  
  .op-modal__summary-items {
    font-size: 0.7rem;
  }
  
  .op-modal__summary-prices .op-price-new {
    font-size: 0.95rem;
  }
  
  .op-modal__checkout-btn {
    padding: 10px;
    font-size: 0.9rem;
  }
  
  .op-modal__trust {
    gap: 8px;
    font-size: 0.6rem;
  }
}
