:root {
  --accent: #046a38; /* soft gold */
  --light-bg: #f9f9f9;
  --text-dark: #222;
  --text-muted: #555;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Navbar */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}
.logo span {
  color: var(--accent);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1em;
}
nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding-bottom: 0.2em;
}
nav a:hover,
nav a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.7em 1.4em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: #009639;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 0.7em 1.4em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
}

/* Hero Section (Full Background) */
.hero {
  position: relative;
  height: 90vh;
  background-image: url("hero.png");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay for readability */
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 1em;
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 1.5em;
}

.hero-buttons {
  display: flex;
  gap: 1em;
}

/* Sections */
.section {
  padding: 4em 0;
  text-align: center;
}
.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1em;
}
.section p {
  color: var(--text-muted);
  max-width: 700px;
  margin: auto;
}

.light-bg {
  background: var(--light-bg);
}

/* About Us Section Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3em;
  text-align: left;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1em;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1em;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.about img {
  width: 100%;
  margin-top: 2em;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* Services */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5em;
  margin-top: 2em;
}
.card {
  background: #fff;
  border-radius: 10px;
  padding: 2em 1.5em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card.highlight {
  background: var(--accent);
  color: #fff;
}
.card h3 {
  margin-bottom: 0.5em;
}
.card-icon {
  color: #009639;
  margin-bottom: 0.8em;
}

/* Team */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-top: 2em;
}
.team-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5em;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1em;
}

/* Contact */
.contact-info p {
  margin: 0.5em 0;
  color: var(--text-dark);
}

/* Footer */
footer {
  background: #111;
  color: #bbb;
  text-align: center;
  padding: 1.5em 0;
  font-size: 0.9rem;
  margin-top: 2em;
}

/* Language Switch */
.lang-switch {
  display: flex;
  gap: 0.3em;
}

.lang-btn {
  background: #f5f5f5;
  border: none;
  padding: 0.4em 0.8em;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  color: #333;
}

.lang-btn.active {
  background: var(--accent);
  color: white;
}
.hidden {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
    height: 70vh;
  }
  .hero-content {
    padding: 0 1.5em;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* --- Responsive Navigation --- */

/* Hamburger Icon (Hidden on Desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 28px;
  height: 22px;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hide Menu on Mobile by Default */
@media (max-width: 900px) {
  .nav-container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    border-bottom: 1px solid #eee;
    z-index: 999;
  }

  nav ul.show {
    max-height: 400px;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    padding: 1em 0;
  }

  .nav-right {
    margin-left: auto;
    gap: 0.6em;
  }

  .menu-toggle {
    display: flex;
  }

  /* Animate hamburger to X */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Hide contact button for mobile if still present */
  .contact-btn {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin-top: 2em;
  }

  .about-text {
    text-align: left;
  }
}
