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

body {
  font-family: 'Lato', sans-serif;
  color: #f0eeea;
  background: #4a3c1a;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Navigation */
nav {
  background: #4e8f3c;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

nav .nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

nav .logo {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: 'Beau Rivage', cursive;
  text-decoration: none;
  letter-spacing: 0.5px;
}

nav .logo img {
  height: 1.1em;
  width: auto;
  vertical-align: text-top;
  margin-left: 10px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  border: 1px solid #111;
}

nav .logo-home img {
  border-width: 1.5px;
}

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

nav ul a {
  color: #b0c080;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active {
  color: #fff;
}

/* Homepage-only nav: centered, taller, larger logo */
nav.nav-home {
  padding: 0 2rem;
}

nav.nav-home .nav-inner-home {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 1.2rem 0 1rem;
  gap: 0.75rem;
}

nav.nav-home .logo-home {
  font-size: 4.2rem;
  letter-spacing: 2px;
  font-family: 'Beau Rivage', cursive;
}

/* Hero */
.hero {
  background:
  linear-gradient(135deg, rgba(30, 65, 30, 0.82) 0%, rgba(58, 110, 42, 0.75) 60%, rgba(90, 150, 55, 0.70) 100%),
  url('hero.jpg');
background-size: cover;
background-position: center;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 3rem;
  opacity: 0.75;
}

.scroll-indicator span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8e8b0;
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  border-right: 3px solid #c8e8b0;
  border-bottom: 3px solid #c8e8b0;
  transform: rotate(45deg);
  animation: bounce-down 1.4s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.75; }
  50%       { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #d4e8c2;
}

.btn {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover {
  background: #a93226;
  transform: translateY(-1px);
}

/* Warning badge */
.warning-strip {
  background: #5a3808;
  border-left: 5px solid #8b5a18;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #d4a855;
}

/* Sections */
section {
  padding: 5rem 2rem;
}

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

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #96ff6a;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #c8c4bc;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

/* Homepage services — always 3 columns */
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.service-card {
  background: #1a1c28;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  border-top: 4px solid #5a9a45;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card .card-body {
  padding: 1.5rem;
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .services-grid-3 {
    grid-template-columns: 1fr;
  }
}

.service-card h3 {
  color: #96ff6a;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.service-card p {
  color: #d8d4cc;
  font-size: 0.97rem;
}

/* Why us */
.why-us {
  background: #232e12;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-item {
  text-align: center;
  padding: 1.5rem;
}

.why-item .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #96ff6a;
}

.why-item p {
  color: #d8d4cc;
  margin-top: 0.4rem;
}

/* CTA strip */
.cta-strip {
  background: #8b2818;
  color: #fff;
  text-align: center;
  padding: 3.5rem 2rem;
}

.cta-strip h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-strip p {
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.btn-white {
  display: inline-block;
  background: #1c1c1c;
  color: #c05040;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.2s;
}

.btn-white:hover {
  background: #252525;
}

/* About page */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.about-text h2 {
  color: #96ff6a;
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: #d8d4cc;
  margin-bottom: 1rem;
}

.credentials {
  list-style: none;
  margin-top: 1.5rem;
}

.credentials li {
  padding: 0.4rem 0;
  color: #d8d4cc;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.credentials li::before {
  content: "✔";
  color: #96ff6a;
  font-weight: 700;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  color: #96ff6a;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #d8d4cc;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #d8d4cc;
}

.contact-detail .label {
  font-weight: 600;
  color: #96ff6a;
  min-width: 70px;
}

/* Contact form */
.contact-form {
  background: #1a1c28;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.contact-form h3 {
  color: #96ff6a;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #f0eeea;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #2a2d3a;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #12141e;
  color: #f0eeea;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5a9a45;
  background: #1a1d28;
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: #2a3e18;
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-submit:hover {
  background: #1a2810;
}

/* Page hero (inner pages) */
.page-hero {
  background:
    linear-gradient(135deg, rgba(30, 65, 30, 0.82) 0%, rgba(58, 110, 42, 0.75) 60%, rgba(90, 150, 55, 0.70) 100%),
    url('hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: #d4e8c2;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #0f1408;
  color: #888;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

footer a {
  color: #96ff6a;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.1rem; }
  .about-section,
  .contact-grid { grid-template-columns: 1fr; }

  /* Nav: stack logo above links, all within the green bar */
  nav .nav-inner {
    flex-direction: column;
    height: auto;
    padding: 0.75rem 1rem 1rem;
    gap: 0.5rem;
    align-items: center;
  }

  nav .logo {
    font-size: 1.1rem;
  }

  nav .logo img {
    margin-right: 6px;
  }

  nav ul {
    gap: 1.8rem;
    justify-content: center;
  }

  nav ul a {
    font-size: 0.95rem;
  }
}

/* Contact page — light background */
body.contact-page {
  background: #fff;
  color: #2d2d2d;
}

body.contact-page .contact-info h2 { color: #2e5e2e; }
body.contact-page .contact-info p { color: #555; }
body.contact-page .contact-detail { color: #444; }
body.contact-page .contact-detail .label { color: #2e5e2e; }
body.contact-page .contact-detail a { color: #2e5e2e; }

body.contact-page .contact-form {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
body.contact-page .contact-form h3 { color: #2e5e2e; }
body.contact-page .form-group label { color: #333; }
body.contact-page .form-group input,
body.contact-page .form-group select,
body.contact-page .form-group textarea {
  background: #fafafa;
  border-color: #ddd;
  color: #2d2d2d;
}
body.contact-page .form-group input:focus,
body.contact-page .form-group select:focus,
body.contact-page .form-group textarea:focus {
  border-color: #4a8a3a;
  background: #fff;
}
body.contact-page .btn-submit { background: #2e5e2e; }
body.contact-page .btn-submit:hover { background: #1e4020; }
