:root {
  --brand-green: #0b4332;
  --brand-green-bright: #2f9e52;
  --brand-gold: #e8a33d;
  --brand-black: #14161a;
  --brand-cream: #f8f4ec;
  --brand-navy: #1b2a3a;
  --brand-white: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, .brand-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

a { color: inherit; }

/* ---------- Placeholder "photo" blocks (swap for real images) ---------- */
.img-placeholder {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  width: 100%;
  height: 100%;
  min-height: 120px;
}

.header-search {
  display: flex;
  width: 200px;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
}
.header-search input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  padding: 8px 14px;
  font-size: 0.85rem;
  outline: none;
}
.header-search button {
  flex: 0 0 auto;
  background: var(--brand-green-bright);
  color: white;
  border: none;
  padding: 0 16px;
  font-size: 1rem;
}
.header-search button:hover { background: var(--brand-green); }
@media (min-width: 1200px) {
  .header-search { width: 260px; }
}

/* ---------- Main nav ---------- */
.main-nav .navbar-brand img { height: 62px; }
@media (min-width: 992px) {
  .main-nav .navbar-brand img { height: 88px; }
}
.main-nav .nav-link {
  font-weight: 600;
  color: var(--brand-black) !important;
  margin: 0 12px;
}
.main-nav .nav-link:hover { color: var(--brand-green-bright) !important; }

/* Nested submenu inside the Services dropdown (Hajj / Umrah -> Details / Packages) */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-toggle-sub::after {
  content: "";
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}
.dropdown-submenu > .dropdown-menu {
  display: none;
  top: 0;
}
.dropdown-submenu.show > .dropdown-menu {
  display: block;
}
@media (min-width: 992px) {
  .dropdown-submenu > .dropdown-menu {
    left: 100%;
    margin-left: 2px;
  }
}
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 1rem;
    box-shadow: none;
    border: none;
  }
}

/* ---------- Hero ---------- */
.hero-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  /* No photo yet: swap this for background-image: url('../images/hero.jpg'), linear-gradient(...); once a real image is added to static/images/ */
  background: linear-gradient(90deg, rgba(11,26,20,0.92) 0%, rgba(11,67,50,0.75) 100%);
  color: white;
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero-banner.hero-compact {
  min-height: 260px;
  padding: 50px 0 70px;
}
.hero-banner .eyebrow {
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--brand-gold);
  font-weight: 600;
  text-transform: uppercase;
}
.hero-banner h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 640px;
}
.btn-brand-green {
  background: var(--brand-green-bright);
  color: white;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
}
.btn-brand-green:hover { background: var(--brand-green); color: white; }

/* Offer strip overlapping hero bottom */
.offer-strip {
  margin-top: -90px;
  position: relative;
  z-index: 5;
}
.offer-card {
  background: white;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
}
.offer-card .offer-photo {
  height: 140px;
  position: relative;
}
.offer-card .offer-icon {
  width: 48px; height: 48px;
  background: var(--brand-green-bright);
  color: white;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  position: absolute;
  bottom: -24px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.offer-card .offer-icon i { transform: rotate(-45deg); }
.offer-card .offer-body { padding: 36px 20px 24px; }

/* ---------- Offer strip: mobile app-style image tiles ---------- */
@media (max-width: 767px) {
  .offer-strip { margin-top: -60px; }
  .offer-strip .row > [class*="col-"] { margin-bottom: 0; }

  .offer-card {
    position: relative;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(11,67,50,0.14);
  }

  .offer-card .offer-photo {
    height: 150px;
    border-radius: 16px;
  }
  .col-12 .offer-card .offer-photo { height: 110px; }

  .offer-card .offer-photo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,26,20,0.85) 0%, rgba(11,26,20,0.15) 55%, rgba(11,26,20,0) 100%);
    border-radius: inherit;
  }

  /* Diamond icon badge not used in the compact tile look */
  .offer-card .offer-icon { display: none; }

  /* Body collapses into a text overlay on top of the photo */
  .offer-card .offer-body {
    position: absolute;
    left: 14px; right: 14px; bottom: 10px;
    padding: 0;
    text-align: left;
    z-index: 2;
  }
  .offer-card .offer-body h5 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.45);
  }
  .offer-card .offer-body p { display: none; }
}

