/* ===================================
   MOBILE-FIRST RESPONSIVE DESIGN
   =================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  background-color: #000;
  color: #00b33c;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  color: #00b33c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 179, 60, 0.1);
  transition: all 0.3s ease;
}

.logo {
  font-weight: 800;
  font-size: clamp(1rem, 4vw, 1.5rem);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: none;
  gap: 2rem;
}

.nav-menu a {
  color: #00b33c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00b33c;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #00b33c;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Dropdown */
.mobile-menu {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 100%;
  max-width: 300px;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 999;
  box-shadow: -5px 0 20px rgba(0, 179, 60, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  color: #00b33c;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 179, 60, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  padding-left: 1rem;
  color: #00ff4c;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  position: relative;
  background: url('background.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 4rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 179, 60, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 15vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-word {
  display: block;
  color: #fff;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.quote-btn {
  display: inline-block;
  background: #00b33c;
  color: #fff;
  padding: 1.2rem 3rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 179, 60, 0.4);
  cursor: pointer;
}

.quote-btn:hover {
  background: #00ff4c;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 255, 76, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.pulse-btn {
  animation: pulse 2s ease-in-out infinite;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
  padding: 5rem 5% 4rem;
  background-color: #000;
  color: #00b33c;
}

.services h2 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 2px solid rgba(0, 179, 60, 0.3);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: #00b33c;
}

.accordion-header {
  background: none;
  color: #00b33c;
  padding: 1.5rem 0;
  width: 100%;
  text-align: left;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  content: '−';
  transform: rotate(180deg);
}

.accordion-header:hover {
  color: #00ff4c;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.7;
}

.accordion-header.active + .accordion-content {
  max-height: 300px;
  padding: 0 0 1.5rem 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
  background: linear-gradient(135deg, #00b33c, #009933);
  padding: 5rem 5% 4rem;
  color: #000;
}

.contact h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
}

.contact p {
  margin-bottom: 2rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-family: inherit;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #000;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact textarea {
  min-height: 150px;
  resize: vertical;
}

.contact button {
  background: #000;
  color: #00b33c;
  border: none;
  padding: 1.2rem 3rem;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  max-width: 300px;
}

.contact button:hover {
  background: #111;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===================================
   GALLERY / CAROUSEL
   =================================== */

.gallery {
  background: #0a0a0a;
  padding: 5rem 0 4rem;
  text-align: center;
}

.carousel-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 5%;
}

.carousel-slides {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 179, 60, 0.2);
  aspect-ratio: 16 / 10;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  display: block;
  position: relative;
}

.gallery-controls {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.gallery-controls button {
  background: rgba(0, 179, 60, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  padding: 1rem 2rem;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 700;
  min-width: 60px;
  box-shadow: 0 5px 15px rgba(0, 179, 60, 0.3);
}

.gallery-controls button:hover {
  background: #00ff4c;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 255, 76, 0.4);
}

.gallery-controls button:active {
  transform: scale(0.95);
}

.carousel-indicators {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.carousel-indicators .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(85, 85, 85, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-indicators .dot:hover {
  background: rgba(0, 179, 60, 0.7);
  transform: scale(1.2);
}

.carousel-indicators .dot.active {
  background: #00b33c;
  transform: scale(1.3);
  border-color: rgba(0, 179, 60, 0.3);
  box-shadow: 0 0 10px rgba(0, 179, 60, 0.5);
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: #00b33c;
  padding: 2rem 5%;
  text-align: center;
  color: #000;
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Tablets and larger */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    padding: 10rem 5% 6rem;
  }

  .carousel-slides {
    aspect-ratio: 16 / 9;
  }

  .carousel-container {
    max-width: 1200px;
  }

  .services {
    padding: 6rem 5%;
  }

  .contact {
    padding: 6rem 5%;
  }

  .gallery {
    padding: 6rem 5%;
  }
}

/* Large desktops */
@media (min-width: 1200px) {
  header {
    padding: 1.5rem 8%;
  }

  .hero {
    padding: 12rem 8% 8rem;
  }

  .services,
  .contact,
  .gallery {
    padding: 8rem 8%;
  }

  .carousel-container {
    padding: 0;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  header {
    padding: 1rem 4%;
  }

  .hero {
    padding: 6rem 4% 3rem;
    min-height: 90vh;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    margin-bottom: 1.5rem;
  }

  .quote-btn {
    padding: 1rem 2rem;
    width: 100%;
    max-width: 280px;
  }

  .services,
  .contact {
    padding: 3rem 4%;
  }

  .gallery {
    padding: 3rem 0;
  }

  .carousel-container {
    padding: 0 4%;
  }

  .carousel-slides {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .gallery-controls button {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    min-width: 50px;
  }

  .carousel-indicators .dot {
    width: 10px;
    height: 10px;
  }
}

/* Print styles */
@media print {
  header,
  .menu-toggle,
  .mobile-menu,
  .quote-btn,
  .gallery-controls,
  .carousel-indicators {
    display: none;
  }
}
