/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #ffffff;
  color: #111;
}

main {
  flex: 1;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header / Nav */
header {
  background: #0f3d2e;
  color: white;
  padding: 15px 0;
  position: relative;
  z-index: 2000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Waffle Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  z-index: 3000; 
  padding: 5px;
}

/* Hero */
.hero {
  background: #145c44;
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 20px auto;
  line-height: 1.5;
}

/* Button */
.btn {
  display: inline-block;
  background: #0f3d2e;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #145c44;
}

/* Features / Services Grid */
.features, .services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 0;
}

.feature, .card {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

.price {
  margin-top: 10px;
  font-weight: bold;
  color: #0f3d2e;
}

/* Page Header */
.page-header {
  background: #145c44;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

/* About Section Styles */
.about {
  padding: 40px 0;
}

.about-text {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about ul {
  margin: 15px 0 25px 20px;
  line-height: 1.6;
}

/* Hardware Box */
.hardware-box {
  background-color: #e8f3ec;
  border: 2px solid #0f3d2e;
  border-radius: 8px;
  padding: 20px;
  margin: 40px 0;
  text-align: center;
}

.home-hardware {
  max-width: 600px;
  margin: 40px auto;
}

/* Booking Form Spacing */
.booking-section {
  padding: 60px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #145c44;
  text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

/* Footer Improvements */
.footer {
  background: #0f3d2e;
  color: white;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.payment-methods {
  text-align: right;
  font-size: 0.9rem;
}

.payment-methods span {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f3d2e;
    padding: 20px 0;
    border-top: 1px solid #145c44;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  nav ul li {
    margin-left: 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .payment-methods {
    text-align: center;
  }
}