:root {
      --primary: #1a6b3a;
      --primary-dark: #0f4524;
      --accent: #f4a61d;
      --accent2: #e8521a;
      --light: #f5f9f5;
      --text: #1e1e1e;
      --text-muted: #555;
      --white: #ffffff;
      --card-bg: #ffffff;
      --shadow: 0 8px 32px rgba(26, 107, 58, 0.12);
    }

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

    body {
      font-family: 'Hind Siliguri', sans-serif;
      background: var(--light);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(15, 69, 36, 0.96);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 40px;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-logo {
      color: var(--white);
      font-size: 1.15rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .nav-logo span {
      color: var(--accent);
      display: block;
      font-size: .75rem;
      font-weight: 400;
      letter-spacing: 1px;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, .85);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 500;
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    .nav-contact {
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 9px 20px;
      border-radius: 30px;
      font-family: inherit;
      font-size: .9rem;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s;
    }

    .nav-contact:hover {
      background: var(--accent2);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--primary-dark) 0%, #1a6b3a 50%, #2d8a52 100%);
      position: relative;
      display: flex;
      align-items: center;
      padding: 100px 40px 60px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1596422846543-75c6fc197f07?w=1600&q=80') center/cover no-repeat;
      opacity: .18;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(10, 40, 20, .85) 40%, rgba(10, 40, 20, .3));
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 620px;
    }

    .hero-badge {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 20px;
      animation: fadeUp .6s ease both;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      color: #fff;
      line-height: 1.15;
      margin-bottom: 10px;
      animation: fadeUp .7s .1s ease both;
    }

    .hero h1 em {
      color: var(--accent);
      font-style: normal;
    }

    .hero-tagline {
      color: rgba(255, 255, 255, .75);
      font-size: 1rem;
      margin-bottom: 8px;
      animation: fadeUp .7s .15s ease both;
    }

    .hero p {
      color: rgba(255, 255, 255, .8);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 32px;
      animation: fadeUp .7s .2s ease both;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp .7s .3s ease both;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 13px 30px;
      border-radius: 40px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .25s;
      box-shadow: 0 4px 20px rgba(244, 166, 29, .4);
    }

    .btn-primary:hover {
      background: var(--accent2);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, .5);
      padding: 13px 28px;
      border-radius: 40px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .25s;
    }

    .btn-outline:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .1);
    }

    /* Hero floating cards */
    .hero-stats {
      position: absolute;
      right: 60px;
      bottom: 60px;
      z-index: 2;
      display: flex;
      gap: 16px;
      animation: fadeUp .8s .4s ease both;
    }

    .stat-card {
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 16px;
      padding: 18px 22px;
      text-align: center;
      color: #fff;
    }

    .stat-card .num {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--accent);
    }

    .stat-card .lbl {
      font-size: .78rem;
      opacity: .8;
    }

    /* ── SECTIONS ── */
    section {
      padding: 80px 40px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .section-tag {
      display: inline-block;
      background: rgba(26, 107, 58, .1);
      color: var(--primary);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 12px;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--primary-dark);
      line-height: 1.2;
    }

    .section-header p {
      color: var(--text-muted);
      font-size: 1rem;
      margin-top: 10px;
      max-width: 520px;
      margin-inline: auto;
    }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img {
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
      height: 420px;
      box-shadow: var(--shadow);
    }

    .about-badge {
      position: absolute;
      bottom: 24px;
      left: -24px;
      background: var(--accent);
      color: #fff;
      border-radius: 14px;
      padding: 18px 22px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(244, 166, 29, .4);
    }

    .about-badge .big {
      font-size: 2rem;
      font-weight: 700;
      display: block;
    }

    .about-badge .sm {
      font-size: .75rem;
    }

    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--primary-dark);
      margin-bottom: 16px;
    }

    .about-text p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .about-features {
      list-style: none;
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .about-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-size: .95rem;
    }

    .about-features li::before {
      content: '✓';
      background: var(--primary);
      color: #fff;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
      flex-shrink: 0;
    }

    /* ── PACKAGES ── */
    .packages-section {
      background: #fff;
    }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .pkg-card {
      border-radius: 20px;
      overflow: hidden;
      background: var(--card-bg);
      box-shadow: var(--shadow);
      transition: transform .3s, box-shadow .3s;
      border: 1px solid rgba(26, 107, 58, .08);
      display: flex;
      flex-direction: column;
    }

    .pkg-body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* push action row to bottom so all cards align */
    .pkg-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(26, 107, 58, .18);
    }

    .pkg-img {
      height: 210px;
      object-fit: cover;
      width: 100%;
      display: block;
    }

    .pkg-img-placeholder {
      height: 210px;
      background: linear-gradient(135deg, var(--primary) 0%, #2d8a52 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
    }

    .pkg-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }

    .pkg-tag {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 20px;
      background: rgba(26, 107, 58, .1);
      color: var(--primary);
    }

    .pkg-tag.hot {
      background: rgba(232, 82, 26, .1);
      color: var(--accent2);
    }

    .pkg-body h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 6px;
    }

    .pkg-meta {
      color: var(--text-muted);
      font-size: .88rem;
      margin-bottom: 14px;
    }

    .pkg-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 16px;
    }

    .pkg-price .amount {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
    }

    .pkg-price .suffix {
      color: var(--text-muted);
      font-size: .85rem;
    }

    .pkg-includes h4 {
      font-size: .82rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .pkg-includes ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .pkg-includes li {
      font-size: .88rem;
      color: var(--text);
      display: flex;
      align-items: flex-start;
      gap: 7px;
    }

    .pkg-includes li::before {
      content: '✓';
      color: var(--primary);
      font-weight: 700;
      flex-shrink: 0;
    }

    .pkg-excludes li::before {
      content: '✗';
      color: #d00 !important;
    }

    .divider {
      border: none;
      border-top: 1px solid #eee;
      margin: 14px 0;
    }

    .pkg-btn {
      width: 100%;
      margin-top: 18px;
      background: var(--primary);
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 30px;
      font-family: inherit;
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s;
      text-decoration: none;
      display: block;
      text-align: center;
    }

    .pkg-btn:hover {
      background: var(--primary-dark);
    }

    /* ── CARD BOTTOM ACTION ROW ── */
    .pkg-action-row {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }

    .pkg-book-btn {
      flex: 1.6;
      margin-top: 0 !important;
    }

    .pkg-detail-inline {
      flex: 1;
      margin-top: 0 !important;
      background: transparent !important;
      color: var(--primary-dark) !important;
      border: 1.5px solid rgba(26,107,58,.3) !important;
      font-size: .85rem !important;
    }

    .pkg-detail-inline:hover {
      background: var(--primary) !important;
      color: #fff !important;
      border-color: var(--primary) !important;
    }

    /* ── SERVICES ── */
    .services-section {
      background: linear-gradient(135deg, var(--primary-dark) 0%, #1a6b3a 100%);
      color: #fff;
    }

    .services-section .section-tag {
      background: rgba(255, 255, 255, .15);
      color: rgba(255, 255, 255, .9);
    }

    .services-section .section-header h2 {
      color: #fff;
    }

    .services-section .section-header p {
      color: rgba(255, 255, 255, .7);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .svc-card {
      background: rgba(255, 255, 255, .1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 18px;
      padding: 28px 22px;
      text-align: center;
      transition: background .3s, transform .3s;
    }

    .svc-card:hover {
      background: rgba(255, 255, 255, .18);
      transform: translateY(-4px);
    }

    .svc-icon {
      font-size: 2.4rem;
      margin-bottom: 14px;
    }

    .svc-card h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .svc-card p {
      font-size: .85rem;
      color: rgba(255, 255, 255, .7);
      line-height: 1.6;
    }

    /* ── CONTACT ── */
    .contact-section {
      background: #fff;
    }

    .contact-wrap {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--primary-dark);
      margin-bottom: 20px;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 22px;
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      background: rgba(26, 107, 58, .1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .contact-item strong {
      display: block;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted);
      margin-bottom: 2px;
    }

    .contact-item a,
    .contact-item span {
      color: var(--primary-dark);
      text-decoration: none;
      font-weight: 600;
      font-size: .97rem;
    }

    .contact-item a:hover {
      color: var(--primary);
    }

    .contact-cta {
      background: linear-gradient(135deg, var(--primary) 0%, #2d8a52 100%);
      border-radius: 20px;
      padding: 36px;
      color: #fff;
      text-align: center;
    }

    .contact-cta h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      margin-bottom: 12px;
    }

    .contact-cta p {
      font-size: .9rem;
      color: rgba(255, 255, 255, .8);
      margin-bottom: 22px;
      line-height: 1.6;
    }

    .wa-btn {
      background: #25D366;
      color: #fff;
      border: none;
      padding: 12px 28px;
      border-radius: 30px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background .2s;
      margin-bottom: 12px;
      width: 100%;
    }

    .wa-btn:hover {
      background: #1ebe5d;
    }

    .fb-btn {
      background: #1877F2;
      color: #fff;
      border: none;
      padding: 12px 28px;
      border-radius: 30px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background .2s;
      width: 100%;
    }

    .fb-btn:hover {
      background: #1464d8;
    }

    /* ── WhatsApp Text Box ── */
    .wa-input-wrap {
      margin-bottom: 12px;
    }

    .wa-textarea {
      width: 100%;
      background: rgba(255,255,255,.15);
      border: 1.5px solid rgba(255,255,255,.35);
      border-radius: 14px;
      color: #fff;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: .95rem;
      padding: 12px 16px;
      resize: none;
      outline: none;
      margin-bottom: 10px;
      transition: border-color .2s;
      display: block;
    }

    .wa-textarea::placeholder {
      color: rgba(255,255,255,.6);
    }

    .wa-textarea:focus {
      border-color: #25D366;
    }

    .wa-send-btn {
      width: 100%;
      background: #25D366;
      color: #fff;
      border: none;
      padding: 12px 28px;
      border-radius: 30px;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: block;
      transition: background .2s;
      margin-bottom: 0;
    }

    .wa-send-btn:hover {
      background: #1ebe5d;
    }

    /* ── Booking Form ── */
    .booking-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 12px;
    }

    .bf-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
      text-align: left;
    }

    .bf-label {
      font-size: .82rem;
      font-weight: 700;
      color: rgba(255,255,255,.85);
      letter-spacing: .3px;
    }

    .bf-input {
      width: 100%;
      background: rgba(255,255,255,.15);
      border: 1.5px solid rgba(255,255,255,.3);
      border-radius: 12px;
      color: #fff;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: .92rem;
      padding: 10px 14px;
      outline: none;
      transition: border-color .2s, background .2s;
      appearance: none;
      -webkit-appearance: none;
    }

    .bf-input::placeholder {
      color: rgba(255,255,255,.5);
    }

    .bf-input:focus {
      border-color: #25D366;
      background: rgba(255,255,255,.2);
    }

    select.bf-input option {
      background: #1a6b3a;
      color: #fff;
    }

    .bf-textarea {
      resize: none;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--primary-dark);
      color: rgba(255, 255, 255, .7);
      padding: 36px 40px 20px;
      text-align: center;
    }

    .footer-logo {
      color: #fff;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .footer-logo span {
      color: var(--accent);
    }

    .footer-tagline {
      font-size: .8rem;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, .5);
      font-style: italic;
    }

    .footer-links {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .6);
      text-decoration: none;
      font-size: .85rem;
      transition: color .2s;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding-top: 16px;
      font-size: .78rem;
    }

    .footer-bottom a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

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

    /* ── RESPONSIVE ── */

    /* Tablet: 2 columns */
    @media (max-width: 1024px) and (min-width: 769px) {
      .packages-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      nav {
        padding: 12px 20px;
      }

      .nav-links {
        display: none;
      }

      .packages-grid {
        grid-template-columns: 1fr;
      }

      section {
        padding: 60px 20px;
      }

      .hero {
        padding: 100px 20px 160px;
      }

      .hero-stats {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 32px;
        flex-wrap: wrap;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-badge {
        left: 16px;
      }

      .contact-wrap {
        grid-template-columns: 1fr;
      }
    }

    /* ══════════════════════════════════════════
       SAJEK PREMIUM — CARD IMAGE + DETAILS BTN
    ══════════════════════════════════════════ */

    /* Image wrapper for the Sajek Premium card */
    .pkg-img-wrap {
      position: relative;
      height: 210px;
      overflow: hidden;
    }

    .pkg-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }

    .pkg-card:hover .pkg-img-wrap img {
      transform: scale(1.05);
    }

    /* "বিস্তারিত দেখুন" button — card body তে */
    .pkg-detail-btn {
      position: absolute;
      bottom: 14px;
      right: 14px;
      background: rgba(15, 69, 36, 0.88);
      backdrop-filter: blur(6px);
      color: #fff;
      border: 1.5px solid rgba(255,255,255,.3);
      padding: 8px 18px;
      border-radius: 30px;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background .2s, transform .2s, border-color .2s;
      z-index: 2;
      letter-spacing: .3px;
    }

    .pkg-detail-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-2px);
    }

    /* ══════════════════════════════════════════
       MODAL OVERLAY
    ══════════════════════════════════════════ */
    .pkg-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(5, 25, 12, 0.72);
      backdrop-filter: blur(6px);
      align-items: center;
      justify-content: center;
      padding: 20px;
      animation: overlayIn .25s ease both;
    }

    .pkg-modal-overlay.active {
      display: flex;
    }

    @keyframes overlayIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .pkg-modal {
      background: #fff;
      border-radius: 24px;
      max-width: 680px;
      width: 100%;
      max-height: 92vh;
      overflow-y: auto;
      position: relative;
      animation: modalUp .3s ease both;
      box-shadow: 0 24px 80px rgba(0,0,0,.35);
    }

    @keyframes modalUp {
      from { opacity: 0; transform: translateY(40px) scale(.97); }
      to   { opacity: 1; transform: translateY(0)    scale(1);   }
    }

    /* Close button */
    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 10;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0,0,0,.45);
      color: #fff;
      border: none;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
      line-height: 1;
    }

    .modal-close:hover {
      background: var(--accent2);
    }

    /* ── SLIDER ── */
    .modal-slider {
      position: relative;
      height: 280px;
      overflow: hidden;
      border-radius: 24px 24px 0 0;
      background: var(--primary-dark);
    }

    .slider-track {
      display: flex;
      height: 100%;
      transition: transform .45s cubic-bezier(.4,0,.2,1);
    }

    .slider-track img {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Slider arrows */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,.42);
      color: #fff;
      border: none;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
      z-index: 5;
    }

    .slider-arrow:hover {
      background: var(--primary);
    }

    .slider-arrow.prev { left: 12px; }
    .slider-arrow.next { right: 12px; }

    /* Dots */
    .slider-dots {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 7px;
      z-index: 5;
    }

    .slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.45);
      border: none;
      cursor: pointer;
      transition: background .2s, transform .2s;
      padding: 0;
    }

    .slider-dot.active {
      background: var(--accent);
      transform: scale(1.3);
    }

    /* Slide counter badge */
    .slider-counter {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(0,0,0,.45);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      z-index: 5;
    }

    /* ── MODAL BODY ── */
    .modal-body {
      padding: 28px 30px 30px;
    }

    .modal-header-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 6px;
    }

    .modal-body h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      color: var(--primary-dark);
      line-height: 1.2;
    }

    .modal-price-badge {
      background: var(--accent);
      color: #fff;
      border-radius: 12px;
      padding: 8px 16px;
      text-align: right;
      flex-shrink: 0;
    }

    .modal-price-badge .mp-amt {
      font-size: 1.4rem;
      font-weight: 700;
      display: block;
      line-height: 1;
    }

    .modal-price-badge .mp-lbl {
      font-size: .68rem;
      opacity: .9;
    }

    .modal-meta {
      color: var(--text-muted);
      font-size: .88rem;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Highlights strip */
    .modal-highlights {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .modal-highlight {
      background: rgba(26,107,58,.08);
      color: var(--primary-dark);
      border-radius: 10px;
      padding: 8px 14px;
      font-size: .82rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(26,107,58,.12);
    }

    /* Detail sections */
    .modal-section {
      margin-bottom: 20px;
    }

    .modal-section-title {
      font-size: .78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: var(--text-muted);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .modal-section-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #eee;
    }

    .modal-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7px 16px;
    }

    .modal-list li {
      font-size: .88rem;
      color: var(--text);
      display: flex;
      align-items: flex-start;
      gap: 7px;
    }

    .modal-list li.inc::before {
      content: '✓';
      color: var(--primary);
      font-weight: 700;
      flex-shrink: 0;
    }

    .modal-list li.exc::before {
      content: '✗';
      color: #c00;
      font-weight: 700;
      flex-shrink: 0;
    }

    .modal-note {
      background: rgba(244,166,29,.1);
      border-left: 3px solid var(--accent);
      border-radius: 0 10px 10px 0;
      padding: 10px 14px;
      font-size: .85rem;
      color: var(--text);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .modal-note strong {
      color: var(--primary-dark);
    }

    /* CTA buttons */
    .modal-cta-row {
      display: flex;
      gap: 10px;
      margin-top: 6px;
    }

    .modal-wa-btn {
      flex: 1;
      background: #25D366;
      color: #fff;
      border: none;
      padding: 13px 20px;
      border-radius: 30px;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .2s, transform .2s;
    }

    .modal-wa-btn:hover {
      background: #1ebe5d;
      transform: translateY(-2px);
    }

    .modal-fb-btn {
      flex: 1;
      background: #1877F2;
      color: #fff;
      border: none;
      padding: 13px 20px;
      border-radius: 30px;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .2s, transform .2s;
    }

    .modal-fb-btn:hover {
      background: #1464d8;
      transform: translateY(-2px);
    }

    /* Scrollbar inside modal */
    .pkg-modal::-webkit-scrollbar { width: 5px; }
    .pkg-modal::-webkit-scrollbar-track { background: #f0f0f0; }
    .pkg-modal::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

    @media (max-width: 600px) {
      .modal-body { padding: 20px 18px 24px; }
      .modal-slider { height: 220px; }
      .modal-list { grid-template-columns: 1fr; }
      .modal-cta-row { flex-direction: column; }
      .modal-header-row { flex-direction: column; }
    }

    /* ══════════════════════════════════════════
       FULL PAGE DETAIL VIEW (সাজেক প্রিমিয়াম style)
    ══════════════════════════════════════════ */
    .detail-page {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 3000;
      background: var(--light);
      overflow-y: auto;
      animation: pageIn .3s ease both;
    }

    .detail-page.active {
      display: block;
    }

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

    /* Detail page top bar */
    .detail-topbar {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(15, 69, 36, 0.97);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 28px;
      box-shadow: 0 2px 20px rgba(0,0,0,.25);
    }

    .detail-back-btn {
      background: rgba(255,255,255,.15);
      color: #fff;
      border: 1.5px solid rgba(255,255,255,.3);
      padding: 8px 18px;
      border-radius: 30px;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: background .2s;
    }

    .detail-back-btn:hover {
      background: rgba(255,255,255,.25);
    }

    .detail-topbar-title {
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      text-align: center;
      flex: 1;
      padding: 0 16px;
    }

    .detail-topbar-title span {
      color: var(--accent);
    }

    .detail-book-btn-top {
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 9px 20px;
      border-radius: 30px;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: .9rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background .2s;
    }

    .detail-book-btn-top:hover {
      background: var(--accent2);
    }

    /* Detail page hero slider */
    .detail-slider {
      position: relative;
      height: 380px;
      overflow: hidden;
      background: var(--primary-dark);
    }

    .detail-slider-track {
      display: flex;
      height: 100%;
      transition: transform .45s cubic-bezier(.4,0,.2,1);
    }

    .detail-slider-track img {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .detail-slider-track .slide-placeholder {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-dark) 0%, #2d8a52 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 6rem;
    }

    .detail-slider .slider-arrow { z-index: 5; }
    .detail-slider .slider-arrow.prev { left: 16px; }
    .detail-slider .slider-arrow.next { right: 16px; }
    .detail-slider .slider-dots { bottom: 16px; }
    .detail-slider .slider-counter { top: 16px; left: 16px; }

    /* Gradient overlay on slider */
    .detail-slider::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to top, var(--light), transparent);
      pointer-events: none;
    }

    /* Detail content */
    .detail-content {
      max-width: 760px;
      margin: 0 auto;
      padding: 32px 28px 60px;
    }

    .detail-header-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 8px;
    }

    .detail-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      color: var(--primary-dark);
      line-height: 1.2;
    }

    .detail-price-badge {
      background: var(--accent);
      color: #fff;
      border-radius: 14px;
      padding: 10px 20px;
      text-align: right;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(244,166,29,.35);
    }

    .detail-price-badge .dp-amt {
      font-size: 1.7rem;
      font-weight: 700;
      display: block;
      line-height: 1;
    }

    .detail-price-badge .dp-lbl {
      font-size: .72rem;
      opacity: .9;
    }

    .detail-meta {
      color: var(--text-muted);
      font-size: .92rem;
      margin-bottom: 22px;
    }

    /* Highlights strip */
    .detail-highlights {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .detail-highlight {
      background: rgba(26,107,58,.08);
      color: var(--primary-dark);
      border-radius: 10px;
      padding: 9px 16px;
      font-size: .85rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(26,107,58,.12);
    }

    /* Detail sections */
    .detail-section {
      background: #fff;
      border-radius: 18px;
      padding: 24px 26px;
      margin-bottom: 18px;
      box-shadow: 0 4px 18px rgba(26,107,58,.07);
      border: 1px solid rgba(26,107,58,.07);
    }

    .detail-section-title {
      font-size: .8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.3px;
      color: var(--text-muted);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .detail-section-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #eee;
    }

    .detail-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 9px 20px;
    }

    .detail-list li {
      font-size: .92rem;
      color: var(--text);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.5;
    }

    .detail-list li.inc::before {
      content: '✓';
      color: var(--primary);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .detail-list li.exc::before {
      content: '✗';
      color: #c00;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .detail-note {
      background: rgba(244,166,29,.1);
      border-left: 3px solid var(--accent);
      border-radius: 0 12px 12px 0;
      padding: 12px 16px;
      font-size: .88rem;
      color: var(--text);
      margin-bottom: 22px;
      line-height: 1.7;
    }

    .detail-note strong {
      color: var(--primary-dark);
    }

    /* CTA at bottom */
    .detail-cta-wrap {
      background: #fff;
      border-radius: 18px;
      padding: 28px 26px;
      box-shadow: 0 4px 18px rgba(26,107,58,.07);
      border: 1px solid rgba(26,107,58,.07);
    }

    .detail-cta-wrap h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--primary-dark);
      margin-bottom: 6px;
    }

    .detail-cta-wrap p {
      color: var(--text-muted);
      font-size: .88rem;
      margin-bottom: 18px;
      line-height: 1.6;
    }

    .detail-cta-row {
      display: flex;
      gap: 12px;
    }

    .detail-wa-btn {
      flex: 1;
      background: #25D366;
      color: #fff;
      border: none;
      padding: 14px 20px;
      border-radius: 30px;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .2s, transform .2s;
    }

    .detail-wa-btn:hover {
      background: #1ebe5d;
      transform: translateY(-2px);
    }

    .detail-fb-btn {
      flex: 1;
      background: #1877F2;
      color: #fff;
      border: none;
      padding: 14px 20px;
      border-radius: 30px;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .2s, transform .2s;
    }

    .detail-fb-btn:hover {
      background: #1464d8;
      transform: translateY(-2px);
    }

    @media (max-width: 600px) {
      .detail-slider { height: 240px; }
      .detail-content { padding: 22px 16px 50px; }
      .detail-list { grid-template-columns: 1fr; }
      .detail-cta-row { flex-direction: column; }
      .detail-header-row { flex-direction: column; }
      .detail-topbar { padding: 10px 14px; }
      .detail-topbar-title { font-size: .82rem; }
    }
/* ── Pickup Chips ── */
.pickup-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.pickup-chip {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 30px;
  padding: 7px 16px;
  font-family: 'Hind Siliguri', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .15s;
}

.pickup-chip:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}

.pickup-chip.selected {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  box-shadow: 0 3px 12px rgba(37,211,102,.4);
}