/* ---------- Section helpers ---------- */
.section-cream { background: var(--brand-cream); }
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading i { color: var(--brand-green-bright); font-size: 1.5rem; }
.section-heading h2 { margin-top: 8px; }

/* Award / star-frame image */
.star-frame {
  aspect-ratio: 1;
  border: 2px solid var(--brand-green-bright);
  clip-path: polygon(50% 0%, 65% 15%, 85% 15%, 85% 35%, 100% 50%, 85% 65%, 85% 85%, 65% 85%, 50% 100%, 35% 85%, 15% 85%, 15% 65%, 0% 50%, 15% 35%, 15% 15%, 35% 15%);
  overflow: hidden;
}
.star-frame .img-placeholder { min-height: 0; height: 100%; }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 6px 0; }
.checklist i { color: var(--brand-green-bright); margin-right: 8px; }

/* Two-tone CTA banner */
.dual-cta { display: flex; flex-wrap: wrap; }
.dual-cta a {
  flex: 1 1 300px;
  padding: 30px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1.1rem;
}
.dual-cta a:first-child { background: var(--brand-green-bright); }
.dual-cta a:last-child { background: var(--brand-gold); }
.dual-cta i { font-size: 1.8rem; }

/* Facilities grid */
.facility-card {
  background: white;
  text-align: center;
  padding: 30px 16px;
  border-radius: 6px;
}
.facility-card i {
  font-size: 2rem;
  color: var(--brand-green-bright);
  margin-bottom: 12px;
  display: inline-block;
}

/* Package toggle + cards */
.package-toggle {
  display: inline-flex;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.package-toggle button {
  border: none;
  background: white;
  padding: 10px 28px;
  font-weight: 600;
  color: var(--brand-black);
}
.package-toggle button.active {
  background: var(--brand-green-bright);
  color: white;
}
.package-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.package-card .package-photo { height: 160px; position: relative; }
.package-card .package-label {
  position: absolute; top: 12px; left: 12px;
  color: white; font-weight: 700; letter-spacing: 1px; font-size: 0.85rem;
}
.package-card .package-price {
  position: absolute; bottom: -18px; left: 12px;
  background: var(--brand-gold);
  color: white;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
}
.package-card .package-body { padding: 34px 20px 20px; }
.package-card .btn-book {
  background: var(--brand-green-bright);
  color: white;
  border: none;
  width: 100%;
  padding: 10px;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 10px;
}

/* Register / inquiry gold card */
.inquiry-card {
  background: var(--brand-gold);
  border-radius: 12px;
  padding: 30px;
  color: white;
}
.inquiry-card h4 { color: white; }
.inquiry-card input, .inquiry-card textarea {
  width: 100%;
  border: none;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 12px;
}
.inquiry-card .btn-submit {
  background: var(--brand-black);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  width: 100%;
}

/* Contact info badges (Get in Touch section) */
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.contact-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 160px;
}
.contact-badge .icon-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--brand-green-bright);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-badge h6 {
  margin: 0 0 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-black);
}
.contact-badge p, .contact-badge a {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  text-decoration: none;
}
.contact-badge a:hover { color: var(--brand-green-bright); }

.contact-appointment {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}
.contact-appointment .label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-appointment .phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-black);
}
.contact-appointment .phone i { color: var(--brand-green-bright); margin-right: 8px; }

