/* CN Tower Unique Theme - v2.0 */
/* Modern Design System with Glass Morphism */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --tw-crimson: #D62828;
  --tw-crimson-dark: #A31F1F;
  --tw-crimson-light: #F25C54;
  --tw-midnight: #0D1B2A;
  --tw-navy: #1B263B;
  --tw-slate: #415A77;
  --tw-steel: #778DA9;
  --tw-cloud: #E0E1DD;
  --tw-snow: #FAFAFA;
  --tw-pure: #FFFFFF;
  
  /* Accent Colors */
  --tw-gold: #F7B538;
  --tw-emerald: #2DC653;
  --tw-azure: #0096C7;
  
  /* Gradients */
  --tw-gradient-hero: linear-gradient(135deg, rgba(13,27,42,0.95) 0%, rgba(27,38,59,0.85) 100%);
  --tw-gradient-crimson: linear-gradient(135deg, #D62828 0%, #A31F1F 100%);
  --tw-gradient-dark: linear-gradient(180deg, #0D1B2A 0%, #1B263B 100%);
  --tw-gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  
  /* Typography */
  --tw-font-display: 'Outfit', sans-serif;
  --tw-font-body: 'Space Grotesk', sans-serif;
  
  /* Spacing */
  --tw-space-xs: 0.25rem;
  --tw-space-sm: 0.5rem;
  --tw-space-md: 1rem;
  --tw-space-lg: 1.5rem;
  --tw-space-xl: 2rem;
  --tw-space-2xl: 3rem;
  --tw-space-3xl: 4rem;
  --tw-space-4xl: 6rem;
  
  /* Border Radius */
  --tw-radius-sm: 6px;
  --tw-radius-md: 12px;
  --tw-radius-lg: 20px;
  --tw-radius-xl: 30px;
  --tw-radius-full: 9999px;
  
  /* Shadows */
  --tw-shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --tw-shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --tw-shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --tw-shadow-xl: 0 20px 60px rgba(0,0,0,0.24);
  --tw-shadow-glow: 0 0 40px rgba(214,40,40,0.3);
  
  /* Transitions */
  --tw-transition-fast: 0.15s ease;
  --tw-transition-base: 0.3s ease;
  --tw-transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--tw-font-body);
  background: var(--tw-snow);
  color: var(--tw-midnight);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--tw-transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* Layout */
.tw-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--tw-space-lg);
}

.tw-section {
  padding: var(--tw-space-4xl) 0;
}

/* Navigation */
.tw-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--tw-transition-base);
}

.tw-topbar--scrolled {
  background: rgba(13,27,42,0.98);
  box-shadow: var(--tw-shadow-lg);
}

.tw-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.tw-topbar__brand {
  display: flex;
  align-items: center;
}

.tw-topbar__brand img {
  height: 55px;
  transition: var(--tw-transition-base);
}

.tw-topbar__brand:hover img {
  transform: scale(1.05);
}

.tw-topbar__links {
  display: flex;
  align-items: center;
  gap: var(--tw-space-xl);
}

.tw-topbar__link {
  color: var(--tw-cloud);
  font-weight: 500;
  font-size: 0.95rem;
  padding: var(--tw-space-sm) 0;
  position: relative;
}

.tw-topbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tw-crimson);
  transition: var(--tw-transition-base);
}

.tw-topbar__link:hover,
.tw-topbar__link--active {
  color: var(--tw-pure);
}

.tw-topbar__link:hover::after,
.tw-topbar__link--active::after {
  width: 100%;
}

.tw-topbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--tw-space-sm);
}

.tw-topbar__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--tw-pure);
  transition: var(--tw-transition-base);
}

/* Hero Section */
.tw-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.tw-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.tw-hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tw-hero__backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--tw-gradient-hero);
}

