:root {
  --sk-index-bg: #f5f8fc;
  --sk-index-surface: #ffffff;
  --sk-index-surface-soft: #f8fbfe;
  --sk-index-border: #dde7f1;
  --sk-index-text: #203246;
  --sk-index-muted: #5f7285;
  --sk-index-primary: #034295;
  --sk-index-primary-strong: #034295;
  --sk-index-secondary: #034295;
  --sk-index-shadow: 0 18px 38px rgba(3, 66, 149, 0.08);
  --sk-index-shadow-hover: 0 24px 48px rgba(3, 66, 149, 0.14);
  --sk-index-radius-xl: 28px;
  --sk-index-radius-lg: 22px;
  --sk-index-radius-md: 18px;
}

body.shared-index-page {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(20, 79, 130, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbfe 0%, #eff5fb 56%, #f7fafc 100%);
  color: var(--sk-index-text);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.shared-index-page,
.shared-index-page p,
.shared-index-page a,
.shared-index-page h1,
.shared-index-page h2,
.shared-index-page h3,
.shared-index-page h4,
.shared-index-page h5,
.shared-index-page h6,
.shared-index-page li,
.shared-index-page button,
.shared-index-page span {
  font-family: "Poppins", sans-serif;
}

.shared-index-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.shared-index-page a {
  color: inherit;
  text-decoration: none;
}

.shared-index-page .container,
.shared-index-page .container-fluid {
  position: relative;
}

.shared-index-page .section-header {
  margin-bottom: 28px;
  text-align: center;
}

.shared-index-page .card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.shared-index-page .section-title {
  margin: 0 0 12px;
  color: var(--sk-index-primary-strong);
  font-size: clamp(1.55rem, 1.1rem + 1vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.shared-index-page .section-subtitle,
.shared-index-page .spiritual-intro,
.shared-index-page .luxury-subtitle {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: var(--sk-index-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.shared-index-page .row_cards {
  row-gap: 26px;
}

.shared-index-page .card,
.shared-index-page .destination-card,
.shared-index-page .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(3, 66, 149, 0.1);
  border-radius: 34px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 38px rgba(3, 66, 149, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.shared-index-page .card::before,
.shared-index-page .destination-card::before,
.shared-index-page .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(3, 66, 149, 0.14), rgba(3, 66, 149, 0.03) 42%, rgba(3, 66, 149, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.shared-index-page .card:hover,
.shared-index-page .destination-card:hover,
.shared-index-page .service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(3, 66, 149, 0.16);
  box-shadow: 0 28px 48px rgba(3, 66, 149, 0.14);
}

.shared-index-page .sk-clickable-card {
  cursor: pointer;
}

.shared-index-page .sk-clickable-card:focus-visible {
  outline: 3px solid rgba(3, 66, 149, 0.28);
  outline-offset: 4px;
}

.shared-index-page .sk-clickable-card .sk-card-link-anchor {
  display: none !important;
}

.shared-index-page .sk-clickable-card .card-content br {
  display: none;
}

.shared-index-page .card-image,
.shared-index-page .placeholder-image {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 266px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
}

.shared-index-page .card-image {
  margin: 12px 12px 0;
  border: 1px solid rgba(3, 66, 149, 0.08);
  border-radius: 28px;
  background: #f8fbff;
}

.shared-index-page .card-image::before,
.shared-index-page .placeholder-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(3, 66, 149, 0.02), rgba(3, 66, 149, 0.06));
  pointer-events: none;
}

.shared-index-page .card-image::after,
.shared-index-page .placeholder-image::after,
.shared-index-page .background_main::after,
.shared-index-page .premium-hero-section::after,
.shared-index-page .spiritual-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(9, 24, 40, 0) 0%, rgba(9, 24, 40, 0.22) 100%);
  pointer-events: none;
}

.shared-index-page .card-image img,
.shared-index-page .placeholder-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 266px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.shared-index-page .card:hover .card-image img,
.shared-index-page .destination-card:hover .card-image img,
.shared-index-page .service-card:hover .card-image img,
.shared-index-page .card:hover .placeholder-image img,
.shared-index-page .destination-card:hover .placeholder-image img,
.shared-index-page .service-card:hover .placeholder-image img {
  transform: scale(1.05);
}

.shared-index-page .card-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 18px;
}

.shared-index-page .card-title,
.shared-index-page .card-content h3,
.shared-index-page .card-content h4 {
  color: var(--sk-index-primary-strong);
  font-weight: 800;
}

.shared-index-page .card-content h3,
.shared-index-page .card-content h4 {
  margin: 0;
  font-size: clamp(1.18rem, 1rem + 0.28vw, 1.42rem);
  line-height: 1.18;
}

.shared-index-page .card-content h5 {
  margin: 0;
  color: var(--sk-index-muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.shared-index-page .card-content p,
.shared-index-page .card-text,
.shared-index-page .service-card p {
  color: var(--sk-index-muted);
  line-height: 1.78;
}

.shared-index-page .card-content > .text-center,
.shared-index-page .card-content > .container,
.shared-index-page .card-content > a {
  margin-top: auto;
}

.shared-index-page .card-content hr,
.shared-index-page hr {
  display: none;
}

.shared-index-page .btn,
.shared-index-page .btn-book,
.shared-index-page .package-cta,
.shared-index-page .luxury-cta,
.shared-index-page .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sk-index-primary), var(--sk-index-primary));
  color: #fff !important;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(3, 66, 149, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.shared-index-page .btn:hover,
.shared-index-page .btn-book:hover,
.shared-index-page .package-cta:hover,
.shared-index-page .luxury-cta:hover,
.shared-index-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(3, 66, 149, 0.28);
  filter: brightness(1.03);
}

.shared-index-page .luxury-cta.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.shared-index-page .card-features,
.shared-index-page .romantic-features,
.shared-index-page .trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shared-index-page .card-features span,
.shared-index-page .feature-item,
.shared-index-page .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #034295;
  border-radius: 999px;
  background: #034295;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.shared-index-page .destination-card .card-features,
.shared-index-page .destination-card .amenities {
  margin-top: auto;
}

.shared-index-page .image-overlay,
.shared-index-page .quick-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.shared-index-page .quick-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(3, 66, 149, 0.92);
  color: #fff;
  box-shadow: 0 12px 20px rgba(3, 66, 149, 0.14);
  backdrop-filter: blur(8px);
}

