/* Tomorrowland Thailand - CSS */
:root {
  --top-bg: #1a1a1a;
  --top-bg-dark: #121212;
  --top-orange: #d4822a;
  --top-orange-hover: #e8923a;
  --top-text: #ffffff;
  --top-text-muted: #999999;
  --top-text-dark: #333333;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--top-bg);
  color: var(--top-text);
  line-height: 1.5;
}

/* Header */
.top-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.top-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--top-orange);
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.top-nav { display: flex; gap: 30px; }
.top-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--top-text-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.top-nav-link:hover { color: var(--top-orange); }
.top-nav-link.top-active { text-decoration: underline; text-underline-offset: 4px; }
.top-mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--top-text-dark);
  cursor: pointer;
}

/* Hero */
.top-hero {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(80,60,40,0.4) 0%, rgba(30,20,15,0.8) 100%), url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=80') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 80px;
}
.top-breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.top-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.top-breadcrumb a:hover { text-decoration: underline; }
.top-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}
.top-hero-subtitle {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}
.top-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin-bottom: 30px;
}

/* Buttons */
.top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.top-btn-orange {
  background: var(--top-orange);
  color: #fff;
}
.top-btn-orange:hover {
  background: var(--top-orange-hover);
  transform: translateY(-2px);
}

/* Section */
.top-section {
  padding: 80px 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.top-section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  margin-bottom: 40px;
}

