/* ============================================
   ORGANIC SENTINEL - Bio-Defense Command Center
   Natural Pest Management for Indoor Botanical Collections
   ============================================ */

:root {
  /* Base Colors - Organic Sentinel Palette */
  --color-deep-forest: #010B08;
  --color-warning-amber: #FFBF00;
  --color-bio-pulse-lime: #32CD32;
  --color-vapor-white: #F8F9FA;
  --color-dark-green: #0A2E1F;
  --color-mid-green: #1A5A3A;
  --color-light-green: #2D8A5F;
  
  /* Typography */
  --font-primary: 'Exo', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(50, 205, 50, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

body {
  font-family: var(--font-mono);
  background-color: var(--color-deep-forest);
  color: var(--color-vapor-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-bio-pulse-lime);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

a {
  color: var(--color-bio-pulse-lime);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-warning-amber);
}

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

.header-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, rgba(1, 11, 8, 0.95) 0%, rgba(10, 46, 31, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(50, 205, 50, 0.2);
  z-index: 1000;
  box-sizing: border-box;
}

.header-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}

.brand-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--color-bio-pulse-lime);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 15px;
  align-items: center;
}

.nav-menu li a {
  font-size: clamp(0.875rem, 2vw, 1rem);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.nav-menu li a:hover {
  background: rgba(50, 205, 50, 0.1);
  box-shadow: 0 0 10px rgba(50, 205, 50, 0.3);
}

.burger-button {
  display: none;
  background: transparent;
  border: 2px solid var(--color-bio-pulse-lime);
  color: var(--color-bio-pulse-lime);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
  transition: all var(--transition-base);
  order: 999;
}

.burger-button:hover {
  background: rgba(50, 205, 50, 0.1);
  box-shadow: var(--shadow-glow);
}

.burger-button.active {
  background: var(--color-bio-pulse-lime);
  color: var(--color-deep-forest);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(1, 11, 8, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: var(--space-xxl) var(--space-lg);
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xxl);
}

.mobile-menu-list li a {
  display: block;
  font-size: 1.25rem;
  padding: var(--space-md);
  border-bottom: 1px solid rgba(50, 205, 50, 0.2);
  transition: all var(--transition-base);
}

.mobile-menu-list li a:hover {
  color: var(--color-warning-amber);
  padding-left: var(--space-lg);
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: transparent;
  border: 2px solid var(--color-bio-pulse-lime);
  color: var(--color-bio-pulse-lime);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.5rem;
  transition: all var(--transition-base);
}

.mobile-menu-close:hover {
  background: var(--color-bio-pulse-lime);
  color: var(--color-deep-forest);
}

/* ============================================
   HERO BANNERS (Full-Width)
   ============================================ */

.hero-banner {
  width: 100%;
  max-width: 100vw;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-deep-forest) 0%, var(--color-dark-green) 100%);
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  padding: var(--space-xxl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(135deg, var(--color-bio-pulse-lime) 0%, var(--color-warning-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-vapor-white);
  opacity: 0.9;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(50, 205, 50, 0.3);
  box-shadow: var(--shadow-glow);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.1) 0%, rgba(255, 191, 0, 0.1) 100%);
  z-index: 1;
  animation: scanline 3s linear infinite;
}

@keyframes scanline {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-lg);
  box-sizing: border-box;
}

.content-section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(10, 46, 31, 0.3) 0%, rgba(26, 90, 58, 0.2) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(50, 205, 50, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-bio-pulse-lime) 0%, var(--color-warning-amber) 100%);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-bio-pulse-lime);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  align-items: start;
}

.section-text {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.8;
  color: var(--color-vapor-white);
  opacity: 0.9;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
  width: 100%;
}

.image-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(50, 205, 50, 0.3);
  transition: all var(--transition-base);
}

.image-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-bio-pulse-lime);
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
  max-width: 100%;
  object-fit: cover;
}

.image-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--color-bio-pulse-lime) 0%, var(--color-light-green) 100%);
  color: var(--color-deep-forest);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-top: 10px;
}

.btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(135deg, var(--color-warning-amber) 0%, var(--color-bio-pulse-lime) 100%);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-bio-pulse-lime);
  color: var(--color-bio-pulse-lime);
}

.btn-secondary:hover {
  color: white;
  background: rgba(50, 205, 50, 0.1);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(10, 46, 31, 0.5) 0%, rgba(26, 90, 58, 0.3) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(50, 205, 50, 0.3);
  box-sizing: border-box;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-bio-pulse-lime);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  background: rgba(1, 11, 8, 0.7);
  border: 2px solid rgba(50, 205, 50, 0.3);
  border-radius: var(--radius-md);
  color: var(--color-vapor-white);
  font-family: var(--font-mono);
  font-size: clamp(0.875rem, 2vw, 1rem);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-bio-pulse-lime);
  box-shadow: 0 0 10px rgba(50, 205, 50, 0.3);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

