:root {
  --primary: #07ae4d;
  --primary-dark: #048a3c;
  --bg-dark: #000000;
  --bg-darker: #050505;
  --bg-card: rgba(255, 255, 255, 0.05);
  --text-light: #f5f5f5;
  --text-muted: #aaaaaa;
  --font-main: 'Outfit', sans-serif;
  --font-head: 'Teko', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
}

.section-title span {
  color: var(--primary);
}

.title-underline {
  height: 4px;
  width: 60px;
  background-color: var(--primary);
  margin-bottom: 2rem;
}

.title-underline.center {
  margin: 0 auto 2rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.dark-section {
  background-color: var(--bg-darker);
}

.mt-4 {
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(7, 174, 77, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(7, 174, 77, 0.3);
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.5rem;
}

/* Navigation */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  transition: all 0.3s ease;
  z-index: 1000;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(7, 174, 77, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 100px;
  transition: all 0.3s ease;
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.2));
}

#navbar.scrolled .nav-logo img {
  height: 70px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links li a:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}

.nav-links li a:not(.btn):hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background-color: var(--primary);
  transition: all 0.3s;
}

/* Hero Section */
#hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 10;
}

.hero-content p {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #fff;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down svg {
  width: 40px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.scroll-down svg:hover {
  opacity: 1;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-wrapper {
  position: relative;
  border-radius: 8px;
}

.image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 4px solid var(--primary);
  border-radius: 12px;
  z-index: -1;
  transition: all 0.3s ease;
}

.image-wrapper:hover::before {
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
}

.image-wrapper img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

.badges {
  display: flex;
  gap: 15px;
  margin-top: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* Target Species Section */
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.target-container {
  position: relative;
  z-index: 1;
}

/* Scrolling Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  background: var(--bg-darker);
  border-top: 2px solid rgba(7, 174, 77, 0.3);
  border-bottom: 2px solid rgba(7, 174, 77, 0.3);
  padding: 3rem 0;
  margin-top: 4rem;
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-darker) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-darker) 0%, transparent 100%);
}

.marquee-content {
  display: flex;
  animation: scroll 35s linear infinite;
  align-items: center;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content span {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.7);
  padding: 0 30px;
  transition: all 0.3s ease;
  cursor: default;
  line-height: 1;
}

.marquee-content span:not(.dot):hover {
  color: var(--primary);
  -webkit-text-stroke: 1.5px var(--primary);
  text-shadow: 0 0 20px rgba(7, 174, 77, 0.5);
  transform: scale(1.05);
}

.marquee-content span.dot {
  color: var(--primary);
  -webkit-text-stroke: 0;
  font-size: 2rem;
  padding: 0;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.info-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Target Action Grid */
.target-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 4rem;
  padding: 0 10px;
}

.action-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(7, 174, 77, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.action-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.action-item:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(7, 174, 77, 0.4);
  transform: translateY(-8px);
  z-index: 2;
}

.action-item:hover img {
  transform: scale(1.1);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 174, 77, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Contact Section */
.contact-cta {
  background: linear-gradient(45deg, var(--bg-dark), var(--bg-darker));
  padding: 40px;
  border: 1px solid rgba(7, 174, 77, 0.2);
  border-radius: 12px;
  margin-top: -60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.icon-box {
  background: rgba(7, 174, 77, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 174, 77, 0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item>a:hover .icon-box {
  background: rgba(7, 174, 77, 0.3);
  transform: scale(1.05);
}

.info-text h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #fff;
}

.info-text a,
.info-text p {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.info-text a:hover {
  color: var(--primary);
}

.testimonial-box {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  position: relative;
}

.testimonial-box::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 6rem;
  color: rgba(7, 174, 77, 0.1);
  line-height: 1;
}

.quote {
  font-style: italic;
  font-size: 1.2rem;
  color: #fff;
}

.stars {
  margin-top: 20px;
  display: flex;
  gap: 5px;
}

/* Footer */
footer {
  background: #000;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(7, 174, 77, 0.2);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo img {
  height: 120px;
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.2));
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations */
.reveal-top {
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-bottom {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-left {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-right {
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-top.active,
.reveal-bottom.active,
.reveal-left.active,
.reveal-right.active {
  transform: translate(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .target-action-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .target-action-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(7, 174, 77, 0.2);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid var(--primary);
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(7, 174, 77, 0.3);
  animation: zoom 0.3s ease-out;
}

@keyframes zoom {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--primary);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95vw;
  }
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 40px;
  }
}