.shared-index-page .quick-info span {
  font-size: 0.82rem;
  font-weight: 600;
}

.shared-index-page .card-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #034295, #034295);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.shared-index-page .amenities .row,
.shared-index-page .vl .row {
  row-gap: 12px;
}

.shared-index-page .amenity-icon,
.shared-index-page .vl img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fd 100%);
  color: var(--sk-index-primary);
  margin: 0 auto;
  box-shadow: 0 10px 16px rgba(3, 66, 149, 0.06);
}

.shared-index-page .vl {
  padding: 14px 0 0;
  border-left: 0;
}

.shared-index-page .vl img {
  object-fit: contain;
  padding: 9px;
}

.shared-index-page .amenity-label {
  margin-top: 6px;
  color: var(--sk-index-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
}

.shared-index-page .destination-card.sk-clickable-card .card-content > .text-center,
.shared-index-page .destination-card.sk-clickable-card .card-content > a {
  display: none !important;
}

.shared-index-page .premium-hero-section,
.shared-index-page .spiritual-header {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
}

.shared-index-page.section-honeymoon .premium-hero-section {
  min-height: clamp(520px, 92vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(45, 19, 34, 0.54), rgba(45, 19, 34, 0.54)),
    url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; 
}
.shared-index-page.section-honeymoon .hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 28px));
  padding: 88px 20px 72px;
  text-align: center;
  color: #fff;
}

.shared-index-page.section-honeymoon .luxury-badge,
.shared-index-page.section-honeymoon .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.shared-index-page.section-honeymoon .luxury-title {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4vw + 1rem, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.shared-index-page.section-honeymoon .title-line-1,
.shared-index-page.section-honeymoon .title-line-2,
.shared-index-page.section-honeymoon .title-accent {
  display: block;
}

.shared-index-page.section-honeymoon .title-accent {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(1rem, 0.9rem + 1vw, 1.55rem);
  font-weight: 500;
}

.shared-index-page.section-honeymoon .luxury-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.shared-index-page.section-honeymoon .hero-cta-group,
.shared-index-page.section-honeymoon .cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.shared-index-page.section-honeymoon .premium-features-bar,
.shared-index-page.section-honeymoon .luxury-services {
  padding: 44px 0;
}

.shared-index-page.section-honeymoon .features-container,
.shared-index-page.section-honeymoon .services-grid {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shared-index-page.section-honeymoon .feature-highlight,
.shared-index-page.section-honeymoon .service-card {
  padding: 22px;
  border-radius: var(--sk-index-radius-lg);
  background: var(--sk-index-surface);
  box-shadow: var(--sk-index-shadow);
}

.shared-index-page.section-honeymoon .feature-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shared-index-page.section-honeymoon .feature-highlight i,
.shared-index-page.section-honeymoon .service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf4fb;
  color: var(--sk-index-primary);
  font-size: 1.3rem;
}

.shared-index-page.section-honeymoon .feature-text h4,
.shared-index-page.section-honeymoon .service-card h3 {
  margin: 0 0 6px;
  color: var(--sk-index-primary-strong);
  font-size: 1.02rem;
  font-weight: 700;
}

.shared-index-page.section-honeymoon .feature-text p {
  margin: 0;
  color: var(--sk-index-muted);
  font-size: 0.9rem;
}

.shared-index-page.section-honeymoon .destinations-section,
.shared-index-page.section-honeymoon .premium-cta-section {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 42px 0;
}

.shared-index-page.section-honeymoon .destination-category + .destination-category {
  margin-top: 34px;
}

.shared-index-page.section-honeymoon .destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 248px));
  justify-content: center;
  gap: 20px;
}

