/*========================================
BASIC STYLES
=========================================*/

:root {
  --primary-dark: #0a192f;
  --accent-teal: #00d6fe;
  --accent-green: #79da03;
  --text-light: #e6f1ff;
  --text-dark: #0a192f;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter-Regular", Helvetica;
}

body {
  background-color: #ffffff;
  color: #333;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

   /* =================== NEW NAVBAR STYLES =================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 1.5rem 2rem;
            z-index: 1000;
            transition: all 0.4s ease;
            height: 5rem;
            background: #0a0b1f;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1800px;
        }
        
        .logo-container a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-container img {
            height: 120px;
            transition: all 0.3s ease;
        }
        
        .nav-links {
            display: flex;
            gap: 1.2rem;
            align-items: center;
        }
        
        .nav-item {
            position: relative;
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-light);
            text-decoration: none;
            padding: 0.6rem 1.2rem;
            border-radius: 2rem;
            transition: all 0.3s ease;
        }
        
        .nav-item.active {
            background-color: var(--accent-teal);
            color: var(--text-dark);
            font-weight: 600;
        }
        
        .login-btn {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
            border-radius: 2rem;
            padding: 0.6rem 1.8rem;
            font-size: 1.05rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 1rem;
        }
        
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--text-light);
            cursor: pointer;
            margin-left: 1.5rem;
            transition: all 0.3s ease;
        }
        .close-menu {
    display: none;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1000001;
    transition: color 0.3s;
}
.close-menu:hover {
    color: var(--accent-teal);
}

@media (max-width: 992px) {
    .close-menu {
        display: block;
    }
    .navbar.scrolled .close-menu {
        color: var(--primary-dark);
    }
}

        
        /* Scrolled state */
        .navbar.scrolled {
            background-color: white;
            padding: 0.8rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar.scrolled .nav-item {
            color: var(--primary-dark);
        }
        
        .navbar.scrolled .nav-item:hover:not(.active) {
            color: #00a2c7;
        }
        
        .navbar.scrolled .nav-item.active {
            background-color: var(--accent-teal);
            color: var(--text-dark);
        }
        
        .navbar.scrolled .login-btn {
            color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        
        .navbar.scrolled .login-btn:hover {
            background-color: var(--accent-teal);
            border-color: var(--accent-teal);
            color: var(--text-dark);
        }
        
        .navbar.scrolled .hamburger {
            color: var(--primary-dark);
        }
        
        /* Hover effects */
        .nav-item:hover:not(.active) {
            color: var(--accent-teal);
            transform: translateY(-2px);
        }
        
        .nav-item.active:hover {
            background-color: #00bde5;
            box-shadow: 0 0 15px rgba(0, 214, 254, 0.5);
        }
        
        .login-btn:hover {
            background-color: rgba(0, 214, 254, 0.1);
        }
        
        .hamburger:hover {
            color: var(--accent-teal);
            transform: scale(1.1);
        }
        
        /* Mobile menu */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--primary-dark);
                flex-direction: column;
                align-items: flex-start;
                padding: 7rem 2rem 2rem;
                transition: right 0.4s ease;
                z-index: 1;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .navbar.scrolled .nav-links {
                background: white;
            }
            
            .navbar.scrolled .nav-links .nav-item {
                color: var(--primary-dark);
            }
            
            .hamburger {
                display: block;
                z-index: 1000000;
            }
        }
        
        @media (max-width: 768px) {
            .logo-container img {
                height: 150px !important;
            }
        }
        
        @media (max-width: 480px) {
            .logo-container img {
                height: 80px;
            }
            
            .login-btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.95rem;
                margin-left: 0.5rem;
            }
        }



