* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: #000;
      color: #fff;
      overflow-x: hidden;
    }

    .main-app {
      cursor: none;
      min-height: 100vh;
    }

    /* Custom Cursor */
    /* The cursor dot */
    .cursor-dot {
    width: 10px;
    height: 10px;
    background: #fffdfd;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    }

    /* The cursor ring */
    .cursor-ring {
    width: 35px;
    height: 35px;
    border: 2px solid #f7f7f7;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: 0.15s ease-out;
    }


    /* Header */
    .main-header {
      position: fixed;
      top: 0;
      width: 95%;
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-top: 1px solid rgb(34, 34, 34);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      border-left: 1px solid rgb(34, 34, 34);
      border-right: 1px solid rgb(34, 34, 34);
      margin: 20px;
      margin-left: 30px;
      border-radius: 20px;
    }

    .header-content {
      max-width: 1300px;
      margin: 0 auto;
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo-container img {
      width: 40px;
      height: 40px;
    }

    .nav-menu {
      display: flex;
      gap: 2.5rem;
    }

    .nav-link {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }

    .nav-link:hover {
      color: gold;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: rgb(208, 177, 0);
      transition: width 0.3s;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .call-now-btn {
      background: linear-gradient(135deg, #ffffff, #898989);
      color: #000;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      transition: transform 0.3s, box-shadow 0.3s;
      border: none;
      cursor: none;
      text-decoration: none;
    }

    .call-now-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(97, 97, 97, 0.3);
    }

    /* Hero Section */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 50% 50%, rgba(254, 254, 254, 0.1), transparent 70%);
    }

    .hero-content {
      text-align: center;
      z-index: 1;
      max-width: 900px;
      padding: 2rem;
    }

    .hero-title {
      font-size: 5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #ffffff, #bcbcbc, #eeeeee);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: opacity 0.3s, transform 0.3s;
    }

    .hero-subtitle {
      font-size: 1.5rem;
      color: #ccc;
      margin-bottom: 3rem;
      line-height: 1.6;
      transition: opacity 0.3s, transform 0.3s;
    }

    .hero-cta-btn {
      display: inline-block;
      background: linear-gradient(135deg, #ffffff, #6d6d6d);
      color: #000;
      padding: 1.25rem 3rem;
      border-radius: 50px;
      font-size: 1.25rem;
      font-weight: 700;
      text-decoration: none;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .hero-cta-btn:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 5px 10px rgba(255, 255, 255, 0.4);
    }

    /* Sections */
    .features-section,
    .fleet-section,
    .booking-section,
    .contact-section {
      padding: 8rem 2rem;
      background: #000;
    }

    .section-content {
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 3.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 4rem;
      background: linear-gradient(135deg, #ffffff, #c2c2c2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: opacity 0.6s, transform 0.6s;
    }

    /* Features Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
    }

    .feature-card {
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
      padding: 3rem;
      border-radius: 20px;
      border: 1px solid rgba(62, 62, 62, 0.2);
      text-align: center;
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature-icon {
      width: 64px;
      height: 64px;
      color: #d4af37;
      margin-bottom: 1.5rem;
    }

    .card-title {
      font-size: 1.75rem;
      margin-bottom: 1rem;
      color: #fff;
    }

    .card-text {
      color: #aaa;
      line-height: 1.8;
      font-size: 1.1rem;
    }

    /* Fleet Section */
    .fleet-section {
      background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    }

    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 3rem;
    }

    .fleet-card {
      background: rgba(26, 26, 26, 0.6);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(212, 175, 55, 0.2);
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .fleet-image-placeholder {
      height: 250px;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fleet-car-icon {
      width: 120px;
      height: 120px;
      color: #d4af37;
      opacity: 0.3;
    }

    .fleet-details {
      padding: 2rem;
    }

    .fleet-subtitle {
      color: #999;
      margin-bottom: 1.5rem;
    }

    .fleet-amenities-list {
      list-style: none;
      color: #aaa;
      line-height: 2;
    }

    /* Booking Section */
    .booking-section {
      background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    }

    .booking-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .booking-title {
      margin-bottom: 3rem;
    }

    .booking-form-card {
      background: rgba(26, 26, 26, 0.6);
      padding: 3rem;
      border-radius: 20px;
      border: 1px solid rgba(212, 175, 55, 0.2);
      transition: opacity 0.6s, transform 0.6s;
    }

    .booking-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .booking-form-field {
      margin-bottom: 1.5rem;
    }

    .booking-input {
      width: 100%;
      padding: 1rem 1.5rem;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(212, 175, 55, 0.3);
      border-radius: 10px;
      color: #fff;
      font-size: 1rem;
      transition: border-color 0.3s;
    }

    .booking-input:focus {
      outline: none;
      border-color: #d4af37;
    }

    .booking-input::placeholder {
      color: #666;
    }

    .booking-submit-btn {
      width: 100%;
      padding: 1.25rem;
      background: linear-gradient(135deg, #d4af37, #f4e4c1);
      color: #000;
      border: none;
      border-radius: 10px;
      font-size: 1.25rem;
      font-weight: 700;
      cursor: none;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .booking-submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    }

    /* Contact Section */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 3rem;
    }

    .contact-card {
      background: rgba(26, 26, 26, 0.4);
      padding: 3rem;
      border-radius: 20px;
      border: 1px solid rgba(212, 175, 55, 0.2);
      text-align: center;
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact-icon {
      width: 56px;
      height: 56px;
      color: #d4af37;
      margin-bottom: 1.5rem;
    }

    .text-center {
      text-align: center;
    }

    /* Footer */
    .main-footer {
      background: #000;
      border-top: 1px solid rgba(212, 175, 55, 0.2);
      padding: 3rem 2rem;
    }

    .footer-text {
      color: #666;
      line-height: 2;
    }

    .footer-text a {
      color: #d4af37;
      text-decoration: none;
    }

    .footer-text a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }

      .main-header {
        margin-left: 10px;
        margin-right: 10px;
      }

      .hero-title {
        font-size: 3rem;
      }

      .hero-subtitle {
        font-size: 1.25rem;
      }

      .section-title {
        font-size: 2.5rem;
      }

      .booking-form-row {
        grid-template-columns: 1fr;
      }
    }
    /* MOBILE MENU BUTTON */
.mobile-menu-btn {
  width: 35px;
  height: 28px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2000;
}

.mobile-menu-btn span {
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

/* NAV OPEN STATE */
.nav-open .mobile-menu-btn span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.nav-open .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}
.nav-open .mobile-menu-btn span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    top: 95px;
    right: 20px;
    width: 85%;
    flex-direction: column;
    background: rgba(20,20,20,0.85);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    gap: 1.8rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.3s ease-in-out;
  }

  .nav-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .call-now-btn {
    display: none;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .section-title {
    font-size: 2.2rem;
  }

      
  .features-grid,
  .fleet-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .fleet-image-placeholder {
    height: 180px;
  }

  .booking-form-row {
    grid-template-columns: 1fr;
  }
}
