/*
 * =====================================================
 * ANGKOR ENTERPRISE - Official Ticketing Website
 * Premium Green & Gold Theme v1.0
 * =====================================================
 */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Brand Colors - Green & Gold Theme (Angkor) */
  --ae-green: #4a7c59;
  --ae-green-light: #6b9b7a;
  --ae-green-dark: #2d5a3d;
  
  --ae-gold: #c9a227;
  --ae-gold-light: #e0be4c;
  --ae-gold-dark: #a88b1e;
  
  /* Neutrals */
  --ae-white: #FFFFFF;
  --ae-gray-100: #F5F7F6;
  --ae-gray-200: #E8ECE9;
  --ae-gray-300: #CCD5CF;
  --ae-gray-500: #7A8B7E;
  --ae-gray-700: #4A5A4E;
  --ae-gray-900: #1A2A1E;
  
  /* Typography */
  --ae-font-display: 'Playfair Display', Georgia, serif;
  --ae-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --ae-space-xs: 0.25rem;
  --ae-space-sm: 0.5rem;
  --ae-space-md: 1rem;
  --ae-space-lg: 1.5rem;
  --ae-space-xl: 2rem;
  --ae-space-2xl: 3rem;
  --ae-space-3xl: 4rem;
  
  /* Border Radius */
  --ae-radius-sm: 4px;
  --ae-radius-md: 8px;
  --ae-radius-lg: 12px;
  --ae-radius-xl: 20px;
  --ae-radius-full: 50px;
  
  /* Shadows */
  --ae-shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --ae-shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --ae-shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
  --ae-shadow-gold: 0 4px 15px rgba(201, 162, 39, 0.35);
  
  /* Transitions */
  --ae-transition: all 0.3s ease;
  
  /* Layout */
  --ae-promo-height: 48px;
  --ae-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(--ae-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ae-gray-900);
  background: var(--ae-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--ae-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 ==================== */
.ae-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--ae-space-lg);
}

/* ==================== PROMO BANNER ==================== */
.ae-promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--ae-promo-height);
  background: linear-gradient(135deg, var(--ae-green) 0%, var(--ae-green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ae-space-md);
  padding: 0 var(--ae-space-md);
  color: var(--ae-white);
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
}

.ae-promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: promo-shine 3s infinite;
}

@keyframes promo-shine {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.ae-promo-banner__icon {
  font-size: 1.2rem;
}

.ae-promo-banner__text {
  font-weight: 700;
}

.ae-promo-banner__discount {
  background: var(--ae-gold);
  color: var(--ae-gray-900);
  padding: 4px 12px;
  border-radius: var(--ae-radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
}

.ae-promo-banner__timer {
  display: flex;
  align-items: center;
  gap: var(--ae-space-sm);
  background: rgba(0,0,0,0.2);
  padding: 4px 14px;
  border-radius: var(--ae-radius-full);
  font-weight: 600;
}

.ae-promo-banner__timer span:last-child {
  font-family: var(--ae-font-display);
  font-weight: 700;
  min-width: 45px;
  font-size: 1rem;
}

/* ==================== HEADER ==================== */
.ae-header {
  position: fixed;
  top: var(--ae-promo-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--ae-header-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 124, 89, 0.1);
  box-shadow: var(--ae-shadow-sm);
}

.ae-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.ae-header__logo {
  display: flex;
  align-items: center;
  gap: var(--ae-space-md);
}

.ae-header__logo img {
  height: 50px;
  width: auto;
  max-width: 180px;
}

/* Navigation */
.ae-header__nav {
  display: flex;
  align-items: center;
  gap: var(--ae-space-xl);
}

.ae-header__link {
  color: var(--ae-gray-700);
  font-weight: 500;
  font-size: 0.9rem;
  padding: var(--ae-space-sm) 0;
  position: relative;
}

.ae-header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ae-gold);
  transition: var(--ae-transition);
}

.ae-header__link:hover,
.ae-header__link--active {
  color: var(--ae-green);
}

.ae-header__link:hover::after,
.ae-header__link--active::after {
  width: 100%;
}

/* Language Selector */
.ae-header__lang {
  position: relative;
}

.ae-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--ae-gray-100);
  border: 1px solid var(--ae-gray-200);
  border-radius: var(--ae-radius-md);
  font-size: 0.85rem;
  color: var(--ae-gray-700);
  cursor: pointer;
  transition: var(--ae-transition);
}

