* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }

  /* SECTION */
  .tour-section {
    background: #ffffff;
    padding: 40px 15px 80px;
    position: relative;
    overflow: hidden;
  }
  
  img.lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

img.lazy.loaded {
  opacity: 1;
}

  /* BUBBLES */
  .bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
      circle at 30% 30%,
      #ffdf04,
      #eed006
    );
    opacity: 0.5;
    animation: bubbleUp 10s linear infinite;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 20px rgba(255, 223, 4, 0.6);
  }
  .bubble1 {
    width: 120px;
    height: 120px;
    left: 15%;
    bottom: -140px;
    animation-delay: 0s;
  }
  .bubble2 {
    width: 90px;
    height: 90px;
    left: 50%;
    bottom: -100px;
    animation-delay: 4s;
  }
  .bubble3 {
    width: 70px;
    height: 70px;
    left: 80%;
    bottom: -90px;
    animation-delay: 7s;
  }
  @keyframes bubbleUp {
    0% {
      transform: translateY(0) translateX(0);
      opacity: 0.5;
    }
    50% {
      opacity: 0.25;
    }
    100% {
      transform: translateY(-600px) translateX(30px);
      opacity: 0;
    }
  }

  /* HEADING RIBBON */
  .ribbon-wrap {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
  }
  .ribbon {
    position: relative;
    display: inline-block;
    background: #ffdf04;
    padding: 14px 40px;
    font-weight: 900;
    border-radius: 12px;
  }
  .ribbon::before,
  .ribbon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background: #ffdf04;
    transform: translateY(-50%) rotate(45deg);
  }
  .ribbon::before {
    left: -15px;
  }
  .ribbon::after {
    right: -15px;
  }
  .ribbon h2 {
    font-size: 20px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff003c, #ff6a00, #ff003c);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleMove 4s linear infinite;
  }
  @keyframes titleMove {
    to {
      background-position: 300%;
    }
  }

  /* GRID */
  .tour-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
  }

  /* CARD */
  .tour-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    padding-bottom: 20px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .tour-card:hover {
    transform: translateY(-6px);
  }

  /* IMAGE */
  .tour-image {
    width: 90%;
    height: 220px;
    margin: 20px auto 15px;
    display: block;
    object-fit: contain;
    background: #f7f7f7;
    border-radius: 16px;
    border: 3px solid #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    padding: 8px;
  }

  /* TOUR TITLE */
  .tour-card h3 {
    margin: 10px 20px 18px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
  }
  .tour-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff003c, #ff6a00, #ff003c);
    background-size: 200%;
    animation: underline 2s linear infinite;
  }
  @keyframes underline {
    to {
      background-position: 200%;
    }
  }

  /* BULLET ALIGNMENT */
  .tour-info {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 15px;
  }
  .tour-info li {
    display: grid;
    grid-template-columns: 20px 140px 1fr;
    column-gap: 8px;
    align-items: start;
    margin-bottom: 10px;
    font-size: 14.5px;
    color: #333;
  }
  .tour-info i {
    color: red;
    margin-top: 4px;
  }
  .tour-info strong {
    font-weight: 700;
    white-space: nowrap;
  }

  /* BUTTON */
  .read-more {
    margin: 10px 20px 10px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 40px;
    background: linear-gradient(45deg, #ffdf04, #eed006, #ffdf04);
    background-size: 300%;
    animation: btnMove 3s infinite;
    color: red;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    z-index: 2;
    text-align: center;
    transition: transform 0.3s ease;
  }
  .read-more:hover {
    transform: translateY(-3px) scale(1.05);
  }
  @keyframes btnMove {
    to {
      background-position: 300%;
    }
  }

  /* SOCIAL LINKS */
  .social-links {
    margin: 10px 20px 0;
    display: flex;
    justify-content: flex-start;
    gap: 14px;
  }
  .social-links li {
    list-style: none;
  }
  .social-links a {
    display: inline-block;
    font-size: 22px;
    color: #ff003c;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 6px;
  }
  .social-links a:hover {
    color: #ff6a00;
    transform: scale(1.2);
    text-shadow: 0 0 6px #ff6a00;
  }

  /* MOBILE FIXES */
  @media (max-width: 600px) {
    .ribbon h2 {
      font-size: 16px;
    }
    .tour-image {
      height: 200px;
    }
    .tour-card h3 {
      font-size: 18px;
    }
  }