/**
 * Internet Packages Section Stylesheet — Neto ISP Theme
 * Developed by MH Badhon Ahmed (Web Techiq)
 *
 * Pixel-Perfect match to reference UI screenshot:
 *  - Soft off-white radial ambient background with geometric constellation network overlay
 *  - Pill Badge: rounded capsule pill ("INTERNET PACKAGES")
 *  - Section Header: Dark title ("Simple, Transparent") + Solid Orange word ("Packages")
 *  - Subtitle: Centered gray description paragraph
 *  - Cards Grid / Carousel:
 *      * White card surface with smooth 20px rounded corners & soft shadow
 *      * Featured Card (3rd card): Golden header banner ("GAMER'S CHOICE"), warm cream body (#fffdf5), golden border & aura shadow
 *      * Speed Title (large 28px dark bold font) & Subtitle tag
 *      * Price Row: ৳ Taka symbol (32px), Amount (44px bold), /month (gray)
 *      * Offer Pill Badges: Green pill (✓ FREE Installation), Gray pill (OTC Charge Applicable)
 *      * Feature Checklist: Warm amber checkmarks (✓) with dark gray text
 *      * CTA Buttons: Solid Gold/Yellow button (#ffb800 / #ffc107) across ALL cards with dark bold text (#111827)
 *  - Floating Navigation Arrows: Positioned on Left & Right sides of cards slider
 *  - Bottom Disclaimer: Centered small gray text note
 *  - 100% Fully Responsive Layout
 *
 * @package Neto_ISP
 */

/* ==========================================================================
   0. CSS Custom Properties (Scoped to Section)
   ========================================================================== */
.neto-packages-section {
  --pkg-primary:        var(--neto-primary-color, #ff9800);
  --pkg-heading:        #111827;
  --pkg-body:           #6b7280;
  --pkg-card-bg:        #ffffff;
  --pkg-card-border:    #e5e7eb;
  --pkg-card-radius:    20px;
  --pkg-featured-gold:  #ffb800;
  --pkg-featured-bg:    #fffdf5;
  --pkg-btn-gold:       #ffb800;
  --pkg-btn-gold-hover: #f5a600;
  --pkg-btn-text:       #111827;

  /* Responsive Gaps */
  --pkg-gap-h:          var(--pkg-gap-h-desktop, 24px);
  --pkg-gap-v:          var(--pkg-gap-v-desktop, 24px);
  --pkg-slide-gap:      var(--pkg-gap-h);
}

@media (max-width: 1199px) {
  .neto-packages-section {
    --pkg-gap-h: var(--pkg-gap-h-tablet, 20px);
    --pkg-gap-v: var(--pkg-gap-v-tablet, 20px);
  }
}

@media (max-width: 639px) {
  .neto-packages-section {
    --pkg-gap-h: var(--pkg-gap-h-mobile, 16px);
    --pkg-gap-v: var(--pkg-gap-v-mobile, 16px);
  }
}

/* ==========================================================================
   1. Section Container & Ambient Network Constellation Background
   ========================================================================== */
.neto-packages-section {
  position: relative;
  width: 100%;
  padding: var(--neto-pkg-pad-top, 80px) 0 var(--neto-pkg-pad-bottom, 90px);
  background: transparent;
  overflow: hidden;
  isolation: isolate;
}

/* Geometric Constellation Network Dots Overlay */
.neto-packages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(0,0,0,0.03) 2px, transparent 2px),
    radial-gradient(circle at 85% 25%, rgba(0,0,0,0.03) 2px, transparent 2px),
    radial-gradient(circle at 50% 75%, rgba(0,0,0,0.03) 2px, transparent 2px),
    radial-gradient(circle at 30% 80%, rgba(0,0,0,0.02) 2px, transparent 2px),
    radial-gradient(circle at 70% 85%, rgba(0,0,0,0.02) 2px, transparent 2px);
  background-size: 180px 180px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Perfect Section Finishing Bottom Divider */
.neto-packages-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(226, 232, 240, 0.85) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.neto-packages-section > .container {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   2. Section Header
   ========================================================================== */
.pkg-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 44px;
}

/* ── Pill Badge ("INTERNET PACKAGES") ── */
.pkg-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 50px;
  padding: 6px 20px;
  margin-bottom: 18px;
}