.shared-index-page.section-honeymoon .destination-card {
  width: min(100%, 248px);
  min-height: 100%;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(3, 66, 149, 0.09);
  box-shadow: 0 18px 38px rgba(3, 66, 149, 0.08);
}

.shared-index-page.section-honeymoon .destination-card .card-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 12px;
  padding: 16px 16px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.shared-index-page.section-honeymoon .card-heading-block {
  display: grid;
  gap: 6px;
}

.shared-index-page.section-honeymoon .card-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(3, 66, 149, 0.08);
  color: var(--sk-index-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shared-index-page.section-honeymoon .honeymoon-perks {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--sk-index-primary-strong);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  min-height: 44px;
}

.shared-index-page.section-honeymoon .honeymoon-perks i {
  color: #d9436f;
  font-size: 0.85rem;
}

.shared-index-page.section-honeymoon .card-image,
.shared-index-page.section-honeymoon .placeholder-image {
  width: 100%;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  height: auto !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
}

.shared-index-page.section-honeymoon .card-image {
  min-height: 0 !important;
  height: auto !important;
  width: calc(100% - 24px);
  margin: 12px auto 0;
  padding: 0;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: #eef5fc;
}

.shared-index-page.section-honeymoon .card-image > .placeholder-image {
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  border-radius: inherit;
}

.shared-index-page.section-honeymoon .placeholder-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  margin: 0 auto;
}

.shared-index-page.section-honeymoon .card-content h3 {
  font-size: 1.08rem;
  line-height: 1.28;
  min-height: 2.7em;
}

.shared-index-page.section-honeymoon .card-bottom-row {
  margin-top: auto;
}

.shared-index-page.section-honeymoon .quick-info {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  justify-content: space-between;
  width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(3, 66, 149, 0.1);
  border-radius: 14px;
  background: #f2f7fd;
  color: var(--sk-index-primary-strong);
  box-shadow: none;
  backdrop-filter: none;
}

.shared-index-page.section-honeymoon .quick-info .rating {
  color: #f1a100;
}

.shared-index-page.section-honeymoon .quick-info .reviews {
  color: var(--sk-index-muted);
  font-weight: 700;
}

.shared-index-page.section-honeymoon .image-overlay {
  display: none;
}

.shared-index-page.section-honeymoon .package-cta {
  width: 100%;
  min-height: 42px;
  margin-top: 2px;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
}

.shared-index-page.section-honeymoon .premium-cta-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 44px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(3, 66, 149, 0.96), rgba(3, 66, 149, 0.88)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%);
  color: #fff;
  box-shadow: 0 28px 58px rgba(3, 66, 149, 0.24);
}

.shared-index-page.section-honeymoon .cta-content {
  position: relative;
  z-index: 2;
  padding: 52px 28px;
  text-align: center;
}

.shared-index-page.section-honeymoon .cta-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 1.1rem + 1vw, 2.7rem);
  font-weight: 700;
}

.shared-index-page.section-honeymoon .cta-content p,
.shared-index-page.section-honeymoon .trust-item {
  color: rgba(255, 255, 255, 0.92);
}

.shared-index-page.section-honeymoon .trust-item {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.shared-index-page.section-spiritual .spiritual-header {
  min-height: clamp(360px, 68vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(17, 24, 39, 0.52), rgba(17, 24, 39, 0.52)),
    url('https://images.unsplash.com/photo-1524499982521-1ffd58dd89ea?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.shared-index-page.section-spiritual .header-text {
  position: relative;
  z-index: 2;
  padding: 40px 18px;
  text-align: center;
  color: #fff;
}

.shared-index-page.section-spiritual .header-text h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 3vw + 1rem, 4rem);
  font-weight: 700;
}

