: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(3, minmax(0, 1fr));
  gap: 24px;
}

.shared-index-page.section-honeymoon .destination-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.shared-index-page.section-honeymoon .card-image,
.shared-index-page.section-honeymoon .placeholder-image {
  aspect-ratio: 1 / 1;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
}

.shared-index-page.section-honeymoon .card-image {
  min-height: 0;
  height: auto;
  padding: 0;
}

.shared-index-page.section-honeymoon .card-image > .placeholder-image {
  flex: 1 1 auto;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  border-radius: inherit;
}

.shared-index-page.section-honeymoon .placeholder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.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;
}

.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;
}

.shared-index-page.section-tours .background_main {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: clamp(320px, 52vh, 520px);
  margin: 0;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 0 0 30px 30px;
  background: transparent;
  box-shadow: none;
}

.shared-index-page.section-tours .background_main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(118deg, rgba(8, 26, 43, 0.52) 0%, rgba(8, 26, 43, 0.18) 42%, rgba(8, 26, 43, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 38%, rgba(6, 22, 36, 0.24) 100%);
  pointer-events: none;
}

.shared-index-page.section-tours .background_main img {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.shared-index-page.section-tours .background_main::after {
  height: 46%;
}

.shared-index-page.section-tours > hr,
.shared-index-page.section-tours .background_main + hr,
.shared-index-page.section-tours .background_main + .container-fluid + hr {
  display: none;
}

.shared-index-page.section-tours .background_main + .container-fluid {
  width: min(1320px, calc(100% - 32px)) !important;
  margin: 26px auto 0;
  padding: clamp(22px, 2.6vw, 34px);
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  text-align: left !important;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.8fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
}

.shared-index-page.section-tours .background_main + .container-fluid,
.shared-index-page.section-tours .container[style*="display: flex"],
.shared-index-page.section-tours .row_cards {
  box-sizing: border-box;
}

.shared-index-page.section-tours .background_main + .container-fluid h4 {
  margin: 0;
  color: var(--sk-index-primary-strong);
  font-size: clamp(1.9rem, 1.15rem + 1vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.shared-index-page.section-tours .background_main + .container-fluid p {
  margin: 0;
  color: var(--sk-index-muted);
  font-size: 1rem;
  line-height: 1.9;
  padding-left: clamp(18px, 2vw, 28px);
  border-left: 1px solid #dfebf5;
}

.shared-index-page.section-tours .sk-index-hero-layout {
  width: min(1320px, calc(100% - 32px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: clamp(18px, 2.6vw, 30px);
  align-items: stretch;
}

.shared-index-page.section-tours .sk-index-hero-layout .background_main {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 40vw, 520px);
  margin: 0;
  border-radius: 28px;
}

.shared-index-page.section-tours .sk-index-hero-layout .background_main + .container-fluid,
.shared-index-page.section-tours .sk-index-hero-layout .sk-index-overview {
  width: 100% !important;
  margin: 0;
  padding: clamp(22px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 16px;
  grid-template-columns: 1fr;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.shared-index-page.section-tours .sk-index-hero-layout .background_main + .container-fluid h4,
.shared-index-page.section-tours .sk-index-hero-layout .sk-index-overview h4 {
  margin-bottom: 4px;
}

.shared-index-page.section-tours .sk-index-hero-layout .background_main + .container-fluid p,
.shared-index-page.section-tours .sk-index-hero-layout .sk-index-overview p {
  padding-left: 0;
  border-left: 0;
}

.shared-index-page.section-tours .container[style*="display: flex"] {
  width: min(1320px, calc(100% - 32px));
  display: block !important;
  margin: 34px auto 60px !important;
  padding: 0 !important;
}

.shared-index-page.section-tours .row_cards {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
  width: 100%;
  margin: 0 auto;
  align-items: stretch !important;
}

.shared-index-page.section-tours .row_cards > [class*="col-"] {
  display: flex !important;
  align-items: stretch !important;
  justify-content: center !important;
  margin: 0 !important;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}

.shared-index-page.section-tours .tour-card-column {
  display: flex !important;
  align-items: stretch !important;
  justify-content: center !important;
}

.shared-index-page.section-tours .row_cards .card {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(3, 66, 149, 0.1);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 22px 40px rgba(3, 66, 149, 0.1);
  position: relative;
  overflow: hidden;
}

.shared-index-page.section-tours .tour-package-card {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .shared-index-page.section-tours .row_cards > .col-lg-4,
  .shared-index-page.section-tours .tour-card-column.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .shared-index-page.section-tours .row_cards > .col-md-6,
  .shared-index-page.section-tours .tour-card-column.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .shared-index-page.section-tours .row_cards > [class*="col-"],
  .shared-index-page.section-tours .tour-card-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.shared-index-page.section-tours .row_cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 48px rgba(3, 66, 149, 0.15);
}

.shared-index-page.section-tours .row_cards .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(155deg, rgba(3, 66, 149, 0.14), rgba(3, 66, 149, 0.03) 44%, 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.section-tours .card-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
}

.shared-index-page.section-tours .tour-card-media {
  position: relative;
}

.shared-index-page.section-tours .card-image-name {
  display: none !important;
}

.shared-index-page.section-tours .card-image::after {
  height: 30%;
  background: linear-gradient(180deg, rgba(3, 66, 149, 0) 0%, rgba(3, 66, 149, 0.2) 100%);
}

.shared-index-page.section-tours .card-content,
.shared-index-page.section-tours .tour-card-content {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  flex: 1 1 auto;
  gap: 14px;
  padding: 16px 18px 18px;
  align-content: start;
}

.shared-index-page.section-tours .card-content h5 {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(3, 66, 149, 0.08);
  color: #5f7490;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
}

.shared-index-page.section-tours .tour-card-pack {
  max-width: 100%;
  margin: 0;
}

.shared-index-page.section-tours .card-content h4 {
  margin: 0;
  color: var(--sk-index-primary-strong);
  font-size: clamp(0.96rem, 0.9rem + 0.24vw, 1.12rem);
  font-weight: 800;
  line-height: 1.4;
}

.shared-index-page.section-tours .card-content .card-title {
  text-wrap: balance;
  text-align: center !important;
}

.shared-index-page.section-tours .tour-card-title-row {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 6px;
  text-align: center !important;
  justify-self: stretch;
  align-self: center;
}

.shared-index-page.section-tours .tour-card-title-row .card-title {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  flex: none;
  text-align: center !important;
  justify-content: center !important;
}

.shared-index-page.section-tours .card-content hr {
  display: none;
}

.shared-index-page.section-tours .card-image p {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(3, 66, 149, 0.92) !important;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 20px rgba(3, 66, 149, 0.16);
}

.shared-index-page.section-tours .tour-card-duration {
  display: none !important;
}

.shared-index-page.section-tours .vl,
.shared-index-page.section-tours .tour-card-features {
  display: none;
  padding: 14px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7fd 100%);
  box-shadow: inset 0 0 0 1px rgba(3, 66, 149, 0.08);
}

.shared-index-page.section-tours .vl .row,
.shared-index-page.section-tours .tour-feature-row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  justify-content: stretch;
  align-items: stretch !important;
  margin: 0;
}

.shared-index-page.section-tours .vl .col-2,
.shared-index-page.section-tours .vl .col-auto,
.shared-index-page.section-tours .tour-feature-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  flex: 1 1 auto;
  min-height: 74px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(3, 66, 149, 0.08);
}

.shared-index-page.section-tours .vl img,
.shared-index-page.section-tours .tour-feature-item img {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 12px rgba(3, 66, 149, 0.06));
}

.shared-index-page.section-tours .card-content .container,
.shared-index-page.section-tours .tour-card-actions {
  padding: 0;
  margin-top: auto;
  width: 100%;
}

.shared-index-page.section-tours .card-content .btn-primary,
.shared-index-page.section-tours .tour-card-button {
  width: 100%;
  min-height: 52px;
  border-radius: 18px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  box-shadow: 0 14px 26px rgba(3, 66, 149, 0.22);
}

.shared-index-page.section-tours .card-content .btn-primary:hover,
.shared-index-page.section-tours .tour-card-button:hover {
  box-shadow: 0 20px 30px rgba(3, 66, 149, 0.28);
}

.shared-index-page.section-tours .sk-clickable-card .card-content .container,
.shared-index-page.section-tours .sk-clickable-card .card-content > .text-center,
.shared-index-page.section-tours .sk-clickable-card .card-content > a {
  display: none !important;
}

.shared-index-page.section-tours h1 {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto 20px;
  color: var(--sk-index-primary-strong);
  font-size: clamp(1.8rem, 1.2rem + 0.9vw, 2.7rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.shared-index-page.section-tours .faq {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto 72px;
  display: grid;
  gap: 16px;
}

.shared-index-page.section-tours .faq-item {
  border: 1px solid #dfe9f3;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 254, 0.98) 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.shared-index-page.section-tours .faq-item:hover {
  transform: translateY(-2px);
  border-color: #d2e2ee;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}

.shared-index-page.section-tours .faq-question {
  position: relative;
  margin: 0;
  padding: 24px 70px 24px 24px;
  color: var(--sk-index-primary-strong);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.14rem);
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  background: transparent;
}

.shared-index-page.section-tours .faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #034295;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.shared-index-page.section-tours .faq-item:has(.faq-answer[style*="display: block"]) .faq-question::after {
  content: "−";
}

.shared-index-page.section-tours .faq-answer {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid #e7eff6;
}

.shared-index-page.section-tours .faq-answer p {
  margin: 18px 0 0;
  color: var(--sk-index-muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

@media (max-width: 1199px) {
  .shared-index-page.section-honeymoon .destinations-grid,
  .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-tours .sk-index-hero-layout,
  .shared-index-page.section-tours .background_main + .container-fluid,
  .shared-index-page.section-tours .container[style*="display: flex"],
  .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));
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .shared-index-page.section-tours .sk-index-hero-layout {
    grid-template-columns: 1fr;
  }

  .shared-index-page.section-tours .background_main {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .shared-index-page.section-tours .background_main + .container-fluid {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .shared-index-page.section-tours .background_main + .container-fluid p {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .shared-index-page.section-tours {
    overflow-x: clip;
  }

  .shared-index-page.section-tours .background_main {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .shared-index-page.section-tours .sk-index-hero-layout,
  .shared-index-page.section-tours .background_main + .container-fluid,
  .shared-index-page.section-tours .container[style*="display: flex"] {
    width: min(100%, calc(100% - 24px)) !important;
    max-width: min(100%, calc(100% - 24px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .shared-index-page.section-tours .sk-index-hero-layout .background_main {
    min-height: 300px;
    border-radius: 22px;
  }

  .shared-index-page.section-tours .sk-index-hero-layout .background_main + .container-fluid,
  .shared-index-page.section-tours .sk-index-hero-layout .sk-index-overview {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .shared-index-page.section-tours .background_main + .container-fluid {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .shared-index-page.section-tours .container[style*="display: flex"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .shared-index-page .section-subtitle,
  .shared-index-page .spiritual-intro,
  .shared-index-page .luxury-subtitle,
  .shared-index-page.section-tours .background_main + .container-fluid p {
    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,
  .shared-index-page.section-tours .background_main + .container-fluid {
    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: 1fr;
    gap: 16px;
  }

  .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;
  }

  .shared-index-page.section-tours .background_main,
  .shared-index-page.section-tours .background_main img {
    height: 260px;
    border-radius: 0 0 22px 22px;
  }

  .shared-index-page.section-tours .background_main + .container-fluid {
    margin-top: 18px;
    padding: 18px 16px;
  }

  .shared-index-page.section-tours .row_cards {
    --bs-gutter-x: 0;
    --bs-gutter-y: 1rem;
    max-width: 100%;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .shared-index-page.section-tours .row_cards > [class*="col-"],
  .shared-index-page.section-tours .tour-card-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .shared-index-page.section-tours .card-image {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: auto;
  }

  .shared-index-page.section-tours .card-content {
    padding: 18px;
    gap: 12px;
  }

  .shared-index-page.section-tours .vl .row,
  .shared-index-page.section-tours .tour-feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .shared-index-page.section-tours .vl .col-2,
  .shared-index-page.section-tours .vl .col-auto,
  .shared-index-page.section-tours .tour-feature-item {
    flex: 1 1 auto;
    max-width: none;
    min-height: 68px;
    padding: 9px;
  }

  .shared-index-page.section-tours .vl img,
  .shared-index-page.section-tours .tour-feature-item img {
    width: 40px;
    height: 40px;
  }

  .shared-index-page.section-tours h1,
  .shared-index-page.section-tours .faq {
    width: min(100%, calc(100% - 20px));
  }

  .shared-index-page.section-tours .faq-question {
    padding: 20px 62px 20px 18px;
    font-size: 0.98rem;
  }

  .shared-index-page.section-tours .faq-question::after {
    right: 18px;
    width: 32px;
    height: 32px;
  }

  .shared-index-page.section-tours .faq-answer {
    padding: 0 18px 18px;
  }
}

@media (max-width: 480px) {
  .shared-index-page.section-tours .sk-index-hero-layout,
  .shared-index-page.section-tours .background_main + .container-fluid,
  .shared-index-page.section-tours .container[style*="display: flex"] {
    width: min(100%, calc(100% - 20px)) !important;
    max-width: min(100%, calc(100% - 20px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .shared-index-page.section-tours .sk-index-hero-layout .background_main + .container-fluid,
  .shared-index-page.section-tours .sk-index-hero-layout .sk-index-overview {
    padding: 18px 16px;
    text-align: left !important;
  }

  .shared-index-page.section-tours .background_main + .container-fluid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .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-tours .background_main + .container-fluid {
    margin-top: 16px;
  }

  .shared-index-page.section-tours .faq {
    gap: 12px;
    margin-bottom: 52px;
  }

  .shared-index-page.section-tours .faq-item {
    border-radius: 20px;
  }

  .shared-index-page .card-image,
  .shared-index-page .placeholder-image,
  .shared-index-page.section-tours .card-image {
    min-height: 188px;
  }

  .shared-index-page.section-tours .card-image {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: auto;
  }

  .shared-index-page.section-tours .vl .row,
  .shared-index-page.section-tours .tour-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .shared-index-page.section-tours .vl .col-2,
  .shared-index-page.section-tours .vl .col-auto,
  .shared-index-page.section-tours .tour-feature-item {
    min-height: 64px;
    padding: 8px;
  }

  .shared-index-page.section-tours .vl img,
  .shared-index-page.section-tours .tour-feature-item img {
    width: 36px;
    height: 36px;
  }

}
