    * {
      margin: 0; padding: 0; box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
background-image: linear-gradient(to right, #13164e, #18205b, #1c2b67, #213674, #254181, #214187, #1d428d, #184293, #0a3791, #012b8f, #021e8b, #0b0b86);
      line-height: 1.6;
      color: #333;

    }

header {
  background: #002b5c;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.cta {
  background: #f26522;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #d45110;
}

.cta:focus,
.scroll-btn:focus,
.placard-btn:focus {
  outline: 3px solid #f26522;
  outline-offset: 3px;
}

.header-phone {
  order: 2; /* Ensures it comes after h1 on mobile if needed */
}

/* 👇 Responsive - Center phone number only on mobile */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-title {
    width: 100%;
  }

  .header-phone {
    margin-top: 0.5rem;
    display: inline-block;
  }
}

    
    
    
    
        nav {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #f26522;
    }
    nav a:focus
 {
  outline: 3px solid #f26522;
  outline-offset: 3px;
}

    .hero {
      background: url('images/hero-cruise.jpg') center center/cover no-repeat;
      position: relative;
      color: white;
      padding: 120px 20px 80px;
      text-align: center;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }


.popup {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  backdrop-filter: blur(5px);
}

.popup-content {
  background: url('images/booking-background.jpg') center center/cover no-repeat;
  background-color: rgba(255, 255, 255, 0.70);
  background-blend-mode: overlay;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  padding: 30px;
  margin: 5% auto;
  max-width: 600px;
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.popup-content label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
}

.popup-content input,
.popup-content select {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 5px;
  font-size: 1rem;
}

.popup-content button {
  align-self: center;
  background: #f26522;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
}
#durationPopup .popup-content {
  margin-top: 100px !important;
}
#travellerPopup .popup-content {
  margin-top: 100px !important;
}

.popup-content button:hover {
  background: #d45110;
  transform: scale(1.05);
}

.popup .close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #f26522;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.popup .close:hover {
  transform: scale(1.2);
  color: #d45110;
}

.traveller-counter label {
  font-size: 2.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.traveller-counter span {
  font-size: 1.1rem;
  margin: 0 10px;
}

.traveller-counter button {
  background: #f26522;
  color: white;
  padding: 4px 10px;
  font-size: 1rem;
  margin: 0 5px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.traveller-counter button:hover {
  background: #d45110;
}

#travellerDetailsContainer label {
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

#travellerDetailsContainer input {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .popup {
    padding: 70px 20px 20px; /* added top padding to offset header */
    align-items: flex-start;
    overflow-y: auto;
  }

  .popup-content {
    margin: 0 auto;
    padding: 20px;
    gap: 16px;
    max-width: 95%;
    border-radius: 20px;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.85);
  }

  .popup-content label {
    font-size: 0.95rem;
  }

  .popup-content input,
  .popup-content select {
    font-size: 0.95rem;
    padding: 10px 12px;
  }

  .popup-content button {
    font-size: 0.95rem;
    padding: 10px 20px;
    width: 100%;
    border-radius: 20px;
  }

  .popup .close {
    right: 10px;
    top: 10px;
    font-size: 30px;
  }

  .traveller-counter label {
    font-size: 0.95rem;
  }

  .traveller-counter span {
    font-size: 1rem;
  }

  .traveller-counter button {
    padding: 5px 10px;
    font-size: 1rem;
  }

  #travellerDetailsContainer input {
    font-size: 0.95rem;
  }

  /* Optional: Prevent iOS input zoom */
  input, select {
    font-size: 16px;
  }
  
}





    .booking-form-wrapper {
  background: url('images/booking-background.jpg') center center/cover no-repeat; /* Replace with your desired image */
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  background-blend-mode: overlay; /* Optional for blending effect */
  background-color: rgba(255, 255, 255, 0.2); /* Optional to add opacity */
    }

    .booking-form-wrapper select,
    .booking-form-wrapper input[type="date"] {
      padding: 12px 16px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
      flex: 1;
      min-width: 150px;
    }

    .booking-form-wrapper button {
      background: #f26522;
      color: white;
      padding: 12px 25px;
      border: none;
      font-weight: bold;
      font-size: 1rem;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .booking-form-wrapper button:hover {
      background: #d45110;
    }










.form-container {
  padding: 20px;
  max-width: 100%;
  box-sizing: border-box;
}

.booking-form-wrapper select,
.booking-form-wrapper input[type="date"],
.booking-form-wrapper button {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .booking-form-wrapper {
    flex-wrap: nowrap;
  }

  .booking-form-wrapper select,
  .booking-form-wrapper input[type="date"],
  .booking-form-wrapper button {
    flex: 1;
    margin-right: 10px;
  }

  .booking-form-wrapper button:last-child {
    margin-right: 0;
  }
}


.features-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.features-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 1rem 0;
  scrollbar-width: none;
  width: 100%;
}

.features-wrapper::-webkit-scrollbar {
  display: none;
}

.feature-placard {
  background: white;
  padding: 2rem;
  min-width: 100%;
  max-width: 400px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s;
  margin: 0 auto;
}

.feature-placard:hover {
  transform: translateY(-5px);
}

.feature-placard h4 {
  color: #002b5c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-placard p {
  font-size: 1rem;
  color: #333;
}