.ae-lang-btn:hover {
  border-color: var(--ae-green);
  background: var(--ae-white);
}

.ae-lang-flag {
  font-size: 1.1rem;
}

.ae-lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: var(--ae-white);
  border: 1px solid var(--ae-gray-200);
  border-radius: var(--ae-radius-md);
  box-shadow: var(--ae-shadow-md);
  min-width: 150px;
  display: none;
  z-index: 1000;
}

.ae-lang-dropdown.is-open {
  display: block;
}

.ae-lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--ae-gray-700);
  text-align: left;
  transition: var(--ae-transition);
}

.ae-lang-option:hover {
  background: var(--ae-gray-100);
  color: var(--ae-green);
}

/* Header Actions */
.ae-header__actions {
  display: flex;
  align-items: center;
  gap: var(--ae-space-lg);
}

/* Mobile Menu Button */
.ae-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--ae-space-sm);
}

.ae-header__menu span {
  width: 24px;
  height: 2px;
  background: var(--ae-green);
  transition: var(--ae-transition);
}

/* ==================== BUTTONS ==================== */
.ae-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ae-space-sm);
  padding: 12px 28px;
  border-radius: var(--ae-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--ae-transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.ae-btn--primary {
  background: linear-gradient(135deg, var(--ae-gold-light) 0%, var(--ae-gold) 50%, var(--ae-gold-dark) 100%);
  color: var(--ae-gray-900);
  box-shadow: var(--ae-shadow-gold);
}

.ae-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
}

.ae-btn--outline {
  background: transparent;
  border-color: var(--ae-white);
  color: var(--ae-white);
}

.ae-btn--outline:hover {
  background: var(--ae-white);
  color: var(--ae-green);
}

.ae-btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.ae-btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.ae-btn--block {
  width: 100%;
}

/* ==================== HERO SECTION ==================== */
.ae-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--ae-promo-height) + var(--ae-header-height) + var(--ae-space-2xl));
  padding-bottom: var(--ae-space-3xl);
  overflow: hidden;
}

.ae-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../img/temple1.jpg') center center / cover no-repeat, linear-gradient(135deg, var(--ae-green) 0%, var(--ae-green-dark) 100%);
}

.ae-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, 
    rgba(45, 90, 61, 0.5) 0%, 
    rgba(45, 90, 61, 0.8) 100%);
  pointer-events: none;
}

.ae-hero__content {
  text-align: center;
  color: var(--ae-white);
  max-width: 900px;
  padding: 0 var(--ae-space-lg);
}

.ae-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--ae-space-sm);
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.5);
  padding: var(--ae-space-sm) var(--ae-space-lg);
  border-radius: var(--ae-radius-full);
  font-size: 0.9rem;
  color: var(--ae-gold-light);
  margin-bottom: var(--ae-space-xl);
}

.ae-hero__title {
  font-family: var(--ae-font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--ae-space-lg);
}

.ae-hero__title span {
  display: block;
}

.ae-hero__title-accent {
  background: linear-gradient(135deg, var(--ae-gold-light), var(--ae-gold), var(--ae-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ae-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto var(--ae-space-xl);
  line-height: 1.8;
}

/* Location Tabs */
.ae-location-tabs {
  display: flex;
  justify-content: center;
  gap: var(--ae-space-sm);
  margin-bottom: var(--ae-space-xl);
  flex-wrap: wrap;
}

.ae-location-tab {
  padding: 10px 24px;
  border-radius: var(--ae-radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--ae-transition);
}

.ae-location-tab:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--ae-white);
}

.ae-location-tab--active {
  background: var(--ae-gold);
  color: var(--ae-gray-900);
  border-color: var(--ae-gold);
}

.ae-hero__cta {
  display: flex;
  gap: var(--ae-space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--ae-space-3xl);
}

/* Trust Items */
.ae-hero__trust {
  display: flex;
  gap: var(--ae-space-2xl);
  justify-content: center;
  flex-wrap: wrap;
}