/* ============================================
   GOOGLE MAPS
   ============================================ */

.map-container {
  width: 100%;
  max-width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(50, 205, 50, 0.3);
  margin: var(--space-xl) 0;
  box-sizing: border-box;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.footer-container {
  background: linear-gradient(135deg, rgba(1, 11, 8, 0.95) 0%, rgba(10, 46, 31, 0.95) 100%);
  border-top: 1px solid rgba(50, 205, 50, 0.2);
  padding: var(--space-xl) var(--space-lg);
  margin-top: var(--space-xxl);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.footer-section h3 {
  font-family: var(--font-primary);
  color: var(--color-bio-pulse-lime);
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-menu li a {
  color: var(--color-vapor-white);
  opacity: 0.8;
  font-size: clamp(0.875rem, 2vw, 1rem);
  transition: all var(--transition-base);
}

.footer-menu li a:hover {
  opacity: 1;
  color: var(--color-bio-pulse-lime);
  padding-left: var(--space-sm);
}

.footer-info {
  color: var(--color-vapor-white);
  opacity: 0.7;
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.8;
}

.footer-copyright {
  text-align: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(50, 205, 50, 0.2);
  color: var(--color-vapor-white);
  opacity: 0.6;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.date {
  color: var(--color-warning-amber);
  font-family: var(--font-mono);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1023px) {
  .nav-menu {
    display: none;
  }
  
  .burger-button {
    display: block;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-image-wrapper {
    min-height: 300px;
  }
  
  .section-content {
    grid-template-columns: 1fr;
  }
  
  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: var(--space-md);
  }
  
  .hero-banner {
    min-height: 50vh;
  }
  
  .hero-content {
    padding: var(--space-lg) var(--space-md);
  }
  
  main {
    padding: var(--space-lg) var(--space-md);
  }
  
  .content-section {
    padding: var(--space-md);
  }
  
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .header-wrapper {
    padding: 0;
  }
  
  .brand-text {
    font-size: 1rem;
  }
  
  .hero-banner {
    min-height: 40vh;
  }
  
  .contact-form {
    padding: var(--space-md);
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
  
  .header-container {
    padding: var(--space-sm);
  }
  
  .hero-content {
    padding: var(--space-md) var(--space-sm);
  }
  
  main {
    padding: var(--space-md) var(--space-sm);
  }
}

/* ============================================
   DESKTOP OPTIMIZATION (Large Screens)
   ============================================ */

@media (min-width: 1024px) {
  .header-container {
    padding: var(--space-md) var(--space-xl);
  }
  
  .hero-content {
    padding: var(--space-xxl) var(--space-xl);
  }
  
  main {
    padding: var(--space-xxl) var(--space-xl);
  }
  
  .content-section {
    padding: var(--space-xl) var(--space-xl);
  }
  
  .section-content {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
  }
  
  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
  }
  
  .hero-image-wrapper {
    min-height: 500px;
  }
  
  .contact-form {
    padding: var(--space-xl) var(--space-xxl);
  }
}

@media (min-width: 1440px) {
  .header-wrapper,
  .hero-content,
  main,
  .footer-wrapper {
    max-width: 1600px;
  }
  
  .hero-content {
    padding: calc(var(--space-xxl) * 1.5) var(--space-xxl);
  }
  
  main {
    padding: calc(var(--space-xxl) * 1.5) var(--space-xxl);
  }
  
  .content-section {
    padding: calc(var(--space-xl) * 1.5) var(--space-xxl);
  }
  
  .section-content {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: calc(var(--space-xl) * 1.2);
  }
  
  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
  }
  
  .hero-image-wrapper {
    min-height: 600px;
    max-width: 1200px;
  }
  
  .hero-text {
    max-width: 900px;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 18px;
  }
  
  .header-wrapper,
  .hero-content,
  main,
  .footer-wrapper {
    max-width: 1800px;
  }
  
  .hero-content {
    padding: calc(var(--space-xxl) * 2) var(--space-xxl);
  }
  
  main {
    padding: calc(var(--space-xxl) * 2) var(--space-xxl);
  }
  
  .content-section {
    padding: calc(var(--space-xl) * 2) var(--space-xxl);
  }
  
  .section-content {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
  
  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  .hero-image-wrapper {
    min-height: 700px;
    max-width: 1400px;
  }
  
  .hero-text {
    max-width: 1000px;
  }
}

/* ============================================
   ULTRA-WIDE SCREEN SUPPORT
   ============================================ */

@media (min-width: 2560px) {
  html {
    font-size: 20px;
  }
  
  .header-wrapper,
  .hero-content,
  main,
  .footer-wrapper {
    max-width: 2000px;
  }
}

