:root {
  --brand-green: #A3FE3D;
  --brand-green-dark: #90E73A;
  --bg-dark: #000;
  --bg-light: #111;
  --text-light: #FFF;
  --font-sans: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

.top-bar {
  background: var(--brand-green);
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.top-bar a {
  color: #000;
  text-decoration: underline;
  font-weight: 700;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-dark);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 10px;
}

.menu-toggle span {
  height: 4px;
  width: 28px;
  background: #A3FE3D;
  display: block;
  border-radius: 2px;
}

nav {
  flex-basis: 100%;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  justify-content: flex-end;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem;
  transition: color .2s;
}

nav ul li a:hover {
  color: var(--brand-green);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-light);
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.7);
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-light);
  background: var(--bg-dark);
  transition: background .2s, color .2s;
}

.dropdown-menu li a:hover {
  background: var(--bg-light);
  color: var(--brand-green);
}

.btn-quote,
.btn-primary {
  background: var(--brand-green);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}

.btn-quote:hover,
.btn-primary:hover {
  background: var(--brand-green-dark);
}

/* Hero section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero img.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: absolute;
  top: 20%;
  left: 5%;
  z-index: 2;
  max-width: 90%;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--bg-dark);
  padding: 1rem 0;
}

.footer-icons img {
  height: 50px;
  transition: filter .3s, opacity .2s;
}

.footer-icons a img {
  height: 32px;
}

.footer-icons a img:hover {
  opacity: 0.7;
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: var(--bg-dark);
    width: 100%;
    padding: 1rem;
  }

  nav ul.show {
    display: flex;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-quote {
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
  }
}