/* Cards */
.top-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.top-card {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
}
.top-card:hover { transform: translateY(-5px); }
.top-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}
.top-card-icons {
  display: flex;
  gap: 8px;
  margin-top: -30px;
  margin-left: 12px;
  position: relative;
  z-index: 1;
}
.top-card-icon {
  width: 32px;
  height: 32px;
  background: rgba(40,40,40,0.9);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.top-card-content { padding: 15px 0; }
.top-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.top-card-desc {
  font-size: 14px;
  color: var(--top-text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
}
.top-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.top-card-link:hover { text-decoration: underline; }

/* Tickets Grid */
.top-tickets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.top-ticket-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.top-ticket-card:hover {
  border-color: var(--top-orange);
  transform: translateY(-5px);
}
.top-ticket-popular {
  border-color: var(--top-orange);
  background: rgba(212,130,42,0.1);
}
.top-ticket-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--top-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 20px;
}
.top-ticket-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.top-ticket-desc {
  font-size: 14px;
  color: var(--top-text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.top-ticket-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--top-orange);
  margin-bottom: 20px;
}

/* SEO Section */
.top-seo-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-seo-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.top-seo-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.top-seo-text p {
  color: var(--top-text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Dates Section */
.top-dates-section {
  text-align: center;
}
.top-dates-content {
  max-width: 700px;
  margin: 0 auto;
}
.top-dates-big {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: var(--top-orange);
  margin-bottom: 10px;
}
.top-dates-location {
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
}
.top-dates-desc {
  font-size: 16px;
  color: var(--top-text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Footer Links Row */
.top-footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}
.top-footer-links-row .top-footer-link {
  padding: 0;
}

/* Pre-Footer */
.top-prefooter {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, var(--top-bg) 0%, #2a1f15 50%, var(--top-bg-dark) 100%);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.top-prefooter-text {
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: rgba(255,255,255,0.9);
}
.top-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.top-social-link {
  font-size: 22px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.top-social-link:hover { color: #fff; }

/* Footer */
.top-footer {
  background: var(--top-bg-dark);
  padding: 60px 20px 40px;
}
.top-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.top-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.top-footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: #fff;
}
.top-footer-links { list-style: none; }
.top-footer-link {
  display: block;
  font-size: 14px;
  color: var(--top-text-muted);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}
.top-footer-link:hover { color: #fff; }
.top-footer-apps {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.top-footer-apps-title {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.top-footer-apps-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
.top-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}
.top-app-btn:hover { border-color: #555; }
.top-app-btn-icon { font-size: 24px; }
.top-app-btn-text { text-align: left; line-height: 1.2; }
.top-app-btn-small { font-size: 10px; opacity: 0.7; }
.top-app-btn-big { font-size: 16px; font-weight: 500; }
.top-footer-legal {
  text-align: center;
  font-size: 13px;
  color: var(--top-text-muted);
}
.top-footer-legal a {
  color: var(--top-text-muted);
  text-decoration: underline;
}
.top-footer-legal a:hover { color: #fff; }

/* Contact Form */
.top-contact { background: var(--top-bg-dark); }
.top-form-container {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px;
}
.top-form-group { margin-bottom: 20px; }
.top-form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.top-form-input, .top-form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.top-form-input::placeholder { color: #666; }
.top-form-input:focus, .top-form-select:focus { border-color: var(--top-orange); }
.top-form-select { cursor: pointer; }
.top-form-select option { background: #1a1a1a; }
.top-form-checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.top-form-checkbox { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--top-orange); }
.top-form-checkbox-label { font-size: 13px; color: var(--top-text-muted); }
.top-form-submit { width: 100%; margin-top: 10px; }

/* Thanks */
.top-thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--top-bg);
}
.top-thanks-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(76,175,80,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: #4caf50;
  margin-bottom: 25px;
}
.top-thanks-title { font-size: 32px; margin-bottom: 15px; }
.top-thanks-text { font-size: 16px; color: var(--top-text-muted); margin-bottom: 30px; max-width: 400px; }

/* Responsive */
@media (max-width: 1024px) {
  .top-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .top-tickets-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .top-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; border-radius: 0 0 20px 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
  .top-nav.top-nav-open { display: flex; }
  .top-mobile-menu { display: block; }
  .top-cards-grid { grid-template-columns: 1fr; }
  .top-tickets-grid { grid-template-columns: 1fr; }
  .top-seo-layout { grid-template-columns: 1fr; gap: 30px; }
  .top-section { padding: 60px 20px; }
  .top-footer-links-row { gap: 10px 20px; }
}
@media (max-width: 480px) {
  .top-header { padding: 10px 15px; gap: 15px; }
  .top-logo { font-size: 11px; }
  .top-footer-apps-btns { flex-direction: column; align-items: center; }
}
/* Language Selector */
.top-lang-selector {
  position: relative;
  margin-left: 20px;
}
.top-lang-btn {
  background: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 0.2s;
}
.top-lang-btn:hover {
  background: #f0f0f0;
}
.top-lang-flag {
  font-size: 18px;
}
.top-lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-width: 140px;
  padding: 8px 0;
  display: none;
  z-index: 1000;
}
.top-lang-dropdown.open {
  display: block;
}
.top-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.2s;
}
.top-lang-option:hover {
  background: #f5f5f5;
}
.top-lang-option.active {
  background: #fff3e6;
  color: #d4822a;
}
@media (max-width: 768px) {
  .top-lang-selector {
    margin-left: 10px;
  }
  .top-lang-btn span:not(.top-lang-flag) {
    display: none;
  }
}

/* Language Selector - Fixed */
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-lang-select {
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #1a1a1a;
  min-width: 70px;
}
.top-lang-select:focus {
  outline: 2px solid #d4822a;
}
@media (max-width: 768px) {
  .top-header {
    flex-wrap: wrap;
  }
  .top-header-right {
    order: 3;
    width: 100%;
    justify-content: flex-end;
    margin-top: 10px;
  }
  .top-lang-select {
    padding: 6px 10px;
    font-size: 13px;
  }
}



/* Hero Buttons Container */
.top-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Brown Button (secondary) */
.top-btn-brown {
  background: #8b5a2b;
  color: #fff;
}
.top-btn-brown:hover {
  background: #a0693a;
}

/* Section Subtitle */
.top-section-subtitle {
  text-align: center;
  color: var(--top-text-muted);
  font-size: 16px;
  margin-top: -10px;
  margin-bottom: 30px;
}

/* Hotels Grid */
.top-hotels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.top-hotel-card {
  background: var(--top-bg-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.top-hotel-card:hover {
  transform: translateY(-5px);
}
.top-hotel-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.top-hotel-content {
  padding: 20px;
}
.top-hotel-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}
.top-hotel-stars {
  color: var(--top-orange);
  font-size: 14px;
  margin-bottom: 8px;
}
.top-hotel-desc {
  font-size: 13px;
  color: var(--top-text-muted);
  margin-bottom: 15px;
}
.top-hotel-card .top-btn {
  width: 100%;
  text-align: center;
}

/* Responsive Hotels */
@media (max-width: 1024px) {
  .top-hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .top-hotels-grid {
    grid-template-columns: 1fr;
  }
  .top-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