/* White elevated form card (replaces flat gold inquiry-card look for this page) */
.contact-form-card {
  background: white;
  border-radius: 12px;
  padding: 34px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.contact-form-card h4 { color: var(--brand-black); margin-bottom: 20px; }
.contact-form-card input, .contact-form-card textarea {
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.contact-form-card .btn-submit {
  background: var(--brand-green-bright);
  color: white;
  border: none;
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.contact-form-card .btn-submit:hover { background: var(--brand-green); }

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 8px;
}

/* Testimonials */
.testimonial-section {
  background: linear-gradient(rgba(20,30,40,0.85), rgba(20,30,40,0.85)), var(--brand-navy);
  color: white;
  padding: 70px 0;
}
.testimonial-card {
  background: white;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-quote-side {
  background: var(--brand-green-bright);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  font-size: 2.5rem;
  min-width: 120px;
}
.testimonial-text-side { padding: 30px; color: #333; }
.testimonial-text-side .stars { color: var(--brand-gold); margin-bottom: 8px; }

/* Affiliations */
.affiliation-logos-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.affiliation-logos-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  will-change: transform;
}
.affiliation-logo {
  height: 46px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(60%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.affiliation-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Newsletter */
.newsletter-banner {
  background: var(--brand-green-bright);
  color: white;
  padding: 36px 0;
}
.newsletter-banner i { font-size: 2rem; }
.newsletter-form {
  flex: 1 1 auto;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  min-width: 0;
}
.newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: none;
  padding: 12px 16px;
  border-radius: 4px 0 0 4px;
}
.newsletter-form button {
  flex: 0 0 auto;
  background: var(--brand-black);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
}

/* Footer */
.site-footer {
  background: var(--brand-black);
  color: #aaa;
  padding: 50px 0 0;
}
.footer-logo { height: 60px; margin-bottom: 10px; }
.footer-heading { color: white; margin-bottom: 16px; }
.footer-social { margin-top: 14px; }
.footer-social a { color: #aaa; margin-right: 12px; font-size: 1.2rem; }
.footer-social a:hover { color: var(--brand-gold); }
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.footer-gallery span {
  aspect-ratio: 1;
  border-radius: 4px;
  display: block;
  overflow: hidden;
  position: relative;
}
.footer-gallery span .img-placeholder {
  min-height: 0;
  height: 100%;
  font-size: 1rem;
}
.footer-links, .footer-contact { list-style: none; padding: 0; }
.footer-links li, .footer-contact li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-links a { color: #aaa; text-decoration: none; }
.footer-links a:hover { color: var(--brand-gold); }
.footer-contact i { color: var(--brand-green-bright); margin-right: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 16px 0;
  font-size: 0.8rem;
}
/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 1050;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover {
  color: white;
  transform: scale(1.08);
}
@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 84px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}

/* ---------- Mobile app-style bottom nav ---------- */
.bottom-nav {
  display: none;
}
@media (max-width: 767px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--brand-white);
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
    z-index: 1000;
  }
  body { padding-bottom: 70px; }

  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 0 6px;
    text-decoration: none;
    color: #999;
    font-size: 11px;
    font-family: 'Poppins', sans-serif;
  }
  .bottom-nav-item i {
    font-size: 20px;
  }
  .bottom-nav-item.active {
    color: var(--brand-gold);
  }
  .bottom-nav-item:active {
    color: var(--brand-green-bright);
  }

  .hero-banner h1 { font-size: 1.8rem; }
  .testimonial-card { flex-direction: column; }
  .newsletter-form { margin-left: 0; max-width: 100%; margin-top: 12px; }
}

/* ---------- Packages: tile overlay title (mobile only) ---------- */
.pkg-tile-title { display: none; }

/* ---------- Packages: mobile app-style tiles ---------- */
@media (max-width: 767px) {
  .packages-grid { --tile-gap: 12px; }

  /* Carousel: single scrollable row instead of wrapping grid */
  .packages-grid.row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: -6px;
    margin-right: -6px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .packages-grid.row::-webkit-scrollbar { display: none; }
  .packages-grid > [class*="col-"] {
    flex: 0 0 44%;
    max-width: 44%;
    scroll-snap-align: start;
    padding-left: 6px; padding-right: 6px; margin-bottom: 0;
  }

  .packages-grid .package-card {
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(11,67,50,0.12);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .packages-grid .package-card:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(11,67,50,0.16);
  }
  .packages-grid .package-card:focus-visible {
    outline: 3px solid var(--brand-green-bright);
    outline-offset: 2px;
  }

  /* Photo becomes the whole tile */
  .packages-grid .package-card .package-photo {
    height: 150px;
    border-radius: 16px;
  }
  .packages-grid .package-card .package-photo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,26,20,0.82) 0%, rgba(11,26,20,0.15) 55%, rgba(11,26,20,0) 100%);
    border-radius: inherit;
  }

  /* Hide the detail body on mobile — details live in the popup */
  .packages-grid .package-card .package-body { display: none; }

  /* Hide the top-left plain label; the tile title carries the name */
  .packages-grid .package-card .package-label { display: none; }

  /* Tile title overlay */
  .packages-grid .package-card .pkg-tile-title {
    display: block;
    position: absolute;
    left: 12px; bottom: 12px;
    z-index: 2;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.15;
    text-shadow: 0 1px 6px rgba(0,0,0,0.45);
  }

  /* Price badge stays inside the tile (top-right) */
  .packages-grid .package-card .package-price {
    top: 10px; left: auto; right: 10px; bottom: auto;
    z-index: 2;
    font-size: 0.78rem;
    padding: 5px 11px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  }

  /* Tap affordance chevron */
  .packages-grid .package-card .package-photo::before {
    content: "\F285"; /* bi-chevron-right */
    font-family: "bootstrap-icons";
    position: absolute;
    right: 12px; bottom: 12px;
    z-index: 2;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
  }
}

