.header {
  background: #2a4b2d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.logo-wrapper {
  flex: 1;
}

.logo-link {
  display: inline-block;
}

.logo-image {
  max-width: 200px;
  max-height: 60px;
  width: auto;
  display: block;
}

.nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Desktop Navigation */
.desktop-nav {
  display: block;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: whitesmoke;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #007cba;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #007cba;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}

.menu-toggle .icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.menu-toggle.active .icon-open {
  opacity: 0;
}

.menu-toggle.active .icon-close {
  opacity: 1;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  padding: 100px 30px 30px;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active .mobile-menu {
  right: 0;
}

.mobile-menu-list {
  list-style: none;
}

.mobile-menu-item {
  margin-bottom: 20px;
}

.mobile-menu-link {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: #007cba;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .header-container {
    padding: 0 15px;
    min-height: 70px;
  }

  .logo-image {
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 280px;
    right: -280px;
    padding: 80px 20px 20px;
  }

  .mobile-menu-link {
    font-size: 16px;
    padding: 12px 0;
  }
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
}
.contact-form-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  color: #2a4b2d;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button.submit-button {
  width: 100%;
  padding: 10px;
  background-color: #2a4b2d;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

button.submit-button:hover {
  background-color: #1e2536;
}

.success-message {
  display: none;
  padding: 15px;
  background-color: #28a745;
  color: white;
  border-radius: 5px;
  text-align: center;
  margin-top: 20px;
}