.shared-index-page.section-spiritual .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 0.82rem + 0.6vw, 1.25rem);
  border-right: 0;
  animation: none;
}

.shared-index-page.section-spiritual .container > .row {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.shared-index-page.section-spiritual .mb-12 {
  margin-top: 36px;
}

.shared-index-page.section-spiritual .destination-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shared-index-page.section-spiritual .card-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  background-color: #eef4fb;
}

.shared-index-page.section-spiritual .card-image-name {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: clamp(1.08rem, 0.96rem + 0.3vw, 1.3rem);
  font-weight: 800;
  line-height: 1.18;
  text-shadow: 0 10px 24px rgba(6, 22, 36, 0.45);
}

.shared-index-page.section-spiritual .card-image-duration {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(3, 66, 149, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 12px 20px rgba(3, 66, 149, 0.18);
}

.shared-index-page.section-spiritual .card-content .card-title {
  display: none;
}

.shared-index-page.section-spiritual .btn-book {
  min-width: 190px;
}

@media (max-width: 1199px) {
  .shared-index-page.section-honeymoon .features-container,
  .shared-index-page.section-honeymoon .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .shared-index-page .section-title {
    font-size: clamp(1.45rem, 1rem + 0.9vw, 2.1rem);
  }

  .shared-index-page .card-content {
    padding: 20px;
  }

  .shared-index-page.section-honeymoon .destinations-section,
  .shared-index-page.section-honeymoon .premium-cta-section,
  .shared-index-page.section-honeymoon .features-container,
  .shared-index-page.section-honeymoon .services-grid {
    width: min(100%, calc(100% - 20px));
  }
}

@media (max-width: 767px) {
  .shared-index-page .section-subtitle,
  .shared-index-page .spiritual-intro,
  .shared-index-page .luxury-subtitle {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .shared-index-page .card,
  .shared-index-page .destination-card,
  .shared-index-page .service-card,
  .shared-index-page .background_main,
  .shared-index-page.section-honeymoon .premium-cta-section {
    border-radius: 20px;
  }

  .shared-index-page .card-image,
  .shared-index-page .placeholder-image {
    min-height: 214px;
  }

  .shared-index-page.section-honeymoon .premium-hero-section {
    min-height: 540px;
  }

  .shared-index-page.section-honeymoon .hero-content {
    width: calc(100% - 18px);
    padding: 76px 14px 60px;
  }

  .shared-index-page.section-honeymoon .destinations-grid,
  .shared-index-page.section-honeymoon .features-container,
  .shared-index-page.section-honeymoon .services-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .shared-index-page.section-honeymoon .destination-card {
    width: min(100%, 320px);
  }

  .shared-index-page.section-honeymoon .card-content h3 {
    min-height: 0;
  }

  .shared-index-page.section-honeymoon .hero-cta-group,
  .shared-index-page.section-honeymoon .cta-buttons,
  .shared-index-page .trust-indicators {
    flex-direction: column;
    align-items: stretch;
  }

  .shared-index-page .luxury-cta,
  .shared-index-page .btn-book,
  .shared-index-page .package-cta,
  .shared-index-page .btn-primary {
    width: 100%;
  }

  .shared-index-page.section-spiritual .spiritual-header {
    min-height: 320px;
    border-radius: 0 0 24px 24px;
  }

  .shared-index-page.section-spiritual .header-text h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .shared-index-page .card-content {
    padding: 16px;
    gap: 14px;
  }

  .shared-index-page.section-honeymoon .luxury-title {
    font-size: 2.2rem;
  }

  .shared-index-page.section-honeymoon .luxury-badge,
  .shared-index-page.section-honeymoon .cta-badge,
  .shared-index-page .card-features span,
  .shared-index-page .feature-item,
  .shared-index-page .trust-item {
    font-size: 0.78rem;
  }

  .shared-index-page.section-honeymoon .destination-card {
    width: min(100%, 292px);
  }

  .shared-index-page.section-honeymoon .quick-info {
    gap: 10px;
    padding: 8px 10px;
  }

  .shared-index-page.section-honeymoon .card-image,
  .shared-index-page.section-honeymoon .placeholder-image {
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
  }

  .shared-index-page.section-spiritual .card-image {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: auto;
  }
}
