.page-tours-group .group-tours-info {
  padding: 48px 0 72px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59, 130, 246, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fbff 0%, #fff 42%, #f1f5f9 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.08);
}

.group-tours-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 44px;
}

.group-tours-intro-main {
  position: relative;
  padding: 32px 30px 28px;
  background: #fff;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.group-tours-intro-main::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e56a0 0%, #3b82f6 50%, #0ea5e9 100%);
}

.group-tours-intro-main::after {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.group-tours-intro-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.group-tours-intro-lead {
  margin: 0 0 14px;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.85;
  color: var(--text);
}

.group-tours-intro-body {
  margin: 0 0 20px;
  color: var(--text-muted);
  line-height: 2;
  font-size: 1rem;
}

.group-tours-intro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.group-tours-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  border-radius: 50px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.group-tours-intro-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 26px;
  border-radius: 22px;
  background: linear-gradient(160deg, #1e56a0 0%, #2563eb 48%, #0ea5e9 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(30, 86, 160, 0.22);
}

.group-tours-intro-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(6px);
}

.group-tours-intro-panel p {
  margin: 0 0 18px;
  line-height: 1.9;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.94);
}

.group-tours-intro-panel strong {
  color: #fff;
  font-weight: 700;
}

.group-tours-intro-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.group-tours-intro-types li span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.group-tours-info-head {
  text-align: center;
  margin-bottom: 24px;
}

.group-tours-info-head .section-title {
  margin: 10px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.group-tours-info-features {
  margin-bottom: 36px;
}

.group-tours-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.group-tours-feature-card {
  background: #fff;
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.group-tours-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 86, 160, 0.22);
  box-shadow: 0 14px 32px rgba(30, 86, 160, 0.1);
}

.group-tours-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  font-size: 1.25rem;
}

.group-tours-feature-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
  font-size: 0.95rem;
}

.group-tours-info-tips {
  margin-bottom: 36px;
}

.group-tours-tips-list {
  margin: 0;
  padding: 24px 28px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: grid;
  gap: 12px;
}

.group-tours-tips-list li {
  position: relative;
  padding-right: 28px;
  color: var(--text-muted);
  line-height: 1.8;
}

.group-tours-tips-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e56a0 0%, #3b82f6 100%);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.group-tours-closing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.group-tours-closing-text,
.group-tours-cta-box {
  background: #fff;
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.group-tours-closing-title {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: var(--text);
}

.group-tours-closing-text p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.9;
}

.group-tours-cta-box {
  background: linear-gradient(145deg, #1e56a0 0%, #2563eb 55%, #0ea5e9 100%);
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.group-tours-cta-title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #fff;
}

.group-tours-cta-box p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  font-size: 0.95rem;
}

.group-tours-cta-tagline {
  margin-bottom: 18px !important;
  font-weight: 600;
  color: #fff !important;
}

.group-tours-cta-btn {
  align-self: flex-start;
  background: #fff !important;
  color: #1e56a0 !important;
  border: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.group-tours-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}

@media (max-width: 900px) {
  .group-tours-intro {
    grid-template-columns: 1fr;
  }

  .group-tours-closing-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-tours-group .group-tours-info {
    padding: 36px 0 56px;
  }

  .group-tours-tips-list {
    padding: 20px 18px;
  }
}