.tw-hero__content {
  text-align: center;
  color: var(--tw-pure);
  max-width: 900px;
  padding: var(--tw-space-2xl);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tw-hero__logo {
  max-width: 280px;
  margin: 0 auto var(--tw-space-xl);
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.tw-hero__headline {
  font-family: var(--tw-font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--tw-space-lg);
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.tw-hero__headline span {
  background: var(--tw-gradient-crimson);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tw-hero__tagline {
  font-size: 1.25rem;
  color: var(--tw-cloud);
  margin-bottom: var(--tw-space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tw-hero__actions {
  display: flex;
  gap: var(--tw-space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.tw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--tw-space-sm);
  padding: var(--tw-space-md) var(--tw-space-xl);
  font-family: var(--tw-font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--tw-radius-full);
  border: none;
  cursor: pointer;
  transition: var(--tw-transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tw-btn--primary {
  background: var(--tw-gradient-crimson);
  color: var(--tw-pure);
  box-shadow: var(--tw-shadow-md), 0 0 30px rgba(214,40,40,0.4);
}

.tw-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--tw-shadow-lg), 0 0 50px rgba(214,40,40,0.5);
}

.tw-btn--secondary {
  background: rgba(255,255,255,0.1);
  color: var(--tw-pure);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.tw-btn--secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.tw-btn--outline {
  background: transparent;
  color: var(--tw-crimson);
  border: 2px solid var(--tw-crimson);
}

.tw-btn--outline:hover {
  background: var(--tw-crimson);
  color: var(--tw-pure);
}

.tw-btn--large {
  padding: var(--tw-space-lg) var(--tw-space-2xl);
  font-size: 1.1rem;
}

.tw-btn--block {
  width: 100%;
}

/* Promo Banner */
.tw-promo {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--tw-crimson) 0%, var(--tw-crimson-dark) 50%, var(--tw-crimson) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  padding: var(--tw-space-sm) var(--tw-space-md);
  text-align: center;
  color: var(--tw-pure);
  font-weight: 600;
  display: none;
}

.tw-promo.is-visible {
  display: block;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.tw-promo__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--tw-space-md);
  flex-wrap: wrap;
}

.tw-promo__timer {
  background: rgba(0,0,0,0.3);
  padding: var(--tw-space-xs) var(--tw-space-md);
  border-radius: var(--tw-radius-full);
  font-family: var(--tw-font-display);
  font-weight: 700;
}

/* Experience Cards */
.tw-experiences {
  background: var(--tw-pure);
  padding: var(--tw-space-4xl) 0;
}

.tw-section-header {
  text-align: center;
  margin-bottom: var(--tw-space-3xl);
}

.tw-section-header__title {
  font-family: var(--tw-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--tw-midnight);
  margin-bottom: var(--tw-space-md);
}

.tw-section-header__subtitle {
  font-size: 1.1rem;
  color: var(--tw-slate);
  max-width: 600px;
  margin: 0 auto;
}

.tw-exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--tw-space-xl);
}

.tw-exp-card {
  background: var(--tw-pure);
  border-radius: var(--tw-radius-lg);
  overflow: hidden;
  box-shadow: var(--tw-shadow-md);
  transition: var(--tw-transition-base);
  position: relative;
}

.tw-exp-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--tw-shadow-xl);
}

.tw-exp-card__media {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.tw-exp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tw-transition-slow);
}

.tw-exp-card:hover .tw-exp-card__media img {
  transform: scale(1.1);
}

.tw-exp-card__badge {
  position: absolute;
  top: var(--tw-space-md);
  left: var(--tw-space-md);
  background: var(--tw-crimson);
  color: var(--tw-pure);
  padding: var(--tw-space-xs) var(--tw-space-md);
  border-radius: var(--tw-radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tw-exp-card__body {
  padding: var(--tw-space-xl);
}

.tw-exp-card__title {
  font-family: var(--tw-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tw-midnight);
  margin-bottom: var(--tw-space-sm);
}

.tw-exp-card__desc {
  color: var(--tw-slate);
  margin-bottom: var(--tw-space-lg);
  line-height: 1.7;
}

.tw-exp-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--tw-space-sm);
  margin-bottom: var(--tw-space-lg);
}

.tw-exp-card__price-from {
  font-size: 0.9rem;
  color: var(--tw-slate);
}

.tw-exp-card__price-amount {
  font-family: var(--tw-font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--tw-crimson);
}

.tw-exp-card__price-original {
  font-size: 1rem;
  color: var(--tw-steel);
  text-decoration: line-through;
}

/* Stats Section */
.tw-stats {
  background: var(--tw-gradient-dark);
  padding: var(--tw-space-3xl) 0;
}

.tw-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--tw-space-xl);
}

