:root {
  --bg-dark: #060a08;
  --bg-card: rgba(10, 20, 14, 0.7);
  --bg-card-hover: rgba(14, 30, 20, 0.85);
  --neon-green: #00ff66;
  --neon-green-dim: #00bf4c;
  --neon-green-glow: rgba(0, 255, 102, 0.35);
  --neon-green-subtle: rgba(0, 255, 102, 0.1);
  --border-neon: rgba(0, 255, 102, 0.25);
  --border-neon-bright: rgba(0, 255, 102, 0.6);
  --text-main: #e2f9ed;
  --text-muted: #8ca395;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  /* Pointillism Dotted Canvas Background Motif */
  background-image: 
    radial-gradient(var(--neon-green-glow) 1px, transparent 1px),
    radial-gradient(rgba(0, 255, 102, 0.08) 1px, transparent 1px);
  background-size: 24px 24px, 12px 12px;
  background-position: 0 0, 6px 6px;
}

/* Slim Non-Sticky Header */
.site-header {
  width: 100%;
  background: rgba(6, 12, 8, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-neon);
  position: relative; /* Not fixed/sticky so it scrolls away naturally */
  z-index: 100;
  padding: 10px 20px;
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.logo-dot-matrix {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 3px;
}

.logo-dot-matrix span {
  width: 4px;
  height: 4px;
  background-color: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--neon-green);
}

.logo-brand span.highlight {
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green-glow);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-green);
  text-shadow: 0 0 8px var(--neon-green-glow);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  border-radius: 2px;
}

.header-cta {
  background: transparent;
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  text-shadow: 0 0 5px var(--neon-green-glow);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
}

.header-cta:hover {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 0 20px var(--neon-green);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Base Layout Containers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-section {
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-green-subtle);
  border: 1px solid var(--border-neon);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--neon-green);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-green);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #a2eed0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(90deg, #00ff66 0%, #a2ffc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px var(--neon-green-glow);
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Glassmorphism Cards with Pointillism Accent */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--border-neon-bright);
  box-shadow: 0 10px 30px rgba(0, 255, 102, 0.12);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

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

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

.card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(6, 12, 8, 0.85);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-action {
  margin-top: auto;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--border-neon);
  color: var(--neon-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-card:hover {
  background: var(--neon-green);
  color: #050a07;
  border-color: var(--neon-green);
  box-shadow: 0 0 15px var(--neon-green-glow);
}

/* Detail Page Header & Content */
.detail-hero {
  padding: 40px 0 20px;
}

.detail-img-banner {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-neon);
  margin: 20px 0 30px;
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.1);
}

.content-box {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
}

.content-box h2 {
  font-size: 1.8rem;
  color: var(--neon-green);
  margin: 30px 0 15px;
}

.content-box h2:first-child {
  margin-top: 0;
}

.content-box h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 20px 0 10px;
}

.content-box p {
  margin-bottom: 18px;
  color: #d1e2d8;
  font-size: 1.02rem;
  line-height: 1.7;
}

.content-box ul, .content-box ol {
  margin: 0 0 20px 24px;
  color: #d1e2d8;
}

.content-box li {
  margin-bottom: 8px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.fact-card {
  background: rgba(0, 255, 102, 0.04);
  border: 1px solid var(--border-neon);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.fact-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.fact-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-top: 4px;
}

/* Contact Form Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 12px var(--neon-green-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  background: var(--neon-green);
  color: #050a07;
  font-weight: 700;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  width: 100%;
}

.btn-submit:hover {
  box-shadow: 0 0 25px var(--neon-green);
  transform: translateY(-2px);
}

/* STRICT MANDATORY UNIVERSAL FOOTER */
.site-footer {
  background: rgba(4, 8, 5, 0.95);
  border-top: 1px solid var(--border-neon);
  padding: 50px 20px 30px;
  margin-top: 80px;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-title {
  color: var(--neon-green);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--neon-green);
  padding-left: 4px;
}

.footer-address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 255, 102, 0.1);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 650px;
  margin: 0 auto;
  background: rgba(8, 16, 11, 0.95);
  border: 1px solid var(--neon-green);
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.2);
  backdrop-filter: blur(16px);
  padding: 20px;
  border-radius: var(--radius-md);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-text {
  font-size: 0.88rem;
  color: #d1e2d8;
}

.cookie-text a {
  color: var(--neon-green);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background: var(--neon-green);
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
}

.btn-cookie-pref {
  background: transparent;
  border: 1px solid var(--border-neon);
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 12, 8, 0.98);
    border-bottom: 1px solid var(--border-neon);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav-links.show {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .content-box {
    padding: 24px;
  }
}