body {
  font-family: 'Poppins', sans-serif;
  background: #f6f9fc;
} 

html, body {
    width: 100%;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
}

/* Prevent elements from exceeding screen */
* {
    box-sizing: border-box;
    max-width: 100%;
}

/* Fix images & videos */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Bootstrap row overflow fix */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Container safety */
.container,
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
}

/* HERO SEARCH */
.hero-search {
  position: relative;
  min-height: 90vh;
  background: url("../assets/img/home_banner.jpg")
    center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 40, 80, 0.65),
    rgba(0, 40, 80, 0.65)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
}

.hero-content p {
  max-width: 780px;
  margin: 15px auto 40px;
  font-size: 1.1rem;
}

/* SEARCH BOX */
.search-box {
  background: rgba(40, 40, 40, 0.9);
  padding: 20px;
  border-radius: 14px;
}

.search-box .form-control {
  height: 52px;
  border-radius: 6px;
  border: none;
  font-weight: 500;
}

/* SEARCH BUTTON */
.btn-search {
  background: #0b63b6;
  color: #fff;
  font-weight: 600;
  height: 52px;
  border-radius: 6px;
}
.btn-search:hover {
  background: #094f92;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .search-box {
    padding: 15px;
  }
}

/* FEATURED DEALS */
.featured-deals {
  padding: 80px 0;
  background: #f8fbff;
}

/* HEADER */
.section-head {
  margin-bottom: 40px;
  text-align: center;
}
.section-head h2 {
  font-weight: 700;
  color: #0b2d5c;
}
.section-head p {
  color: #555;
}
.badge-line {
  display: inline-block;
  width: 6px;
  height: 30px;
  background: #f4b400;
  margin-right: 10px;
}

/* DEAL CARD */
.deal-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  cursor: pointer;
  height: 240px;
}

.deal-card.large {
  height: 300px;
}

.deal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

/* OVERLAY */
.deal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.65)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.deal-overlay h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.deal-overlay p {
  font-size: 15px;
}

/* HOVER */
.deal-card:hover img {
  transform: scale(1.08);
}
.deal-card:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 768px) {
  .deal-card,
  .deal-card.large {
    height: 220px;
  }
}

/* WHY CHOOSE US */
.why-choose-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #0b63b6, #084a8f);
  color: #fff;
}

/* LEFT */
.why-choose-us h2 {
  font-weight: 700;
}
.lead-text {
  margin-top: 15px;
  color: #e1ecf7;
  font-size: 16px;
}

/* CARD */
.why-card {
  background: #fff;
  color: #0b2d5c;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform .3s ease, box-shadow .3s ease;
}

.why-card h5 {
  font-weight: 700;
  margin-top: 14px;
}

.why-card p {
  font-size: 14px;
  margin-top: 6px;
  color: #555;
}

/* ICON BOX */
.icon-box {
  width: 44px;
  height: 44px;
  background: #0b63b6;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* ICON */
.icon-box i {
  transition: transform 0.3s ease;
}

/* CARD HOVER EFFECT */
.why-card:hover .icon-box {
  background: #084a8f;
  box-shadow: 0 8px 20px rgba(11, 99, 182, 0.4);
}

.why-card:hover .icon-box i {
  transform: scale(1.15) rotate(-4deg);
}


/* MOBILE */
@media (max-width: 768px) {
  .why-choose-us {
    text-align: center;
  }
}
/* SIDE-BY-SIDE ICON CARD */
.why-flex {
  display: flex;
  gap: 16px;
  align-items: center;
}

.icon-box {
  width: 42px;
  height: 42px;
  background: #0b63b6;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-text h5 {
  margin: 0;
  font-weight: 700;
  color: #0b2d5c;
}

.why-text p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #555;
}


/* TOP CRUISE DEALS */
.top-cruise-deals {
  padding: 90px 0;
  background: #f4f8fc;
}

/* TITLE */
.section-title h2 {
  font-weight: 700;
  color: #0b2d5c;
}
.section-title p {
  color: #555;
  max-width: 700px;
  margin: 10px auto 0;
}

/* CARD */
.cruise-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.cruise-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* BODY */
.cruise-body {
  padding: 22px;
}

.cruise-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cruise-head h5 {
  font-weight: 700;
  margin: 0;
  color: #0b2d5c;
}

.price {
  background: #eaf4ff;
  color: #0b63b6;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.small-text {
  font-size: 14px;
  color: #555;
  margin: 12px 0;
}

