.luggage-page {
  overflow: hidden;
  background: #fff;
}

.luggage-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  background: url("/images/luggage-storage/luggage-storage_hero.webp") center 58% / cover;
}

.luggage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.25) 58%, rgba(0, 0, 0, 0.05));
}

.luggage-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
}
.luggage-hero-copy {
  flex: 1;
}
.luggage-hero .eyebrow,
.luggage-promo .eyebrow,
.luggage-cta .eyebrow {
  color: #ff6b00;
}
.luggage-hero h1 {
  max-width: 570px;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.94;
}
.luggage-hero h1 span,
.luggage-copy h2 span,
.luggage-cta h2 span {
  color: var(--color-primary);
}
.luggage-hero-content > p:not(.eyebrow):not(.luggage-location) {
  max-width: 420px;
  margin-bottom: 16px;
  line-height: 1.35;
}
.luggage-hero .btn span,
.luggage-cta .btn span,
.luggage-location-card .btn span,
.luggage-promo .btn span {
  margin-left: 12px;
}
.luggage-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 0.78rem;
}
.luggage-location span {
  color: var(--color-primary);
  font-size: 1.15rem;
}

.luggage-hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-width: 180px;
  padding: 16px 18px 12px;
  background: rgba(11, 11, 11, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transform: rotate(-8deg);
  backdrop-filter: blur(1px);
}
.luggage-hero-badge-amount {
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
}
.luggage-hero-badge-period {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.luggage-hero-badge-line {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 10px;
  background: var(--color-primary);
}

.luggage-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-top: 16px;
}
.luggage-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 150px;
}
.luggage-field span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.luggage-field input {
  box-sizing: border-box;
  min-height: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #171717;
  font: inherit;
  line-height: normal;
}
.luggage-add-button {
  min-height: 42px;
  border: 0;
  cursor: pointer;
}

