

  .heroSection {
    position: relative;
    height: 98vh;
    padding-top: 35px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    margin-top: 4px;
    z-index: 1;
  }

  .heroSectionImage {
    top: 96px;
    left: 0;
    width: 100%;
    height: 85%;
    z-index: -1;
    overflow: hidden;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-image: var(--hero-img);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

  }


  .heroSectionImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: none;
  }

  .rightHero {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.479);
    padding: 22px 28px;
    padding-bottom: 12px;
    border-radius: 2px;
    width: 400px;
    min-height: auto;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
    margin: auto;
  }


  .formBox {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .formGroup {
    position: relative;

  }

  label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #888;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s ease all;
    background: rgba(236, 234, 234, 0.7);
    padding: 0 4px;
    border-radius: 4px;
  }

  input:focus+label,
  input:not(:placeholder-shown)+label,
  select:focus+label,
  select:valid+label {
    top: -8px;
    left: 10px;
    font-size: 12px;
    color: #f37c06;
  }

  input,
  select {
    width: 100%;
    padding: 14px 12px 8px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    background: #ffffff;
    transition: 0.3s ease;
    color: #333;
  }

  input:focus,
  select:focus {
    outline: none;
    border-color: #f37c06;
    box-shadow: 0 0 0 3px rgba(243, 124, 6, 0.2);
  }

  /* === Glowing animated border === */
  .rightHero .cornerLine {
    position: absolute;
    background: linear-gradient(90deg, orange, red);
    box-shadow: 0 0 8px rgba(255, 80, 0, 0.7);
    z-index: 3;
    animation: moveLine 4s linear infinite;
    pointer-events: none;
    /* Prevents any weird hover/click issues */
  }

  .cornerTop {
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    animation-delay: 0s;
  }

  .cornerRight {
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    animation-delay: -1s;
  }

  .cornerBottom {
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    animation-delay: -2s;
  }

  .cornerLeft {
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    animation-delay: -3s;
  }

  .hero-text h1 {
    color: white;
    text-align: left;
  }

  @keyframes moveLine {
    0% {
      opacity: 0;
      transform: scaleX(0);
    }

    50% {
      opacity: 1;
      transform: scaleX(1);
    }

    100% {
      opacity: 0;
      transform: scaleX(0);
    }
  }

  @media (max-width: 768px) {
    .heroSection {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 130px 20px 30px;
      height: auto;
    }

    .heroSectionImage {
      height: 70vh;
      object-fit: contain;
    }

    .heroSectionImage img {
      top: 110px;
      height: 300px;
    }

    .bookingContainer {
      justify-content: center;
      padding-left: 0;
      width: 100vh;
      margin-top: 280px;
      ;
    }
  }

  @media (max-width: 500px) {
    .rightHero {
      width: 100%;
      max-width: 95%;
      margin: 200px;
    }

    .rightHero {
      padding: 20px;
    }
  }

  @media (max-width: 768px) {
    .heroSection {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 120px 20px 30px;
      height: auto;
    }

    .rightHero {
      width: 100%;
      max-width: 95%;
      padding: 20px;
    }
  }

  .bookingContainer {
    display: flex;
    justify-content: flex-start;
    padding-left: 60px;
  }

  @media (max-width: 1024px) {
    .heroSection {
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 120px 20px 40px;
      height: auto;
    }


    .rightHero {
      width: 100%;
      max-width: 380px;
      margin: auto;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .heroSection {
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 90px 20px 40px;
      /* reduced so it doesn’t push content below header */
      height: auto;
    }

    .heroSectionImage {
      position: relative;
      top: 0;
      height: 55vh;
      /* not too small like mobile, not too tall like desktop */
    }

    .heroSectionImage img {
      height: 100%;
      object-fit: cover;
    }


    .rightHero {
      width: 90%;
      max-width: 600px;
      /* wider form for tablets */
      margin: 20px auto;
      padding: 28px;
      min-height: auto;
    }

    .bookingContainer {
      justify-content: center;
      padding-left: 0;
      margin-top: 30px;
      /* small gap only */
      width: 100%;
      /* fixed from 100vh */
    }
  }

  @media (max-width: 768px) {
    .heroSection {
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 0;
      height: auto;
    }

    .heroSectionImage {
      position: relative;
      /* make image normal flow */
      height: 60vh;
      z-index: 0;
    }

    .bookingContainer {
      position: relative;
      width: 100%;
      padding: 0;
      margin: 0;
      justify-content: center;
    }

    .rightHero {
      position: relative;
      width: 100%;
      max-width: 100%;
      border-radius: 0;
      margin-top: 0;
      box-shadow: none;
      border: none;
      padding: 25px 20px;
      margin-bottom: 20px;
    }

    .hero-text {
      margin-top: 20px;
      padding: 15px;
    }
  }

  .hero-text {
    padding: 10px 30px 30px 30px;
    margin-top: -60px;
    /* default (desktop) */
  }

  .hero-text h3 {
    font-weight: bold;
    font-size: 22px;
    margin: 0;
  }

  .hero-text p {
    margin-top: 0px;
    font-size: 16px;
    line-height: 1.5;
  }

  /* Mobile adjustment */
  @media (max-width: 768px) {
    .hero-text {
      margin-top: -20px;
      /* smaller shift upward on mobile */
      padding: 15px;
      /* tighter padding */
    }

    .hero-text h3 {
      font-size: 18px;
      /* scale down heading */
    }

    .hero-text p {
      font-size: 14px;
    }
  }

  .btn-primary {

    background: linear-gradient(to right, red, orange);
    color: #fff;
    padding: 14px;
    border: none;
    width: 100%;
    border-radius: 12px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
  }

  .btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
  }

  .btn-primary:hover::after {
    left: 100%;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(243, 124, 6, 0.3);
  }

  /* MAIN HERO SECTION */
  .heroSection {
    position: relative;
    width: 100%;

    overflow: hidden;
  }

  /* BG VIDEO / IMAGE */
  .heroBg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .heroBgImage {
    background: var(--hero-img) no-repeat center center/cover;
  }

  /* Dark Overlay */
  .heroOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
  }

  /* FLEX CONTENT */
  .heroContentContainer {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 40px 80px;
    padding-top: 120px;
  }

  /* LEFT TEXT */
  .heroLeftText {
    width: 50%;
    color: #fff;
  }

  .heroLeftText h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .heroLeftText p {
    font-size: 18px;
    line-height: 1.6;
    color: #eee;
  }

  /* RIGHT FORM */
  .heroRightForm {
    width: 40%;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .heroContentContainer {
      flex-direction: column;
      justify-content: flex-start;
      text-align: center;
      padding: 30px;
      gap: 20px;
      padding-top: 120px;
    }

    .heroLeftText,
    .heroRightForm {
      width: 100%;
    }

    .heroLeftText h1 {
      font-size: 32px;
    }
  }

  @media (max-width: 576px) {
    .heroLeftText h1 {
      font-size: 26px;
    }

    .heroLeftText p {
      font-size: 16px;
    }
  }

  .suggestions {
    position: absolute;
    background: white;
    max-height: 150px;
    overflow-y: auto;
    width: 100%;
    z-index: 1000;
  }

  .suggestion-item {
    padding: 8px;
    cursor: pointer;
  }

  .suggestion-item:hover {
    background-color: #f0f0f0;
  }

  .formGroup input[type="datetime-local"] {
    width: 100%;
    font-size: 16px;
    color: #2d3748;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
  }


  .formGroup input[type="datetime-local"]:hover {
    border-color: #cbd5e0;
  }

  .formGroup label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 8px;
    color: #718096;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
  }



  /* Custom styling for the calendar icon */
  .formGroup input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0.5);
    transition: all 0.3s ease;
  }

  .formGroup input[type="datetime-local"]:hover::-webkit-calendar-picker-indicator {
    filter: invert(0.3);
  }

  .formGroup input[type="datetime-local"]:focus::-webkit-calendar-picker-indicator {
    filter: invert(0.4) sepia(1) saturate(5) hue-rotate(220deg);
  }



  /* Add icon container */
  .formGroup::before {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
    opacity: 0.5;
    transition: all 0.3s ease;
  }

  .formGroup input[type="datetime-local"]:focus::before {
    opacity: 0.8;
  }

  /* Helper text */
  .helper-text {
    margin-top: 8px;
    font-size: 13px;
    color: #ffffff;
    opacity: 0.9;
    text-align: center;
  }

  /* Card wrapper for demo */
  .card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
  }

  .card h2 {
    margin-bottom: 30px;
    color: #2d3748;
    text-align: center;
    font-size: 24px;
  }

  @media (max-width: 480px) {
    .card {
      padding: 30px 20px;
    }

    .formGroup input[type="datetime-local"] {
      font-size: 14px;
    }
  }