.ae-trust-item {
  display: flex;
  align-items: center;
  gap: var(--ae-space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.ae-trust-item__icon {
  color: var(--ae-gold);
  font-weight: 700;
}

/* ==================== SECTIONS ==================== */
.ae-section {
  padding: var(--ae-space-3xl) 0;
}

.ae-section--dark {
  background: var(--ae-gray-100);
}

.ae-section--green {
  background: linear-gradient(180deg, var(--ae-green) 0%, var(--ae-green-dark) 100%);
  color: var(--ae-white);
}

/* Section Header */
.ae-section-header {
  text-align: center;
  margin-bottom: var(--ae-space-2xl);
}

.ae-section-header__tag {
  display: inline-block;
  color: var(--ae-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--ae-space-sm);
}

.ae-section--green .ae-section-header__tag {
  color: var(--ae-gold-light);
}

.ae-section-header__title {
  font-family: var(--ae-font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ae-green);
  margin-bottom: var(--ae-space-md);
}

.ae-section--green .ae-section-header__title {
  color: var(--ae-white);
}

.ae-section-header__subtitle {
  color: var(--ae-gray-500);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== TICKET CARDS ==================== */
.ae-tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--ae-space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.ae-ticket-card {
  position: relative;
  background: var(--ae-white);
  border: 1px solid var(--ae-gray-200);
  border-radius: var(--ae-radius-lg);
  overflow: hidden;
  transition: var(--ae-transition);
  box-shadow: var(--ae-shadow-sm);
}

.ae-ticket-card:hover {
  border-color: var(--ae-green);
  transform: translateY(-5px);
  box-shadow: var(--ae-shadow-lg);
}

.ae-ticket-card--featured {
  border-color: var(--ae-gold);
  box-shadow: var(--ae-shadow-gold);
}

.ae-ticket-card__badge {
  position: absolute;
  top: var(--ae-space-md);
  left: var(--ae-space-md);
  background: var(--ae-green);
  color: var(--ae-white);
  padding: 4px 12px;
  border-radius: var(--ae-radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.ae-ticket-card__discount {
  position: absolute;
  top: var(--ae-space-md);
  right: var(--ae-space-md);
  background: #DC2626;
  color: var(--ae-white);
  padding: 4px 10px;
  border-radius: var(--ae-radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
  z-index: 2;
}

.ae-ticket-card__image {
  height: 180px;
  background: linear-gradient(135deg, var(--ae-green) 0%, var(--ae-green-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ae-ticket-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--ae-white) 100%);
  z-index: 1;
}

.ae-ticket-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.ae-ticket-card__content {
  padding: var(--ae-space-lg);
}

.ae-ticket-card__icon {
  font-size: 2rem;
  margin-bottom: var(--ae-space-sm);
}

.ae-ticket-card__title {
  font-family: var(--ae-font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ae-green);
  margin-bottom: var(--ae-space-sm);
}

.ae-ticket-card__desc {
  color: var(--ae-gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--ae-space-md);
}

.ae-ticket-card__includes {
  margin-bottom: var(--ae-space-lg);
}

.ae-ticket-card__includes li {
  color: var(--ae-gray-700);
  font-size: 0.85rem;
  padding: 4px 0;
}

.ae-ticket-card__pricing-table {
  margin-bottom: var(--ae-space-lg);
}

.ae-ticket-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--ae-gray-200);
}

.ae-ticket-card__price-row:last-child {
  border-bottom: none;
}

.ae-ticket-card__price-row span:first-child {
  color: var(--ae-gray-700);
  font-size: 0.9rem;
}

.ae-ticket-card__price-row .old {
  color: var(--ae-gray-500);
  text-decoration: line-through;
  font-size: 0.85rem;
  margin-right: var(--ae-space-sm);
}

.ae-ticket-card__price-row .now {
  color: var(--ae-gold-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ==================== EXPERIENCES GRID ==================== */
.ae-experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--ae-space-xl);
}

.ae-experience-card {
  text-align: center;
  padding: var(--ae-space-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--ae-radius-lg);
  transition: var(--ae-transition);
}

.ae-experience-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.ae-experience-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--ae-space-md);
}

.ae-experience-card__title {
  font-family: var(--ae-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ae-white);
  margin-bottom: var(--ae-space-sm);
}

.ae-experience-card__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ==================== FEATURES GRID ==================== */
.ae-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--ae-space-xl);
}

.ae-feature-card {
  text-align: center;
  padding: var(--ae-space-xl);
  background: var(--ae-white);
  border: 1px solid var(--ae-gray-200);
  border-radius: var(--ae-radius-lg);
  transition: var(--ae-transition);
}