.luggage-section {
  padding-top: 46px;
  padding-bottom: 0;
}
.luggage-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.luggage-copy h2,
.luggage-faq h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 0.98;
}
.luggage-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 16px;
  font-size: 0.96rem;
  line-height: 1.55;
}
.luggage-image {
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
  object-position: center 35%;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.process-card,
.benefit-card {
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  background: #fff;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.process-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 13px;
}
.process-card:hover,
.benefit-card:hover {
  border-color: #ffc59e;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.12);
  transform: translateY(-4px);
}
.luggage-icon,
.benefit-icon {
  display: grid;
  place-items: center;
  color: var(--color-primary);
  background: #fff2e8;
  border-radius: 50%;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.luggage-icon {
  width: 44px;
  height: 44px;
  font-size: 1.45rem;
}
.process-card:hover .luggage-icon,
.benefit-card:hover .benefit-icon {
  transform: rotate(-8deg) scale(1.1);
  background: #ffe1cd;
}
.card-step {
  margin: 0 0 2px;
  color: var(--color-primary);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}
.process-card h3,
.benefit-card h3 {
  margin: 0 0 4px;
  font-size: 0.82rem;
  line-height: 1.05;
}
.process-card p:last-child,
.benefit-card p {
  margin: 0;
  color: #595959;
  font-size: 0.78rem;
  line-height: 1.42;
}

.luggage-travellers,
.luggage-convenience {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 20px;
  align-items: stretch;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.benefit-card {
  padding: 12px 10px;
}
.benefit-icon {
  width: 29px;
  height: 29px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.benefit-card h3 {
  font-size: 0.82rem;
}
.benefit-card p {
  font-size: 0.75rem;
}
.luggage-promo {
  min-height: 290px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.25)),
    url("/images/luggage-storage/luggage_tourist_walk.webp") center / cover;
}
.promo-content {
  max-width: 290px;
}
.luggage-promo h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 2rem;
  line-height: 0.95;
}
.luggage-promo p:not(.eyebrow) {
  margin: 0 0 8px;
  font-size: 0.82rem;
  line-height: 1.42;
}
.luggage-promo .btn,
.luggage-location-card .btn {
  min-height: 34px;
  padding: 0 13px;
  font-size: 0.7rem;
}
.luggage-location-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
}
.luggage-location-card img {
  height: 100%;
  min-height: 174px;
  object-fit: cover;
}
.luggage-location-card > div {
  padding: 16px;
}
.luggage-location-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.05;
}
.luggage-location-card p:not(.eyebrow) {
  margin-bottom: 7px;
  font-size: 0.8rem;
  line-height: 1.42;
}
.luggage-faq {
  padding-bottom: 46px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
}
.faq-grid details {
  margin-bottom: 10px;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.faq-grid details[open] {
  background: #fff8f2;
}
.faq-answer {
  margin: 0;
  padding: 0 14px 14px 40px;
  color: #595959;
  font-size: 0.8rem;
  line-height: 1.45;
}
.faq-grid summary {
  padding: 13px 14px;
  list-style: none;
  cursor: pointer;
  font-size: 0.84rem;
  line-height: 1.35;
  font-weight: 500;
}
.faq-grid summary::-webkit-details-marker {
  display: none;
}
.faq-grid summary::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 1px solid #888;
  border-radius: 50%;
  font-size: 0.7rem;
}
.faq-grid details[open] summary::before {
  content: "−";
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.luggage-cta {
  padding: 42px 0;
  background: #fffaf6;
}
.luggage-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}
.luggage-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.94;
}
.luggage-cta p:not(.eyebrow) {
  margin-bottom: 14px;
  max-width: 450px;
  font-size: 0.86rem;
  line-height: 1.45;
}
.luggage-cta .btn {
  min-height: 34px;
  margin-right: 7px;
  padding: 0 13px;
  font-size: 0.7rem;
}
.luggage-cta-inner > strong {
  padding-right: 0;
  color: #171717;
  font-family: cursive;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 0.9;
  transform: rotate(-7deg);
}
.luggage-cta-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.luggage-cta-image:hover {
  transform: scale(1.025);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}
.luggage-cta-inner > strong em {
  color: var(--color-primary);
  font-style: normal;
}

.luggage-cta-inner > div > strong {
  display: block;
  width: fit-content;
  margin: 22px 0 0 auto;
}

@media (max-width: 850px) {
  .luggage-hero {
    min-height: 480px;
    align-items: flex-end;
    padding-bottom: 34px;
    background-position: 62% center;
    background-image: url("/images/home/home_hero_mobile.webp");
  }
  .luggage-hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .luggage-hero-badge {
    align-self: flex-end;
    min-width: 150px;
    padding: 12px 14px 10px;
    transform: rotate(-6deg);
  }
  .luggage-hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .luggage-hero-actions .luggage-add-button {
    grid-column: 1 / -1;
  }
  .luggage-intro,
  .luggage-travellers,
  .luggage-convenience {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .luggage-image {
    height: 220px;
    object-position: center 28%;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .luggage-promo {
    min-height: 360px;
  }
  .luggage-location-card {
    grid-template-columns: 1fr;
  }
  .luggage-location-card img {
    min-height: 210px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .luggage-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .luggage-cta-image {
    width: 100%;
    height: 190px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .luggage-hero-content,
  .luggage-section {
    animation: luggage-rise 0.65s ease both;
  }
  .process-card,
  .benefit-card,
  .luggage-location-card,
  .luggage-promo {
    animation: luggage-rise 0.55s ease both;
  }
  .process-card:nth-child(2),
  .benefit-card:nth-child(2) {
    animation-delay: 0.08s;
  }
  .process-card:nth-child(3),
  .benefit-card:nth-child(3) {
    animation-delay: 0.16s;
  }
  .benefit-card:nth-child(4) {
    animation-delay: 0.24s;
  }
}

@keyframes luggage-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
