* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #f2e9de;   /* warm neutral */
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
    }

    /* main card – normal, with subtle border and padding */
    .tour-card {
      max-width: 1200px;
      width: 100%;
      background: #ffffff;
      border-radius: 32px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
      padding: 2rem 2rem;
      border: 1px solid #e6d5c0;
    }

    /* ----- slider box – increased size for mobile via aspect-ratio + media ----- */
    .slider-box {
      position: relative;
      width: 100%;
      border-radius: 24px;
      overflow: hidden;
      margin-bottom: 2rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .slider-view {
      width: 100%;
      /* DEFAULT aspect ratio (desktop/tablet) – medium size */
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    /* 🟢 ON MOBILE: make slider TALLER – increase aspect ratio height */
    @media (max-width: 600px) {
      .slider-view {
        aspect-ratio: 4 / 3;   /* 33% more height than 16:9 – looks significantly larger on mobile */
      }
      /* also slightly reduce card padding on small devices to give more space */
      .tour-card {
        padding: 1.2rem 1rem;
      }
      .slider-box {
        border-radius: 20px;
      }
    }

    .slider-track {
      display: flex;
      height: 100%;
      transition: transform 0.4s ease;
    }

    .slider-track .slide {
      flex: 0 0 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    /* simple arrow buttons */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.8);
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 40px;
      font-size: 1.8rem;
      color: #7b4a2b;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      transition: 0.2s;
    }

    .slider-arrow:hover {
      background: #ffffff;
      color: #b45f2b;
    }

    .slider-arrow.left {
      left: 16px;
    }
    .slider-arrow.right {
      right: 16px;
    }

    /* mobile: slightly smaller arrows but still visible */
    @media (max-width: 600px) {
      .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
      }
    }

    /* small dot indicators */
    .dot-row {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin: 16px 0 8px;
    }

    .dot-simple {
      width: 12px;
      height: 12px;
      background: #d6b69a;
      border-radius: 20px;
      border: none;
      cursor: pointer;
      transition: 0.2s;
    }

    .dot-simple.active {
      background: #b45f2b;
      width: 28px;
    }

    /* title and short info */
    .tour-title {
      font-size: 2.4rem;
      font-weight: 700;
      color: #2f1f12;
      margin-bottom: 0.3rem;
    }

    .meta-line {
      display: flex;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
      color: #5f4a36;
      font-weight: 500;
    }

    .meta-line i {
      color: #c96f2e;
      margin-right: 6px;
    }

    .rating {
      background: #fae1ce;
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-size: 1rem;
    }

    /* flex for main content: left (details) + right (booking) */
    .details-panel {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 0.5rem;
    }

    .info-col {
      flex: 2;
      min-width: 300px;
    }

    .action-col {
      flex: 1;
      min-width: 250px;
    }

    /* deep details – normal box, clean */
    .deep-text {
      background: #faf5ef;
      padding: 1.8rem 2rem;
      border-radius: 24px;
      border: 1px solid #e5cfbb;
    }

    .deep-text p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #35291e;
      margin-bottom: 1.5rem;
    }

    .feature-list {
      list-style: none;
      margin-top: 1.2rem;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0.8rem 0;
      border-bottom: 1px dashed #dbb99a;
      font-size: 1.1rem;
      color: #3f2d1b;
    }

    .feature-list li i {
      width: 28px;
      color: #c96f2e;
      font-size: 1.4rem;
    }

    /* right side – price, buttons */
    .price-card {
      background: #f3e5d8;
      border-radius: 24px;
      padding: 1.8rem 1.5rem;
      text-align: center;
      border: 1px solid #ddb590;
      margin-bottom: 1.5rem;
    }

    .price-amount {
      font-size: 3rem;
      font-weight: 700;
      color: #2e1b0d;
    }

    .price-amount small {
      font-size: 1.2rem;
      color: #77553a;
    }

    .price-note {
      margin-top: 8px;
      color: #674d34;
    }

    /* BUTTONS AS ANCHORS – no default underline, block display */
    .btn {
      display: block;
      width: 100%;
      padding: 1rem;
      border: none;
      border-radius: 60px;
      font-size: 1.4rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      cursor: pointer;
      transition: 0.15s;
      border: 1px solid transparent;
      text-decoration: none;       /* remove underline for anchor */
      box-sizing: border-box;
    }

    .btn-book {
      background: #f57c2e;
      color: #1f1106;
      border-color: #d56d27;
      margin-bottom: 1rem;
    }

    .btn-book:hover {
      background: #e0691d;
    }

    .btn-wa {
      background: #25D366;
      color: #0b3520;
      border-color: #1da858;
    }

    .btn-wa:hover {
      background: #20b859;
    }

    .btn i {
      font-size: 1.8rem;
    }

    .extra-trust {
      margin-top: 1.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: #f9efe4;
      padding: 0.8rem 1rem;
      border-radius: 60px;
      font-size: 1rem;
      color: #4c3825;
      border: 1px solid #e1c2a5;
    }

    /* no footer, no navbar – just the card */
    @media (max-width: 650px) {
      .tour-title { font-size: 2rem; }
    }

    /* slide images – simple unsplash, peaceful (same as before) */
    .slide1 { background-image: url('/image/tours/sunset-aarti/sunrise-boatride.webp'); }
    .slide2 { background-image: url('/image/tours/sunset-aarti/Varanasi-evening-ganga-aarti.webp'); }
    .slide3 { background-image: url('/image/tours/sunset-aarti/Ganga-Aarti-Assi-Ghat.webp'); }
    .slide4 { background-image: url('/image/tours/sunset-aarti/Cremation-Ghat.webp'); }
    .slide5 { background-image: url('/image/tours/sunset-aarti/Manikarnika-ghat.webp'); }