/* ═══════════════════════════════════════════════════════════════ */
/* SHELTERS PAGE TEMPLATE STYLES                                   */
/* ═══════════════════════════════════════════════════════════════ */

/* ═══════════════ SHELTERS CONTENT SECTION ═══════════════ */
.shelters-content {
  padding: 80px 20px;
  background: var(--color-white);
}

.shelters-content .container {
  max-width: 900px;
  margin: 0 auto;
}

.shelters-content h1 {
  font: var(--textH1Font);
  color: var(--color-dark);
  margin-bottom: 20px;
  font-size: 36px;
  letter-spacing: -0.5px;
}

.shelters-subtitle {
  font-size: 18px;
  color: var(--color-gray-blue);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
}

/* ═══════════════ PRICING TABLE ═══════════════ */
.pricing-table {
  margin: 40px 0;
  display: flex;
}

.pricing-table table {
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.pricing-table table tr {
  display: flex;
}

.pricing-table table td {
  padding: 12px 16px;
  border-right: 1px solid var(--color-border);
  font-size: 16px;
  color: var(--color-dark);
}

.pricing-table table td:last-child {
  border-right: none;
}

.pricing-amount {
  color: var(--color-dark);
}

/* ═══════════════ BOOK NOW BUTTON ═══════════════ */
.book-now-btn {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 30px 0;
  display: block;
  width: fit-content;
  letter-spacing: 0.5px;
}

.book-now-btn:hover {
  background: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 94, 0, 0.3);
}

.book-now-btn:active {
  transform: translateY(0);
}

/* ═══════════════ SECTION DIVIDER ═══════════════ */
.section-divider {
  border: none;
  border-top: 1px solid var(--color-light-gray);
  margin: 50px 0;
  height: 0;
}

/* ═══════════════ SERVICE DESCRIPTION ═══════════════ */
.service-description {
  margin: 50px 0;
}

.service-description h2 {
  font: var(--textH2Font);
  color: var(--color-dark);
  margin-bottom: 20px;
  font-size: 28px;
}

.service-description p {
  font-size: 16px;
  color: var(--color-gray-blue);
  line-height: 1.8;
  margin: 0;
}

/* ═══════════════ CONTACT DETAILS ═══════════════ */
.contact-details {
  margin: 50px 0;
}

.contact-details h2 {
  font: var(--textH2Font);
  color: var(--color-dark);
  margin-bottom: 20px;
  font-size: 28px;
}

.contact-details p {
  font-size: 16px;
  color: var(--color-gray-blue);
  line-height: 1.8;
  margin: 0;
}

/* ═══════════════ RESPONSIVE DESIGN ═══════════════ */
@media (max-width: 768px) {
  .shelters-content {
    padding: 60px 15px;
  }

  .shelters-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .shelters-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .pricing-table table {
    width: 100%;
  }

  .pricing-table table tr {
    flex-direction: column;
  }

  .pricing-table table td {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 15px 20px;
    min-width: auto;
  }

  .pricing-table table td:last-child {
    border-bottom: none;
  }

  .book-now-btn {
    padding: 14px 40px;
    font-size: 15px;
    margin: 25px 0;
  }

  .section-divider {
    margin: 40px 0;
  }

  .service-description,
  .contact-details {
    margin: 40px 0;
    padding: 30px 0;
  }

  .service-description h2,
  .contact-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .service-description p,
  .contact-details p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .shelters-content {
    padding: 40px 12px;
  }

  .shelters-content h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .shelters-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .pricing-table table td {
    padding: 12px 15px;
    font-size: 15px;
  }

  .book-now-btn {
    padding: 12px 32px;
    font-size: 14px;
    margin: 20px 0;
  }

  .section-divider {
    margin: 30px 0;
  }

  .service-description h2,
  .contact-details h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .service-description p,
  .contact-details p {
    font-size: 14px;
  }
}
