* {
  padding: 0;
  margin: 0;
   box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}

/* Home page */

.banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 768px) {

  .banner {
    height: 450px; /* reduced height for mobile */
  }
  /* Adjust banner video height */
  .banner video {
    height: 450px;
    object-fit: cover; /* ensures the video covers the area nicely */
  }
  .content .title {
    padding-top: 160px; /* space for navbar */
    text-align: center;
  }
  
  
  .brand {
    display: flex;
    align-items:flex-start;
    justify-content: flex-start; /* logo and brand on left */
    gap: 10px;
   /* small spacing between logo and text */
  }

  /* Adjust logo size */
  .brand img {
    width: 30px; /* or smaller if needed */
    height: 45px;

  }

  /* Adjust brand title font size */
  .brand .brand-logo {
    font-size: 24px; /* smaller for mobile */
  }

  /* Navbar link font size */
  .navbar li a {
    font-size: 14px; /* smaller for mobile */
  }
}

@media (max-width: 768px) {

  
  section.locations .locations-heading h4 {
    font-size: 25px !important;
    line-height: 1.3;
    text-align: center;
    color: #4e4c4c;
  }

  section.locations .locations-heading hr {
    width: 80px !important;
    margin: 10px auto;
  }

  section,
  .location-section,
  .location-detail {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}



.content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 110vh;
  background-image: linear-gradient(rgba(1, 0, 5, 0.3), rgba(4, 1, 17, 0.3));
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  z-index: 1000;
}

.contact-btn {
  width: 130px;
  display: inline-block;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #007bff;
  background: transparent;
  border: 2px solid #007bff;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-btn:hover {
  
  color: #fff;
  box-shadow: 0 6px 15px rgba(0,123,255,0.3);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}


nav .logo {
  display: flex;
  width: 60px;
  margin: 0;
  margin-left: 5%;
}

.navbar li {
  list-style: none;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 48px;
  height: auto;
  margin: 0;           /* IMPORTANT */
}

.brand-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.08);
  
  
}

.brand-logo .marine {
  color: #0b6fa4;   /* ocean blue */
}

.brand-logo .glow {
  color: #f28c6a;   /* luxury coral */
}


.navbar a {
  color: #2c2a2a;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 6px;
  transition: color 0.3s ease;
  border-radius: 4px;
}



.navbar a:hover {
  color: #0b6fa4;
}

.navbar a:hover::after {
  width: 100%;
}

.icons {
  background-color: #101010;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" NaN;
}


.title {
  text-decoration: none;
  font-size: 4vh;
  color: rgb(255, 255, 255);
  padding: 14px 17px;
  margin-top: 25vh;
  text-align: center;
  vertical-align: center;
}

.title h1 {
  font-size: 10vh;
  text-shadow: 2px black;
  transition: ease 0.3s;
}
.title h5  {
  font-size: 20px;
  color: white;
  text-shadow: 1px black;
  transition: ease 0.3s;
  margin-top: 30px; 
  font-weight: normal;
  font-family: Tahoma, Verdana, sans-serif;
}

.title h1:hover {
  color: transparent;
  -webkit-text-stroke: 1px white;
}

.btn-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: bold;
}