.pkg-badge-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e293b;
}

/* ── Section Title ── */
.pkg-section-title {
  font-family: var(--neto-heading-font-family, 'Outfit', sans-serif);
  font-size: clamp(34px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  color: #111827;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pkg-title-gradient {
  display: inline;
  color: var(--pkg-title-from, #ff8800);
  background: none;
  -webkit-text-fill-color: initial;
}

/* ── Section Subtitle Description ── */
.pkg-section-subtitle {
  font-size: 14.5px;
  line-height: 1.65;
  color: #6b7280;
  max-width: 740px;
  margin-bottom: 0;
}

/* ── Optional Category Switcher Tab Bar (if enabled) ── */
.pkg-category-tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 5px;
  border-radius: 50px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.pkg-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--neto-body-font-family, 'Inter', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: #64748b;
  padding: 9px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.22s ease;
  outline: none;
  white-space: nowrap;
}

.pkg-tab-btn:hover {
  color: #111827;
  background: #f8fafc;
}

.pkg-tab-btn.is-active {
  background: #ffb800;
  color: #111827;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.35);
}

/* ==========================================================================
   3. Packages Slider Wrapper & Floating Side Arrows (Left & Right)
   ========================================================================== */
.pkg-slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.pkg-cards-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.neto-packages-section.mode-slider .pkg-cards-viewport {
  padding: 20px 18px 30px 18px;
  margin: -20px -18px -30px -18px;
}

/* ── Floating Side Navigation Arrow Buttons ── */
.pkg-arrow-btn.side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  outline: none;
}

.pkg-arrow-btn.arrow-left {
  left: -20px;
}

.pkg-arrow-btn.arrow-right {
  right: -20px;
}

.pkg-arrow-btn.side-arrow:hover {
  background: #ffb800;
  border-color: #ffb800;
  color: #111827;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.42);
}

.pkg-arrow-btn.side-arrow:disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* Cards Track */
.pkg-cards-track {
  display: flex;
  column-gap: var(--pkg-gap-h);
  row-gap: var(--pkg-gap-v);
  transition: transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  align-items: stretch;
}

.neto-packages-section.mode-grid .pkg-cards-track {
  display: grid;
  column-gap: var(--pkg-gap-h);
  row-gap: var(--pkg-gap-v);
  transform: none !important;
}

.pkg-card-item.is-filtered-out {
  display: none !important;
}

