/* ===============================
   SEKCJE – BAZA
================================ */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #2c2c2c;
}

.section p {
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}

/* ===============================
   INTRO PAKIETU
================================ */

.package-intro {
  padding-top: 160px;
}

.package-intro strong {
  color: #d4af6d;
  font-weight: 500;
}

/* ===============================
   BACK LINK – PAKIETY
================================ */

.package-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 32px;

  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.6px;

  color: #b89b5e;
  text-decoration: none;

  opacity: 0.85;
  transition: 
    opacity .3s ease,
    transform .3s ease,
    color .3s ease;
}

.package-back:hover {
  opacity: 1;
  color: #d4af6d;
  transform: translateX(-4px);
}

/* MOBILE */
@media (max-width: 768px) {
  .package-back {
    font-size: 12px;
    margin-bottom: 24px;
  }
}



/* ===============================
   HERO PAKIETU
================================ */

.package-hero {
  position: relative;
  padding: 180px 20px 1px;
  text-align: center;


  overflow: hidden;
}



.package-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

/* LABEL */
.package-label {
  display: inline-block;
  margin-bottom: 26px;
  padding: 8px 26px;

  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  color: #c9a45a;
  border: 1px solid rgba(201,164,90,0.55);
  border-radius: 30px;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}

/* TYTUŁ */
.package-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #2c2c2c;
  margin-bottom: 24px;
}

/* SUBTITLE */
.package-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
  margin: 0 auto;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .package-hero {
    padding: 140px 20px 120px;
  }

  .package-hero h1 {
    font-size: 48px;
  }

  .package-subtitle {
    font-size: 16px;
  }

}

/* ===============================
   ATRAKCJE
================================ */

.package-items {
  display: flex;
  flex-direction: column;
  gap: 160px;
}

/* POJEDYNCZY BLOK */
.package-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  text-align: left;
}

/* ODWRÓCONY */
.package-item.reverse {
  direction: rtl;
}

.package-item.reverse > * {
  direction: ltr;
}

/* ZDJĘCIE */
.package-item-image img {
  width: 100%;
  border-radius: 36px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.18);
}

/* CONTENT */
.package-item-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.package-item-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 26px;
  color: #555;
}

/* LISTA */
.package-item-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-item-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #444;
}

.package-item-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af6d;
  font-weight: 600;
}

/* ===============================
   JAK TO DZIAŁA
================================ */

.how-it-works {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  border-radius: 48px;
}

.steps {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  background: rgba(255,255,255,0.75);
  border-radius: 28px;
  padding: 40px 26px;
  box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;

  border-radius: 50%;
  background: #d4af6d;
  color: #fff;
  font-weight: 600;
}

.step p {
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================
   FAQ
================================ */

.faq-section {
  max-width: 900px;
}

.faq-section details {
  margin-bottom: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.6);
  padding: 20px 26px;
  cursor: pointer;
}

.faq-section summary {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #2c2c2c;
}

.faq-section p {
  margin-top: 14px;
  font-size: 15px;
  color: #555;
}

/* ===============================
   CENNIK
================================ */

.elegance-pricing {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  border-radius: 56px;
}

.pricing-title span {
  color: #d4af6d;
}

.pricing-subtitle {
  margin-bottom: 70px;
  font-size: 16px;
  color: #666;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.pricing-card {
  background: #fff;
  border-radius: 36px;
  padding: 50px 36px;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.1);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.featured {
  border: 2px solid #d4af6d;
  transform: scale(1.04);
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 24px;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

.pricing-prices {
  margin-bottom: 34px;
}

.old-price {
  display: block;
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
}

.new-price {
  font-size: 30px;
  font-weight: 600;
  color: #d4af6d;
}

/* ===============================
   CTA
================================ */

.package-cta {
  padding-bottom: 160px;
}

.package-cta p {
  margin-bottom: 36px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {

  .package-item {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 520px) {

  .section {
    padding: 90px 20px;
  }

  .section h2 {
    font-size: 32px;
  }

  .package-item-content h3 {
    font-size: 30px;
  }

}

  .logo img {
    height: 50px;
  }