.ae-feature-card:hover {
  border-color: var(--ae-gold);
  transform: translateY(-3px);
  box-shadow: var(--ae-shadow-md);
}

.ae-feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--ae-space-md);
}

.ae-feature-card__title {
  font-family: var(--ae-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ae-green);
  margin-bottom: var(--ae-space-sm);
}

.ae-feature-card__desc {
  color: var(--ae-gray-500);
  font-size: 0.9rem;
}

/* ==================== PROCESS STEPS ==================== */
.ae-process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--ae-space-md);
}

.ae-process-step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.ae-process-step__number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ae-gold), var(--ae-gold-dark));
  color: var(--ae-gray-900);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--ae-space-md);
}

.ae-process-step h3 {
  font-family: var(--ae-font-display);
  font-size: 1.1rem;
  color: var(--ae-green);
  margin-bottom: var(--ae-space-sm);
}

.ae-process-step p {
  color: var(--ae-gray-500);
  font-size: 0.9rem;
}

.ae-process-arrow {
  color: var(--ae-gold);
  font-size: 1.5rem;
  padding-top: 10px;
}

/* ==================== CTA SECTION ==================== */
.ae-cta-section {
  position: relative;
  padding: var(--ae-space-3xl) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--ae-green) 0%, var(--ae-green-dark) 100%);
  color: var(--ae-white);
}

.ae-cta-section__title {
  font-family: var(--ae-font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--ae-white);
  margin-bottom: var(--ae-space-md);
}

.ae-cta-section__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: var(--ae-space-xl);
}

.ae-cta-section__timer {
  display: inline-flex;
  align-items: center;
  gap: var(--ae-space-sm);
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: var(--ae-space-sm) var(--ae-space-lg);
  border-radius: var(--ae-radius-full);
  margin-bottom: var(--ae-space-xl);
  color: var(--ae-gold-light);
  font-weight: 600;
}

/* ==================== FOOTER ==================== */
.ae-footer {
  background: var(--ae-gray-900);
  color: var(--ae-white);
  padding: var(--ae-space-3xl) 0 var(--ae-space-xl);
}

.ae-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--ae-space-2xl);
  margin-bottom: var(--ae-space-2xl);
}

.ae-footer__col h4 {
  font-family: var(--ae-font-display);
  font-size: 1.1rem;
  color: var(--ae-gold);
  margin-bottom: var(--ae-space-md);
}

.ae-footer__col p,
.ae-footer__col li,
.ae-footer__col a {
  color: var(--ae-gray-300);
  font-size: 0.9rem;
  line-height: 1.8;
}

.ae-footer__col a:hover {
  color: var(--ae-gold);
}

.ae-footer__logo {
  display: flex;
  align-items: center;
  gap: var(--ae-space-md);
  margin-bottom: var(--ae-space-md);
}

.ae-footer__logo img {
  height: 60px;
  filter: brightness(0) invert(1);
}

.ae-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--ae-space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ae-space-md);
}

.ae-footer__bottom p {
  color: var(--ae-gray-500);
  font-size: 0.85rem;
}

.ae-footer__payments {
  display: flex;
  gap: var(--ae-space-sm);
  color: var(--ae-gray-500);
  font-size: 0.85rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .ae-promo-banner {
    font-size: 0.75rem;
    gap: var(--ae-space-sm);
  }
  
  .ae-promo-banner__text {
    display: none;
  }
  
  .ae-header__logo {
    gap: var(--ae-space-sm);
    max-width: 140px;
  }
  
  .ae-header__logo img {
    height: 40px;
  }
  
  .ae-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ae-white);
    flex-direction: column;
    padding: var(--ae-space-lg);
    border-top: 1px solid var(--ae-gray-200);
    box-shadow: var(--ae-shadow-md);
  }
  
  .ae-header__nav.is-open {
    display: flex;
  }
  
  .ae-header__menu {
    display: flex;
  }
  
  .ae-header__lang {
    order: -1;
  }
  
  .ae-header__actions {
    display: none;
  }
  
  .ae-hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .ae-hero__trust {
    flex-direction: column;
    align-items: center;
  }
  
  .ae-location-tabs {
    flex-wrap: wrap;
  }
  
  .ae-tickets-grid {
    grid-template-columns: 1fr;
  }
  
  .ae-process-arrow {
    display: none;
  }
  
  .ae-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
