/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #2d2d2d;
  line-height: 1.7;
  background: #fff;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background: #3a6e5c;
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
}

header h1 {
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

header .tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #3a6e5c;
  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover { background: #e8f5f1; }

/* Sections */
section {
  padding: 3.5rem 0;
}

section:nth-child(even) {
  background: #f7faf9;
}

section h2 {
  font-size: 1.8rem;
  color: #3a6e5c;
  margin-bottom: 1.2rem;
}

section p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.service-card {
  background: #fff;
  border: 1px solid #d4e8e0;
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
}

.service-card h3 {
  font-size: 1rem;
  color: #3a6e5c;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.95rem;
  margin: 0;
}

.note {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}

/* How it works */
.steps {
  padding-left: 1.4rem;
  font-size: 1.05rem;
}

.steps li {
  margin-bottom: 0.8rem;
}

/* Contact */
#contact {
  text-align: center;
}

.contact-detail {
  font-size: 1.1rem;
  margin: 0.4rem 0;
}

.contact-detail a {
  color: #3a6e5c;
  text-decoration: none;
}

.contact-detail a:hover { text-decoration: underline; }

/* Badge */
.badge {
  display: inline-block;
  background: #e8f5f1;
  color: #3a6e5c;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-top: 0.5rem;
}

/* Pricing table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 1rem;
}

th, td {
  text-align: left;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #d4e8e0;
}

th {
  background: #e8f5f1;
  color: #3a6e5c;
  font-family: Georgia, serif;
}

tr:last-child td { border-bottom: none; }

/* Donate section */
#donate {
  background: #3a6e5c;
  color: #fff;
  text-align: center;
}

#donate h2 { color: #fff; }
#donate p { color: rgba(255,255,255,0.9); }
#donate a { color: rgba(255,255,255,0.85); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  margin-top: 1rem;
}

.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Map */
.map-wrap {
  margin-top: 1.2rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #d4e8e0;
}

/* Booking form */
#book form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; }
}

#book label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: bold;
  color: #3a6e5c;
  gap: 0.3rem;
}

#book label.full { width: 100%; }

#book input,
#book select,
#book textarea {
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  color: #2d2d2d;
  padding: 0.5rem 0.75rem;
  border: 1px solid #c0d8cf;
  border-radius: 4px;
  background: #fff;
  width: 100%;
}

#book input:focus,
#book select:focus,
#book textarea:focus {
  outline: 2px solid #3a6e5c;
  border-color: #3a6e5c;
}

#book textarea { resize: vertical; }

.checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 0.6rem !important;
  font-size: 0.95rem !important;
  color: #2d2d2d !important;
  font-weight: normal !important;
  cursor: pointer;
}

.checkbox input { width: auto !important; }

#book button[type="submit"] {
  align-self: flex-start;
  background: #3a6e5c;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#book button[type="submit"]:hover { background: #2f5a4a; }

.contact-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d4e8e0;
  font-size: 1rem;
  color: #555;
}

.contact-info a {
  color: #3a6e5c;
  text-decoration: none;
}

.contact-info a:hover { text-decoration: underline; }

/* Footer */
footer {
  background: #2d2d2d;
  color: #aaa;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}