.cruise-body ul {
  padding-left: 18px;
  margin-bottom: 18px;
}
.cruise-body ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

/* HOVER */
.cruise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.top-cruises {
    max-width: 100%; 
    margin: 0 auto;
}


/* BUTTONS */
.btn-call {
  background: #ff3b3b;
  color: #fff;
  border-radius: 50px;
  padding: 14px 30px;
}
.btn-call:hover {
  background: #e22f2f;
}


/* CTA */
.cta-ref {
  background: linear-gradient(90deg, #002f6c, #004fa3);
  color: #fff;
  padding: 70px 0;
}
/* FOOTER */
.site-footer {
  background: #5aa6e6;
  color: #fff;
  position: relative;
}

/* TOP */
.footer-top {
  padding: 60px 0 30px;
}

.site-footer h5 {
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* CONTACT */
.site-footer p i {
  margin-right: 8px;
}

/* SOCIAL */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-social a:hover {
  background: #fff;
  color: #0b63b6;
}

/* DISCLAIMER */
.footer-disclaimer {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

/* BOTTOM */
.footer-bottom {
  background: #233b5d;
  padding: 25px 0 5px 0;
}
/* TRUST BADGES */
.trust-badges img {
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
  margin: 0 auto 10px;
  display: block;
}


/* COPYRIGHT */
.footer-bottom p {
  margin-top: 12px;
  font-size: 14px;
  color: #ddd;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-top {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}


/* HEADER */
.main-header {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo img {
  max-height: 42px;
}

/* NAV */
.main-nav a {
  margin: 0 18px;
  font-weight: 600;
  color: #0b2d5c;
  text-decoration: none;
}
.main-nav a:hover {
  color: #0077cc;
}

/* ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* CALL BUTTON */
.call-btn {
  background: #5aa6e6;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.call-btn:hover {
  background: #3f90d9;
  color: #fff;
}

/* LANGUAGE */
.lang-dropdown .btn {
  border: 1px solid #ddd;
  background: #fff;
}

/* HAMBURGER */
.menu-toggle {
  border: none;
  background: none;
  width: 30px;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #0b2d5c;
  margin: 5px 0;
  border-radius: 2px;
}

/* MOBILE MENU */
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: #0b2d5c;
  text-decoration: none;
}

.mobile-call {
  display: block;
  margin-top: 20px;
  text-align: center;
}


/* ================= INNER PAGES ================= */

.inner-page {
  background: #f4f8fc;
  padding: 80px 0;
}

/* CARD */
.page-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* HEADINGS */
.page-card h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0b2d5c;
  margin-bottom: 20px;
  position: relative;
}

.page-card h1::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #f4b400;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.page-card h3 {
  margin-top: 30px;
  font-weight: 700;
  color: #0b2d5c;
}

/* TEXT */
.page-card p,
.page-card li {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.page-card ul {
  padding-left: 18px;
  margin-top: 10px;
}

.page-card ul li {
  margin-bottom: 8px;
}

/* LINKS */
.page-card a {
  color: #0b63b6;
  font-weight: 600;
  text-decoration: none;
}

.page-card a:hover {
  text-decoration: underline;
}

/* CONTACT HIGHLIGHT */
.contact-box {
  background: #f0f6ff;
  border-left: 5px solid #0b63b6;
  padding: 18px;
  border-radius: 10px;
  margin-top: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-card {
    padding: 30px;
  }

  .page-card h1 {
    font-size: 26px;
  }
}

/* ===== 3D TEXT LOGO ===== */
.logo-text {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* MAIN TEXT */
.logo-main {
  color: #0b2d5c;
  text-shadow:
    1px 1px 0 #cfdff2,
    2px 2px 0 #b6cdea,
    3px 3px 0 #9fbadf;
}

/* ACCENT */
.logo-accent {
  color: #0b63b6;
  margin-left: 4px;
  text-shadow:
    1px 1px 0 #cfe6ff,
    2px 2px 0 #b3d7ff,
    3px 3px 0 #99c8ff;
}

/* HOVER (SUBTLE, PREMIUM) */
.logo-text:hover .logo-main,
.logo-text:hover .logo-accent {
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.1),
    2px 2px 0 rgba(0,0,0,0.08),
    3px 3px 0 rgba(0,0,0,0.05);
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px) {
  .logo-text {
    font-size: 22px;
  }
}
