:root {
    --glass-bg: rgba(255, 255, 255, 0.10);
    --glass-blur: 12px;
    --hero-float: 18px;
    --wave-color: #028090;
  }

  /* --- Extra nav/hero styles for premium look --- */
  .navbar-brand .wave-logo {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    vertical-align: middle;
  }

  .navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
    transition: color 0.2s;
  }

  .navbar-nav .nav-link::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s, left 0.3s;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 80%;
    left: 10%;
  }

  .navbar-nav .nav-link.active {
    color: var(--coral) !important;
  }

  .navbar.sticky {
    animation: fadeInNav 0.5s;
  }

  @keyframes fadeInNav {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 16px rgba(1, 46, 64, 0.18);
    z-index: 999;
    transition: background 0.2s, transform 0.2s;
    animation: bounceWhatsApp 2s infinite;
  }

  .whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.08);
  }

  @keyframes bounceWhatsApp {

    0%,
    100% {
      transform: translateY(0);
    }

    20% {
      transform: translateY(-8px);
    }

    40% {
      transform: translateY(0);
    }

    60% {
      transform: translateY(-4px);
    }

    80% {
      transform: translateY(0);
    }
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--ocean-blue);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-bg-video,
  .hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 20s linear;
  }

  .hero-bg-video {
    animation: slowZoom 20s infinite alternate;
  }

  .hero-bg-img {
    animation: slowZoom 20s infinite alternate;
  }

  @keyframes slowZoom {
    from {
      transform: scale(1);
    }

    to {
      transform: scale(1.08);
    }
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(1, 46, 64, 0.7) 60%, rgba(2, 128, 144, 0.4));
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(1, 46, 64, 0.2);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(1, 46, 64, 0.12);
    backdrop-filter: blur(var(--glass-blur));
    padding: 3rem 2rem 2.5rem 2rem;
    animation: heroFloat 5s ease-in-out infinite alternate;
  }

  @keyframes heroFloat {
    from {
      transform: translateY(0);
    }

    to {
      transform: translateY(var(--hero-float));
    }
  }

  .hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: #F4EDE8;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    opacity: 0.85;
    min-height: 1.5em;
    display: block;
  }

  .typed-cursor {
    display: inline-block;
    color: var(--coral);
    font-weight: bold;
    font-size: 1.2em;
    animation: blink 1s infinite;
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }
  }

  .hero-headline span {
    opacity: 0;
    display: inline-block;
    animation: fadeInWord 0.7s forwards;
  }

  .hero-headline span:nth-child(1) {
    animation-delay: 0.1s;
  }

  .hero-headline span:nth-child(2) {
    animation-delay: 0.4s;
  }

  .hero-headline span:nth-child(3) {
    animation-delay: 0.7s;
  }

  .hero-headline span:nth-child(4) {
    animation-delay: 1.0s;
  }

  .hero-headline span:nth-child(5) {
    animation-delay: 1.3s;
  }

  .hero-headline span:nth-child(6) {
    animation-delay: 1.6s;
  }

  .hero-headline span:nth-child(7) {
    animation-delay: 1.9s;
  }

  @keyframes fadeInWord {
    to {
      opacity: 1;
      transform: translateY(0);
    }

    from {
      opacity: 0;
      transform: translateY(30px);
    }
  }

  .hero-subtext {
    opacity: 0;
    animation: fadeInSubtext 1.2s 2.2s forwards;
    display: block;
  }

  @keyframes fadeInSubtext {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 0.85;
      transform: translateY(0);
    }
  }

  .hero-cta .btn {
    margin: 0 0.5rem;
    min-width: 180px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 113, 91, 0.08);
    transition: box-shadow 0.2s, transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }

  .hero-cta .btn:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 0;
  }

  .hero-cta .btn:hover:after {
    width: 220px;
    height: 220px;
    transition: width 0.4s, height 0.4s;
  }

  .hero-cta .btn:hover {
    box-shadow: 0 6px 24px rgba(2, 128, 144, 0.10), 0 0 16px 2px var(--coral);
    transform: translateY(-2px) scale(1.04);
  }

  .hero-cta .btn-secondary {
    background: rgba(2, 128, 144, 0.12);
    color: var(--teal);
    border: 2px solid var(--teal);
  }

  .hero-cta .btn-secondary:hover {
    background: var(--teal);
    color: #fff;
  }

  .scroll-down {
    position: absolute;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
    z-index: 4;
    cursor: pointer;
    animation: bounceArrow 2s infinite cubic-bezier(.68, -0.55, .27, 1.55);
    transition: filter 0.2s;
    filter: drop-shadow(0 2px 8px rgba(2, 128, 144, 0.18));
  }

  .scroll-down:hover {
    filter: drop-shadow(0 4px 16px var(--coral));
  }

  @keyframes bounceArrow {

    0%,
    100% {
      transform: translateX(-50%) translateY(0);
    }

    50% {
      transform: translateX(-50%) translateY(18px);
    }
  }

  .hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 90px;
    z-index: 3;
    pointer-events: none;
    animation: waveMove 8s linear infinite;
    overflow: hidden;
  }

  @keyframes waveMove {
    0% {
      background-position-x: 0;
    }

    100% {
      background-position-x: 400px;
    }
  }

  /* Parallax effect for hero bg */
  @media (pointer: fine) {

    .hero-bg-video,
    .hero-bg-img {
      will-change: transform;
    }
  }

  /* Mobile nav slide-in */
  .mobile-nav-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(1, 46, 64, 0.4);
    backdrop-filter: blur(6px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .mobile-nav-bg.active {
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-collapse {
    transition: transform 0.4s cubic-bezier(.68, -0.55, .27, 1.55), opacity 0.3s;
  }

  @media (max-width: 991.98px) {
    .navbar-collapse {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 320px;
      background: var(--ocean-blue);
      box-shadow: -2px 0 24px rgba(1, 46, 64, 0.12);
      transform: translateX(100%);
      opacity: 0;
      z-index: 1050;
      border-radius: 1rem 0 0 1rem;
      padding-top: 4rem;
    }

    .navbar-collapse.show {
      transform: translateX(0);
      opacity: 1;
    }

    .navbar-nav .nav-link {
      font-size: 1.3rem;
      margin-bottom: 1.2rem;
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .navbar-collapse.show .navbar-nav .nav-link {
      opacity: 1;
      transform: translateX(0);
    }

    .navbar-collapse.show .navbar-nav .nav-link:nth-child(1) {
      transition-delay: 0.1s;
    }

    .navbar-collapse.show .navbar-nav .nav-link:nth-child(2) {
      transition-delay: 0.2s;
    }

    .navbar-collapse.show .navbar-nav .nav-link:nth-child(3) {
      transition-delay: 0.3s;
    }

    .navbar-collapse.show .navbar-nav .nav-link:nth-child(4) {
      transition-delay: 0.4s;
    }

    .navbar-collapse.show .navbar-nav .nav-link:nth-child(5) {
      transition-delay: 0.5s;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
      background-image: none;
    }

    .navbar-toggler[aria-expanded="true"]:after {
      content: '\00d7';
      font-size: 2.2rem;
      color: var(--coral);
      position: absolute;
      right: 18px;
      top: 12px;
      animation: fadeInX 0.4s;
    }

    @keyframes fadeInX {
      from {
        opacity: 0;
        transform: scale(0.7) rotate(-90deg);
      }

      to {
        opacity: 1;
        transform: scale(1) rotate(0);
      }
    }
  }

  @media (max-width: 767.98px) {
    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-content {
      padding: 0 1rem;
    }

    .navbar-brand .wave-logo {
      width: 28px;
      height: 28px;
    }

    .hero-wave {
      height: 60px;
    }
  }

  /* Quick Destinations Snap Section */
  .destinations-section {
    background: linear-gradient(120deg, #f4ede8 60%, #e6f7fa 100%);
  }

  .destinations-scroll {
    scrollbar-width: thin;
    scrollbar-color: #028090 #f4ede8;
  }

  .destinations-scroll::-webkit-scrollbar {
    height: 10px;
  }

  .destinations-scroll::-webkit-scrollbar-thumb {
    background: #028090;
    border-radius: 6px;
  }

  /* Hide horizontal scrollbar for destinations-scroll */
  .destinations-scroll {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .destinations-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }

  .destination-card {
    min-width: 320px;
    max-width: 320px;
    height: 380px;
    border-radius: 1.5rem;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 24px rgba(1, 46, 64, 0.10);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    align-items: flex-end;
    margin-bottom: 1rem;
  }

  .destination-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(2, 128, 144, 0.18);
  }

  .destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 46, 64, 0.10) 40%, rgba(2, 128, 144, 0.18) 100%);
    z-index: 1;
    transition: background 0.3s;
  }

  .destination-card:hover .destination-overlay {
    background: linear-gradient(180deg, rgba(2, 128, 144, 0.18) 10%, rgba(1, 46, 64, 0.32) 100%);
  }

  .destination-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 100%;
    background: linear-gradient(0deg, rgba(1, 46, 64, 0.38) 80%, rgba(1, 46, 64, 0.01) 100%);
    border-radius: 0 0 1.5rem 1.5rem;
    transition: background 0.3s;
  }

  .destination-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .destination-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    opacity: 0.92;
  }

  .learn-more {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 0.4rem 1.1rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 2px 8px rgba(2, 128, 144, 0.10);
  }

  .destination-card:hover .learn-more {
    transform: translateY(0);
    opacity: 1;
  }

  .destination-card:hover .destination-content {
    background: linear-gradient(0deg, rgba(2, 128, 144, 0.38) 80%, rgba(1, 46, 64, 0.01) 100%);
  }

  @media (max-width: 767.98px) {
    .destination-card {
      min-width: 80vw;
      max-width: 80vw;
      height: 260px;
    }

    .destination-content {
      padding: 1.2rem 1rem 1rem 1rem;
    }
  }

  /* Why Choose Us Section */
  .why-choose-section {
    padding: 5rem 0 5rem 0;
    background: linear-gradient(120deg, #f4ede8 60%, #e6f7fa 100%);
  }

  .why-choose-section .section-title {
    font-size: 2.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .why-choose-row {
    margin-left: 0;
    margin-right: 0;
    gap: 0;
  }

  .why-card {
    background: var(--glass-bg);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(1, 46, 64, 0.10);
    backdrop-filter: blur(var(--glass-blur));
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
  }

  .why-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(2, 128, 144, 0.12);
  }

  .why-icon {
    font-size: 2.7rem !important;
    margin-bottom: 1.2rem;
    margin-top: 0.2rem;
    transition: transform 0.5s, opacity 0.5s;
  }

  .why-card:hover .why-icon {
    transform: scale(1.13);
    opacity: 0.92;
  }

  .pulse-on-scroll {
    animation: pulse 2.2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }

    50% {
      transform: scale(1.13);
      opacity: 1;
    }

    100% {
      transform: scale(1);
      opacity: 0.8;
    }
  }

  .why-card h6 {
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
  }

  .why-card .small {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #666;
  }

  @media (min-width: 992px) {
    .why-card {
      min-width: 260px;
      max-width: 320px;
      margin-left: 1.2rem;
      margin-right: 1.2rem;
    }
  }

  @media (max-width: 991.98px) {
    .why-choose-section {
      padding: 3rem 0 3rem 0;
    }

    .why-card {
      min-width: 90vw;
      max-width: 98vw;
      margin: 0 auto 2rem auto;
      padding: 2rem 1.2rem 1.5rem 1.2rem;
    }
  }

  /* Top Packages Section */
  .top-packages-section {
    background: #f4ede8;
  }

  .package-card {
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px rgba(1, 46, 64, 0.08);
    transition: transform 0.18s, box-shadow 0.18s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    border: 1px solid #ececec;
    background: #fff;
  }

  .package-card:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow: 0 8px 24px rgba(2, 128, 144, 0.13);
  }

  .package-img-wrap {
    height: 150px;
    background: #e6f7fa;
    overflow: hidden;
    border-radius: 1.1rem 1.1rem 0 0;
    position: relative;
  }

  .package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s, filter 0.4s;
    filter: blur(0.5px) brightness(0.98);
  }

  .package-card:hover .package-img {
    transform: scale(1.07);
    filter: blur(0) brightness(1.04);
  }

  .badge.bg-coral,
  .badge.bg-teal {
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 1rem;
    padding: 0.35em 0.9em;
    box-shadow: 0 2px 8px rgba(2, 128, 144, 0.08);
  }

  .badge.bg-coral {
    background: var(--coral);
    color: #fff;
  }

  .badge.bg-teal {
    background: var(--teal);
    color: #fff;
  }

  .package-quick-info {
    font-size: 0.97rem;
    color: #028090;
    opacity: 0.92;
    margin-bottom: 0.2rem;
  }

  .package-price {
    font-size: 1.08rem;
    color: var(--teal);
    font-weight: 700;
    margin-top: 0.2rem;
    opacity: 0.92;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .package-card:hover .package-price {
    color: var(--coral);
  }

  .btn-coral,
  .btn-teal {
    font-weight: 600;
    font-size: 1.01rem;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(255, 113, 91, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    padding: 0.5rem 1.2rem;
  }

  .btn-coral:hover,
  .btn-teal:hover {
    box-shadow: 0 6px 24px rgba(2, 128, 144, 0.10);
    transform: translateY(-2px) scale(1.04);
  }

  .package-card .btn {
    margin-top: 0.7rem;
    margin-bottom: 0.2rem;
  }

  @media (max-width: 991.98px) {
    .package-card {
      min-height: 260px;
    }

    .package-img-wrap {
      height: 120px;
    }
  }

  @media (max-width: 767.98px) {
    .package-card {
      min-height: 200px;
    }

    .package-img-wrap {
      height: 200px;
    }
  }

  /* Itinerary Preview Section (Carousel) */
  .itinerary-section {
    background: linear-gradient(120deg, #e6f7fa 60%, #f4ede8 100%);
  }

  .itinerary-title {
    position: relative;
    z-index: 1;
  }

  .itinerary-stepper {
    border-left: 3px solid var(--teal);
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    z-index: 1;
  }

  .itinerary-path {
    pointer-events: none;
    z-index: 0;
  }

  .itinerary-step {
    position: relative;
    min-height: 70px;
    z-index: 2;
  }

  .itinerary-step:last-child {
    margin-bottom: 0;
  }

  .itinerary-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2.5px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 12px rgba(2, 128, 144, 0.08);
    margin-top: 2px;
    margin-bottom: 2px;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s, transform 0.3s;
  }

  .itinerary-step:hover .itinerary-icon,
  .itinerary-step:focus .itinerary-icon {
    box-shadow: 0 6px 24px rgba(2, 128, 144, 0.13);
    transform: scale(1.08);
  }

  .step-emoji {
    display: block;
    font-size: 1.7rem;
    line-height: 1;
    animation: floatStep 2.2s infinite ease-in-out;
  }

  @keyframes floatStep {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-7px);
    }
  }

  .step-dot {
    box-shadow: 0 0 0 4px rgba(2, 128, 144, 0.07);
  }

  .step-dot-1 {
    border-color: #028090;
  }

  .step-dot-2 {
    border-color: #FF715B;
  }

  .step-dot-3 {
    border-color: #F4EDE8;
  }

  .step-dot-4 {
    border-color: #FFB347;
  }

  .step-dot-5 {
    border-color: #012E40;
  }

  .itinerary-step:before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--teal);
    z-index: 1;
    opacity: 0.18;
  }

  .itinerary-step:last-child:before {
    display: none;
  }

  @media (max-width: 991.98px) {
    .itinerary-path {
      display: none !important;
    }
  }

  @media (max-width: 767.98px) {
    .itinerary-section {
      padding: 2.5rem 0 2.5rem 0;
    }

    .itinerary-stepper {
      margin-left: 0.5rem;
      padding-left: 1rem;
    }

    .itinerary-icon {
      width: 38px;
      height: 38px;
      font-size: 1.2rem;
    }
  }

  /* Traveler Stories / Testimonials Section */
  .testimonials-section {
    background: linear-gradient(120deg, #f4ede8 60%, #e6f7fa 100%);
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  #testimonialCarousel {
    box-shadow: 0 8px 32px rgba(1, 46, 64, 0.10);
    border-radius: 1.2rem;
    background: #fff;
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
    margin-bottom: 2.5rem;
  }

  .carousel-inner {
    padding-bottom: 1.5rem;
  }

  .carousel-item {
    transition: transform 1.1s cubic-bezier(.77, 0, .18, 1), opacity 1.1s cubic-bezier(.77, 0, .18, 1);
  }

  .testimonials-section .carousel-item .row {
    margin-left: 0;
    margin-right: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .testimonial-polaroid {
    background: #fff;
    border-radius: 1.1rem;
    box-shadow: 0 6px 32px rgba(1, 46, 64, 0.13);
    padding: 0.7rem 0.7rem 1.2rem 0.7rem;
    display: inline-block;
    position: relative;
    margin-bottom: 0.5rem;
    transform: rotate(-2deg);
    transition: box-shadow 0.2s, transform 0.2s;
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
  }

  .testimonial-polaroid.rotate-right {
    transform: rotate(3deg);
  }

  .testimonial-polaroid.rotate-left {
    transform: rotate(-5deg);
  }

  .testimonial-polaroid:hover {
    box-shadow: 0 12px 40px rgba(2, 128, 144, 0.16);
    transform: scale(1.04) rotate(-1deg);
  }

  .testimonial-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 0.7rem;
    box-shadow: 0 2px 12px rgba(2, 128, 144, 0.10);
    margin-bottom: 0.5rem;
  }

  .testimonial-polaroid-caption {
    font-size: 1.01rem;
    font-weight: 600;
    color: #028090;
    margin-top: 0.2rem;
  }

  .text-instagram {
    color: #e1306c;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
  }

  .text-instagram:hover {
    color: #b91d5a;
  }

  .testimonial-stars {
    color: #FFB347;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
    margin-top: 0.7rem;
  }

  .star-animate {
    opacity: 0;
    animation: starIn 0.7s forwards;
  }

  .star-animate:nth-child(1) {
    animation-delay: 0.1s;
  }

  .star-animate:nth-child(2) {
    animation-delay: 0.25s;
  }

  .star-animate:nth-child(3) {
    animation-delay: 0.4s;
  }

  .star-animate:nth-child(4) {
    animation-delay: 0.55s;
  }

  .star-animate:nth-child(5) {
    animation-delay: 0.7s;
  }

  @keyframes starIn {
    from {
      opacity: 0;
      transform: scale(0.7) rotate(-20deg);
    }

    to {
      opacity: 1;
      transform: scale(1) rotate(0);
    }
  }

  .blockquote {
    font-size: 1.08rem;
    color: #012E40;
    font-style: italic;
    margin-bottom: 0.5rem;
    margin-top: 1.2rem;
  }

  .blockquote-footer {
    color: #028090;
    font-size: 0.98rem;
    margin-top: 0.7rem;
  }

  @media (max-width: 767.98px) {
    .testimonial-img {
      width: 80px;
      height: 80px;
    }

    .testimonial-polaroid {
      padding: 0.5rem 0.5rem 0.8rem 0.5rem;
    }

    #testimonialCarousel {
      padding: 1.2rem 0.2rem 1.2rem 0.2rem;
      border-radius: 0.7rem;
    }

    .carousel-inner {
      padding-bottom: 0.5rem;
    }
  }

  /* Gallery Preview Section */
  .gallery-section {
    background: linear-gradient(120deg, #e6f7fa 60%, #f4ede8 100%);
  }

  .gallery-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 0.7rem;
  }

  .gallery-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px rgba(1, 46, 64, 0.08);
    margin-bottom: 0.2rem;
  }

  .gallery-img {
    transition: transform 0.3s, filter 0.3s;
    filter: blur(0.5px) brightness(0.98);
  }

  .gallery-item:hover .gallery-img {
    transform: scale(1.07);
    filter: blur(0) brightness(1.04);
  }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(2, 128, 144, 0.13) 60%, rgba(255, 113, 91, 0.10) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    transition: opacity 0.25s;
    border-radius: 1.1rem;
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  .follow-insta-btn {
    font-weight: 600;
    font-size: 1.08rem;
    border-radius: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(2, 128, 144, 0.08);
    animation: fadeInInsta 1.2s 0.5s both;
  }

  @keyframes fadeInInsta {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .modal-img {
    max-height: 80vh;
    object-fit: contain;
    background: var(--sand);
    border-radius: 1.1rem;
    box-shadow: 0 8px 32px rgba(1, 46, 64, 0.13);
  }

  @media (max-width: 991.98px) {
    .gallery-masonry .col-md-3 {
      flex: 1 0 48%;
      max-width: 48%;
    }
  }

  @media (max-width: 767.98px) {
    .gallery-masonry .col-6 {
      flex: 1 0 98%;
      max-width: 98%;
    }

    .gallery-img-wrap {
      border-radius: 0.7rem;
    }

    .gallery-overlay {
      border-radius: 0.7rem;
    }
  }

  /* FAQ / Before You Book Section */
  .faq-section {
    background: linear-gradient(120deg, #f4ede8 60%, #e6f7fa 100%);
  }

  .faq-accordion .accordion-item {
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px rgba(1, 46, 64, 0.08);
    border: none;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .faq-accordion .accordion-item:hover {
    box-shadow: 0 8px 32px rgba(2, 128, 144, 0.13);
    transform: translateY(-2px) scale(1.01);
  }

  .faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1.08rem;
    background: #fff;
    color: #012E40;
    padding: 1.1rem 1.2rem;
    border: none;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background: #e6f7fa;
    color: var(--teal);
  }

  .faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 2px var(--teal);
  }

  .faq-accordion .accordion-body {
    background: #f4ede8;
    color: #222;
    font-size: 1.01rem;
    padding: 1.2rem 1.2rem 1.2rem 2.2rem;
  }

  .faq-icon {
    font-size: 1.2rem;
    color: var(--teal);
    transition: transform 0.3s;
  }

  .faq-accordion .accordion-button[aria-expanded="true"] .faq-icon {
    transform: rotate(20deg) scale(1.2);
    color: var(--coral);
  }

  @media (max-width: 767.98px) {
    .faq-section {
      padding: 2.5rem 0 2.5rem 0;
    }

    .faq-accordion .accordion-body {
      padding: 1rem 1rem 1rem 1.5rem;
    }
  }

  /* About Oceansy Section */
  .about-section {
    background: linear-gradient(120deg, #e6f7fa 60%, #f4ede8 100%);
  }

  .about-story {
    font-size: 1.13rem;
    color: #012E40;
    margin-bottom: 1.5rem;
  }

  .about-mission {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
  }

  .about-team-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(1, 46, 64, 0.08);
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    transition: box-shadow 0.2s, transform 0.2s;
    display: inline-block;
  }

  .about-team-card:hover {
    box-shadow: 0 8px 32px rgba(2, 128, 144, 0.13);
    transform: translateY(-6px) scale(1.05);
  }

  .about-team-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(2, 128, 144, 0.10);
    transition: transform 0.3s;
  }

  .about-team-card:hover .about-team-img {
    transform: scale(1.09) rotate(-2deg);
  }

  .about-team-name {
    font-size: 1.08rem;
    font-weight: 600;
    color: #028090;
  }

  .about-team-role {
    font-size: 0.98rem;
    color: #888;
  }

  @media (max-width: 767.98px) {
    .about-team-img {
      width: 70px;
      height: 70px;
    }

    .about-team-card {
      padding: 0.7rem 0.3rem 0.7rem 0.3rem;
    }
  }

  /* Contact Section */
  .contact-section {
    background: linear-gradient(120deg, #f4ede8 60%, #e6f7fa 100%);
  }

  .contact-info-card {
    background: #fff;
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px rgba(1, 46, 64, 0.08);
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .contact-info-card:hover {
    box-shadow: 0 8px 32px rgba(2, 128, 144, 0.13);
    transform: translateY(-4px) scale(1.03);
  }

  .contact-info-card i {
    transition: color 0.2s, transform 0.2s;
  }

  .contact-info-card:hover i {
    color: var(--coral) !important;
    transform: scale(1.13);
  }

  #contactForm {
    background: #fff;
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px rgba(1, 46, 64, 0.08);
  }

  #contactForm .form-control {
    border-radius: 0.7rem;
    border: 1.5px solid #e6f7fa;
    font-size: 1.05rem;
    padding: 1.1rem 1rem 1.1rem 1.1rem;
    background: #f4ede8;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  #contactForm .form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 2px var(--teal);
  }

  #contactForm .form-floating>label {
    color: #888;
    font-size: 1.01rem;
    left: 1.1rem;
  }

  #contactForm .btn {
    font-weight: 600;
    font-size: 1.08rem;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(255, 113, 91, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  }

  #contactForm .btn:hover {
    box-shadow: 0 6px 24px rgba(2, 128, 144, 0.10);
    transform: translateY(-2px) scale(1.04);
  }

  #formSuccess {
    animation: fadeInSuccess 0.7s;
  }

  @keyframes fadeInSuccess {
    from {
      opacity: 0;
      transform: scale(0.95);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (max-width: 767.98px) {
    .contact-info-card {
      margin-bottom: 1.2rem;
    }

    #contactForm {
      padding: 1.2rem 0.7rem;
    }
  }

  /* Footer Section */
  .footer-section {
    background: var(--ocean-blue);
    color: var(--sand);
    font-size: 1rem;
    margin-top: 0;
  }

  .footer-link {
    color: var(--sand);
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
  }

  .footer-link:hover,
  .footer-link:focus {
    color: var(--coral);
    text-decoration: underline;
  }

  .footer-social-link {
    color: var(--sand);
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
  }

  .footer-social-link:hover,
  .footer-social-link:focus {
    color: var(--coral);
    transform: scale(1.18) rotate(-8deg);
  }

  .footer-newsletter .form-control {
    border-radius: 2rem 0 0 2rem;
    border: none;
    font-size: 1rem;
    background: #f4ede8;
    color: #012E40;
  }

  .footer-newsletter .btn {
    border-radius: 0 2rem 2rem 0;
    font-size: 1rem;
    font-weight: 600;
  }

  .footer-tagline {
    color: #f4ede8;
    font-size: 1.01rem;
    margin-bottom: 0.2rem;
  }

  .footer-location {
    color: #f4ede8;
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
  }

  .footer-hours {
    color: #b3c6cc;
    font-size: 0.95rem;
  }

  .footer-credit {
    color: #f4ede8;
    font-size: 0.98rem;
  }

  @media (max-width: 991.98px) {
    .footer-section .row>div {
      margin-bottom: 1.5rem;
    }
  }

  @media (max-width: 767.98px) {
    .footer-section {
      font-size: 0.95rem;
      text-align: center;
    }

    .footer-section .container {
      padding-left: 0.5rem;
      padding-right: 0.5rem;
    }

    .footer-section .row {
      flex-direction: column;
      gap: 1.2rem;
    }

    .footer-section .footer-social-link {
      font-size: 1.15rem;
    }
  }

  /* Scroll Progress Bar */
  #scrollProgressBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--coral) !important; /* Use secondary color, force override */
    z-index: 9999;
    transition: width 0.2s;
  }
  

  body {
    padding-top: 0px !important;
  }

  /* Activities Section Styles */
  .activities-section {
    background: linear-gradient(120deg, #e6f7fa 60%, #f4ede8 100%);
  }

  .activity-card {
    background: var(--glass-bg);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(1, 46, 64, 0.10);
    backdrop-filter: blur(var(--glass-blur));
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
  }

  .activity-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(2, 128, 144, 0.12);
  }

  .activity-video-wrap {
    border-radius: 1.2rem 1.2rem 0 0;
    overflow: hidden;
    position: relative;
    height: 220px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .activity-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92) blur(0.2px);
    transition: filter 0.3s, transform 0.3s;
  }

  .activity-card:hover .activity-video-wrap video {
    filter: brightness(1.03) blur(0);
    transform: scale(1.04);
  }

  .activity-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2.8rem;
    opacity: 0.82;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(2, 128, 144, 0.18));
    transition: opacity 0.2s, transform 0.2s;
  }

  .activity-card:hover .activity-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }

  .activity-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--teal);
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
  }

  .activity-card .card-text {
    font-size: 1.05rem;
    color: #012E40;
    opacity: 0.92;
  }

  @media (max-width: 991.98px) {
    .activity-card {
      min-height: 340px;
    }

    .activity-video-wrap {
      height: 160px;
    }
  }

  @media (max-width: 767.98px) {
    .activity-card {
      min-height: 220px;
      border-radius: 0.7rem;
    }

    .activity-video-wrap {
      border-radius: 0.7rem 0.7rem 0 0;
      height: 200px;
    }
  }