.tw-stat {
  text-align: center;
  color: var(--tw-pure);
}

.tw-stat__value {
  font-family: var(--tw-font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--tw-crimson-light), var(--tw-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--tw-space-sm);
}

.tw-stat__label {
  font-size: 0.95rem;
  color: var(--tw-steel);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Ticket Detail Cards */
.tw-ticket-detail {
  background: var(--tw-snow);
  padding: var(--tw-space-4xl) 0;
}

.tw-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--tw-space-3xl);
  align-items: center;
  background: var(--tw-pure);
  border-radius: var(--tw-radius-xl);
  overflow: hidden;
  box-shadow: var(--tw-shadow-md);
  margin-bottom: var(--tw-space-2xl);
}

.tw-detail-card:nth-child(even) {
  direction: rtl;
}

.tw-detail-card:nth-child(even) > * {
  direction: ltr;
}

.tw-detail-card__visual {
  height: 100%;
  min-height: 400px;
}

.tw-detail-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tw-detail-card__info {
  padding: var(--tw-space-2xl);
}

.tw-detail-card__title {
  font-family: var(--tw-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tw-midnight);
  margin-bottom: var(--tw-space-md);
}

.tw-detail-card__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tw-crimson);
  margin-bottom: var(--tw-space-lg);
}

.tw-detail-card__text {
  color: var(--tw-slate);
  margin-bottom: var(--tw-space-lg);
  line-height: 1.8;
}

.tw-feature-list {
  margin-bottom: var(--tw-space-xl);
}

.tw-feature-list li {
  display: flex;
  align-items: center;
  gap: var(--tw-space-md);
  padding: var(--tw-space-sm) 0;
  color: var(--tw-navy);
}

.tw-feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--tw-emerald);
  color: var(--tw-pure);
  border-radius: var(--tw-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tw-price-table {
  background: var(--tw-snow);
  border-radius: var(--tw-radius-md);
  padding: var(--tw-space-md);
  margin-bottom: var(--tw-space-lg);
}

.tw-price-table__row {
  display: flex;
  justify-content: space-between;
  padding: var(--tw-space-sm) 0;
  border-bottom: 1px solid var(--tw-cloud);
}

.tw-price-table__row:last-child {
  border-bottom: none;
}

/* CTA Section */
.tw-cta {
  background: var(--tw-gradient-crimson);
  padding: var(--tw-space-4xl) 0;
  text-align: center;
  color: var(--tw-pure);
  position: relative;
  overflow: hidden;
}

.tw-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/img/line-background.svg') center/cover no-repeat;
  opacity: 0.1;
}

.tw-cta__title {
  font-family: var(--tw-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--tw-space-md);
  position: relative;
}

.tw-cta__text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: var(--tw-space-xl);
  position: relative;
}

.tw-cta__actions {
  display: flex;
  gap: var(--tw-space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Footer */
.tw-footer {
  background: var(--tw-midnight);
  color: var(--tw-cloud);
  padding: var(--tw-space-4xl) 0 var(--tw-space-xl);
}

.tw-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--tw-space-2xl);
  margin-bottom: var(--tw-space-3xl);
}

.tw-footer__heading {
  font-family: var(--tw-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tw-pure);
  margin-bottom: var(--tw-space-lg);
}

.tw-footer__text {
  line-height: 1.8;
  font-size: 0.95rem;
}

.tw-footer__links li {
  margin-bottom: var(--tw-space-sm);
}

.tw-footer__links a {
  color: var(--tw-steel);
  font-size: 0.95rem;
}

.tw-footer__links a:hover {
  color: var(--tw-pure);
}

.tw-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--tw-space-xl);
  text-align: center;
  color: var(--tw-slate);
  font-size: 0.9rem;
}

/* Modal */
.tw-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13,27,42,0.9);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: var(--tw-space-lg);
  opacity: 0;
  transition: var(--tw-transition-base);
}

.tw-modal.is-open {
  display: flex;
  opacity: 1;
}

.tw-modal__container {
  background: var(--tw-pure);
  border-radius: var(--tw-radius-xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tw-modal__close {
  position: absolute;
  top: var(--tw-space-md);
  right: var(--tw-space-md);
  background: var(--tw-snow);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--tw-radius-full);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tw-slate);
  transition: var(--tw-transition-fast);
  z-index: 10;
}

