/* ========================================
   Levanty – Pakete Styles
   ======================================== */

/* --- Pakete Hero --- */
.pakete-hero {
  padding: 120px 0 64px;
  background: var(--gray-100);
}

.pakete-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.pakete-hero__desc {
  font-size: 1.125rem;
  color: var(--gray-700);
  max-width: 640px;
  line-height: 1.7;
}

.pakete-hero .section-label {
  margin-bottom: 16px;
}

/* --- Pakete List --- */
.pakete-list {
  padding: 80px 0;
}

/* --- Pakete Kategorien --- */
.pakete-kategorie {
  margin-bottom: 72px;
}

.pakete-kategorie:last-child {
  margin-bottom: 0;
}

.pakete-kategorie__header {
  margin-bottom: 36px;
  max-width: 600px;
}

.pakete-kategorie__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--magenta);
  margin-bottom: 10px;
}

.pakete-kategorie__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.pakete-kategorie__header p {
  font-size: 0.975rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.pakete-kategorie__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .pakete-kategorie__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Featured Paket Card --- */
.paket-card--featured {
  border-color: var(--magenta);
  background: linear-gradient(135deg, #fff 0%, rgba(226, 0, 116, 0.02) 100%);
}

.paket-card--featured .paket-card__icon {
  background: rgba(226, 0, 116, 0.08);
}

/* Legacy grid (unused, kept for safety) */
.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 960px) {
  .pakete-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

/* --- Paket Card --- */
.paket-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.paket-card:hover {
  border-color: var(--magenta);
  box-shadow: 0 8px 32px rgba(226, 0, 116, 0.1);
  transform: translateY(-4px);
}

.paket-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--magenta);
  flex-shrink: 0;
}

.paket-card:hover .paket-card__icon {
  background: rgba(226, 0, 116, 0.08);
}

.paket-card__meta {
  margin-bottom: 12px;
}

.paket-card__format {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

.paket-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.paket-card p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.paket-card__highlights {
  list-style: none;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.paket-card__highlights li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding-left: 20px;
  position: relative;
}

.paket-card__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
}

.paket-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--magenta);
  margin-top: auto;
}

/* --- Pakete CTA Box --- */
.pakete-cta-box {
  padding: 0 0 80px;
}

.pakete-cta-box__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
}

.pakete-cta-box__text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pakete-cta-box__text p {
  color: var(--gray-700);
  max-width: 480px;
}

@media (max-width: 768px) {
  .pakete-cta-box__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
  }
}

/* --- Homepage Pakete Section --- */
.homepage-pakete {
  padding: 80px 0;
  background: var(--white);
}

.homepage-pakete__groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.homepage-pakete__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.homepage-pakete__group-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.homepage-pakete__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.homepage-paket-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.homepage-paket-card:hover {
  border-color: var(--magenta);
  box-shadow: 0 6px 24px rgba(226, 0, 116, 0.1);
  transform: translateY(-3px);
}

.homepage-paket-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--magenta);
}

.homepage-paket-card__format {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 8px;
  display: block;
}

.homepage-paket-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.homepage-paket-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
  flex-grow: 1;
}

.homepage-pakete__more {
  text-align: center;
}

@media (max-width: 600px) {
  .homepage-pakete__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Paket Hero (Detail Page) --- */
.paket-hero {
  padding: 120px 0 72px;
  background: var(--gray-100);
}

.paket-hero__back {
  margin-bottom: 28px;
}

.paket-hero__back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: color var(--transition);
}

.paket-hero__back a:hover {
  color: var(--black);
}

.paket-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.paket-hero__inner--no-image {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.paket-hero .section-label {
  margin-bottom: 16px;
}

.paket-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.paket-hero__lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 28px;
}

.paket-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.paket-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
}

.paket-hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.paket-hero__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .paket-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- Paket Details --- */
.paket-details {
  padding: 80px 0;
}

.paket-details__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.paket-details__main h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.25;
}

.paket-details__main h2 + p {
  color: var(--gray-700);
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .paket-details__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Paket Steps --- */
.paket-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
}

.paket-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}

.paket-step:last-child {
  border-bottom: none;
}

.paket-step__number {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--magenta);
  padding-top: 4px;
}

.paket-step__content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.paket-step__content p {
  font-size: 0.925rem;
  color: var(--gray-700);
  line-height: 1.65;
}

/* --- Paket Checklist --- */
.paket-checklist {
  list-style: none;
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.paket-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.paket-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(226, 0, 116, 0.1);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23e20074' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* --- Paket Reference --- */
.paket-reference {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-top: 48px;
}

.paket-reference__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(226, 0, 116, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
}

.paket-reference p {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.paket-reference a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--magenta);
  text-decoration: none;
}

.paket-reference a:hover {
  text-decoration: underline;
}

/* Card variant */
.paket-reference--card {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  border: 1px solid #e8e8e8;
  background: #fff;
}

.paket-reference--card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.paket-reference__image {
  width: 200px;
  min-width: 200px;
  overflow: hidden;
}

.paket-reference__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.paket-reference__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.paket-reference__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--magenta);
}

.paket-reference--card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black, #0a0a0a);
  line-height: 1.35;
  margin: 0;
}

.paket-reference__meta {
  display: flex;
  gap: 0;
  font-size: 0.82rem;
  color: #777;
  font-weight: 500;
}

.paket-reference__meta span + span {
  margin-left: 8px;
}

.paket-reference__meta span + span::before {
  content: '·';
  margin-right: 8px;
}

.paket-reference__link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--magenta);
}

@media (max-width: 600px) {
  .paket-reference--card {
    flex-direction: column;
  }
  .paket-reference__image {
    width: 100%;
    min-width: unset;
    height: 180px;
  }
}

/* --- Paket Sidebar --- */
.paket-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.paket-sidebar-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
}

.paket-sidebar__photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.paket-sidebar__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.paket-sidebar__info strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.paket-sidebar__info span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.paket-sidebar-cta {
  padding: 28px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
}

.paket-sidebar-cta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.paket-sidebar-cta p {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.6;
}

.paket-sidebar-cta .btn {
  width: 100%;
  justify-content: center;
}

.paket-sidebar-facts {
  padding: 24px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
}

.paket-sidebar-facts h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.paket-sidebar-facts ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.paket-sidebar-facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.875rem;
}

.paket-sidebar-facts li span:first-child {
  color: var(--gray-400);
  font-weight: 500;
  white-space: nowrap;
}

.paket-sidebar-facts li span:last-child {
  font-weight: 600;
  text-align: right;
}

/* --- Paket Video --- */
.paket-video {
  padding: 0 0 80px;
}

.paket-video__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 800px;
}

.paket-video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
