body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-style: italic;
  color: white;
  background: #0b2e13;
}

/* ── LANDING PAGE HERO (cover_page.jpeg) ── */
.hero {
  background: url('cover_page.jpeg') center/cover no-repeat;
  height: 60vh;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.bold {
  font-weight: bold;
  text-align: center;
  font-size: 28px;
}

.btn {
  margin-top: 20px;
  padding: 12px 30px;
  background: green;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #0f8f2f;
  transform: scale(1.04);
}

/* ── DESCRIPTION ── */
.description {
  padding: 30px;
  text-align: center;
  font-size: 18px;
}

/* ── QUOTE ── */
.quote {
  background: #0a2a12;
  padding: 50px 20px;
  text-align: center;
}

.quote-icon {
  font-size: 50px;
  color: #ccc;
}

.quote p {
  max-width: 600px;
  margin: auto;
  font-size: 18px;
}

/* ── WHATSAPP FLOAT BUTTON ── */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 999;
}

.whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

/* ── CONTACT PAGE HERO (contact.jpeg) ── */
.contact-hero {
  background: url('contact.jpeg') center/cover no-repeat;
  height: 260px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dark overlay so the heading is readable over the image */
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
}

.contact-hero h1 {
  position: relative; /* sit above the ::before overlay */
  font-size: 34px;
  font-weight: bold;
  font-style: italic;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
}

/* ── CONTACT FORM BOX ── */
.contact-box {
  background: #06210d;
  padding: 30px 20px;
}

/* ── FORM INPUTS ── */
.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 15px;
  margin: 12px 0;
  background: #2a2a2a;
  border: none;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  font-style: italic;
  box-sizing: border-box;
  transition: outline 0.2s ease;
}

.contact-box input:focus,
.contact-box textarea:focus {
  outline: 2px solid #0f8f2f;
}

.contact-box textarea {
  height: 120px;
  resize: vertical;
}

/* ── SUBMIT BUTTON ── */
.contact-box button {
  width: 100%;
  padding: 15px;
  background: #0f8f2f;
  border: none;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-box button:hover {
  background: #0c6f25;
  transform: scale(1.02);
}

.contact-box button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .bold {
    font-size: 20px;
  }

  .contact-hero {
    height: 200px;
  }

  .contact-hero h1 {
    font-size: 26px;
    text-align: center;
    padding: 0 16px;
  }
}