
/* ===== FONTS ===== */
@font-face {
  font-family: 'Square721BT';
  src: url('../Fonts/tt0246m_.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #060d07;
  --bg-card:      #131f14;
  --bg-card-alt:  #192b1a;
  --accent:       #5dbf35;
  --accent-dark:  #3d8a1f;
  --text:         #ffffff;
  --text-muted:   #8aab8a;
  --nav-h:        70px;
  --radius:       8px;
  --radius-lg:    14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

.accent { color: var(--accent); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; }

/* ===== NAV ===== */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--nav-h);
  background: transparent;
}

/* Scroll-fade: content fades into the page bg as it passes under the nav */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: calc(var(--nav-h) + 28px);
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg) 42%, transparent 100%);
  z-index: 9998;
  pointer-events: none;
}

.nav-inner {
  position: relative;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Square721BT', 'Inter', sans-serif;
  font-size: 30px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #ffffff;
}


.nav-logo img { height: 44px; width: 44px; max-height: 44px; max-width: 44px; object-fit: contain; display: block; flex-shrink: 0; }

.logo-tech { color: #ffffff; }
.logo-garrison { color: var(--accent); }

.nav-links {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.btn-nav {
  padding: 10px 22px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-nav:hover { background: var(--accent); color: var(--bg); }

/* Hamburger */
.nav-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: #6ed440; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--text);
}
.btn-outline:hover { background: var(--accent); color: var(--bg); }

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--nav-h) + 160px);
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(93,191,53,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero h1 { font-size: clamp(3rem, 8vw, 6rem); margin-bottom: 28px; }

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  line-height: 2;
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero-cta { margin-bottom: 60px; }

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

/* Trusted bar */
.trusted-bar {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.trusted-label {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.trusted-label::before,
.trusted-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dark), transparent);
}

.industry-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(93,191,53,0.15);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.industry-chip:hover { border-color: var(--accent); color: var(--text); }
.industry-chip svg { width: 20px; height: 20px; opacity: 0.7; }

/* ===== HOW WE WORK ===== */
.how-section { background: var(--bg-card); }

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.how-right p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-card { text-align: left; }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(93,191,53,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg { width: 30px; height: 30px; color: var(--accent); }

.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; }

.service-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 16px; }
.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(93,191,53,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== ABOUT PAGE ===== */
.about-hero { text-align: center; }
.about-hero p { color: var(--text-muted); max-width: 640px; margin: 20px auto 0; line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(93,191,53,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.value-card .value-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(93,191,53,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card .value-icon svg { width: 24px; height: 24px; color: var(--accent); }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid rgba(93,191,53,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(93,191,53,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== SERVICES PAGE ===== */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-page-card {
  background: var(--bg-card);
  border: 1px solid rgba(93,191,53,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.2s;
}

.service-page-card:hover { border-color: rgba(93,191,53,0.4); }

.service-page-card .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(93,191,53,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-page-card .icon svg { width: 28px; height: 28px; color: var(--accent); }
.service-page-card h3 { margin-bottom: 12px; }
.service-page-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }

.service-features { list-style: none; }
.service-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--bg-card-alt), var(--bg-card));
  border-top: 1px solid rgba(93,191,53,0.15);
  border-bottom: 1px solid rgba(93,191,53,0.15);
  text-align: center;
  padding: 80px 0;
}

.cta-strip h2 { margin-bottom: 16px; }
.cta-strip p { color: var(--text-muted); max-width: 500px; margin: 0 auto 36px; }

/* ===== CONTACT / FOOTER ===== */
.contact-section { background: var(--bg-card); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-detail svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid rgba(93,191,53,0.2);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg); }

footer {
  background: var(--bg);
  border-top: 1px solid rgba(93,191,53,0.08);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { color: var(--text-muted); font-size: 0.8rem; }

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 60px;
  text-align: center;
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .how-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg-card);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(93,191,53,0.1);
  }
  .nav-links.open .btn-nav { display: inline-block; align-self: flex-start; }
  section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
