/* styles.css */

:root {
  --green-dark: #153623;
  --green-light: #93bf3f;
  --gray-dark: #2e2e2e;
  --white: #f9f9f9;
  --denim: #93aeca;
  --dark-blue: #121737;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--white);
  color: var(--gray-dark);
  line-height: 1.6;
}

header {
  background-color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#top-bar {
  background-color: var(--green-dark);
  color: white;
  padding: 8px 20px;
  text-align: center;
  font-weight: bold;
}

#top-bar a {
  color: var(--green-light);
  text-decoration: underline;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.company-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  font-family: "Poppins", sans-serif;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: 600;
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: white;
    padding: 10px 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  .nav-links a {
    margin: 10px 0;
  }
}

.hero {
  margin-top: 100px;
  height: 90vh;
  background: url("images/hero_img.png") no-repeat center center/cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero * {
  position: relative;
  z-index: 2;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 25px;
  max-width: 700px;
}

.cta-button {
  background-color: var(--green-dark);
  color: white;
  padding: 14px 28px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: #345c13;
}

.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.highlight {
  max-width: 250px;
  text-align: center;
}

.highlight i {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.highlight h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.highlight p {
  font-size: 0.95rem;
  color: #444;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 36px;
  color: var(--green-dark);
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--gray-dark);
}

.service-card p {
  font-size: 1rem;
  color: #444;
}

.testimonials p {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 6px;
  margin: 20px 0;
  font-style: italic;
}

.contact-split {
  background: #f9f9f9;
  padding: 80px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-info ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: var(--green-dark);
}

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
}

#contact button {
  width: 100%;
}
.color-divider {
  height: 10px;
  background-color: var(--green-dark);
  width: 100%;
}

footer {
  background-color: var(--green-dark);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
