﻿:root {
  --green: #7bc800;
  --green-dark: #5a9200;
  --green-glow: rgba(123, 200, 0, 0.35);
  --dark: #0c1008;
  --dark2: #141c0b;
  --dark3: #1b2510;
  --card: #101809;
  --text: #edf2e0;
  --muted: #8aa16f;
  --border: rgba(123, 200, 0, 0.2);
  --admin-bg: #ecf2e5;
  --admin-card: #ffffff;
  --admin-text: #17220f;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--dark);
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 5, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  width: auto;
  height: 60px;
  max-width: 270px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}
.site-nav .brand {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(154, 197, 103, 0.35);
  border-radius: 12px;
  padding: 5px 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 8px 18px rgba(0,0,0,0.25);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-nav .brand:hover {
  transform: translateY(-1px);
  border-color: rgba(175, 224, 113, 0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.11), 0 10px 24px rgba(0,0,0,0.34);
}

.nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}
.nav-links a.active,
.nav-links a:hover { color: var(--green); }
.call-btn {
  background: var(--green);
  color: #0a1105 !important;
  padding: 10px 16px;
  border-radius: 4px;
}

.menu-btn { display: none; background: transparent; border: 0; padding: 6px; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--green); margin: 5px 0; }

.ticker {
  background: var(--green);
  color: #111;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}
.ticker-track { display: inline-block; padding: 10px 20px; animation: ticker 26s linear infinite; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero {
  min-height: calc(100vh - 124px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(140deg, rgba(12,16,8,.96) 0%, rgba(12,16,8,.83) 56%, rgba(12,16,8,.95) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 36px, rgba(123,200,0,.03) 36px, rgba(123,200,0,.03) 72px);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; padding: 70px 0 80px; }
.hero h1 {
  margin: 0 0 12px;
  font-family: 'Oswald', sans-serif;
  line-height: 1;
  letter-spacing: 1px;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}
.hero h1 span { color: var(--green); }
.kicker {
  color: var(--green);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}
.hero p { color: #ccd9bb; max-width: 620px; }
.hero ul { list-style: none; padding: 0; margin: 22px 0 28px; }
.hero ul li { margin-bottom: 8px; font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}
.btn-primary { background: var(--green); color: #0a1105; }
.btn-outline { border: 1px solid var(--border); color: var(--text); background: transparent; }

.hero-panel,
.card,
.form-card,
.video-card,
.metric,
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.hero-panel { padding: 24px; }
.hero-panel h3 { margin-top: 0; font-family: 'Oswald', sans-serif; letter-spacing: 1px; }

.section { padding: 72px 0; }
.section.alt { background: var(--dark2); }
.sec-title {
  margin: 0 0 8px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.sec-title span { color: var(--green); }
.sec-desc { color: var(--muted); margin-bottom: 26px; max-width: 780px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { padding: 20px; }
.card h3 { margin: 0 0 8px; font-family: 'Oswald', sans-serif; letter-spacing: 1px; }
.badge { display: inline-block; margin-bottom: 10px; color: var(--green); border: 1px solid var(--border); padding: 3px 10px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.points { list-style: none; padding: 0; margin: 14px 0; color: #dce6cf; }
.points li { margin: 7px 0; }
.points li::before { content: '• '; color: var(--green); }

.inner-hero {
  background: linear-gradient(180deg, rgba(20,28,11,.95), rgba(12,16,8,.95));
  border-bottom: 1px solid var(--border);
}
.inner-hero .container { padding: 52px 0; }
.inner-hero h1 { margin: 0 0 6px; font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 5vw, 3rem); }
.inner-hero p { margin: 0; color: var(--muted); max-width: 760px; }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metric { padding: 18px; text-align: center; }
.metric strong { display: block; color: var(--green); font-family: 'Oswald', sans-serif; font-size: 34px; }

.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.video-card { padding: 14px; }
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(123, 200, 0, 0.25);
}
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-card h4 { margin: 10px 0 2px; font-family: 'Oswald', sans-serif; }
.service-photo {
  width: 100%;
  height: 170px;
  object-fit: contain;
  object-position: center center;
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 6px;
  background: #081006;
  border: 1px solid rgba(123, 200, 0, 0.22);
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-card { padding: 24px; }
label { display: block; margin: 0 0 6px; color: var(--muted); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(123,200,0,.25);
  color: var(--text);
  padding: 11px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
select option {
  color: #12220b;
  background: #f4f8ee;
}
textarea { min-height: 110px; resize: vertical; }
.flash { padding: 12px 14px; border-radius: 5px; margin-bottom: 14px; font-weight: 700; }
.flash.success { background: rgba(50,171,86,.15); border: 1px solid rgba(50,171,86,.5); }
.flash.error { background: rgba(199,70,70,.16); border: 1px solid rgba(199,70,70,.45); }

.site-footer { background: var(--dark3); border-top: 1px solid var(--border); padding-top: 44px; }
.site-footer .brand {
  margin-bottom: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(154, 197, 103, 0.25);
  border-radius: 10px;
  padding: 5px 10px;
}
.site-footer .logo-img { height: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; }
.site-footer h4 { margin: 0 0 10px; font-family: 'Oswald', sans-serif; letter-spacing: 1px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 8px 0; color: var(--muted); }
.site-footer a { text-decoration: none; }
.footer-copy { color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 14px 0 24px;
  margin-top: 24px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  text-decoration: none;
  display: grid;
  place-items: center;
  z-index: 999;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}
.wa-float img {
  width: 28px;
  height: 28px;
  display: block;
}
.sticky-bar { display: none; }

.admin-shell { background: var(--admin-bg); color: var(--admin-text); min-height: 100vh; }
.admin-app { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: linear-gradient(180deg, #10190a 0%, #182510 100%);
  color: #d7efb8;
  padding: 18px 14px;
  border-right: 1px solid #273a1a;
  position: sticky;
  top: 0;
  height: 100vh;
}
.admin-sidebar .logo-img { height: 52px; }
.admin-sidebar .brand,
.admin-footer .brand,
.admin-login-card .brand {
  background: #101a08;
  border: 1px solid #2f4620;
  border-radius: 10px;
  padding: 6px 10px;
}
.admin-side-kicker {
  margin: 14px 0 10px;
  color: #91b869;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 700;
}
.admin-side-nav { display: grid; gap: 8px; }
.admin-side-nav a {
  text-decoration: none;
  color: #cde7aa;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 700;
  border: 1px solid transparent;
}
.admin-side-nav a:hover,
.admin-side-nav a.active {
  background: #223318;
  border-color: #4f6f32;
  color: #fff;
}
.admin-side-nav .logout-link {
  margin-top: 12px;
  background: #263c15;
  border-color: #5b7f35;
}
.admin-user-box {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid #3a5327;
  border-radius: 6px;
  font-size: 13px;
  color: #c8e5a1;
}
.admin-content-wrap { display: flex; flex-direction: column; min-width: 0; }
.admin-topbar {
  background: #f5faef;
  border-bottom: 1px solid #d7e5c6;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.admin-topbar-title {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .7px;
  font-size: 20px;
  color: #17250d;
}
.admin-menu-toggle {
  display: none;
  border: 1px solid #b9cf9f;
  background: #fff;
  color: #1a2a11;
  border-radius: 5px;
  padding: 8px 12px;
  font-weight: 700;
}
.admin-main { padding: 20px; flex: 1; }
.admin-container { width: min(1240px, 100%); margin: 0 auto; }
.admin-panel {
  background: var(--admin-card);
  border: 1px solid #d6e3c1;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 18px;
}
.admin-panel h2, .admin-panel h3 {
  margin-top: 0;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .8px;
  color: #1b2b10;
}
.admin-shell input,
.admin-shell textarea,
.admin-shell select {
  background: #ffffff;
  color: #16230d;
  border: 1px solid #b7caa1;
}
.admin-shell input::placeholder,
.admin-shell textarea::placeholder {
  color: #6c7f58;
}
.admin-shell input:focus,
.admin-shell textarea:focus,
.admin-shell select:focus {
  outline: none;
  border-color: #7cb73a;
  box-shadow: 0 0 0 2px rgba(124, 183, 58, 0.15);
}
.admin-shell input[type="file"] {
  padding: 10px 12px;
}
.admin-shell button[disabled],
.admin-shell input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.admin-shell .btn-outline {
  color: #1b2a11;
  border-color: #b7caa1;
  background: #ffffff;
}
.admin-shell .btn-outline:hover {
  background: #eef6e3;
  border-color: #89b359;
}
.admin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-filter-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; align-items: end; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.admin-table th, .admin-table td { border-bottom: 1px solid #e5edd8; padding: 10px; text-align: left; vertical-align: top; color: #1b2a11; }
.admin-table th { font-size: 12px; text-transform: uppercase; color: #4b5e35; letter-spacing: 1px; }
.inline-form { display: inline; }

.admin-footer {
  background: #f5faef;
  border-top: 1px solid #d8e4c9;
  padding: 10px 20px;
}
.admin-footer .admin-container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.admin-footer .logo-img { height: 50px; }
.admin-footer small { color: #4b5e35; font-weight: 700; }
.admin-video-frame {
  max-width: 320px;
}

.admin-login-page {
  background: radial-gradient(circle at 20% 15%, #f4faeb 0%, #e6efda 60%, #dfe9d0 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.admin-login-wrap { width: min(520px, 100%); margin: 0 auto; }
.admin-login-card { margin-top: 40px; border-radius: 14px; }
.admin-login-card .logo-img { height: 60px; margin-bottom: 8px; }
.admin-login-footer {
  margin-top: auto;
  text-align: center;
  color: #425831;
  font-weight: 700;
  font-size: 13px;
  padding: 14px;
}

@media (max-width: 1200px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-grid,
  .footer-grid,
  .contact-grid,
  .admin-grid,
  .video-grid,
  .admin-filter-grid { grid-template-columns: 1fr; }

  .admin-app { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 270px;
    transform: translateX(-100%);
    transition: transform .25s ease;
    z-index: 1000;
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-menu-toggle { display: inline-flex; }
}

@media (max-width: 992px) {
  .menu-btn { display: block; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #111a09;
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .call-btn { width: 100%; text-align: center; }
  .sticky-bar {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    right: 0;
    bottom: 0;
    background: #101809;
    border-top: 2px solid var(--green);
    z-index: 999;
  }
  .sticky-bar a { color: #fff; text-decoration: none; text-align: center; padding: 12px; font-weight: 700; }
  .sticky-bar a:first-child { background: var(--green); color: #101809; }
  .sticky-wa {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .sticky-wa img {
    width: 18px;
    height: 18px;
    display: block;
  }
  .wa-float { display: none; }
  body { padding-bottom: 52px; }
}

@media (max-width: 768px) {
  .container { width: min(1200px, calc(100% - 24px)); }
  .hero { min-height: auto; }
  .hero-grid { padding: 50px 0; }
  .section { padding: 56px 0; }
  .grid-3,
  .grid-2,
  .metrics { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .site-nav .logo-img { height: 52px; max-width: 220px; }
  .btn { font-size: 13px; }
}
