/* All existing CSS remains the same */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FF0000; /* Red */
  --secondary: #CC0000; /* Darker Red */
  --accent: #990000; /* Even Darker Red */
  --dark: #333333;
  --light: #FFFFFF;
  --card-bg: #FFFFFF; /* White */
  --text-dark: #FF0000; /* Red */
  --text-muted: #CC0000; /* Darker Red */
  --bg-yellow: #FFFF00; /* Yellow */
}

/* Highlight Seats - New Style for Prominent Display */
.highlight-seats {
  font-weight: 900;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  }
}

.copyright a:hover{
  text-decoration: none !important;
}
body {
  background: var(--bg-yellow);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 70% 70%, rgba(204, 0, 0, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 50% 50%, rgba(153, 0, 0, 0.03) 0%, transparent 50%);
  z-index: -1;
}

.grid-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 0, 0, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
}

/* Floating Emojis */
.floating-emojis {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.emoji {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.2;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

/* Hero Section */
.hero-section {
  padding: 30px 0;
  text-align: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--primary);
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.hero-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 0, 0, 0.1);
  padding: 15px;
  border-radius: 15px;
  min-width: 200px;
}

.hero-detail-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.hero-detail-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.hero-detail-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
  background: var(--secondary);
}

.cta-secondary {
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--text-dark);
font-weight: 600;
}

/* Header */
header {
  padding: 30px 0 20px;
  text-align: center;
  position: relative;
}

.header-content {
  position: relative;
  z-index: 2;
}

.logo-container {
  margin-bottom: 15px;
  position: relative;
}

.logo-img {
  max-width: 250px;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.3));
  transition: transform 0.5s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.tagline {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.sub-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 auto;
  font-weight: 600;
}

/* Bus Image Section */
.bus-section {
  text-align: center;
  margin: 30px 0;
}

.bus-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
  transition: transform 0.5s ease;
}

.bus-image:hover {
  transform: scale(1.02);
}

.bus-caption {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.divider-line {
  height: 3px;
  width: 100px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.divider-icon {
  margin: 0 15px;
  font-size: 2rem;
  color: var(--primary);
}

/* Main Container */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Content Sections */
.content-section {
  margin: 40px 0;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Info Cards Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.info-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border: 2px solid var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent);
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.info-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-title-emoji {
  font-size: 1.4rem;
}

.info-description {
  font-size: 1rem;
  color: var(--text-muted);
  flex-grow: 1;
}

/* Logistics Section */
.logistics-section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  border: 2px solid var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.logistics-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.logistics-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-top: 5px;
}

.logistics-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.logistics-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Disclaimer Section */
.disclaimer-section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 20px;
  margin: 30px 0;
  border-left: 5px solid var(--accent);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Reservation Section */
.reservation-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.reservation-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reservation-description {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 25px;
  color: var(--text-muted);
}

.reservation-highlight {
  background: rgba(255, 0, 0, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin: 25px 0;
}

.reservation-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.reservation-price-text {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.reservation-cta {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--light);
  font-weight: 700;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

.reservation-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: 0;
}

.reservation-cta:hover::before {
  left: 100%;
}

.reservation-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.reservation-cta span {
  position: relative;
  z-index: 1;
}

/* Contact Form Styles */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto 40px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Hidden honeypot field */
.hidden {
  display: none;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group i {
  position: absolute;
  left: 18px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
  z-index: 2;
}

.poker-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.form-group label[for="phone"] {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.form-group {
  position: relative;
}

.form-group i {
  position: absolute;
  left: 18px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
  z-index: 2;
      top: 25px;
}
.form-group.d-flex {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.radio-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.radio-group input[type="radio"] {
  margin-right: 5px;
  transform: scale(1.3);
}

.radio-group input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.radio-group label {
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.3);
}

.form-group label[for="text-notifications"] {
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 1);
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.form-group input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.btn-submit {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--light);
  font-weight: 700;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: 0;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.btn-submit span {
  position: relative;
  z-index: 1;
}

.form-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* Side-by-side sections */
.side-by-side-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.side-section {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 2px solid var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 25px;
}

.side-section .section-title {
  margin-bottom: 25px;
}

.side-section .reservation-container,
.side-section .contact-form-container {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
}

.side-section .reservation-container .form-note,
.side-section .contact-form-container .form-note {
  margin-bottom: 0;
}

.warning-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
}
    /* Collapsible Content Warning */
    .collapsible {
      background: var(--card-bg);
      border: 2px solid var(--primary);
      border-radius: 15px;
      margin: 30px 0;
      overflow: hidden;
    }

    .collapsible-header {
      background: var(--primary);
      color: var(--light);
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Oswald', sans-serif;
      font-size: 1.2rem;
      text-transform: uppercase;
    }

    .collapsible-header i {
      transition: transform 0.3s ease;
    }

    .collapsible-content {
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .collapsible-content.active {
      padding: 20px;
      max-height: 500px;
    }

    .collapsible-header.active i {
      transform: rotate(180deg);
    }


/* Footer */
footer {
  background: rgba(0, 0, 0, 0.05);
  padding: 0px 0 30px;
  margin-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--accent);
  text-transform: uppercase;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.contact-item i {
  color: var(--primary);
  font-size: 1.4rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
  color: white;
}

.copyright {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.copyright a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .logo {
    font-size: 3rem;
  }
  
  .tagline {
    font-size: 1.6rem;
  }
  
  .sub-tagline {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-details {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-detail {
    width: 100%;
    max-width: 300px;
  }
  
  .logo {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.4rem;
  }
  
  .sub-tagline {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .bus-image {
    border-width: 3px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .side-by-side-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .logo {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .info-title {
    font-size: 1.4rem;
  }
  
  .reservation-container,
  .contact-form-container {
    padding: 25px;
  }
  
  .reservation-price {
    font-size: 2.2rem;
  }
  
  .warning-card {
    padding: 20px;
  }
  
  .warning-title {
    font-size: 1.6rem;
  }
}

.event-details {
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--text-dark);
font-weight: 600;
}

/* About Us Section */
.about-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 2;
}

.about-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .about-card {
    flex-direction: column;
    text-align: center;
  }
  
  .about-image {
    max-width: 100% !important;
  }
}