.button {
  display: inline-block;
  position: static;
  font-size: 14px;
  padding: 14px 40px;
  color:white;
  background: linear-gradient(135deg, #d4af37, #f9e076);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 50px;
}

.button:hover {
  color: #1a1a1a;
  background: linear-gradient(135deg, #f9e076, #d4af37);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}



/* Packages */

.why-choose-us {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
  background: #fff;
}

.why-choose-us h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-top: 20px;
}

.title-line {
  display: block;
  width: 50px;
  height: 3px;
  background: #f5a623;
  margin: 0 auto 50px;
}

/* GRID */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.choose-card {
  background: #f5f3f3;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.choose-card:last-child {
   grid-column: 1 / -1;   /* span full row */
  max-width: 520px;     /* keeps it visually balanced */
  margin: 0 auto; 
}

.choose-card:hover {
  transform: translateY(-5px);
}

/* ICON */
.choose-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

/* TEXT */
.choose-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #414040;
}

@media (max-width: 768px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .choose-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
}


/* Button */

.btn {
  display: inline-block;
  padding: 10px;
  width: 140px;
  font-weight: 500px;
  color: rgb(0, 0, 0);
  background-color: whitesmoke;
  margin-top: 30px;
  border-radius: 10px;
  transition: ease 0.3s;
}
.btn a{
  font-size: medium;
  font-weight: 600;
color: black;
}
.btn:hover{
  box-shadow: 5px 5px 10px #3b3737;
}

/* Locations */



.locations {
    text-align: center;
    padding:  50px;
    background-color: #f9f9f9;
    scroll-margin-top: 70px;
}


.locations-heading h4 {
    font-size: 35px;
     margin: 0;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-style:normal;
}

.locations-heading hr {
    width: 60px;
    height: 3px;
    background-color: #b08b6f;
    border: none;
    margin: 10px auto 40px;
}

.location-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.col-content {
    width: 400px;
    height: auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.col-content img {
  width: 100%;
  height: 260px;          /* FIXED HEIGHT */
  object-fit: cover;         /* KEY LINE */
  display: block;
}

.col-content:hover {
    transform: translateY(-6px);
}

/* FULL IMAGE */
.yacht-img {
    width: 100%;
    height: auto;        /* FULL IMAGE */
    display: block;
    transition: transform 0.6s ease;
}

.col-content:hover .yacht-img {
    transform: scale(1.05);
}

/* DETAILS */
.card-details {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-details h5 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #222;
}

.card-details .price {
    margin: 0 0 6px;
    font-size: 15px;
    color: #464545;
    
}

.card-details .location {
    margin: 0 0 18px;
    font-size: 14px;
    color: #464545;
}

/* BUTTON */
.view-btn {
    align-self: center;
    padding: 10px 26px;
    font-size: 16px;
    color:#05274d;
    background-color: transparent;
    border: 1px solid #040f1b; 
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.view-btn:hover {
    background-color: #05274d;
    color: white;
}



/* Footer */

.lux-footer {
  background: linear-gradient(135deg, #071a33, #020c1b);
  padding: 80px 20px 40px;
  text-align: center;
  color: #cfd6e4;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 42px;
}

.footer-logo h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
}

.footer-logo h2 span {
  color: #f28c6a;
}

/* TAGLINE */
.footer-tagline {
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #b7c2d9;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #f28c6a;
  transform: translateY(-4px);
}

/* COPYRIGHT */
.footer-copy {
  font-size: 13px;
  color: #9aa6c0;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 999;
}


/* About Us */

.aboutbody {
  background-color: whitesmoke}


.about {
  width: 100%;
  padding: 110px 0 140px;
  height: auto;
  position: relative;
  background-color: white;
  overflow: hidden;
}



.abt-text {
  width: 900px;
  max-width: 100%;
  margin: 0 auto; 
  text-align: center;
}

.abt-text h1 {
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
  color: #191919;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.abt-text h1 span {
  letter-spacing: 1px;
}

.abt-text p {
  padding: 20px;
  margin: 0 auto;      
  text-align: center;
  color: black;
  font-size: 15px;
  margin-bottom: 45px;
  line-height: 30px;
  letter-spacing: 1px;
}
.main {
  width: 1130px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connectbtn {
  display: inline-block;
  background-color: #ffbc03;
  font-size: 18px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  padding: 13px 30px;
  border-radius: 5px;
  transition: ease 0.4s;
  border: 2px solid transparent;
  letter-spacing: 1px;
  text-align: center;
}

.connectbtn:hover {
  background-color: transparent;
  font-size: 18px;
  color: #191919;
  font-weight: bold;
  border: 2px solid#ffbc03;
}

.connect-section {
  margin-top: 26px;
}

.social-icons a {
  height: 40px;
  width: 40px;
  margin: 4px;
  font-size: 30px;
  color: #101010;
  background-color: white;
  border-radius: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: ease 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Contact Us */

/* Main section background */
.contact-layout {
  background: white;
  padding: 80px 20px;
}

/* Grid container */
.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

/* Left card */
.contact-card {
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.contact-card small {
  color: #007bff;
  font-weight: 500;
}

.contact-card h2 {
  margin: 10px 0 30px;
  font-size: 24px;
}

/* Form labels */
.contact-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

/* Inputs */
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

/* Row for country + phone */
.row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 15px;
}

/* Checkbox group */
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
}


/* Submit button */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #0056b3;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #003f8a;
}

/* Right info */
.contact-info h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-info p {
  color: #555;
  margin-bottom: 30px;
}

/* Info boxes */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-box i {
  font-size: 26px;
  color: #0056b3;
}

.info-box h4 {
  margin-bottom: 4px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 25px;
  }
}

 /* wHATSAPP FLOAT BUTTON */
 .whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

/* cancellation policy */
.cancellation-policy {
  width: 100%;
  padding: 70px 20px;
  background: #fff;
  
}

.policy-container {
  max-width: 1100px;
  margin: auto;
}

.policy-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
}
.policy-container ul {
  list-style: none;
  padding-left: 0;
}

.policy-container li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #0a0a0a;
  line-height: 1.7;
}