.tw-modal__close:hover {
  background: var(--tw-crimson);
  color: var(--tw-pure);
}

.tw-modal__header {
  padding: var(--tw-space-2xl);
  text-align: center;
  border-bottom: 1px solid var(--tw-cloud);
}

.tw-modal__title {
  font-family: var(--tw-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tw-midnight);
  margin-bottom: var(--tw-space-sm);
}

.tw-modal__subtitle {
  color: var(--tw-slate);
}

.tw-modal__body {
  padding: var(--tw-space-2xl);
}

/* Forms */
.tw-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--tw-space-md);
  margin-bottom: var(--tw-space-md);
}

.tw-form-group {
  margin-bottom: var(--tw-space-md);
}

.tw-form-group label {
  display: block;
  font-weight: 600;
  color: var(--tw-navy);
  margin-bottom: var(--tw-space-sm);
  font-size: 0.9rem;
}

.tw-form-group input,
.tw-form-group select,
.tw-form-group textarea {
  width: 100%;
  padding: var(--tw-space-md);
  border: 2px solid var(--tw-cloud);
  border-radius: var(--tw-radius-md);
  font-family: var(--tw-font-body);
  font-size: 1rem;
  transition: var(--tw-transition-fast);
  background: var(--tw-pure);
}

.tw-form-group input:focus,
.tw-form-group select:focus,
.tw-form-group textarea:focus {
  outline: none;
  border-color: var(--tw-crimson);
  box-shadow: 0 0 0 4px rgba(214,40,40,0.1);
}

.tw-qty-picker {
  display: flex;
  align-items: center;
  gap: var(--tw-space-md);
}

.tw-qty-picker button {
  width: 44px;
  height: 44px;
  border: 2px solid var(--tw-cloud);
  background: var(--tw-pure);
  border-radius: var(--tw-radius-md);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--tw-transition-fast);
}

.tw-qty-picker button:hover {
  border-color: var(--tw-crimson);
  color: var(--tw-crimson);
}

.tw-qty-picker span {
  font-size: 1.25rem;
  font-weight: 700;
  min-width: 30px;
  text-align: center;
}

.tw-divider {
  height: 1px;
  background: var(--tw-cloud);
  margin: var(--tw-space-xl) 0;
}

/* Trust Badges */
.tw-trust {
  background: var(--tw-snow);
  padding: var(--tw-space-3xl) 0;
}

.tw-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--tw-space-xl);
}

.tw-trust__item {
  text-align: center;
  padding: var(--tw-space-lg);
}

.tw-trust__icon {
  width: 60px;
  height: 60px;
  background: var(--tw-pure);
  border-radius: var(--tw-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--tw-space-md);
  font-size: 1.5rem;
  box-shadow: var(--tw-shadow-sm);
  color: var(--tw-crimson);
}

.tw-trust__title {
  font-weight: 700;
  color: var(--tw-midnight);
  margin-bottom: var(--tw-space-xs);
}

.tw-trust__text {
  font-size: 0.9rem;
  color: var(--tw-slate);
}

/* Restaurant Modal - Time Slots */
.tw-modal--large .tw-modal__container {
  max-width: 700px;
}

.tw-time-picker {
  margin-bottom: var(--tw-space-xl);
}

.tw-time-picker__label {
  font-weight: 600;
  color: var(--tw-navy);
  margin-bottom: var(--tw-space-md);
  display: block;
}

.tw-time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--tw-space-sm);
}

.tw-time-slot {
  padding: var(--tw-space-md);
  border: 2px solid var(--tw-cloud);
  border-radius: var(--tw-radius-md);
  background: var(--tw-pure);
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  transition: var(--tw-transition-fast);
}

.tw-time-slot:hover,
.tw-time-slot.is-selected {
  border-color: var(--tw-crimson);
  background: rgba(214,40,40,0.05);
  color: var(--tw-crimson);
}

.tw-booking-summary {
  background: var(--tw-snow);
  border-radius: var(--tw-radius-md);
  padding: var(--tw-space-lg);
  margin-bottom: var(--tw-space-xl);
}

.tw-booking-summary__title {
  font-weight: 700;
  color: var(--tw-midnight);
  margin-bottom: var(--tw-space-md);
}