.hero{
    background-color: var(--primary-dark);
    height: 70%;
}
    .hero-card {
      width: 80%;
      background:#ffffff;
      border-radius: 48px 48px 0 0;
      padding: 20px;
      
      gap: 36px;
  
      margin-left: 10rem;
    }
    .hero-left {
      margin-left: 6rem !important;
      margin-top: 4rem;
    }
    .hero-title {
      color: var(--primary-dark);
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .hero-sub {
      font-size: 1.5rem;
      font-weight: 600;
      margin-top: 2rem;
      color: var(--accent-teal);
    }
    .hero-features {
      list-style: none;
      margin: 22px 0 0 0;
      padding: 0;
    }
    .hero-features li {
      margin: 0 0 9px 0;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      font-weight:700;
    }
    .hero-features .tick {
      color: var(--accent-green);
      font-size: 1.3em;
      margin-right: 8px;
    }
    .hero-illustration{
        margin-left: 38rem;
        margin-top: -20rem !important;
              

    }
    .hero-illustration img{
        height: 22rem;

    }
    .seats-box {
      background: #E7F8FE;
      border: 2px dotted #ed0505;
      border-radius: 18px;
      padding: 20px 30px 20px 22px;
      align-items: center;
      gap: 22px;
      width: 70%;
      margin-left: 10rem;
     
    }
    .seats-alert {
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .seats-alert .icon {
      font-size: 2rem;
      color: #ff4d4d;
      margin-right: 6px;
    }
    .seats-note {
      color: var(--accent-teal);
      font-size: 1.07rem;
      font-weight: 500;
      margin-left:1rem;
      margin-top: 2px;
    }
    .seats-btn {
      margin-left: auto;
      background:var(--accent-teal);
      color: #073931;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 62px;
      padding: 9px 22px;
      cursor: pointer;
      transition: background 0.15s;
      margin-left: 6rem;
      border: none !important;
    }
    .seats-btn:hover {
      background: #44ecff;
    }
    .hero-illustration {
      width: 220px;
      margin-top: -14px;
    }
    /* HIGHLIGHTS */
    .main-wrapper{
        background-color: #ffffff;
        margin-bottom: 4rem;
    }
    .main-content-sections {
      display: flex;
      gap:6rem;
      margin-top: 44px;
      margin-bottom: 12px;

    }
    .section-left {
      flex: 1.5;
      margin-left: 2.8rem;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin: 0 0 9px 0;
      color: var(--text-dark);
    }

    .section-left .points {
      font-size: 1.15rem;
      line-height: 1.5rem;
      margin-bottom: 24px;
      color: #3b484b;
      margin-top: 1rem;
    }
    .section-left .points:last-child {
      margin-bottom: 0;
    }
    /* FORM */
    .form-box {
      flex: 1.15;
      background: #9af5ff4f;
      border-radius: 18px;
      padding: 32px 24px 22px 24px;
      min-width: 320px;
      margin-top: -10px;
      margin-right: 2rem;
    }
    .form-title {
      margin-top: 0;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary-dark);
      text-align: center;
    }
    .form-desc {
      font-size: 1rem;
      margin-top: 1.15rem;
      color: var(--primary-dark);
      text-align: center;
      margin-bottom: 22px;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    form input[type="text"], form input[type="email"], form input[type="tel"] {
      padding: 14px 12px;
      font-size: 1.1rem;
      border-radius: 12px;
      border: 1px solid #d6d6d6;
      background: #fff;
      outline: none;
      transition: border 0.17s;
    }
    form input:focus {
      border: 1.4px solid #0a192f;
    }
    .radio-row {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-top: 2px;
      margin-bottom: 5px;
    }
    .radio-row label {
      font-size: 1.04rem;
      color: #333;
      margin-left: 4px;
    }
    .radio-row input[type="radio"] {
      accent-color: #71F400;
      margin-right: 4px;
    }
    .submit-btn {
      margin-top: 8px;
      background: var(--accent-teal);
      color:var(--text-dark);
      font-size: 1.08rem;
      font-weight: 600;
      padding: 15px 0;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: background 0.17s;
    }
    .submit-btn:hover {
      background:var(--text-dark);
      color: var(--accent-teal);
    }
    /* FOOTER */
   /* Footer */
footer {
  background: #1a1b39;
  padding: 70px 40px 30px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  position: relative;
  z-index: 2;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  color: white;
  padding: 0 15px;
}

.footer-col h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-teal);
  border-radius: 2px;
}

.footer-col p {
  color: #dddddd;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-col a {
  color: #dddddd;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 25px;
}

.footer-col a i {
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent-teal);
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.footer-col a:hover {
  color: var(--accent-teal);
  transform: translateX(5px);
}

.footer-col a:hover i {
  transform: translateX(3px);
}

.contact-info div {
  margin-bottom: 15px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  color: #dddddd;
  padding-left: 25px;
}

.contact-info div i {
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  margin-top: 5px;
}

.social-container {
  text-align: center;
  margin: 40px auto 50px;
  position: relative;
  z-index: 2;
}

.contact-info i {
  margin-left: 63rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon i {
  color: white;
  font-size: 1.3rem;
}

.social-icon:hover {
  background: var(--accent-teal);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 214, 254, 0.4);
}

.copyright {
  color: #aaaaaa;
  font-size: 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}




@media (max-width: 1200px) {
  .hero-card {
    width: 90%;
    margin-left: 5%;
  }
  
  .hero-illustration {
    margin-left: 28rem;
  }
  
  .main-content-sections {
    gap: 4rem;
  }
}

@media (max-width: 992px) {
  .hero-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .hero-left {
    margin-left: 0 !important;
  }
  
  .hero-illustration {
    margin: 2rem auto 0;
    order: -1;
  }
  
  .seats-box {
    margin: 2rem auto;
    width: 90%;
  }
  
  .main-content-sections {
    flex-direction: column;
    gap: 3rem;
  }
  
  .section-left {
    margin-left: 0;
    padding: 0 2rem;
  }
  
  .form-box {
    margin: 0 auto;
    width: 90%;
  }
  
  .footer-columns {
    flex-direction: column;
  }
}

@media (max-width: 768px) {


  .hero-illustration{
    display: none;
  }
  .hero-left{
    align-items: left !important;
    justify-content: left !important;
  }
 
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-sub {
    font-size: 1.3rem;
  }
  
  .hero-features li {
    justify-content: center;
  }
  
  .seats-alert {
    font-size: 1.2rem;
  }
  
  .seats-btn {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .contact-info div {
    padding-left: 0;
  }
  
  .contact-info i {
    margin-left: 0;
    margin-right: 10px;
  }
}

@media (max-width: 576px) {

  
  .hero-card {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-sub {
    font-size: 1.1rem;
  }
  
  .hero-illustration img {
    height: 18rem;
  }
  
  .seats-box {
    padding: 1rem;
  }
  
  .seats-alert {
    font-size: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-left .points {
    font-size: 1rem;
  }
  
  .form-box {
    padding: 1.5rem;
  }
  
  .form-title {
    font-size: 1.3rem;
  }
  
  .social-icons {
    flex-wrap: wrap;
  }
}

/*----------------------------
SCROLL INDICATOR 
-----------------------------*/
.scroll-indicator {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d6fe, #0a8cff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 100;
}

.scroll-indicator:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