/* ---------- Package details popup ---------- */
.pkg-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.pkg-modal[hidden] { display: none; }

.pkg-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,26,20,0.55);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.pkg-modal.is-open .pkg-modal-backdrop { opacity: 1; }

.pkg-modal-sheet {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.28);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 92dvh;
  display: flex;
  flex-direction: column;
}
.pkg-modal.is-open .pkg-modal-sheet { transform: translateY(0); }

.pkg-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  width: 38px; height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--brand-black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
}
.pkg-modal-close:active { transform: scale(0.92); }

.pkg-modal-photo {
  position: relative;
  height: 200px;
  flex-shrink: 0;
  background: var(--brand-green);
}
.pkg-modal-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pkg-modal-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,26,20,0.5) 0%, rgba(11,26,20,0) 45%);
}
.pkg-modal-tier {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  background: var(--brand-green-bright);
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.pkg-modal-content {
  padding: 20px 22px calc(22px + env(safe-area-inset-bottom));
  overflow-y: auto;
}
.pkg-modal-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.pkg-modal-head h3 { margin: 0; font-size: 1.35rem; }
.pkg-modal-price {
  flex-shrink: 0;
  color: var(--brand-gold);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
}
.pkg-modal-subhead { margin: 14px 0 8px; font-size: 0.95rem; }
.pkg-modal-list { margin-bottom: 20px; }
.pkg-modal-list li { margin-bottom: 8px; }

.pkg-modal-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  background: var(--brand-green-bright);
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  border-radius: 14px;
  transition: background 0.15s ease, transform 0.12s ease;
}
.pkg-modal-book:hover { background: var(--brand-green); color: #fff; }
.pkg-modal-book:active { transform: scale(0.98); }

body.pkg-modal-open { overflow: hidden; }

/* Desktop: center the dialog instead of a bottom sheet */
@media (min-width: 768px) {
  .pkg-modal { align-items: center; padding: 24px; }
  .pkg-modal-sheet {
    border-radius: 20px;
    transform: translateY(24px) scale(0.98);
    max-height: 88vh;
  }
  .pkg-modal.is-open .pkg-modal-sheet { transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .pkg-modal-backdrop,
  .pkg-modal-sheet,
  .packages-grid .package-card { transition: none; }
  .pkg-modal-sheet { transform: none; }
}
