/**
 * Malta National Aquarium - Premium Design v3.0
 * Fixed bugs, 40% promo, premium modal
 */

/* ========================================
   CSS Variables - Malta Aquarium Colors
   ======================================== */
:root {
  --aq-navy: #0A1E3C;
  --aq-dark-blue: #0D2847;
  --aq-ocean-blue: #1565C0;
  --aq-bright-blue: #0099D8;
  --aq-aqua: #00B8D4;
  --aq-teal: #00796B;
  --aq-white: #FFFFFF;
  --aq-off-white: #F5F7FA;
  --aq-gray: #6B7280;
  --aq-light-gray: #E5E7EB;
  --aq-coral: #FF5252;
  --aq-gold: #FFD700;
  --aq-green: #4CAF50;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.15);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 30px rgba(0, 153, 216, 0.4);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 0 20px rgba(255, 82, 82, 0.6); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 153, 216, 0.4); }
  50% { box-shadow: 0 0 40px rgba(0, 153, 216, 0.6); }
}

@keyframes timerPulse {
  0%, 100% { background: linear-gradient(90deg, #FF5252 0%, #FF8A80 100%); }
  50% { background: linear-gradient(90deg, #FF8A80 0%, #FF5252 100%); }
}

/* ========================================
   Base Reset
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--aq-white);
  color: #1A202C;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ========================================
   Container
   ======================================== */
.aq-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Promo Banner - FIXED
   ======================================== */
.aq-promo-banner {
  background: linear-gradient(90deg, #FF5252 0%, #FF8A80 50%, #FF5252 100%);
  background-size: 200% 100%;
  animation: timerPulse 3s ease infinite;
  color: var(--aq-white);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aq-promo-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.aq-promo-banner__icon { 
  font-size: 1.3rem; 
  animation: pulse 2s infinite;
}

.aq-promo-banner__text { 
  text-transform: uppercase; 
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.aq-promo-banner__discount {
  background: var(--aq-white);
  color: #FF5252;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.aq-promo-banner__timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
}

.aq-promo-banner__timer strong {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ========================================
   Header - FIXED LOGO
   ======================================== */
.aq-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--aq-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.aq-header--scrolled {
  box-shadow: var(--shadow-md);
}

.aq-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.aq-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  text-decoration: none;
}

.aq-header__logo:hover { opacity: 0.9; }

.aq-header__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.aq-header__logo-text {
  display: flex;
  flex-direction: column;
}

.aq-header__logo-text span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--aq-navy);
  line-height: 1.2;
}

.aq-header__logo-text small {
  font-size: 0.7rem;
  color: var(--aq-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aq-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.aq-header__link {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--aq-navy);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aq-header__link:hover,
.aq-header__link--active {
  color: var(--aq-bright-blue);
  background: rgba(0, 153, 216, 0.08);
}

.aq-header__actions { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.aq-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.aq-header__menu span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--aq-navy);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .aq-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--aq-white);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--aq-light-gray);
    box-shadow: var(--shadow-lg);
  }
  .aq-header__nav.is-open { display: flex; }
  .aq-header__menu { display: flex; }
  .aq-header__logo-text span { font-size: 0.95rem; }
}

@media (max-width: 600px) {
  .aq-header__inner { padding: 10px 0; }
  .aq-header__logo img { height: 44px; }
  .aq-header__logo-text span { font-size: 0.95rem; line-height: 1.15; }
  .aq-header__logo-text small { font-size: 0.65rem; }
  .aq-header__logo { gap: 10px; }
  .aq-header__actions .aq-btn--sm { padding: 10px 16px; font-size: 0.8rem; }
}

/* ========================================
   Buttons - Premium Style
   ======================================== */
.aq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.aq-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

.aq-btn:hover::before {
  left: 100%;
}

.aq-btn--primary {
  background: linear-gradient(135deg, var(--aq-bright-blue) 0%, #0077A8 100%);
  color: var(--aq-white);
  box-shadow: 0 4px 15px rgba(0, 153, 216, 0.35);
}

.aq-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 153, 216, 0.45);
}

.aq-btn--outline {
  border: 2px solid var(--aq-navy);
  color: var(--aq-navy);
  background: transparent;
}

.aq-btn--outline:hover {
  background: var(--aq-navy);
  color: var(--aq-white);
}

.aq-btn--lg { padding: 16px 40px; font-size: 1rem; }
.aq-btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.aq-btn--block { width: 100%; }

/* ========================================
   Hero Section - Premium
   ======================================== */
.aq-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aq-hero__bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(10, 30, 60, 0.5) 0%, rgba(10, 30, 60, 0.85) 100%),
    url('../img/mna-homepage-background.jpg') center/cover no-repeat;
  z-index: -1;
}

