/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
  color: #0f172a;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 60px;
  text-align: center;
}

/* HERO */
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

/* LOGO */
.logo {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* DIVIDER */
hr {
  border: none;
  height: 6px;
  background: black;
  margin: 30px auto;
  width: 100%;
}

/* TYPOGRAPHY */
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

p {
  color: #475569;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 24px;
  background: linear-gradient(135deg, #14532d, #1d4ed8);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  margin-top: 60px;
}

/* PACKAGE GRID */
.package-grid {
  display: grid;
  gap: 20px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* PACKAGE CARD */
.package-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  padding: 28px 22px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.package-card.featured {
  border: 2px solid #1d4ed8;
}

/* PACKAGE LIST */
.package-list {
  list-style: none;
  padding: 0;
  margin: 15px auto;
  text-align: center;
}

.package-list li {
  margin: 6px 0;
  color: #334155;
}

/* BUILD GRID */
.build-grid {
  display: grid;
  gap: 16px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .build-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* BUILD ITEMS */
.item-row {
  background: white;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: left;
}

.item-row select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
}

/* BOOK CTA */
.build-cta {
  margin-top: 30px;
}

/* DEPOSIT NOTE */
.deposit-note {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #1d4ed8;
  font-weight: 600;
}

/* SERVICE AREA NOTE */
.service-area-note {
  margin-top: 14px;
  font-size: 1rem;
  color: #475569;
  font-weight: 500;
}

/* FORM WRAPPER */
.customer-form-wrapper {
  margin-top: 70px;
  background: white;
  padding: 50px;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* FORM */
.customer-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* FORM HEADING */
.customer-form h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0f172a;
}

/* INPUTS + TEXTAREA */
.customer-form input,
.customer-form textarea {
  width: 100%;
  padding: 18px 20px;
  font-size: 1rem;
  border-radius: 14px;
  border: 1px solid #dbe3ee;
  background: #f8fafc;
  transition: all 0.25s ease;
  color: #0f172a;
}

/* TEXTAREA */
.customer-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* INPUT FOCUS */
.customer-form input:focus,
.customer-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

/* PLACEHOLDER */
.customer-form input::placeholder,
.customer-form textarea::placeholder {
  color: #94a3b8;
}

/* SUMMARY */
.order-summary {
  margin-top: 10px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.order-summary h3 {
  margin-bottom: 14px;
}

.order-summary p {
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 600;
}

/* TOTAL */
.total {
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  justify-content: center;
  align-items: center;
}

/* MODAL BOX */
.modal-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  position: relative;
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
}

/* DEPOSIT SUMMARY */
.deposit-summary {
  margin: 20px 0;
  font-size: 1.05rem;
}

.deposit-summary strong {
  font-size: 1.2rem;
}

/* PAYPAL CONTAINER */
#paypal-modal-container {
  margin-top: 15px;
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
footer {
  margin-top: 60px;
  font-size: 0.9rem;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .customer-form-wrapper {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .customer-form h2 {
    font-size: 1.7rem;
  }

  .customer-form input,
  .customer-form textarea {
    padding: 16px;
    font-size: 1rem;
  }
}

/* ========================= */
/* PACKAGE IMAGES */
/* ========================= */

.package-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  background: #fff;
}

.package-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

/* DESKTOP IMAGE SIZE */
@media (min-width: 768px) {
  .package-image img {
    max-height: 260px;
    object-fit: contain;
  }
}

/* MOBILE IMAGE SIZE */
@media (max-width: 767px) {
  .package-image img {
    max-height: none;
    object-fit: contain;
  }
}

/* IMAGE ZOOM */
.package-card:hover .package-image img {
  transform: scale(1.05);
}
