@charset "UTF-8";

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #f8f5ef;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 320ms ease,
    visibility 320ms ease;
}

.page-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  color: #fff;
  background: #1d4569;
  font:
    700 20px/1 "Playfair Display",
    serif;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 50px rgba(20, 52, 70, 0.2);
  animation: loader-breathe 900ms ease-in-out infinite alternate;
}

.page-loader__mark::after {
  content: "";
  position: absolute;
  width: 98px;
  height: 98px;
  border: 1px solid rgba(232, 164, 39, 0.65);
  border-radius: 30px;
  animation: loader-orbit 1.2s linear infinite;
}

@keyframes loader-breathe {
  to {
    transform: translateY(-4px);
  }
}
@keyframes loader-orbit {
  to {
    transform: rotate(360deg);
  }
}

:root {
  --primary: #1a3c5e;
  --accent: #e8a427;
  --light: #f8f4ef;
  --dark: #111;
  --white: #fff;
  --anchor-offset: 124px;
  --focus-ring: 0 0 0 3px rgba(232, 164, 39, 0.35);
}

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

html {
  scroll-padding-top: var(--anchor-offset);
}

#home,
#destinations,
#themes,
#packages,
#services,
#trip-form,
#testimonials,
#contact {
  scroll-margin-top: var(--anchor-offset);
}

.section-header,
.form-header {
  scroll-margin-top: var(--anchor-offset);
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 40px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.btn-top {
  background: var(--accent);
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.top-left,
.top-bar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.top-left span {
  white-space: nowrap;
}

body > nav {
  background: var(--white);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 400;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
  white-space: nowrap;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}

.logo-sub {
  font-size: 11px;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-logo-text {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 28px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

body > nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
}

body > nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  text-transform: uppercase;
  white-space: nowrap;
}

body > nav ul li a:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-nav {
  background: var(--accent);
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  padding: 10px 22px !important;
  font-weight: 600 !important;
}

.btn-top,
.btn-nav,
.btn-cta,
.btn-book,
.btn-call,
.btn-hero,
.btn-pkg,
.btn-sm {
  min-height: 44px;
}

.hero {
  position: relative;
  overflow: hidden;
}

/* Shared marketing hero: home, About, Company Profile, and Partner With Us. */
.hero.hero--brand {
  height: clamp(480px, 65svh, 640px);
  min-height: 480px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: var(--white);
  max-width: min(680px, calc(100vw - 120px));
}

.breadcrumb {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 12px;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  min-width: 40px;
  color: var(--white);
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 8px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.1;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 12px;
  line-height: 1.6;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 60px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: var(--primary);
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 760px;
}

.cta-section {
  background: var(--primary);
  color: var(--white);
  padding: 80px 60px;
  text-align: center;
}

.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 32px;
}

.btn-cta {
  background: var(--accent);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 164, 39, 0.4);
}

.premium-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.08);
}