.aq-hero__content {
  text-align: center;
  color: var(--aq-white);
  max-width: 750px;
  padding: 40px 20px;
  z-index: 1;
}

.aq-hero__pretitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.9;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.aq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.aq-hero__title-accent {
  display: block;
  color: var(--aq-aqua);
  font-style: italic;
}

.aq-hero__subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.aq-hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.aq-hero__cta .aq-btn--outline {
  border-color: var(--aq-white);
  color: var(--aq-white);
}

.aq-hero__cta .aq-btn--outline:hover {
  background: var(--aq-white);
  color: var(--aq-navy);
}

.aq-hero__trust {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.aq-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.95;
}

.aq-trust-item__icon { color: var(--aq-green); }

/* ========================================
   Sections
   ======================================== */
.aq-section {
  padding: 100px 0;
}

.aq-section--dark {
  background: linear-gradient(180deg, var(--aq-navy) 0%, var(--aq-dark-blue) 100%);
  color: var(--aq-white);
}

.aq-section--light {
  background: var(--aq-off-white);
}

.aq-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.aq-section__badge {
  display: inline-block;
  color: var(--aq-bright-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.aq-section--dark .aq-section__badge { color: var(--aq-aqua); }

.aq-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--aq-navy);
}

.aq-section--dark .aq-section__title { color: var(--aq-white); }

.aq-section__subtitle {
  font-size: 1.05rem;
  color: var(--aq-gray);
  max-width: 600px;
  margin: 0 auto;
}

.aq-section--dark .aq-section__subtitle { color: rgba(255,255,255,0.7); }

.aq-section__action { text-align: center; margin-top: 60px; }

/* ========================================
   Ticket Cards Grid - Premium
   ======================================== */
.aq-tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.aq-ticket-card {
  background: var(--aq-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--aq-light-gray);
  position: relative;
}

.aq-ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.aq-ticket-card--featured {
  border: 2px solid var(--aq-bright-blue);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(0, 153, 216, 0.1);
}

.aq-ticket-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--aq-navy) 0%, var(--aq-dark-blue) 100%);
  color: var(--aq-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.aq-ticket-card__badge--popular { 
  background: linear-gradient(135deg, var(--aq-bright-blue) 0%, #0077A8 100%); 
}

.aq-ticket-card__discount {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #FF5252 0%, #FF8A80 100%);
  color: var(--aq-white);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 800;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.4);
  animation: pulse 2s infinite;
}

.aq-ticket-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--aq-dark-blue) 0%, var(--aq-navy) 100%);
  overflow: hidden;
  position: relative;
}

.aq-ticket-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.aq-ticket-card:hover .aq-ticket-card__image img {
  transform: scale(1.1);
}

.aq-ticket-card__content { padding: 28px; }

.aq-ticket-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.aq-ticket-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--aq-navy);
}

.aq-ticket-card__desc {
  font-size: 0.95rem;
  color: var(--aq-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.aq-ticket-card__pricing-table { margin-bottom: 20px; }

.aq-ticket-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--aq-light-gray);
  font-size: 0.95rem;
}

.aq-ticket-card__price-row:last-child { border-bottom: none; }