@keyframes pkgCardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pkg-card-item:not(.is-filtered-out) {
  animation: pkgCardFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   4. Individual Package Card
   ========================================================================== */
.pkg-card-item {
  position: relative;
  flex: 0 0 calc(25% - (var(--pkg-slide-gap) * 3 / 4));
  display: flex;
  flex-direction: column;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

/* Card Inner Surface */
.pkg-card-inner {
  position: relative;
  background: var(--card-bg, #ffffff);
  border-radius: var(--pkg-card-radius);
  padding: 32px 26px 26px;
  border: 1.5px solid var(--card-border, #e5e7eb);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.pkg-card-item:hover .pkg-card-inner {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

/* ==========================================================================
   5. Featured Package Card (3rd Card - "GAMER'S CHOICE")
   ========================================================================== */
.pkg-card-item.is-featured-card {
  z-index: 2;
}

.pkg-card-item.is-featured-card .pkg-card-inner {
  background: #fffdf5;
  border: 2px solid #ffb800;
  box-shadow: 0 16px 45px rgba(255, 184, 0, 0.22);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-top: 26px;
}

.pkg-card-item.is-featured-card:hover .pkg-card-inner {
  box-shadow: 0 24px 55px rgba(255, 184, 0, 0.32);
}

/* Featured Header Ribbon Banner */
.pkg-featured-ribbon {
  position: relative;
  width: 100%;
  background: #ffb800;
  color: #111827;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-top-left-radius: var(--pkg-card-radius);
  border-top-right-radius: var(--pkg-card-radius);
}

/* ==========================================================================
   6. Card Content Elements
   ========================================================================== */

/* Card Header: Speed Title & Subtitle */
.pkg-card-header {
  margin-bottom: 16px;
}

.pkg-speed-title {
  font-family: var(--neto-heading-font-family, 'Outfit', sans-serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--card-speed, #111827);
  line-height: 1.15;
  margin-bottom: 4px;
}

.pkg-speed-sub {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

/* Price Box */
.pkg-price-box {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.pkg-currency {
  font-size: 32px;
  font-weight: 800;
  color: var(--card-price, #111827);
  align-self: flex-start;
  margin-top: 4px;
}

.pkg-amount {
  font-family: var(--neto-heading-font-family, 'Outfit', sans-serif);
  font-size: 44px;
  font-weight: 800;
  color: var(--card-price, #111827);
  line-height: 1;
}

.pkg-reg-price {
  font-size: 15px;
  color: #9ca3af;
  margin-left: 6px;
  align-self: center;
}

.pkg-period {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  align-self: flex-end;
  margin-bottom: 4px;
}

/* Offer Pill Badges */
.pkg-install-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
  align-self: flex-start;
}

.badge-style-success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.badge-style-warning {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}

/* Feature Checklist */
.pkg-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-grow: 1;
}

.pkg-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #f59e0b; /* Golden Amber checkmarks */
  flex-shrink: 0;
}

/* CTA Action Button — Solid Gold/Yellow across all cards */
.pkg-card-footer {
  margin-top: auto;
}

.pkg-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--neto-body-font-family, 'Inter', sans-serif);
  font-size: 14.5px;
  font-weight: 800;
  padding: 13px 20px;
  border-radius: 12px;
  transition: all 0.22s ease;
  text-decoration: none;
  cursor: pointer;
  background: var(--card-btn-bg, #ffb800);
  color: var(--card-btn-txt, #111827);
  border: none;
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.28);
}

.pkg-cta-btn:hover {
  background: #f5a600;
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 184, 0, 0.42);
}

/* ==========================================================================
   7. Cards-Visible Per Row (Desktop, Tablet, Mobile)
   ========================================================================== */
.neto-packages-section[data-cards-desktop="1"] .pkg-card-item { flex: 0 0 100%; }
.neto-packages-section[data-cards-desktop="2"] .pkg-card-item { flex: 0 0 calc(50% - (var(--pkg-slide-gap) / 2)); }
.neto-packages-section[data-cards-desktop="3"] .pkg-card-item { flex: 0 0 calc(33.333% - (var(--pkg-slide-gap) * 2 / 3)); }
.neto-packages-section[data-cards-desktop="4"] .pkg-card-item,
.neto-packages-section:not([data-cards-desktop]) .pkg-card-item { flex: 0 0 calc(25% - (var(--pkg-slide-gap) * 3 / 4)); }
.neto-packages-section[data-cards-desktop="5"] .pkg-card-item { flex: 0 0 calc(20% - (var(--pkg-slide-gap) * 4 / 5)); }
.neto-packages-section[data-cards-desktop="6"] .pkg-card-item { flex: 0 0 calc(16.666% - (var(--pkg-slide-gap) * 5 / 6)); }

.neto-packages-section.mode-grid[data-cards-desktop="1"] .pkg-cards-track { grid-template-columns: 1fr; }
.neto-packages-section.mode-grid[data-cards-desktop="2"] .pkg-cards-track { grid-template-columns: repeat(2, 1fr); }
.neto-packages-section.mode-grid[data-cards-desktop="3"] .pkg-cards-track { grid-template-columns: repeat(3, 1fr); }
.neto-packages-section.mode-grid[data-cards-desktop="4"] .pkg-cards-track,
.neto-packages-section.mode-grid:not([data-cards-desktop]) .pkg-cards-track { grid-template-columns: repeat(4, 1fr); }
.neto-packages-section.mode-grid[data-cards-desktop="5"] .pkg-cards-track { grid-template-columns: repeat(5, 1fr); }
.neto-packages-section.mode-grid[data-cards-desktop="6"] .pkg-cards-track { grid-template-columns: repeat(6, 1fr); }

/* ==========================================================================
   8. Slider Pagination Dots
   ========================================================================== */
.pkg-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.pkg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.pkg-dot.is-active {
  width: 26px;
  border-radius: 10px;
  background: #ffb800;
}

/* ==========================================================================
   9. Bottom Disclaimer Note (Matching Quick & Easy Connection Style)
   ========================================================================== */
.pkg-disclaimer-wrap {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 42px auto 0 auto;
  text-align: center;
}

.pkg-disclaimer-note {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 14px;
  padding: 16px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.pkg-disclaimer-note:hover {
  border-color: rgba(255, 107, 0, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.pkg-disclaimer-note p {
  font-family: inherit;
  font-size: 12.5px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* ==========================================================================
   10. 100% Responsive Breakpoints
   ========================================================================== */

/* ── Laptop / Small Screen (< 1320px): Side arrows position adjustment ── */
@media (max-width: 1320px) {
  .pkg-arrow-btn.arrow-left {
    left: -10px;
  }
  .pkg-arrow-btn.arrow-right {
    right: -10px;
  }
}

/* ── Laptop / Tablet (< 1199px): Configurable Columns ── */
@media (max-width: 1199px) {
  .neto-packages-section[data-cards-tablet="1"] .pkg-card-item { flex: 0 0 100%; }
  .neto-packages-section[data-cards-tablet="2"] .pkg-card-item { flex: 0 0 calc(50% - (var(--pkg-slide-gap) / 2)); }
  .neto-packages-section[data-cards-tablet="3"] .pkg-card-item { flex: 0 0 calc(33.333% - (var(--pkg-slide-gap) * 2 / 3)); }
  .neto-packages-section[data-cards-tablet="4"] .pkg-card-item { flex: 0 0 calc(25% - (var(--pkg-slide-gap) * 3 / 4)); }

  .neto-packages-section.mode-grid[data-cards-tablet="1"] .pkg-cards-track { grid-template-columns: 1fr; }
  .neto-packages-section.mode-grid[data-cards-tablet="2"] .pkg-cards-track { grid-template-columns: repeat(2, 1fr); }
  .neto-packages-section.mode-grid[data-cards-tablet="3"] .pkg-cards-track { grid-template-columns: repeat(3, 1fr); }
  .neto-packages-section.mode-grid[data-cards-tablet="4"] .pkg-cards-track { grid-template-columns: repeat(4, 1fr); }
}

/* ── Tablet (< 899px): Side Arrow Positioning ── */
@media (max-width: 899px) {
  .pkg-arrow-btn.side-arrow {
    width: 40px;
    height: 40px;
  }
  .pkg-arrow-btn.arrow-left {
    left: -12px;
  }
  .pkg-arrow-btn.arrow-right {
    right: -12px;
  }
}

/* ── Mobile (< 639px): Symmetrical Padding & Sizing ── */
@media (max-width: 639px) {
  .neto-packages-section.mode-slider .pkg-cards-viewport {
    padding: 16px 12px 24px 12px;
    margin: -16px -12px -24px -12px;
  }

  .pkg-card-inner {
    padding: 24px 18px 20px;
  }

  .neto-packages-section[data-cards-mobile="1"] .pkg-card-item { flex: 0 0 100%; }
  .neto-packages-section[data-cards-mobile="2"] .pkg-card-item { flex: 0 0 calc(50% - (var(--pkg-slide-gap) / 2)); }

  .neto-packages-section.mode-grid[data-cards-mobile="1"] .pkg-cards-track { grid-template-columns: 1fr; }
  .neto-packages-section.mode-grid[data-cards-mobile="2"] .pkg-cards-track { grid-template-columns: repeat(2, 1fr); }

  .pkg-section-title {
    font-size: 28px;
  }

  .pkg-speed-title {
    font-size: 24px;
  }

  .pkg-amount {
    font-size: 36px;
  }

  .pkg-currency {
    font-size: 26px;
  }

  .pkg-arrow-btn.side-arrow {
    width: 36px;
    height: 36px;
  }
  .pkg-arrow-btn.arrow-left {
    left: -8px;
  }
  .pkg-arrow-btn.arrow-right {
    right: -8px;
  }
}

/* ==========================================================================
   10. More Packages CTA Button
   ========================================================================== */

.pkg-more-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-top: 8px;
}

/* ── Base button ── */
.pkg-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--neto-body-font-family, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

/* Icon transition */
.pkg-more-btn__icon {
  display: inline-flex;
  align-items: center;
  transform: translateX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.pkg-more-btn:hover .pkg-more-btn__icon {
  transform: translateX(5px);
}

/* ── Shimmer overlay on hover ── */
.pkg-more-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}

.pkg-more-btn:hover::after {
  left: 130%;
  transition: left 0.5s ease;
}

/* ── Style: Primary (Solid Orange) ── */
.pkg-more-btn--primary {
  background: linear-gradient(135deg, var(--neto-primary-color, #ff6b00) 0%, #ff9800 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.30), 0 2px 8px rgba(255, 107, 0, 0.15);
}

.pkg-more-btn--primary:hover {
  background: linear-gradient(135deg, #ff9800 0%, var(--neto-primary-color, #ff6b00) 100%);
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.40), 0 4px 12px rgba(255, 107, 0, 0.20);
  transform: translateY(-2px);
  color: #ffffff;
}

.pkg-more-btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

/* ── Style: Outline (Bordered Orange) ── */
.pkg-more-btn--outline {
  background: transparent;
  color: var(--neto-primary-color, #ff6b00);
  border: 2px solid var(--neto-primary-color, #ff6b00);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.10);
}

.pkg-more-btn--outline:hover {
  background: var(--neto-primary-color, #ff6b00);
  color: #ffffff;
  border-color: var(--neto-primary-color, #ff6b00);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.28);
  transform: translateY(-2px);
}

.pkg-more-btn--outline:active {
  transform: translateY(0);
}

/* ── Style: Ghost (Transparent Dark) ── */
.pkg-more-btn--ghost {
  background: rgba(13, 27, 42, 0.05);
  color: var(--neto-heading-color, #0d1b2a);
  border: 2px solid rgba(13, 27, 42, 0.14);
  box-shadow: none;
}

.pkg-more-btn--ghost:hover {
  background: var(--neto-secondary-color, #0b132b);
  color: #ffffff;
  border-color: var(--neto-secondary-color, #0b132b);
  box-shadow: 0 8px 24px rgba(11, 19, 43, 0.20);
  transform: translateY(-2px);
}

.pkg-more-btn--ghost:active {
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 639px) {
  .pkg-more-btn-wrap {
    margin-top: 28px;
  }

  .pkg-more-btn {
    width: 100%;
    max-width: 320px;
    padding: 13px 28px;
    font-size: 14.5px;
    justify-content: center;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   pkg-explore-hidden — Cards hidden for row-reveal pagination
════════════════════════════════════════════════════════════════════════ */
.pkg-card-item.pkg-explore-hidden {
  display: none !important;
}

/* When a hidden card gets revealed — fade + slide up entrance */
.pkg-card-item:not(.pkg-explore-hidden) {
  animation: pkgCardReveal 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes pkgCardReveal {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ════════════════════════════════════════════════════════════════════════
   Explore More Button — Package Page progressive row loader
════════════════════════════════════════════════════════════════════════ */
.pkg-explore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 44px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pkg-explore-wrap--done {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.pkg-explore-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--pkg-title-from, #ff6b00) 0%, var(--pkg-title-to, #e05d00) 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.38), 0 1px 4px rgba(0,0,0,0.10);
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.22s ease;
  outline: none;
}

/* Shimmer overlay */
.pkg-explore-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255,255,255,0.22) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: exploreBtnShimmer 2.6s linear infinite;
  pointer-events: none;
}
@keyframes exploreBtnShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.pkg-explore-btn:hover,
.pkg-explore-btn:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.50), 0 2px 8px rgba(0,0,0,0.14);
}

.pkg-explore-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 3px 14px rgba(255, 107, 0, 0.32);
}

.pkg-explore-btn__text {
  position: relative;
  z-index: 1;
}

/* Animated down-arrow icon */
.pkg-explore-btn__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  animation: exploreArrowBounce 1.8s ease-in-out infinite;
}
@keyframes exploreArrowBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

/* Count badge */
.pkg-explore-count {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pkg-title-from, #ff6b00);
  background: rgba(255, 255, 255, 0.93);
  border-radius: 30px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  transition: background 0.2s;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .pkg-explore-btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    padding: 13px 24px;
    font-size: 14px;
  }
  .pkg-explore-wrap {
    margin-top: 32px;
  }
  .pkg-disclaimer-wrap {
    margin-top: 30px;
  }
  .pkg-disclaimer-note {
    padding: 14px 18px;
  }
  .pkg-disclaimer-note p {
    font-size: 11.5px;
  }
}

