:root {
        --primary-color: #b6db2d;
        --secondary-color: #020618;
        --tertiary-color: #1a1f3a;
        --septenary-color: #ffffff;
        --green-color: #009689;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        background-color: var(--secondary-color);
        color: #ffffff;
        font-family: "Poppins", sans-serif;
      }
      /* Filter Cards Carousel */
      .filter-carousel-wrapper {
        display: none;
      }

      @media (max-width: 768px) {
        .filter-carousel-wrapper {
          display: block;
          position: relative;
          overflow: hidden;
        }

        .filter-carousel {
          display: flex;
          gap: 15px;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
          -ms-overflow-style: none;
          padding-bottom: 10px;
        }

        .filter-carousel::-webkit-scrollbar {
          display: none;
        }

        .filter-carousel-item {
          flex: 0 0 85%;
          max-width: 85%;
          scroll-snap-align: start;
        }

        .filter-carousel .filter-card {
          margin-bottom: 0;
        }

        .hero-section .row {
          display: none;
        }
      }

      .navbar-brand img {
        height: 40px;
      }
      .navbar-brand span {
        color: var(--septenary-color);
        text-decoration: none;
        font-size: 22px;
        font-weight: bold;
        font-family: "Poppins", sans-serif;
        &:hover {
          color: var(--septenary-color);
        }
      }

      .nav-link {
        color: #ffffff !important;
        font-size: 14px;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        &:hover {
          color: var(--green-color);
        }
      }

      /* Dropdown: open on hover in navbar (desktop only) */
      @media (min-width: 992px) {
        .navbar-nav .dropdown:hover .dropdown-menu {
          display: block;
          margin-top: 0;
        }
      }
      .navbar-nav .dropdown .nav-link.dropdown-toggle::after {
        transition: transform 0.2s ease;
      }
      .navbar-nav .dropdown:hover .nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
      }
      .dropdown-menu {
        background-color: #1a1f3aad;
        border: 1px solid #2a2f4a;
      }
      .dropdown-item {
        color: #fff;
        font-size: 15px;
      }
      .dropdown-item:hover {
        background-color: #0096892b;
        color: var(--green-color);
      }

      /* Popular Tours mega dropdown */
      .popular-dropdown .dropdown-menu {
        min-width: max-content;
        right: 0;
        padding: 14px;
        border-radius: 14px;
        background: linear-gradient(135deg, #1a1f3ad0 0%, #0f1429c5 100%);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      }
      .popular-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px;
      }
      .popular-card.dropdown-item {
        margin: 0;
        padding: 12px 14px;
        border-radius: 12px;
        border: 1px solid #2a2f4a;
        background-color: #0f1429;
        color: #fff;
        display: block;
        height: 100%;
        font-size: 14px;
        line-height: 1.35;
        width: 250px;
      }
      .popular-card .popular-title {
        font-weight: 600;
        font-size: 15px;
        color: #fff;
        margin-top: 10px;
      }
      .popular-card .popular-meta {
        font-size: 12px;
        color: #8a8fa3;
        margin-top: 4px;

        max-width: 200px;
        display: block; /* THIS fixes it */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .popular-card:hover {
        background-color: #192241;
        border-color: var(--green-color);
        color: var(--primary-color);
      }

      .btn-currency {
        background-color: #c8ff00;
        color: #000;
        border: none;
        padding: 8px 20px;
        border-radius: 20px;
        font-weight: bold;
        font-size: 13px;
      }

      /* Hero Section */
      .hero-section {
        background: var(--secondary-color);
        padding: 5px 0 40px;
      }

      .hero-section h1 {
        font-size: 31px;
        font-weight: bold;
        margin-bottom: 5px;
        font-family: "Poppins", sans-serif;
      }

      .hero-section p {
        color: var(--septenary-color);
        font-size: 16px;
        font-family: "Poppins", sans-serif;
      }

      .filter-card {
        background: linear-gradient(135deg, #1a1f3a 0%, #0f1429 100%);
        border-radius: 12px;
        padding: 18px 20px 18px 22px;
        margin-bottom: 15px;
        border: 1px solid #2a2f4a;
        cursor: pointer;
        transition: 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      /* Neon top bar */
      .filter-card::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 22px;
        width: 40px;
        height: 5px;
        background: var(--primary-color);
        border-radius: 4px;
      }

      .filter-card:hover {
        border-color: #d9ff00;
        transform: translateY(-2px);
        box-shadow: 0 0 25px rgba(217, 255, 0, 0.15);
      }

      .filter-card h5 {
        font-size: 16px;
        margin-bottom: 6px;
        color: white;
        letter-spacing: 0.5px;
        margin-top: 10px;
      }

      .filter-card p {
        color: #8a8fa3;
        font-size: 14px;
        margin: 10px 0px;
      }
      /* Tour Cards */
      .tour-card {
        background: linear-gradient(135deg, #1a1f3a 0%, #0f1429 100%);
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 25px;
        border: 1px solid var(--septenary-color);
        transition: all 0.3s;
        display: flex;
        flex-direction: column;
        height: 100%;
      }

      .tour-card:hover {
        /* transform: translateY(-5px); */
        border-color: #c8ff00;
      }

      .tour-image {
        position: relative;
        overflow: hidden;
      }

      /* Image layer */
      .tour-image img {
        width: 100%;
        display: block;
        position: relative;
        z-index: 1;
        height: 240px;
        transition: transform 0.5s ease;
        &:hover {
          transform: scale(1.08);
        }
      }

      /* Gradient between image & text */
      .tour-image::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(
          to bottom,
          rgba(15, 20, 41, 0) 40%,
          rgba(15, 20, 41, 0.6) 70%,
          rgba(15, 20, 41, 1) 100%
        );
        pointer-events: none;
      }

      /* Text always on top */
      .tour-image span {
        position: absolute;
        z-index: 3;
      }
      .badge-bestseller {
        position: absolute;
        top: 15px;
        left: 15px;
        background-color: var(--secondary-color);
        color: var(--septenary-color);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: bold;
      }

      .badge-off {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: bold;
      }

      .tour-location {
        position: absolute;
        bottom: 15px;
        left: 0px;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 22px;
        font-weight: bold;
        font-family: "Poppins", sans-serif;
        color: var(--septenary-color);
      }
      .tour-location i {
        color: var(--primary-color);
      }
      .tour-code {
        position: absolute;
        bottom: 20px;
        right: 15px;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: bold;
        font-family: "Poppins", sans-serif;
        color: var(--septenary-color);
        background-color: color-mix(
          in oklab,
          var(--secondary-color) 50%,
          transparent
        );
      }

      .tour-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
      }
      .tour-content p {
        font-size: 15px;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .tour-title {
        font-size: 18px;
        font-weight: bold;
        line-height: 1.4;
        min-height: 60px;
        color: var(--septenary-color);
        font-family: "Poppins", sans-serif;
      }

      .tour-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
        font-size: 12px;
        color: #8a8fa3;
        font-family: "Poppins", sans-serif;
      }

      .tour-meta i {
        margin-right: 5px;
      }

      .tour-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
      }

      .tour-tag {
        color: var(--septenary-color);
        padding: 4px 10px;
        border-radius: 15px;
        font-size: 11px;
        border: 1px solid var(--septenary-color);
      }

      .tour-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
        border-top: 1px solid var(--septenary-color);
        margin-top: auto;
      }

      .tour-price {
        display: flex;
        flex-direction: column;
      }

      .price-amount {
        font-size: 24px;
        font-weight: bold;
        color: #fff;
      }

      .btn-book {
        background-color: #c8ff00;
        color: #000;
        border: none;
        padding: 10px 25px;
        border-radius: 25px;
        font-weight: bold;
        font-size: 13px;
        transition: all 0.3s;
      }

      .btn-book:hover {
        background-color: #b3e600;
        transform: scale(1.05);
      }

      /* Footer */
      .footer {
        background-color: var(--secondary-color);
        padding: 50px 0 20px;
        margin-top: 60px;
        border-top: 1px solid #1a1f3a;
        position: relative;
        z-index: 1;
      }

      .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("/Private_Phi_Phi_Island_Longtail_Boat_Tour/img/footer.svg");
        background-repeat: repeat;
        background-size: auto;
        filter: blur(1px) brightness(0.3);
        opacity: 0.5;
        z-index: -1;
      }

      .footer::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(2, 6, 24, 0.7);
        z-index: -1;
      }

      .footer .container {
        position: relative;
        z-index: 1;
      }

      .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
      }

      .footer-logo img {
        height: 40px;
      }

      .footer-logo span {
        color: var(--septenary-color);
        font-size: 24px;
        font-weight: bold;
        font-family: "Poppins", sans-serif;
      }

      .footer-warning-box {
        border: 2px solid color-mix(in oklab, #fb2c36 20%, transparent);
        background-color: color-mix(in oklab, #fb2c36 10%, transparent);
        padding: 15px;
        margin-bottom: 30px;
        border-radius: 8px;
        max-width: 300px;
      }

      .footer-warning-box p {
        color: var(--septenary-color);
        font-size: 13px;
        margin: 0;
        line-height: 1.6;
        font-family: "Poppins", sans-serif;
      }

      .footer h5 {
        color: var(--septenary-color);
        font-size: 16px;
        margin-bottom: 15px;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
      }

      .footer h6 {
        color: var(--septenary-color);
        font-size: 14px;
        margin-bottom: 10px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
      }

      .footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer ul li {
        margin-bottom: 8px;
      }

      .footer ul li a {
        color: var(--septenary-color);
        text-decoration: none;
        font-size: 13px;
        font-family: "Poppins", sans-serif;
        transition: color 0.3s;
      }

      .footer ul li a:hover {
        color: var(--green-color);
      }

      .footer-address {
        color: var(--septenary-color);
        font-size: 13px;
        line-height: 1.8;
        font-family: "Poppins", sans-serif;
      }

      .footer-address p {
        margin-bottom: 5px;
      }

      .footer-legal-text {
        color: var(--septenary-color);
        font-size: 11px;
        line-height: 1.8;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-family: "Poppins", sans-serif;
      }

      .footer-copyright {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-copyright p {
        color: #8a8fa3;
        font-size: 12px;
        margin: 0;
        font-family: "Poppins", sans-serif;
      }

      .footer-logos {
        display: flex;
        gap: 15px;
        align-items: center;
      }

      .footer-logos img {
        height: 40px;
      }

      /* Responsive Styles */
      @media (max-width: 1200px) {
        .popular-grid {
          grid-template-columns: repeat(4, minmax(0, 1fr));
        }
        .popular-card.dropdown-item {
          width: 220px;
        }
      }

      @media (max-width: 992px) {
        .popular-grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }
        .popular-card.dropdown-item {
          width: 200px;
        }
        .hero-section h1 {
          font-size: 28px;
        }
        .navbar-brand span {
          font-size: 20px;
        }
      }

      @media (max-width: 768px) {
        /* Top Bar */
        .top-bar {
          padding: 12px 0;
          font-size: 12px;
        }
        .top-bar .container > .d-flex {
          flex-direction: row;
          gap: 12px;
        }
        .top-bar .d-flex:first-child {
          width: 100%;
          justify-content: flex-start;
        }
        .top-bar .d-flex:last-child {
          width: 100%;
          justify-content: space-between;
          align-items: center;
          flex-wrap: nowrap;
        }
        .top-bar .secondary-btn {
          display: none;
        }
        .top-bar .primary-btn {
          font-size: 13px;
          padding: 10px 20px;
          font-weight: 700;
          text-transform: uppercase;
        }
        .top-bar .custom-btn {
          display: none;
        }
        .top-bar .custom-icon-btn {
          padding: 8px;
          width: 35px;
          height: 35px;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        .top-bar .custom-icon-btn img {
          width: 30px !important;
          height: 30px !important;
        }
        .top-bar-item span div {
          font-size: 12px;
        }

        /* Navbar */
        .navbar-brand {
          display: flex;
          align-items: center;
          gap: 10px;
        }
        .navbar-brand span {
          font-size: 18px;
          font-weight: 700;
          text-transform: uppercase;
        }
        .navbar-brand img {
          height: 35px;
        }
        .navbar-custom {
          padding: 15px 0;
        }
        .nav-link {
          font-size: 13px;
        }
        .navbar-nav {
          gap: 0 !important;
        }
        .navbar-nav .gap-2 {
          gap: 0.5rem !important;
        }
        .navbar-toggler {
          border: 1px solid rgba(255, 255, 255, 0.3);
          padding: 5px 10px;
        }

        /* Dropdowns */
        .popular-dropdown .dropdown-menu {
          min-width: 100%;
          left: 0;
          right: 0;
        }
        .popular-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 10px;
        }
        .popular-card.dropdown-item {
          width: 100%;
        }
        .dropdown-menu {
          max-width: 100%;
        }

        /* Hero Section */
        .hero-section {
          padding: 20px 0 30px;
        }
        .hero-section h1 {
          font-size: 24px;
          margin-bottom: 10px;
        }
        .hero-section p {
          font-size: 14px;
        }
        .hero-section .d-flex {
          flex-direction: column;
          gap: 15px;
          align-items: flex-start !important;
        }
        .hero-section .d-flex .white-action-btn {
          align-self: flex-start;
          font-size: 14px;
          padding: 8px 16px;
          margin-top: 5px;
        }

        /* Filter Cards */
        .filter-card {
          padding: 15px 18px 15px 20px;
        }
        .filter-card h5 {
          font-size: 15px;
        }
        .filter-card p {
          font-size: 13px;
        }
        .filter-card::before {
          left: 20px;
          width: 35px;
        }

        /* Tour Cards */
        .tour-image img {
          height: 200px;
        }
        .tour-title {
          font-size: 16px;
          min-height: auto;
        }
        .tour-content {
          padding: 15px;
        }
        .tour-content p {
          font-size: 14px;
        }
        .tour-meta {
          flex-direction: column;
          gap: 8px;
          margin-bottom: 12px;
        }
        .tour-time {
          font-size: 14px;
        }
        .tour-footer {
          flex-direction: column;
          gap: 15px;
          align-items: flex-start;
        }
        .btn-book {
          width: 100%;
          padding: 12px 20px;
        }
        .price-amount {
          font-size: 22px;
        }

        /* Footer */
        .footer {
          padding: 40px 0 15px;
        }
        .footer-logo span {
          font-size: 20px;
        }
        .footer-logo img {
          height: 35px;
        }
        .footer-warning-box {
          max-width: 100%;
          padding: 12px;
        }
        .footer-warning-box p {
          font-size: 12px;
        }
        .footer h5 {
          font-size: 15px;
          margin-bottom: 12px;
        }
        .footer ul li a,
        .footer-address {
          font-size: 12px;
        }
        .footer-legal-text {
          font-size: 10px;
          margin-top: 25px;
          padding-top: 15px;
        }
        .footer-copyright {
          flex-direction: column;
          gap: 15px;
          text-align: center;
        }
        .footer-logos {
          justify-content: center;
        }
        .footer-logos img {
          height: 35px;
        }
      }

      @media (max-width: 576px) {
        .container {
          padding-left: 15px;
          padding-right: 15px;
        }

        /* Top Bar */
        .top-bar .d-flex:first-child {
          width: 100%;
          margin-bottom: 10px;
          gap: 0.24rem !important;
        }
        .top-bar .d-flex:last-child {
          width: 100%;
          justify-content: flex-start;
          flex-wrap: nowrap;
        }
        .top-bar .secondary-btn,
        .top-bar .primary-btn,
        .top-bar .custom-btn {
          font-size: 11px;
          padding: 5px 10px;
        }
        .top-bar-item span div {
          font-size: 10px;
        }

        /* Navbar */
        .navbar-brand span {
          font-size: 16px;
        }
        .navbar-brand img {
          height: 30px;
        }

        /* Hero Section */
        .hero-section h1 {
          font-size: 20px;
        }
        .hero-section p {
          font-size: 13px;
        }

        /* Filter Cards */
        .filter-card {
          padding: 12px 15px 12px 17px;
        }
        .filter-card h5 {
          font-size: 14px;
        }

        /* Tour Cards */
        .tour-image img {
          height: 180px;
        }
        .tour-title {
          font-size: 15px;
        }
        .tour-content {
          padding: 12px;
        }
        .price-amount {
          font-size: 20px;
        }

        /* Footer */
        .footer-logo span {
          font-size: 18px;
        }
        .footer h5 {
          font-size: 14px;
        }
        .popular-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 400px) {
        .navbar-brand span {
          font-size: 14px;
        }
        .hero-section h1 {
          font-size: 18px;
        }
        .tour-image img {
          height: 160px;
        }
        .tour-title {
          font-size: 14px;
        }
      }

      .html-marquee {
        background: var(--primary-color);
        color: var(--secondary-color);
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        font-weight: bold;
        font-size: 12px;
      }

      .marquee-track {
        display: inline-flex;
        width: max-content;
        animation: marquee 25s linear infinite;
      }

      .html-marquee:hover .marquee-track {
        animation-play-state: paused;
      }

      .marquee-track p {
        margin: 0;
        padding: 7px 40px;
        white-space: nowrap;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
      }

      /* Keyframes */
      @keyframes marquee {
        0% {
          transform: translateX(0%);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      .top-bar-item {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 13px;
        color: var(--septenary-color);
      }

      .container {
        max-width: 1275px;
      }

      .secondary-btn {
        color: var(--septenary-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        transition: all 0.3s;
        padding: 8px 15px;
        border-radius: 20px;
        border: 1px solid var(--septenary-color);
        &:hover {
          color: var(--primary-color);
        }
      }

      .primary-btn {
        color: var(--secondary-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        transition: all 0.3s;
        padding: 8px 15px;
        background-color: var(--primary-color);
        border-radius: 20px;
        border: 1px solid var(--primary-color);
        &:hover {
          background-color: var(--secondary-color);
          color: var(--primary-color);
          border: 1px solid var(--primary-color);
        }
      }

      .custom-btn {
        color: var(--septenary-color);
        background-color: var(--green-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        transition: all 0.3s;
        padding: 8px 15px;
        border-radius: 20px;
        border: 1px solid var(--green-color);
        &:hover {
          background-color: var(--secondary-color);
          color: var(--green-color);
          border: 1px solid var(--green-color);
        }
      }

      .custom-icon-btn {
        color: var(--septenary-color);
        background-color: var(--green-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        transition: all 0.3s;
        padding: 2px 2px;
        border-radius: 50%;
        border: 1px solid var(--green-color);
      }

      .popular-card img {
        height: 125px;
        width: -webkit-fill-available;
        border-radius: 10px;
        background-size: cover;
        border: 1px solid var(--septenary-color);
      }
      .white-action-btn {
        color: var(--secondary-color);
        background-color: var(--septenary-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        transition: all 0.3s;
        padding: 8px 15px;
        border-radius: 20px;
        border: 1px solid var(--septenary-color);
      }
      .location-icon {
        color: var(--green-color);
      }
      .calendar-icon {
        color: var(--primary-color);
      }
      .filter-card .icon i {
        background-color: #314158;
        color: var(--septenary-color);
        border: 1px solid var(--secondary-color);
        padding: 10px 13px;
        border-radius: 50%;
      }
      .filter-card:hover .icon i {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        border: 1px solid var(--primary-color);
      }
      .filter-card a {
        text-decoration: none;
      }
      .tour-time {
        font-size: 16px;
        color: var(--septenary-color);
      }
      .tour-fee {
        background-color: var(--septenary-color);
        font-size: 12px;
        border-radius: 10px;
        padding: 3px 8px;
        font-weight: bold;
        font-family: "Poppins", sans-serif;
      }
      .included {
        color: green;
      }
      .not-included {
        color: rgb(245, 62, 62);
      }
      .footer-icon {
        color: var(--green-color);
      }
      .footer p {
        font-size: 14px;
        color: #8a8fa3;
      }
      .footer-warning-box p {
        color: #ffa2a2;
      }
      
      
      .whatsapp-icon {
  font-size: 40px;      /* Icon ka size */
  color: #25D366;       /* WhatsApp ka green color */
 /* background-color: white;
  padding: 12px; */
  /*border-radius: 50%; */   /* Circular icon */
  /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */ /* Shadow around the icon */
}

 
  .whatsapp-icon {
    font-size: 30px; /* Smaller icon size on mobile */
  }
  
  		/* Container with both icon and text */
.whatsapp-container {
  position: fixed;
  top: 50%;         /* Screen ke neeche se thoda upar */
  right: 0px;          /* Screen ke right side pe */
  display: flex;
  align-items: center;  /* Vertically align icon and text */
  justify-content: center; /* Horizontally center */
  flex-direction: column; /* Stack the icon and text vertically */
  background-color:#fff2d1;
  border-radius: 5px;
  /*box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);*/
  padding: 10px;
  z-index: 1000;  /* Ensure it's on top */
  text-decoration: none;  /* Remove default underline */
  width: 100px;   /* Set a fixed width for the container */
  cursor: pointer;
}


.whatsapp-text-container {
  text-align: center;  /* Center the text inside the container */
  padding-top: 8px;
}

.whatsapp-text-container {
  text-align: center;  /* Center the text inside the container */
  padding-top: 8px;
}

.whatsapp-text {
  font-size: 14px;      /* Text size */
  font-weight: bold;    /* Bold text */
  color: #333;          /* Text color */
  margin: 0;            /* Remove default margin */
}


  .whatsapp-text {
    font-size: 12px; /* Smaller text size on mobile */
  }

/* Booking Modal Styles */
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 6, 24, 0.9);
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}

.booking-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, #1a1f3a 0%, #0f1429 100%);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  position: relative;
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 50px rgba(182, 219, 45, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.modal-close:hover {
  transform: rotate(90deg);
  background-color: #d9ff00;
}

.modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid rgba(182, 219, 45, 0.3);
}

.modal-tour-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--septenary-color);
  margin-bottom: 15px;
  line-height: 1.4;
  padding-right: 40px;
}

.modal-tour-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  color: #8a8fa3;
}

.modal-tour-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.modal-tour-info i {
  color: var(--primary-color);
}

.modal-body {
  padding: 30px;
}

.modal-price-section {
  background: rgba(182, 219, 45, 0.1);
  border: 1px solid rgba(182, 219, 45, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
}

.modal-price-section .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-price-section .original-price {
  text-decoration: line-through;
  color: #8a8fa3;
  font-size: 16px;
}

.modal-price-section .current-price {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
}

.modal-price-section .per-person {
  font-size: 12px;
  color: #8a8fa3;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--septenary-color);
}

.form-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 15px;
  color: var(--septenary-color);
  font-family: "Poppins", sans-serif;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(182, 219, 45, 0.2);
}

.form-group input::placeholder {
  color: #8a8fa3;
}

.submit-btn {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #d9ff00;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(182, 219, 45, 0.4);
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .modal-content {
    margin: 10px;
  }

  .modal-header {
    padding: 20px 20px 15px;
  }

  .modal-tour-title {
    font-size: 18px;
    padding-right: 35px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-price-section .current-price {
    font-size: 24px;
  }

  .form-group input {
    padding: 10px 12px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
}
/* Instagram SVG Icon - Embedded */
.krabi-instagram-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Main Badge Container - Hidden by default */
.krabi-voyager-insta-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: all 0.3s ease;
    display: none;
}

/* Badge Link Styling */
.krabi-insta-link {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 300px;
}

.krabi-insta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Text inside badge */
.krabi-badge-text {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Arial, sans-serif;
}

.krabi-username {
    font-weight: 700;
    margin-left: 4px;
}

/* Close button */
.krabi-badge-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 18px;
    font-family: Arial, sans-serif;
    transition: background 0.2s;
}

.krabi-badge-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Minimized state */
.krabi-voyager-insta-badge.krabi-minimized .krabi-insta-link {
    width: 40px;
    /* justify-content: center; */
    padding: 8px;
}

.krabi-voyager-insta-badge.krabi-minimized .krabi-badge-text,
.krabi-voyager-insta-badge.krabi-minimized .krabi-badge-close {
    display: none;
}

/* Show only on mobile (max-width: 768px) */
@media (max-width: 768px) {
    .krabi-voyager-insta-badge {
        display: block;
        bottom: 15px;
        right: 15px;
    }
    
    .krabi-insta-link {
        padding: 10px 16px;
    }
    
    .krabi-badge-text {
        font-size: 14px;
    }
}

/* Adjustments for very small screens */
@media (max-width: 576px) {
    .krabi-voyager-insta-badge:not(.krabi-minimized) {
        width: calc(100% - 30px);
        right: 15px;
    }
    
    .krabi-voyager-insta-badge:not(.krabi-minimized) .krabi-insta-link {
        max-width: 100%;
    }
    
    .krabi-badge-text {
        white-space: normal;
    }
}