.aq-ticket-card__price-row .old {
  text-decoration: line-through;
  color: var(--aq-gray);
  font-size: 0.85rem;
}

.aq-ticket-card__price-row .now {
  color: var(--aq-bright-blue);
  font-weight: 800;
  font-size: 1.1rem;
}

/* ========================================
   Benefits Grid
   ======================================== */
.aq-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.aq-benefit {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.aq-benefit:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

.aq-benefit__icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.aq-benefit__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.aq-benefit__desc {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ========================================
   Steps
   ======================================== */
.aq-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.aq-step {
  text-align: center;
  padding: 28px 20px;
}

.aq-step__number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--aq-bright-blue) 0%, #0077A8 100%);
  color: var(--aq-white);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0, 153, 216, 0.35);
}

.aq-step__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.aq-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--aq-navy);
}

.aq-step__desc {
  font-size: 0.95rem;
  color: var(--aq-gray);
  line-height: 1.5;
}

/* ========================================
   CTA Section
   ======================================== */
.aq-cta-section {
  background: 
    linear-gradient(135deg, rgba(10, 30, 60, 0.92) 0%, rgba(13, 40, 71, 0.95) 100%),
    url('../img/DSC0817.jpg') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  color: var(--aq-white);
}

.aq-cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.aq-cta-section__subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.aq-cta-section__timer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255,82,82,0.9) 0%, rgba(255,138,128,0.9) 100%);
  padding: 12px 28px;
  border-radius: 50px;
  margin-bottom: 28px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255, 82, 82, 0.4);
  animation: pulse 2s infinite;
}

/* ========================================
   Page Header
   ======================================== */
.aq-page-header {
  position: relative;
  padding: 120px 0 80px;
  background: 
    linear-gradient(135deg, rgba(10, 30, 60, 0.88) 0%, rgba(13, 40, 71, 0.92) 100%),
    url('../img/DSC0829.jpg') center/cover no-repeat;
  color: var(--aq-white);
  text-align: center;
}

.aq-page-header__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 14px;
}

.aq-page-header__content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto;
}

/* ========================================
   Footer
   ======================================== */
.aq-footer {
  background: linear-gradient(180deg, var(--aq-navy) 0%, #061426 100%);
  color: var(--aq-white);
  padding: 70px 0 30px;
}

.aq-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.aq-footer__col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--aq-aqua);
}

.aq-footer__col p {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 10px;
}

.aq-footer__col ul li { margin-bottom: 12px; }

.aq-footer__col ul li a {
  font-size: 0.95rem;
  opacity: 0.75;
  transition: var(--transition);
}

.aq-footer__col ul li a:hover {
  opacity: 1;
  color: var(--aq-aqua);
}

.aq-footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.aq-footer__logo img { height: 50px; }

.aq-footer__logo-text span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.aq-footer__address {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 14px;
}

.aq-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.aq-footer__bottom p {
  font-size: 0.9rem;
  opacity: 0.6;
}

