    /* Base styles */
    @font-face {
      font-family: 'Gilroy';
      src: url('../fonts/Gilroy-Light.ttf') format('truetype');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }
    
    @font-face {
      font-family: 'Gilroy';
      src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    
    @font-face {
      font-family: 'Gilroy';
      src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    
    @font-face {
      font-family: 'SteppeTrial';
      src: url('../fonts/SteppeTrial-Light.ttf') format('truetype');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }
    
    @font-face {
      font-family: 'SteppeTrial';
      src: url('../fonts/SteppeTrial-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    
    @font-face {
      font-family: 'SteppeTrial';
      src: url('../fonts/SteppeTrial-SemiBold.ttf') format('truetype');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }
    
    @font-face {
      font-family: 'SteppeTrial';
      src: url('../fonts/SteppeTrial-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    
    :root {
      --primary: #ff6633;
      --primary-dark: #1d3b39;
      --primary-light: #336c68;
      --accent-primary: #ff6633;
      --accent-secondary: #ff6633;
      --accent-tertiary: #ff6633;
      --dark: #111111;
      --light: #ffffff;
      --gray: #888888;
      --gray-light: #dddddd;
      --gray-dark: #333333;
      --transparent-white: rgba(255, 255, 255, 0.1);
      --gradient: linear-gradient(to right, #ff6633, #ff6633);
      --primary-color: #ff6633;
      --secondary-color: #ff6633;
      --dark-bg: #0a0a0a;
      --text-light: #ffffff;
      --text-gray: #a0a0a0;
      --neon-glow: 0 0 10px rgba(255, 102, 51, 0.5);
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Gilroy', sans-serif;
    }

    body {
      background-color: #000;
      color: var(--light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: var(--light);
      transition: color 0.3s ease;
    }

    ul {
      list-style: none;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .btn {
      display: inline-block;
      padding: 1rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: var(--transition);
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: #ff6633;
      color: var(--text-light);
    }

    .btn-primary:hover {
      background: #ff6633;
      box-shadow: var(--neon-glow);
    }

    .btn-secondary {
      background: transparent;
      border: 2px solid #ff6633;
      color: var(--text-light);
    }

    .btn-secondary:hover {
      background: #ff6633;
      box-shadow: var(--neon-glow);
    }

    .text-center {
      text-align: center;
    }

    /* Header and Navigation */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

    .logo {
      font-size: 24px;
      font-weight: 700;
      color: var(--light);
      max-width: 200px;
    }

     .logo img {
        max-width: 100%;
    }

    .logo span {
      color: var(--primary);
    }

    .nav-desktop {
      display: none;
    }

    .nav-desktop ul {
      display: flex;
      align-items: center;
    }

    .nav-desktop li {
      margin-left: 30px;
    }

    .nav-desktop a {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .nav-desktop a:hover {
      color: var(--accent-primary);
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1000;
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 3px;
      background: var(--accent-color);
      border-radius: 3px;
      transition: all 0.3s ease;
      background-color: var(--accent-primary);
    }

    .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(10px);
      z-index: 999;
      transition: right 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center;
    }

    .mobile-menu li {
      margin: 1.5rem 0;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s ease;
    }

    .mobile-menu.active li {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu li:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu li:nth-child(3) { transition-delay: 0.3s; }
    .mobile-menu li:nth-child(4) { transition-delay: 0.4s; }
    .mobile-menu li:nth-child(5) { transition-delay: 0.5s; }

    .mobile-menu a {
      color: var(--text-light);
      text-decoration: none;
      font-size: 1.5rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      transition: all 0.3s ease;
      display: inline-block;
      padding: 0.5rem 1rem;
    }

    .mobile-menu a:hover {
      color: var(--accent-color);
      transform: translateX(10px);
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }

      .nav-desktop {
        display: none;
      }

      .mobile-menu {
        display: flex;
      }
    }

    /* Hero Section */
    .hero {
      padding-top: 0;
      padding-bottom: 0;
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      background: #000;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      opacity: 0.5;
      z-index: 1;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(to top, #000, transparent);
      z-index: 2;
    }

    .stars {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)), 
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)), 
        radial-gradient(2px 2px at 60px 120px, #ddd, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 80px 20px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 100px 160px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 120px 240px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 140px 50px, #ddd, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #fff, rgba(0,0,0,0));
      background-size: 200px 200px;
      animation: twinkle 5s ease-in-out infinite alternate;
      z-index: 1;
      opacity: 0.6;
    }

    .arc {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 40%;
      background: #000;
      border-radius: 100% 100% 0 0;
      z-index: 3;
    }

    @keyframes twinkle {
      0% { opacity: 0.3; }
      50% { opacity: 0.6; }
      100% { opacity: 0.3; }
    }

    .hero-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: 0 20px;
      max-width: 800px;
      margin: 0 auto;
      padding-top: 200px;
    }

    .hero-logo {
      margin-bottom: 20px;
    }

    .hero-logo img {
      max-width: 300px;
      width: 100%;
      height: auto;
    }

    .hero-sublogo img {
      max-width: 200px;
      width: 100%;
      height: auto;
    }

    .hero-date {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .hero-date span {
      color: var(--accent-primary);
    }

    .hero-location {
      font-size: 18px;
      margin-bottom: 40px;
    }

    .hero-location span {
      color: var(--accent-primary);
    }

    .hero-title {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .hero-headline {
      font-size: 42px;
      font-family: 'SteppeTrial';
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .hero-description {
      font-size: 16px;
      max-width: 700px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

    .hero-cta {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .hero-button {
      margin-bottom: 10px;
    }

    .hero-button a {
      display: inline-block;
      padding: 15px 40px;
      background: #fff;
      color: #000;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      border: 2px solid #fff;
      transition: all 0.3s ease;
    }

    .hero-button a:hover {
      background: rgba(255, 255, 255, 0.9);
    }

    .hero-note {
      font-size: 12px;
      letter-spacing: 2px;
      opacity: 0.7;
    }
    .beonix-banner {
      margin: 40px 0;

      img {
        max-width: 100%;
      }
    }

    /* Festival Overview */
    .overview {
      padding: 100px 0;
      position: relative;
      background: var(--dark);
    }

    .section-title {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 16px;
      text-align: center;
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--gray-light);
      margin-bottom: 60px;
      text-align: center;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .features {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .feature-card {
      background-color: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 30px;
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      border-color: rgba(40, 82, 79, 0.5);
      transform: translateY(-5px);
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      background: var(--gradient);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--light);
      font-size: 24px;
    }

    .feature-icon i {
      font-size: 2rem;
      color: var(--accent-color);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
    }

    .feature-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .feature-description {
      color: var(--gray);
      font-size: 16px;
    }

    /* Lineup Section */
    .lineup {
      padding: 100px 0;
      position: relative;
      background: linear-gradient(to bottom, #000000, #0c1f1e);
    }

    .lineup::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0.2;
      z-index: 0;
    }

    .lineup::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      z-index: 1;
    }

    .lineup-content {
      position: relative;
      z-index: 2;
    }

    .stages {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 40px;
    }

    .stage-card {
      /* background-color: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      text-align: center; */

      img {
        max-width: 100%;
      }
    }

    .stage-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .stage-divider {
      width: 80px;
      height: 4px;
      background: var(--gradient);
      margin: 0 auto 20px;
      border-radius: 2px;
    }

    .artists-list {
      margin: 0;
      padding: 0;
    }

    .artists-list li {
      margin-bottom: 12px;
      color: var(--gray-light);
    }

    .artists-list li.headliner {
      font-weight: 700;
      color: var(--light);
    }

    .see-all {
      display: inline-flex;
      align-items: center;
      color: var(--accent-secondary);
      font-size: 16px;
      font-weight: 600;
      margin-top: 20px;
    }

    .see-all i {
      margin-left: 8px;
      font-size: 14px;
    }

    .lineup-cta {
      text-align: center;
      margin-top: 3rem;
    }

    /* Packages Section */
    .packages {
      padding: 100px 0;
      position: relative;
      background: radial-gradient(circle at center, rgba(40, 82, 79, 0.15) 0%, transparent 70%);
    }

    .package-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .package-card {
      background-color: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 30px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 470px;
    }

    .package-card .stripe-link {
      display: inline-block;
      padding: 13px 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: var(--transition);
      cursor: pointer;
      border: none;
      background: #ff6633;
      color: #fff;
      font-size: 13.5px;
    }

    .package-card.selected {
      border-color: var(--primary);
      box-shadow: 0 10px 30px rgba(40, 82, 79, 0.3);
    }

    .package-popular {
      position: absolute;
      top: 16px;
      right: -30px;
      background: var(--gradient);
      color: var(--light);
      padding: 5px 30px;
      font-size: 12px;
      font-weight: 600;
      transform: rotate(45deg);
      text-transform: uppercase;
    }

    .package-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .package-title {
      font-size: 21px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--accent-primary);
      line-height: 140%;
      min-height: 60px;
    }

    .package-price {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 5px;
    }

    .package-price-subtitle {
      font-size: 14px;
      color: var(--gray);
    }

    .package-content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .package-features {
      flex: 1;
      margin-bottom: 30px;
    }

    .package-features li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 12px;
    }

    .package-features i {
      color: var(--primary);
      margin-right: 10px;
      margin-top: 4px;
      font-size: 14px;
    }

    .text-center {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .package-select-btn {
      width: 100%;
      padding: 1rem 2rem;
      background: transparent;
      border: 2px solid #ff6633;
      color: var(--text-light);
      border-radius: 5px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: var(--transition);
      cursor: pointer;
    }

    .package-select-btn:hover {
      background: #ff6633;
      box-shadow: var(--neon-glow);
    }

    /* Venue Section */
    .venue {
      padding: 100px 0;
      position: relative;
      background-color: #000;
    }

    .venue::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0.4;
      z-index: 0;
    }

    .venue::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      z-index: 1;
    }

    .venue-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .venue-info {
      flex: 1;
    }

    .venue-title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .venue-description {
      font-size: 18px;
      color: var(--gray-light);
      margin-bottom: 30px;
    }

    .venue-details {
      margin-bottom: 30px;
    }

    .venue-detail {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .venue-detail-icon {
      width: 40px;
      height: 40px;
      background: var(--gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .venue-detail-icon i {
      font-size: 2rem;
      color: var(--accent-color);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
    }

    .venue-detail-content {
      flex: 1;
    }

    .venue-detail-label {
      font-weight: 700;
      margin-bottom: 5px;
    }

    .venue-detail-value {
      color: var(--gray);
    }

    .venue-map-link {
      display: inline-flex;
      align-items: center;
      color: var(--accent-secondary);
      font-size: 16px;
      font-weight: 600;
    }

    .venue-map-link i {
      margin-left: 8px;
      font-size: 14px;
    }

    .venue-image {
      flex: 1;
    }

    .venue-image img {
      width: 100%;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    /* Booking Section */
    .booking {
      padding: 100px 0;
      position: relative;
      background: linear-gradient(to bottom, #0c1f1e, #000000);
    }

    .booking-card {
      background-color: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 40px;
      max-width: 800px;
      margin: 0 auto;
    }

    .booking-title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 16px;
      text-align: center;
    }

    .booking-subtitle {
      font-size: 18px;
      color: var(--gray-light);
      margin-bottom: 40px;
      text-align: center;
    }

    .booking-info {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    .booking-info-card {
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 20px;
    }

    .booking-info-header {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      text-align: center;
    }

    .booking-info-header img {
      width: 210px;
    }

    .booking-info-title {
      font-weight: 700;
    }

    .booking-package {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .booking-package-name {
      font-size: 18px;
      font-weight: 600;
    }

    .booking-package-description {
      font-size: 14px;
      color: var(--gray);
    }

    .booking-package-price {
      font-size: 24px;
      font-weight: 700;
    }

    .booking-change {
      color: var(--accent-secondary);
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      margin-top: 8px;
    }

    .booking-change i {
      margin-left: 4px;
      font-size: 12px;
    }

    .booking-action {
      text-align: center;
    }

    .booking-btn {
      font-size: 18px;
      padding: 16px 40px;
    }

    .booking-note {
      font-size: 14px;
      color: var(--gray);
      margin-top: 16px;
      text-align: center;
    }

    /* FAQ Section */
    .faq {
      padding: 100px 0;
    }

    .faq-items {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-item {
      background-color: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 24px;
    }

    .faq-question {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .faq-answer {
      color: var(--gray);
    }

    .faq-all-link {
      text-align: center;
      margin-top: 40px;
    }

    .faq-all-link a {
      display: inline-flex;
      align-items: center;
      color: var(--accent-secondary);
      font-size: 16px;
      font-weight: 600;
    }

    .faq-all-link i {
      margin-left: 8px;
      font-size: 14px;
    }

    /* Footer */
    footer {
      padding: 60px 0 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-main {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 40px;
    }

    .footer-logos {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
    }

    .footer-logo {
      height: 40px;
      margin: 0 10px;
    }

    .footer-separator {
      font-size: 24px;
      margin: 0 15px;
    }

    .footer-social {
      display: flex;
      gap: 24px;
    }

    .footer-social a {
      color: var(--gray);
      transition: color 0.3s ease;
    }

    .footer-social a:hover {
      color: var(--light);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-info {
      text-align: center;
      color: var(--gray);
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      font-size: 14px;
    }

    .footer-links a {
      color: var(--gray);
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--light);
    }

    /* Media Queries */
    @media (min-width: 768px) {
      .nav-desktop {
        display: block;
      }

      .menu-toggle {
        display: none;
      }

      .hero-title {
        font-size: 18px;
      }

      .hero-headline {
        font-size: 60px;
      }

      .hero-description {
        font-size: 18px;
      }

      .features {
        grid-template-columns: repeat(3, 1fr);
      }

      .stages {
        grid-template-columns: repeat(4, 1fr);
      }

      .package-cards {
        justify-content: space-between;
      }
      
      .package-card {
        flex: 1 1 calc(25% - 22.5px);
        max-width: calc(25% - 22.5px);
        min-width: 250px;
      }

      .venue-content {
        flex-direction: row;
      }

      .booking-info {
        grid-template-columns: repeat(1, 1fr);
      }

      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }

      .footer-info {
        text-align: left;
      }

      .footer-links {
        justify-content: flex-end;
      }
    }

    /* Partner Badge */
    .partner-badge {
      background: rgba(0, 0, 0, 0.8);
      padding: 30px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .badge-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      color: var(--text-light);
    }

    .badge-logos {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .badge-logo {
      height: 30px;
      width: auto;
    }

    .badge-separator {
      color: var(--text-gray);
    }

    /* What's Included Section */
    .included {
      padding: 6rem 0;
      background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
      position: relative;
      overflow: hidden;
    }

    .included::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, #ff6633, transparent);
    }

    .included::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, #ff6633, transparent);
    }

    .included-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .included .section-title {
      font-size: 3rem;
      margin-bottom: 2rem;
      background: linear-gradient(45deg, #ff6633, #ff9966);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 20px rgba(255, 102, 51, 0.3);
    }

    .included-list {
      list-style: none;
      padding: 0;
      margin: 3rem 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .included-list li {
      margin: 0;
      font-size: 1.3rem;
      color: var(--text-light);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .included-list li::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, rgba(255, 102, 51, 0.1), transparent);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
    }

    .included-list li:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(255, 102, 51, 0.2);
    }

    .included-list li:hover::before {
      transform: translateX(100%);
    }

    .check-icon {
      color: #ff6633;
      margin-right: 1rem;
      font-size: 1.5rem;
      text-shadow: 0 0 10px rgba(255, 102, 51, 0.5);
    }

    .included-price {
      font-size: 2rem;
      color: #ff6633;
      font-weight: bold;
      margin-top: 3rem;
      padding: 1rem 2rem;
      display: inline-block;
      background: rgba(255, 102, 51, 0.1);
      border-radius: 50px;
      border: 2px solid #ff6633;
      text-shadow: 0 0 10px rgba(255, 102, 51, 0.3);
    }

    @media (max-width: 768px) {
      .included-list {
        grid-template-columns: 1fr;
      }
      
      .included .section-title {
        font-size: 2.5rem;
      }
      
      .included-list li {
        font-size: 1.1rem;
        padding: 1rem;
      }
    }

    @media (max-width: 600px) {
      .included-price {
        font-size: 1.2rem !important;
      }
    }

    /* Hotel Grid */
    .hotels {
      padding: 4rem 0;
      background: linear-gradient(to bottom, var(--dark-bg), #000);
    }

    .hotel-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }

    .hotel-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      overflow: hidden;
      transition: var(--transition);
    }

    .hotel-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(255, 102, 51, 0.3);
    }

    .hotel-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .hotel-content {
      padding: 1.5rem;
      color: var(--text-light);
    }

    .hotel-content h3 {
      margin: 0 0 1rem;
      font-size: 1.5rem;
    }

    .hotel-package {
      color: var(--text-gray);
      margin-bottom: 0.5rem;
    }

    .hotel-price {
      color: #ff6633;
      font-size: 1.2rem;
      font-weight: bold;
      margin: 1rem 0;
    }

    .hotel-info-link {
      display: inline-block;
      margin-top: 1rem;
      color: var(--text-gray);
      text-decoration: none;
      transition: var(--transition);
    }

    .hotel-info-link:hover {
      color: #ff6633;
    }

    .hotel-note {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    /* Extended Stay Section */
    .extended-stay {
      padding: 4rem 0;
      background: linear-gradient(45deg, var(--dark-bg), #1a1a1a);
      text-align: center;
      color: var(--text-light);
    }

    .extended-stay-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .extended-stay h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .extended-stay p {
      font-size: 1.2rem;
      color: var(--text-gray);
      margin-bottom: 2rem;
    }

    /* How It Works Section */
    .how-it-works {
      padding: 4rem 0;
      background: var(--dark-bg);
      color: var(--text-light);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .step-card {
      text-align: center;
      padding: 2rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      transition: var(--transition);
    }

    .step-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--neon-glow);
    }

    .step-number {
      width: 40px;
      height: 40px;
      background: #ff6633;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-weight: bold;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      align-items: center;
      justify-content: center;
    }

    .modal-content {
      position: relative;
      background: var(--dark-bg);
      width: 100vw;
      max-width: 1400px;
      left: 0;
      right: 0;
      margin: 0;
      padding: 2rem 3vw;
      border-radius: 0;
      color: var(--text-light);
      max-height: 90vh;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .modal-content > .close-modal {
      position: absolute;
      top: 0;
      right: 2rem;
      font-size: 2.5rem;
      font-weight: bold;
      color: var(--text-gray);
      cursor: pointer;
      z-index: 10;
      line-height: 1;
      background: none;
      border: none;
      transition: color 0.2s;
    }

    .modal-content > .close-modal:hover {
      color: var(--primary);
    }

    .modal-content h2 {
      text-align: center;
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
      font-size: 2rem;
    }

    .modal-content p.modal-subtitle {
      text-align: center;
      margin-bottom: 2rem;
      color: var(--text-gray);
      font-size: 1.1rem;
    }

    .modal .package-cards {
      display: flex;
      flex-direction: row;
      gap: 20px;
      justify-content: center;
      align-items: stretch;
      flex-wrap: nowrap;
      margin-bottom: 1rem;
      /* overflow-x: auto; */
      padding-bottom: 1rem;
    }

    .modal .package-card {
      flex: 1 1 0;
      width: 320px;
      max-width: 360px;
      background: #181818;
      border-radius: 12px;
      box-shadow: 0 2px 24px 0 rgba(0,0,0,0.25);
      margin: 0 0.5rem;
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      min-height: 650px;
    }

    /* Hide horizontal scrollbar for package-cards */
    .modal .package-cards::-webkit-scrollbar {
      display: none;
    }
    .modal .package-cards {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    /* Hide vertical scrollbar for modal-content but keep scrollable */
    .modal-content::-webkit-scrollbar {
      display: none;
    }
    .modal-content {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    /* Hotel Selection in Modals */
    .modal .hotel-selection {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      clear: both;
    }

    .modal .hotel-selection .section-title {
      text-align: center;
      margin-bottom: 1rem;
      font-size: 1.8rem;
      color: var(--text-light);
    }

    .modal .hotel-selection .hotel-note {
      text-align: center;
      margin-bottom: 2rem;
      color: var(--text-gray);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .modal .hotel-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 1rem;
    }

    .modal .hotel-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      overflow: hidden;
      transition: var(--transition);
    }

    .modal .hotel-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 15px rgba(255, 102, 51, 0.3);
    }

    .modal .hotel-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .modal .hotel-content {
      padding: 1.2rem;
      color: var(--text-light);
      text-align: center;
    }

    .modal .hotel-content h3 {
      margin: 0 0 0.8rem;
      font-size: 1.3rem;
    }

    .modal .hotel-package {
      color: var(--text-gray);
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .modal .hotel-price {
      color: var(--primary);
      font-weight: bold;
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .modal .package-header {
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .modal .package-features {
      margin-bottom: 1.5rem;
    }

    .book-direct-btn {
      display: inline-block;
      padding: 1rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: var(--transition);
      cursor: pointer;
      border: none;
      width: auto;
      font-size: 1.1rem;
      background: var(--primary);
      color: #fff;
      text-align: center;
      box-shadow: 0 0 10px rgba(255,102,51,0.15);
      margin-top: auto;
    }

    .book-direct-btn:hover {
      background: #ff4400;
      color: #fff;
      box-shadow: 0 0 20px rgba(255,102,51,0.25);
    }

    #bookingModal {
      z-index: 9999;
    }

    @media (max-width: 900px) {
      .modal .package-cards {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        flex-wrap: nowrap;
        overflow-x: visible;
        padding-bottom: 0;
      }
      .modal .package-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        margin: 0;
        height: auto;
        /* min-height: 0; */
        max-height: fit-content;
        justify-content: flex-start;
      }
      .book-direct-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
      }
    }

    /* Form Styles */
    .booking-form {
      margin-top: 2rem;
      max-width: 400px;
      margin: 0 auto;
    }

    .form-group {
      position: relative;
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--text-gray);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 1rem;
      border: 2px solid var(--accent-secondary);
      border-radius: 8px;
      background-color: rgba(255, 102, 51, 0.05);
      color: var(--text-primary);
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-group select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ff6633' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
      background-position: right 0.75rem center;
      background-repeat: no-repeat;
      background-size: 1.5em 1.5em;
      padding-right: 2.5rem;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--accent-primary);
      background-color: rgba(255, 102, 51, 0.1);
    }

    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
      border-color: #ff4444;
      background: rgba(255, 68, 68, 0.1);
    }

    .error-message {
      color: #ff4444;
      font-size: 0.875rem;
      margin-top: 0.5rem;
      padding: 0.5rem;
      background: rgba(255, 68, 68, 0.1);
      border-radius: 4px;
      animation: fadeIn 0.3s ease;
    }

    .success-message {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.95);
      padding: 2rem;
      border-radius: 12px;
      border: 2px solid var(--accent-color);
      text-align: center;
      z-index: 1000;
      animation: fadeIn 0.3s ease;
      max-width: 90%;
      width: 400px;
    }

    .success-message h3 {
      color: var(--accent-color);
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    .success-message p {
      color: var(--text-color);
      margin-bottom: 0.5rem;
      font-size: 1rem;
      line-height: 1.5;
    }

    /* Loading Spinner */
    .loading-spinner {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      border-top-color: var(--accent-color);
      animation: spin 1s ease-in-out infinite;
      margin-right: 8px;
      vertical-align: middle;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translate(-50%, -48%); }
      to { opacity: 1; transform: translate(-50%, -50%); }
    }

    /* Form Button States */
    .form-group button[type="submit"] {
      position: relative;
      overflow: hidden;
    }

    .form-group button[type="submit"]:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

    .form-group button[type="submit"]:disabled:hover {
      transform: none;
      box-shadow: none;
    }

    /* Responsive Form Styles */
    @media (max-width: 768px) {
      .form-group input,
      .form-group select,
      .form-group textarea {
        font-size: 16px; /* Prevents zoom on mobile */
      }

      .success-message {
        width: 90%;
        padding: 1.5rem;
      }

      .success-message h3 {
        font-size: 1.25rem;
      }

      .success-message p {
        font-size: 0.875rem;
      }
    }

    /* WhatsApp Contact */
    .whatsapp-contact {
      margin-top: 2rem;
      text-align: center;
    }

    .whatsapp-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-light);
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      padding: 0.5rem 1rem;
    }

    .whatsapp-link:hover {
      color: var(--accent-color);
    }

    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: #ff6633;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: var(--transition);
      z-index: 100;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-float img {
      width: 35px;
      height: 35px;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .package-card {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
      }
    }

    @media (max-width: 768px) {
      .package-card {
        flex: 1 1 100%;
        max-width: 100%;
      }

      .hotel-grid {
        grid-template-columns: 1fr;
      }
      
      .steps-grid {
        grid-template-columns: 1fr;
      }
      
      .badge-content {
        flex-direction: column;
        text-align: center;
      }
      
      .modal-content {
        width: 95%;
        margin: 1rem auto;
        padding: 1.5rem;
      }
    }

    /* Success and Error Messages */
    .success-message,
    .error-message {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 2rem;
      border-radius: 10px;
      text-align: center;
      z-index: 1100;
      animation: fadeIn 0.3s ease;
    }

    .success-message {
      background: #ff6633;
      color: white;
    }

    .error-message {
      background: rgba(220, 53, 69, 0.9);
      color: white;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translate(-50%, -60%);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%);
      }
    }

    /* Loading Animation */
    .loading {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--dark-bg);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
    }

    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 3px solid var(--text-gray);
      border-top-color: #ff6633;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar-thumb {
      background: #ff6633;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #ff6633;
    }

    .form-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
      margin-top: 1rem;
    }

    .form-actions .btn {
      flex: 1;
      margin: 0;
      min-width: fit-content;
    }

    @media (max-width: 600px) {
      .hero-title,
      .section-title,
      .package-title,
      .venue-title,
      .booking-info-title {
        font-size: 1.5rem !important;
        line-height: 1.2;
      }
      .hero-headline {
        font-size: 1.1rem !important;
        line-height: 1.3;
      }
      .package-price {
        font-size: 1.2rem !important;
      }
      .booking-info-header img {
        width: 70px !important;
        max-width: 70px !important;
      }
    }

    /* Thank You Modal Styles */
    .thank-you-content {
      text-align: center;
      padding: 2rem 0;
    }

    .thank-you-icon {
      width: 80px;
      height: 80px;
      background-color: #4CAF50;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: white;
      margin: 0 auto 1.5rem;
      font-weight: bold;
    }

    .thank-you-content h2 {
      color: var(--accent-primary);
      margin-bottom: 0.5rem;
      font-size: 2.5rem;
    }

    .thank-you-content h3 {
      color: var(--text-primary);
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
      font-weight: 600;
    }

    .thank-you-content p {
      color: var(--text-secondary);
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .thank-you-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
    }

    .thank-you-actions .btn {
      min-width: 150px;
    }

    @media (max-width: 768px) {
      .thank-you-actions {
        flex-direction: column;
        align-items: center;
      }
      
      .thank-you-actions .btn {
        width: 100%;
        max-width: 250px;
      }
    }

    .transfer-only {
      padding-bottom: 90px;
    }

    .transfer-only span {
      font-size: 20px;
      display: block;
      margin-top: 10px;
    }

    .transfer-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      align-items: stretch;
      margin-top: 2rem;
    }

    .transfer-card {
      background: #181818;
      border-radius: 12px;
      box-shadow: 0 2px 24px 0 rgba(0,0,0,0.25);
      padding: 40px 30px;
      min-width: 220px;
      max-width: 260px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .transfer-card h3 {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: var(--accent-primary);
    }

    .transfer-card div {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
      color: #fff;
    }

    @media (max-width: 700px) {
      .transfer-cards {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
      }
      .transfer-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        margin: 0 auto;
      }
    }

    /* Additional Services Section */
    .additional-services {
      padding: 80px 0;
      background: var(--dark);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .service-item {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
    }

    .service-item:hover {
      border-color: rgba(255, 102, 51, 0.5);
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(255, 102, 51, 0.2);
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: var(--gradient);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 1.5rem;
      color: var(--light);
    }

    .service-item h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--light);
      margin: 0;
      line-height: 1.4;
    }

    .services-cta {
      text-align: center;
      margin-top: 3rem;
    }

    .services-cta p {
      font-size: 1.1rem;
      color: var(--gray-light);
      margin-bottom: 1.5rem;
    }

    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
      }
      
      .service-item {
        padding: 1.5rem;
      }
      
      .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
      }
      
      .service-item h3 {
        font-size: 1.1rem;
      }
    }