.scroll-btn {
  background: #0077b6;
  color: white;
  border: none;
  font-size: 1.4em;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

.scroll-btn:hover {
  background: #005f8e;
}

@media (max-width: 768px) {
  .feature-placard {
    padding: 1.5rem;
    font-size: 0.95rem;
  }

  .scroll-btn {
    font-size: 1.2em;
    padding: 6px;
  }
}


.cruise-info-section {
  background-image: linear-gradient(
    to right,
    #13164e,
    #18205b,
    #1c2b67,
    #213674,
    #254181,
    #214187,
    #1d428d,
    #184293,
    #0a3791,
    #012b8f,
    #021e8b,
    #0b0b86
  );
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #e6f0ff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.cruise-info-container h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 1px;
}

.cruise-info-content p {
  font-size: 1.15rem;
  color: #dbe9ff;
  line-height: 1.9;
  margin-bottom: 22px;
}

.cruise-info-content ul {
  margin-left: 1.5rem;
  margin-bottom: 25px;
}

.cruise-info-content li {
  font-size: 1.1rem;
  color: #cce0ff;
  margin-bottom: 12px;
  position: relative;
  padding-left: 1.2rem;
}

.cruise-info-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00b4d8;
  font-size: 1.2rem;
  line-height: 1;
}

.contact-link {
  color: #90e0ef;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #48cae4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cruise-info-container h2 {
    font-size: 2rem;
  }
  .cruise-info-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .cruise-info-section {
    padding: 60px 15px;
  }
  .cruise-info-container h2 {
    font-size: 1.75rem;
  }
  .cruise-info-content p,
  .cruise-info-content li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cruise-info-container h2 {
    font-size: 1.5rem;
  }
  .cruise-info-content p,
  .cruise-info-content li {
    font-size: 0.95rem;
  }
}






footer {
  background-color: #0d1b2a;
  color: #f1f1f1;
  padding: 20px;
  font-size: 14px;
  text-align: center;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}
.footer-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.footer-badges img {
  height: 40px;
  object-fit: contain;
  filter: brightness(95%);
  transition: transform 0.3s ease;
}

.footer-badges img:hover {
  transform: scale(1.1);
}

.disclaimer {
  margin-top: 15px;
  background-color: #1b263b;
  padding: 15px;
  border-radius: 10px;
  color: #dbe2ef;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}


.call-now-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f26522;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.call-now-btn:hover {
  background-color: #d45110;
}



.cruise-placard {
  background-image: linear-gradient(to right, #13164e, #18205b, #1c2b67, #213674, #254181, #214187, #1d428d, #184293, #0a3791, #012b8f, #021e8b, #0b0b86);
  padding: 3rem 1rem;
  text-align: center;
}

.placard-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

.placard-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2rem 0;
  width: 100%;
}

.placard {
  background: #f5f5f5;
  border-radius: 15px;
  display: flex;
  flex: 0 0 100%;
  scroll-snap-align: start;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.placard-left, .placard-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.placard-left {
  gap: 1rem;
  padding: 1rem;
}

.sub-placard {
  background: #fff;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.sub-placard:hover {
  transform: scale(1.02);
}

.sub-placard img {
  width: 50%;
  object-fit: cover;
  height: 100px;
}

.sub-placard a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  text-decoration: none;
  color: #002b5c;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.5rem;
  text-align: center;
}

.placard-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Buttons */
.placard-btn {
  background: #002b5c;
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.placard-btn.left {
  left: 10px;
}

.placard-btn.right {
  right: 10px;
}

.placard-btn:hover {
  background: #f26522;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .placard {
    flex-direction: column;
    flex: 0 0 100%;
  }

  .sub-placard img {
    width: 40%;
    height: 80px;
  }

  .sub-placard a {
    font-size: 0.85rem;
  }

  .placard-btn {
    font-size: 1.2rem;
    padding: 0.3rem 0.6rem;
  }

  .placard-right img {
    max-height: 200px;
  }
}


.amenities-section {
  padding: 40px 20px;
  background-image: linear-gradient(to right, #13164e, #18205b, #1c2b67, #213674, #254181, #214187, #1d428d, #184293, #0a3791, #012b8f, #021e8b, #0b0b86);
  text-align: center;
}

.amenities-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: white;
}

.amenities-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.amenities-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  scrollbar-width: none;
  width: 100%;
  scroll-snap-type: x mandatory;
}

.amenities-wrapper::-webkit-scrollbar {
  display: none;
}

.amenity-placard {
  scroll-snap-align: center;
  position: relative;
  min-width: 90%;
  max-width: 400px;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  flex-shrink: 0;
  background-color: #000;
}

.amenity-placard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-text {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  box-sizing: border-box;
  text-align: left;
}

.scroll-btn {
  background: #0077b6;
  color: white;
  border: none;
  font-size: 1.8em;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

.scroll-btn:hover {
  background: #005f8e;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .scroll-btn {
    font-size: 1.2em;
    padding: 8px;
  }

  .amenity-placard {
    min-width: 100%;
    height: 260px;
  }

  .amenity-text {
    font-size: 0.9rem;
    padding: 10px;
  }
}










@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.cta {
  animation: blink 1.5s infinite;
}
