/* Header Styles */
* {
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  width: 100%;
   overflow-x: hidden;
}

header {
  background: linear-gradient(135deg, #2d5a3d 0%, #3d7a4f 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 80px;
}

.navbar {
  background: transparent !important;
  padding: 0px;
  height: 100%
}

.max-width-1800 {
  max-width: 1800px !important;
}

/* Logo Styling */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  color: white !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.pr-118 {
  padding-right: 118px !important;
}

.logo {
  height: 90px;
  width: auto;
}

.brand-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-light {
  font-weight: 300;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 1px;
  opacity: 0.9;
  position: absolute;
  bottom: -5px;
  left: 50px;
  white-space: nowrap;
}

/* Navigation Links */
.navbar-nav {
  gap: 3.688rem;
}

.nav-link {
  color: white !important;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 0 !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #7fd67e;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #7fd67e !important;
}

.nav-link.active {
  color: white !important;
}

/* Dropdown Menu */
.dropdown-menu {
  background-color: #fbfffc;
  border: 2px solid #2d5a3d;
  border-radius: 8px;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #2d5a3d;
}

.dropdown-item {
  color: #2d5a3d;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #3d7a4f !important;
}

.dropdown-item:hover {
  background-color: #3d7a4f;
  color: #d5e2d5;
}

/* Teklif Al Button */
.btn-teklif {
  height: 55px;
  width: 262px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5cb85c;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 0.6rem 2rem;
  border-radius: 5px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(92, 184, 92, 0.3);
}

.btn-teklif:hover {
  background-color: #449d44;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 184, 92, 0.4);
}

/* Hamburger Menu Icon */
.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Responsive */
@media (max-width: 991px) {
  header {
    height: auto;
    min-height: 80px;
  }

  .navbar-collapse {
    background: linear-gradient(135deg, #2d5a3d 0%, #3d7a4f 100%);
    margin: 0 -12px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .navbar-nav {
    gap: 0;
    width: 100%;
  }

  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 1rem 0 !important;
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  /* Dropdown menu in mobile */
  .dropdown-menu {
    background-color: rgba(251, 255, 252, 0.95);
    border: none;
    margin-top: 0.5rem;
    margin-left: 1rem;
  }

  .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  /* Teklif Al button in mobile */
  .btn-teklif {
    margin-top: 1rem;
    width: 100%;
    height: 50px;
  }

  .d-flex.pr-118 {
    padding-right: 0 !important;
    width: 100%;
  }

  .brand-subtitle {
    font-size: 0.55rem;
  }

  .pl-55 {
    padding-left: 15px !important;
  }

  .pr-118 {
    padding-right: 15px !important;
  }

  .logo {
    height: 70px;
  }

  .navbar {
    padding: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .logo {
    height: 60px;
  }

  .navbar-collapse {
    padding: 1rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }
}