footer {
  background: #0d1f33;
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 60px 32px;
  font-size: 14px;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer-brand-link {
  display: inline-flex;
  color: inherit;
  border-radius: 12px;
}

.footer-brand-link:hover .footer-logo-text,
.footer-brand-link:focus-visible .footer-logo-text {
  color: var(--accent);
}

.footer-brand-link:focus-visible {
  outline: 3px solid rgba(232, 164, 39, 0.55);
  outline-offset: 5px;
}

.footer-accreditations {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.footer-accreditation-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  width: min(100%, 1080px);
  padding: 10px 14px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.footer-accreditation-card {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-accreditation-card img {
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  opacity: 0.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 12px;
}

.footer-contact-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-bottom: 28px;
}

.footer-contact-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.footer-contact-prefix,
.footer-contact-separator {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.footer-contact-link--inline {
  display: inline;
}

.footer-contact-link:hover {
  color: var(--accent);
}

footer.footer--simple {
  text-align: center;
}

footer.footer--simple p {
  max-width: 860px;
  margin: 0 auto 18px;
}

.whatsapp-float {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 0px) + 12px);
  right: 24px;
  background: #25d366;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 12000;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.32);
}

@media (max-width: 1380px) {
  .hero-content {
    left: 24px;
    right: 24px;
    bottom: 32px;
    max-width: none;
  }

  body > nav,
  .top-bar,
  .section,
  .cta-section,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1200px) {
  body > nav {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding: 14px 20px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }

  body > nav ul {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-top: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      max-height 0.36s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.26s ease,
      transform 0.36s cubic-bezier(0.22, 0.61, 0.36, 1),
      margin-top 0.26s ease;
  }

  body > nav ul.open {
    max-height: 540px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    margin-top: 12px;
  }

  body > nav ul li a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .logo {
    max-width: calc(100% - 56px);
  }

  .nav-toggle.is-open {
    transform: rotate(90deg);
    color: var(--accent);
  }

  .btn-nav {
    margin-top: 8px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    left: 24px;
    right: 24px;
    bottom: 32px;
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-accreditation-card {
    min-width: 0;
    min-height: 0;
    padding: 0;
  }

  .footer-accreditation-card img {
    max-width: 100%;
    max-height: 52px;
  }

  .footer-accreditation-strip {
    gap: 8px;
    padding: 8px 10px;
    border-radius: 20px;
  }
}

/* Shared premium motion and interaction layer. Content stays visible unless
   JavaScript has successfully initialised the observer. */
html.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

body a,
body button,
body input,
body select,
body textarea,
body summary {
  -webkit-tap-highlight-color: transparent;
}

body a:focus-visible,
body button:focus-visible,
body input:focus-visible,
body select:focus-visible,
body textarea:focus-visible,
body summary:focus-visible {
  outline: 3px solid var(--accent, #bd7b28);
  outline-offset: 3px;
}

body .dest-card img,
body .place-card img,
body .theme-card img {
  transition: transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  html.motion-ready .pkg-card.reveal-item.is-visible:hover {
    transform: translateY(-6px);
  }

  body .dest-card:hover img,
  body .place-card:hover img,
  body .theme-card:hover img {
    transform: scale(1.035);
  }
}

@media (max-width: 520px) {
  html.motion-ready .reveal-item {
    transform: translate3d(0, 16px, 0);
    transition-duration: 520ms;
    transition-delay: min(var(--reveal-delay, 0ms), 140ms);
  }
}

/* Shared responsive carousel geometry used by package and supporting cards. */
body .carousel-viewport {
  overflow: hidden;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
}

body .carousel-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

body .carousel-track {
  display: flex;
  align-items: stretch;
  gap: var(--carousel-gap, 20px);
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

body .packages-grid.carousel-track > *,
body .places-grid.carousel-track > *,
body .destinations-grid.carousel-track > *,
body .bike-grid.carousel-track > *,
body .testimonials-grid.carousel-track > * {
  flex: 0 0
    calc(
      (100% - (var(--carousel-gap, 20px) * (var(--slides-per-view, 4) - 1))) /
        var(--slides-per-view, 4)
    );
  min-width: 0;
}

body .carousel-track--no-animate {
  transition: none;
}

/* Localhost-only browser audit override; production always follows the OS preference. */

@media (max-width: 768px) {
  .hero.hero--brand {
    height: min(65svh, 500px);
    min-height: 460px;
  }

  .top-bar {
    justify-content: center;
    text-align: center;
  }

  .top-bar a {
    min-height: 40px;
  }

  .top-left,
  .top-bar-left {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px !important;
  }

  .hero-content p {
    font-size: 14px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-section h2,
  .section-title {
    font-size: 28px;
  }

  footer {
    font-size: 12px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 430px) {
  :root {
    --anchor-offset: 108px;
  }

  .top-bar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-bar-left {
    gap: 10px;
  }

  .logo {
    max-width: calc(100% - 52px);
    gap: 8px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .logo-text {
    font-size: 16px;
  }

  .logo-sub {
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  body > nav {
    padding: 12px 16px;
  }

  .btn-top {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  body > nav ul li a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 1.55;
  }

  .section,
  .cta-section,
  footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cta-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom, 0px) + 8px);
  }
}

@media (max-width: 390px) {
  :root {
    --anchor-offset: 102px;
  }

  .top-bar {
    font-size: 12px;
    gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .top-bar-left {
    gap: 8px;
  }

  body > nav {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo-text {
    font-size: 15px;
  }

  .logo-sub {
    letter-spacing: 1.1px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom, 0px) + 8px);
  }

  .hero.hero--brand {
    min-height: 460px;
  }
}

@media (max-width: 360px) {
  :root {
    --anchor-offset: 98px;
  }

  .top-bar {
    font-size: 11px;
  }

  .logo-sub {
    display: none;
  }
}

.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

.about-panel,
.about-grid article,
.about-steps article,
.about-support {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.about-panel {
  padding: 28px;
}

.about-panel h3,
.about-grid h3,
.about-steps h3,
.about-support h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  margin-bottom: 14px;
}

.about-panel p,
.about-grid p,
.about-steps p,
.about-support p {
  color: #5b5b5b;
  line-height: 1.8;
  font-size: 15px;
}

.about-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.about-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #444;
  line-height: 1.7;
}

.about-points li::before {
  content: "•";
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.about-grid,
.about-steps {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-grid article,
.about-steps article,
.about-support {
  padding: 26px;
}

.about-eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-steps {
  grid-template-columns: repeat(3, 1fr);
}

.about-support {
  margin-top: 40px;
}

.about-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.about-support-item {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 18px;
}

.about-support-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .about-intro,
  .about-grid,
  .about-steps,
  .about-support-grid {
    grid-template-columns: 1fr;
  }
}

/*
 * Shared package-card component.
 * Page styles may control the surrounding grid, but every package card uses
 * the same image, content, footer, spacing, and interaction geometry.
 */
body .pkg-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(17, 31, 48, 0.09);
  transform: translateY(0);
  transition:
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.28s ease;
}

body .pkg-card-img {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8edf1;
}

body .pkg-card-img img,
body .pkg-card > img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

body .pkg-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  padding: 16px 18px 14px;
}

body .pkg-location {
  min-height: 1.35em;
  margin-bottom: 6px;
  overflow: hidden;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 1.2px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

body .pkg-body h3 {
  display: -webkit-box;
  height: 2.5em;
  min-height: 2.5em;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body .pkg-body p {
  display: -webkit-box;
  height: 4.35em;
  min-height: 4.35em;
  margin: 0;
  overflow: hidden;
  color: #66717c;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body .pkg-footer {
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
  margin-top: auto;
  padding: 12px 18px 16px;
  border-top: 1px solid #edf0f2;
}

body .pkg-footer > div {
  display: grid;
  align-content: start;
  gap: 4px;
  width: 100%;
  min-height: 38px;
}

body .pkg-meta-item {
  color: #75808b;
  font-size: 12.5px;
  line-height: 1.35;
}

body .pkg-meta-item strong,
body .pkg-footer .pkg-meta-item:first-child {
  color: var(--primary);
}

body .btn-pkg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--primary);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  body .pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(17, 31, 48, 0.15);
  }

  body .pkg-card:hover .pkg-card-img img,
  body .pkg-card:hover > img {
    transform: scale(1.035);
  }

  body .pkg-card:hover .btn-pkg {
    background: var(--accent);
    transform: none;
  }
}

body .pkg-card:focus-visible {
  transform: translateY(-3px);
}

body .dest-card:focus-visible,
body .place-card:focus-visible,
body .theme-card:focus-visible {
  outline: 3px solid var(--accent, #bd7b28);
  outline-offset: 4px;
}

@media (max-width: 520px) {
  body .pkg-body {
    padding: 16px 16px 14px;
  }

  body .pkg-footer {
    padding: 12px 16px 16px;
  }
}