.aq-footer__payments {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ========================================
   MODAL - PREMIUM GLASSMORPHISM
   ======================================== */
.aq-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 60, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.aq-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.aq-modal {
  background: linear-gradient(180deg, var(--aq-white) 0%, #F8FAFC 100%);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  animation: slideInUp 0.35s ease;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.aq-modal__header {
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--aq-navy) 0%, var(--aq-dark-blue) 100%);
  color: var(--aq-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.aq-modal__header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,153,216,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.aq-modal__header-info {
  position: relative;
  z-index: 1;
  flex: 1;
}

.aq-modal__header-info h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.aq-modal__header-info p {
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.3;
}

.aq-modal__close {
  background: rgba(255,255,255,0.15);
  color: var(--aq-white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-left: 8px;
}

.aq-modal__close:hover {
  background: rgba(255,255,255,0.25);
  transform: rotate(90deg);
}

.aq-modal__body {
  padding: 10px 14px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.aq-modal__promo {
  background: linear-gradient(90deg, #FF5252 0%, #FF8A80 100%);
  color: var(--aq-white);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(255, 82, 82, 0.3);
  animation: pulse 2.5s infinite;
}

.aq-modal__promo strong {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  background: rgba(0,0,0,0.15);
  padding: 3px 8px;
  border-radius: 4px;
}

.aq-modal__field {
  margin-bottom: 8px;
}

.aq-modal__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.aq-modal__field-row .aq-modal__field {
  margin-bottom: 0;
}

.aq-modal__field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--aq-navy);
}

.aq-modal__field input,
.aq-modal__field select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--aq-light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  transition: var(--transition);
  background: var(--aq-white);
}

.aq-modal__field input:focus,
.aq-modal__field select:focus {
  outline: none;
  border-color: var(--aq-bright-blue);
  box-shadow: 0 0 0 4px rgba(0, 153, 216, 0.1);
}

.aq-modal__summary {
  background: linear-gradient(135deg, #F8FAFC 0%, #EDF2F7 100%);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid var(--aq-light-gray);
}

.aq-modal__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.8rem;
}

.aq-modal__summary-row--discount {
  color: #4CAF50;
  font-weight: 600;
}

.aq-modal__summary-row--total {
  border-top: 1px solid var(--aq-light-gray);
  margin-top: 6px;
  padding-top: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.aq-modal__summary-row--total .value {
  color: var(--aq-bright-blue);
  font-size: 1.1rem;
}

.aq-modal__submit {
  background: linear-gradient(135deg, var(--aq-bright-blue) 0%, #0077A8 100%);
  color: var(--aq-white);
  border: none;
  width: 100%;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 153, 216, 0.4);
  position: relative;
  overflow: hidden;
}

.aq-modal__submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

.aq-modal__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 153, 216, 0.5);
}

.aq-modal__submit:hover::before {
  left: 100%;
}

.aq-modal__trust {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--aq-gray);
}

.aq-modal__trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .aq-section { padding: 70px 0; }
  .aq-hero { min-height: 80vh; }
  
  .aq-hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .aq-hero__trust {
    flex-direction: column;
    gap: 14px;
  }
  
  .aq-tickets-grid { grid-template-columns: 1fr; }
  
  .aq-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .aq-modal { max-width: 100%; }
  
  .aq-promo-banner { padding: 10px 16px; }
  .aq-promo-banner__content { gap: 10px; }
}

@media (max-width: 480px) {
  .aq-promo-banner { font-size: 0.8rem; padding: 8px 12px; }
  .aq-promo-banner__discount { padding: 4px 10px; font-size: 0.75rem; }
  .aq-promo-banner__timer { padding: 4px 8px; font-size: 0.7rem; }
  .aq-promo-banner__text { display: none; }
  .aq-promo-banner__icon { font-size: 1rem; }
  .aq-btn--lg { padding: 14px 28px; font-size: 0.9rem; }
  .aq-modal__body { padding: 14px; }
  .aq-modal__header { padding: 14px; }
  .aq-modal__field-row { grid-template-columns: 1fr; gap: 10px; }
  .aq-modal__field { margin-bottom: 12px; }
  .aq-modal__field input, .aq-modal__field select { padding: 10px; font-size: 0.9rem; }
  
  /* Mobile header - spacious logo with menu only */
  .aq-header__inner { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
  }
  .aq-header__logo { 
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }
  .aq-header__logo img { height: 44px; }
  .aq-header__logo-text { display: flex; flex-direction: column; }
  .aq-header__logo-text span { font-size: 1rem; line-height: 1.2; font-weight: 700; color: var(--aq-navy); }
  .aq-header__logo-text small { font-size: 0.7rem; color: var(--aq-gray); }
  .aq-header__actions { display: flex; gap: 10px; align-items: center; }
  .aq-header__actions .aq-btn--sm { display: none; } /* Hide Book Now button on mobile - menu has it */
  .aq-header__menu { padding: 10px; }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