.tw-booking-summary__detail {
  display: flex;
  justify-content: space-between;
  padding: var(--tw-space-sm) 0;
  color: var(--tw-slate);
}

/* Page Hero (non-home pages) */
.tw-page-hero {
  background: var(--tw-gradient-dark);
  padding: calc(80px + var(--tw-space-4xl)) 0 var(--tw-space-4xl);
  text-align: center;
  color: var(--tw-pure);
}

.tw-page-hero__title {
  font-family: var(--tw-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--tw-space-md);
}

.tw-page-hero__subtitle {
  font-size: 1.2rem;
  color: var(--tw-steel);
}

/* Content Sections */
.tw-content {
  padding: var(--tw-space-4xl) 0;
}

.tw-page-title {
  font-family: var(--tw-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--tw-midnight);
  margin-bottom: var(--tw-space-3xl);
  text-align: center;
}

/* FAQ Accordion */
.tw-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.tw-accordion__item {
  background: var(--tw-pure);
  border-radius: var(--tw-radius-md);
  margin-bottom: var(--tw-space-md);
  box-shadow: var(--tw-shadow-sm);
  overflow: hidden;
}

.tw-accordion__trigger {
  width: 100%;
  padding: var(--tw-space-lg);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--tw-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tw-midnight);
  text-align: left;
  transition: var(--tw-transition-fast);
}

.tw-accordion__trigger:hover {
  background: var(--tw-snow);
}

.tw-accordion__trigger::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--tw-crimson);
  transition: var(--tw-transition-base);
}

.tw-accordion__item.is-open .tw-accordion__trigger::after {
  transform: rotate(45deg);
}

.tw-accordion__content {
  display: none;
  padding: 0 var(--tw-space-lg) var(--tw-space-lg);
  color: var(--tw-slate);
  line-height: 1.8;
}

.tw-accordion__item.is-open .tw-accordion__content {
  display: block;
}

/* Contact Page */
.tw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--tw-space-3xl);
}

.tw-contact-card {
  background: var(--tw-pure);
  border-radius: var(--tw-radius-lg);
  padding: var(--tw-space-xl);
  box-shadow: var(--tw-shadow-sm);
  margin-bottom: var(--tw-space-lg);
}

.tw-contact-card__title {
  font-family: var(--tw-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tw-midnight);
  margin-bottom: var(--tw-space-md);
}

.tw-contact-card p {
  color: var(--tw-slate);
  margin-bottom: var(--tw-space-sm);
}

.tw-contact-card a {
  color: var(--tw-crimson);
}

.tw-contact-card a:hover {
  text-decoration: underline;
}

/* Legal Pages */
.tw-legal {
  max-width: 800px;
  margin: 0 auto;
}

.tw-legal h2 {
  font-family: var(--tw-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tw-midnight);
  margin: var(--tw-space-2xl) 0 var(--tw-space-md);
}

.tw-legal h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tw-navy);
  margin: var(--tw-space-lg) 0 var(--tw-space-sm);
}

.tw-legal p {
  color: var(--tw-slate);
  margin-bottom: var(--tw-space-md);
  line-height: 1.8;
}

.tw-legal ul, .tw-legal ol {
  margin-left: var(--tw-space-xl);
  margin-bottom: var(--tw-space-md);
}

.tw-legal li {
  color: var(--tw-slate);
  margin-bottom: var(--tw-space-sm);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .tw-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tw-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tw-detail-card {
    grid-template-columns: 1fr;
  }
  
  .tw-detail-card:nth-child(even) {
    direction: ltr;
  }
  
  .tw-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tw-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tw-topbar__links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--tw-midnight);
    flex-direction: column;
    padding: var(--tw-space-xl);
    gap: var(--tw-space-lg);
  }
  
  .tw-topbar__links.is-open {
    display: flex;
  }
  
  .tw-topbar__hamburger {
    display: flex;
  }
  
  .tw-hero__content {
    padding: var(--tw-space-lg);
  }
  
  .tw-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .tw-hero__actions .tw-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .tw-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--tw-space-lg);
  }
  
  .tw-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .tw-form-row {
    grid-template-columns: 1fr;
  }
  
  .tw-time-slots {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tw-trust__grid {
    grid-template-columns: 1fr;
  }
}