/* Bullet dot */
.policy-container li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #0b2545; /* dark blue */
  line-height: 1;
}

/* Mobile & Tablet */
@media (max-width: 768px) {

  /* Contact layout stack */
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-card,
  .contact-info {
    width: 100%;
  }

  /* Form spacing */
  .contact-card form input,
  .contact-card form textarea {
    font-size: 14px;
    padding: 12px;
  }

  /* Two-column row → single column */
  .row {
    flex-direction: column;
    gap: 15px;
  }

  /* Budget bullets spacing */
  .checkbox-group label {
    font-size: 14px;
  }

  /* Cancellation Policy */
  .cancellation-policy {
    padding: 50px 15px;
  }

  .policy-container h2 {
    font-size: 24px;
  }

  .policy-container li {
    font-size: 14px;
    line-height: 1.6;
    padding-left: 20px;
  }

  .policy-container li::before {
    font-size: 18px;
    top: 2px;
  }
}



/* Desktop: hide hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: rgb(27, 25, 25); /* adjust to navbar color */
}

/* Mobile: show hamburger and hide navbar by default */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar {
    display: none;   /* hidden by default */
    flex-direction: column;
    gap: 10px; /* optional overlay */
    position: absolute;
    top: 60px;        /* adjust based on navbar height */
    right: 10px;
    width: 200px;     /* menu width */
    padding: 10px;
    border-radius: 8px;
    z-index: 1000;
  }

  .navbar li {
    text-align: center;
  }

  .navbar a {
    font-size: 14px;
    padding: 8px;
    display: block;
  }

  .navbar.active {
    display: flex;  /* show menu when active */
  }
}

/* MOBILE ADJUSTMENTS */

@media (max-width: 480px) {
    .banner .title h1 {
        font-size: 22px;
    }

    .banner .title h5 {
        font-size: 12px;
    }

    .banner .button {
        font-size: 12px;
        padding: 8px 16px;
    }
}


/* ---------------- MOBILE FULL MENU ---------------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  transform: translateY(-100%);
  transition: 0.4s ease;
}

.mobile-menu.active {
  transform: translateY(0);
}

/* HEADER */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #ddd;
}

.menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
}

.menu-brand img {
  width: 32px;
}

.menu-close {
  font-size: 32px;
  cursor: pointer;
}

/* LINKS */
.mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-links li {
  border-bottom: 1px solid #e5e5e5;
}

.mobile-links a {
  display: block;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #191919;
  text-decoration: none;
}

/* DESKTOP SAFE */
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

/* HIDE NORMAL NAVBAR ON MOBILE */
@media (max-width: 768px) {
  .navbar {
    display: none;
  }
}
/* =============================
   REVIEWS SECTION – FINAL FIX
============================= */

.reviews-section {
  width: 100%;
  padding: 70px 20px;
  background: #fff;
}

.reviews-container {
  max-width: 1100px;
  margin: auto;
}

.reviews-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.reviews-section p {
  margin-bottom: 40px;
  color: #555;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Desktop */
@media (min-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.reviewer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.rating {
  color: #ffb400;
}

.pagination {
  margin-top: 30px;
  text-align: center;
}

.pagination a {
  margin: 0 6px;
  padding: 8px 14px;
  background: #0d1b2a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

.pagination a.active,
.pagination a:hover {
  background: #ffb400;
  color: #0d1b2a;
}
.review-top{
    display:flex;
    gap:12px;
    align-items:center;
}

.avatar{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#0d6efd;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:600;
    font-size:18px;
}

.review-user strong{
    font-size:15px;
}

.review-meta{
    font-size:12px;
    color:#777;
}

.review-text{
    margin:12px 0;
}

.review-actions{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
}

.review-actions button{
    border:1px solid #ccc;
    background:none;
    padding:5px 14px;
    border-radius:20px;
    cursor:pointer;
}

/* ADD REVIEW BUTTON */
.btn-add-review{
  display:inline-block;
  margin-top:25px;
  padding:10px 24px;
  background:#0d1b2a;
  color:white;
  border-radius:25px;
  text-decoration:none;
  font-weight:500;
}

.btn-add-review:hover{
  background:#ffb400;
  color:#0d1b2a;
}

/* PUSH REVIEWS BELOW FIXED NAVBAR */
.reviews-section{
  margin-top:80px;
}

.reviews-section h2,
.reviews-section p{
 text-align:center;
}

