/* 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;
  line-height: 1.4; 
}

main {
  flex: 1;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header & Logo Fix */
header {
  background: #0f3d2e;
  color: white;
  padding: 8px 0;
  position: relative;
  z-index: 2000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.header-logo {
  height: 40px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Toggle for Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* Layout Tweaks & Bigger Headers */
.hero, .page-header {
  background: #145c44;
  color: white;
  text-align: center;
  padding: 35px 20px;
}

.hero h2, .page-header h2 { 
  font-size: 32px; 
  margin-bottom: 10px; 
}

.features, .services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  padding: 15px 0;
}

.feature, .card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: #145c44;
  margin-bottom: 10px;
}

/* Dark Green "View Services" Button */
.btn {
  display: inline-block;
  background-color: #0f3d2e;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.2s;
}

.btn:hover {
  background-color: #0b2920;
}

/* Fixed Hardware Box & Hours */
.hardware-box {
  background-color: #e8f3ec;
  border: 2px solid #0f3d2e;
  border-radius: 8px;
  padding: 15px;
  margin: 15px auto;
  text-align: center;
  max-width: 800px;
}

.hours-section { padding: 15px 0; text-align: center; }

/* Expanded this card for even spacing on the page */
.hours-card {
  max-width: 600px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 1rem;
}

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* Form Styling & Booking Centering */
.booking-section {
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: auto;
  padding: 20px 0;
}

.form-group { text-align: left; }
.form-group label { display: block; font-weight: bold; color: #145c44; margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Professional About Page Layout */
.professional-about {
  padding: 40px 0;
  text-align: left;
}

.about-hero-text {
  max-width: 850px;
  margin-bottom: 40px;
}

.about-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #145c44;
  font-weight: bold;
  margin-bottom: 15px;
  border-left: 4px solid #0f3d2e;
  padding-left: 15px;
}

.about-hero-text p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.about-col h3 {
  color: #0f3d2e;
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #e8f3ec;
  padding-bottom: 8px;
}

.about-col p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.pro-bullets {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.pro-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.pro-bullets li::before {
  content: "■";
  color: #145c44;
  font-size: 0.8rem;
  position: absolute;
  left: 0;
  top: 2px;
}

/* Footer & Social Icons with Bigger Text */
.footer {
  background: #0f3d2e;
  color: white;
  padding: 20px 0;
  font-size: 1rem; 
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: white;
  font-size: 1.6rem;
  transition: transform 0.2s;
}

.footer-socials a:hover { transform: scale(1.1); }

/* Mobile View */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f3d2e;
    padding: 10px 0;
  }
  nav.active { display: block; }
  nav ul { flex-direction: column; align-items: center; gap: 10px; }
  .footer-content { flex-direction: column; text-align: center; }
}