/* =========================
   INFO SECTION
========================= */
.info-section {
  padding: 80px 20px;
}

/* =========================
   TOP ROW
========================= */
.info-top {
  max-width: 1500px;
  margin: 0 auto 40px;

  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.45fr);
  gap: 30px;
  align-items: start;
}

/* =========================
   BOXES
========================= */
.info-box {
  background: #f4efe7;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.text-box {
  width: 100%;
  min-width: 0;
}

.image-box {
  width: 100%;
  min-width: 0;
}

.info-box h2 {
  margin: 0 0 12px;
  font-size: 30px;
  color: #2f2b22;
}

.info-box p {
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 16px;
}

/* =========================
   PUPPY PROCESS
========================= */
.puppy-info {
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}

.info-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.support-block {
  grid-column: span 2;
}

.puppy-info h2 {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  color: #1f1f1f;
}

.puppy-info ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 6px;
}

.puppy-info li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.25;
  max-width: 100%;
}

.puppy-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;

  color: #2e9e5b;
  font-weight: 900;
  font-size: 18px;
}

.puppy-info p {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 10px;
}

/* =========================
   IMAGE GRID
========================= */
.image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.img-wrap {
  overflow: hidden;
  border-radius: 14px;
}

.img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.img-wrap:hover img {
  transform: scale(1.15);
}

/* =========================
   PRICING BOX
========================= */
.pricing-box {
  max-width: 1500px;
  margin: 0 auto;
}

.table-section-title {
  margin: 28px 0 12px;
  font-size: 22px;
  color: #2f2b22;
}

/* =========================
   TABLES
========================= */
.pricing-table {
  width: 100%;
  margin-bottom: 28px;

  border-collapse: collapse;
  background: white;
  border-radius: 14px;
  overflow: hidden;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 15px;
}

.pricing-table th {
  background: #e9d66b;
  color: #2f2b22;
  font-weight: 900;
}

.pricing-table tr:nth-child(even) {
  background: #faf7f1;
}

.pricing-table td:last-child {
  font-weight: 800;
  color: #1f7a45;
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.85);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.3s ease;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .info-top {
    grid-template-columns: 1fr;
    max-width: 900px;
  }

  .image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .img-wrap img {
    height: 160px;
  }
}

@media (max-width: 800px) {
  .info-section {
    padding: 50px 20px;
  }

  .info-box {
    padding: 24px;
  }

  .puppy-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .support-block {
    grid-column: span 1;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .puppy-info h2,
  .info-box h2 {
    font-size: 26px;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .img-wrap img {
    height: 150px;
  }
}
.contract-link {
  margin-top: 25px;
  text-align: center;
}

.contract-link a {
  display: inline-block;
  padding: 13px 24px;
  background: #fff2df;
  color: #222;
  font-weight: 800;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}

.contract-link a:hover {
  transform: translateY(-2px);
  background: #f2dfc3;
}