/* ===================================================
   CSS RESET & BASE
   =================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #181818;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  /* for smoother font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #181818;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 32px 0;
}

/* ===================================================
   COLORS & BRANDING
   =================================================== */
:root {
  --brand-primary: #275d38;
  --brand-secondary: #e3e7e5;
  --brand-accent: #15987a;
  --mono-white: #fff;
  --mono-black: #181818;
  --mono-gray1: #eeeeee;
  --mono-gray2: #c5c5c5;
  --mono-gray3: #555758;
  --shadow-soft: 0 6px 32px 0 rgba(0,0,0,0.08);
  --shadow-subtle: 0 1.5px 8px 0 rgba(0,0,0,0.04);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 5px;
}

body {
  background: var(--mono-white);
  color: var(--mono-black);
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #181818;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--mono-black);
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-shadow: none;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  margin-bottom: 15px;
  color: var(--mono-black);
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 5px;
}
.text-section h1,
.text-section h2,
.text-section h3 {
  color: #232323;
}

/* Typography hierarchy spacing */
.section h1,
.section h2 {
  margin-bottom: 20px;
}

strong, b {
  font-weight: 700;
  color: var(--mono-black);
}

/* ===================================================
   CONTAINERS & LAYOUT
   =================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Monochrome Visual Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--mono-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Flex Patterns for Cards/Sections */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--mono-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 38px 0 rgba(0,0,0,0.11);
  transform: translateY(-2px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Feature grid for icon/service blocks */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 260px;
  background: var(--mono-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  padding: 24px 18px 24px 18px;
  transition: box-shadow .16s,border-color .16s;
}
.feature-item img {
  width: 36px;
  height: 36px;
}
.feature-item h3 {
  margin-bottom: 8px;
  color: var(--mono-black);
  font-size: 1.17rem;
}

/* Testimonials styling */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--mono-white);
  border: 1.5px solid var(--mono-gray1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 30px 0 rgba(0,0,0,0.10);
}
.testimonial-card p {
  margin-bottom: 4px;
  color: #232323;
  font-style: italic;
  font-size: 1rem;
}
.testimonial-card strong {
  color: var(--mono-gray3);
  font-weight: 600;
  letter-spacing: .2px;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
}
.star-rating img {
  width: 18px;
  height: 18px;
}
.star-rating-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 1.1rem;
  color: var(--mono-gray3);
}

/* Pricing Table */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-package {
  background: var(--mono-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  padding: 32px 22px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  border: 1.2px solid var(--mono-gray1);
  transition: box-shadow 0.18s, border-color .12s;
}
.pricing-package h3 {
  color: var(--mono-black);
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.pricing-package ul {
  padding-left: 0px;
  margin-bottom: 0;
}
.pricing-package ul li {
  margin-bottom: 8px;
  color: var(--mono-gray3);
}
.pricing-package:hover {
  box-shadow: 0 3px 28px 0 rgba(0,0,0,0.12);
  border-color: var(--mono-gray2);
}

/* Cards/Client logos */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  margin-bottom: 24px;
  margin-top: 16px;
}
.client-logos img {
  height: 48px;
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.8;
  transition: filter 0.18s, opacity 0.18s;
}
.client-logos img:hover {
  filter: grayscale(0%) brightness(1.1);
  opacity: 1;
}

/* Contact Details & Map */
.contact-details, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.contact-details p, .footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mono-gray3);
  font-size: 1rem;
}
.google-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: var(--mono-gray1);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  margin-top: 18px;
}
.google-map-placeholder img {
  width: 120px;
  margin-bottom: 8px;
  opacity: 0.84;
}

/* ===================================================
   HEADER & MAIN NAV
   =================================================== */
header {
  width: 100%;
  background: var(--mono-white);
  box-shadow: 0 1px 16px 0 rgba(8, 8, 8, 0.04);
  padding: 0;
  position: sticky;
  top: 0;  /* for sticky nav */
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 12px 18px;
  gap: 20px;
}
header img[alt="Forest Skipper Solutions"] {
  height: 38px;
  min-width: 138px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--mono-gray3);
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.2s;
}
.main-nav a.active, .main-nav a:hover, .main-nav a:focus {
  color: var(--mono-black);
  border-bottom: 2px solid var(--brand-primary);
}
.main-nav .cta-button {
  margin-left: 12px;
}

/* ===================================================
   CTA BUTTONS
   =================================================== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 13px 28px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  text-align: center;
  border: none;
  background: var(--mono-black);
  color: var(--mono-white);
  box-shadow: 0 1.5px 16px 0 rgba(0,0,0,.09);
  cursor: pointer;
  transition: background 0.17s, color 0.17s, transform .11s, box-shadow .16s;
  margin-bottom: 0;
  gap: 8px;
  will-change: transform, box-shadow;
}
.cta-button.primary {
  background: var(--mono-black);
  color: var(--mono-white);
  border: 2px solid var(--mono-black);
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: var(--brand-primary);
  color: var(--mono-white);
  border-color: var(--brand-primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 3px 18px 0 rgba(39, 93, 56, 0.10);
}
.cta-button.secondary {
  background: var(--mono-white);
  color: var(--mono-black);
  border: 2px solid var(--mono-gray2);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* ===================================================
   MOBILE NAVIGATION
   =================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--mono-black);
  cursor: pointer;
  margin-left: 14px;
  transition: color 0.16s;
  z-index: 120;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--brand-primary);
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,16,16,.92);
  z-index: 300;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.28s cubic-bezier(.5,.13,.17,1);
  box-shadow: 0 4px 48px 0 rgba(0,0,0,0.32);
  will-change: transform;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: slideInMobileMenu 0.32s cubic-bezier(.47,.97,.33,1) both;
}
@keyframes slideInMobileMenu {
  from { transform: translateX(-100vw); }
  to   { transform: translateX(0); }
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  font-size: 2.3rem;
  color: var(--mono-white);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 301;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  margin: 64px 32px;
  width: calc(80vw);
  max-width: 400px;
}
.mobile-nav a {
  color: var(--mono-white);
  font-size: 1.3rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--brand-accent);
  border-bottom: 2px solid var(--brand-accent);
}


/* Mobile first (default) hides desktop nav, shows mobile menu toggle */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  header .container {
    gap: 10px;
    padding: 13px 9px 10px 9px;
  }
  .container {
    padding: 0 7px;
  }
}

/* ===================================================
   HERO & STANDARD SECTIONS
   =================================================== */
section {
  margin: 0 0 60px 0;
  width: 100%;
}
.section:last-child {
  margin-bottom: 0;
}

/* ===================================================
   LINKS
   =================================================== */
a {
  color: var(--brand-primary);
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: var(--brand-accent);
}

/* Apply specific style to prominent in-text links only */
.content-wrapper > a:not(.cta-button) {
  color: var(--mono-black);
  font-weight: 600;
  text-decoration: underline;
  padding-bottom: 1.5px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.content-wrapper > a:not(.cta-button):hover {
  color: var(--brand-accent);
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: #fcfcfc;
  border-top: 1.5px solid #e9e9e9;
  padding: 36px 0 22px 0;
  margin-top: 70px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--mono-gray3);
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}
.footer-nav a:hover {
  color: var(--brand-accent);
}
.footer-contact {
  color: var(--mono-gray3);
  margin-bottom: 6px;
  gap: 6px;
  font-size: 1rem;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  margin-right: 7px;
  opacity: 0.72;
}
.footer-credits {
  color: var(--mono-gray2);
  font-size: 0.98rem;
  margin-top: 10px;
}

/* ===================================================
   COOKIE BANNER & MODAL
   =================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 24px 0 rgba(0,0,0,0.13);
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  gap: 12px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: slideInCookieBanner 0.42s cubic-bezier(.28,1.41,.53,.98);
}
@keyframes slideInCookieBanner {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  color: #181818;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 9px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.cookie-btn {
  background: var(--mono-black);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.15s, border 0.16s, transform 0.15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-1.5px) scale(1.04);
}
.cookie-btn.secondary {
  background: var(--mono-white);
  color: var(--mono-black);
  border: 1.4px solid var(--mono-gray2);
}
.cookie-btn.secondary:hover {
  background: var(--mono-gray1);
  color: var(--mono-black);
  border-color: var(--brand-accent);
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,20,20,0.67);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeModalIn 0.22s;
}
@keyframes fadeModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #222;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 40px 0 rgba(0,0,0,0.15);
  padding: 32px 28px 24px 28px;
  min-width: 325px;
  max-width: 94vw;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-content h2 {
  margin-bottom: 7px;
  color: var(--mono-black);
  font-size: 1.33rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category input[type='checkbox'] {
  width: 19px;
  height: 19px;
}
.cookie-category .cookie-label {
  font-size: 1rem;
  color: var(--mono-black);
}
.cookie-category .essential {
  color: var(--mono-gray3);
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 27px;
  font-size: 1.8rem;
  color: var(--mono-gray3);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 10002;
}
.cookie-modal-close:hover {
  color: var(--brand-accent);
}

/* ===================================================
   MEDIA QUERIES - RESPONSIVE FLEX PATTERNS
   =================================================== */
@media (max-width: 900px) {
  .feature-grid, .pricing-table, .card-container, .content-grid, .client-logos {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .pricing-package, .card {
    min-width: 85vw !important;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 5px;
  }
  .section, section, .content-wrapper {
    padding: 30px 10px 30px 10px !important;
  }
  .content-wrapper.text-section {
    padding: 14px 0 5px 0;
    gap: 16px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.05rem; }
  .feature-grid, .pricing-table, .card-container, .content-grid, .client-logos {
    flex-direction: column;
    gap: 16px;
  }
  .card, .feature-item, .pricing-package {
    min-width: 94vw !important;
    max-width: none;
  }
  .card {
    padding: 18px 8px;
  }
  .testimonial-card {
    padding: 17px 8px;
    max-width: 96vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}
@media (max-width: 420px) {
  .cookie-modal-content{
    min-width: 92vw;
    padding: 18px 4vw 12px 4vw;
  }
}

/* ===================================================
   MICRO-INTERACTIONS/ANIMATION
   =================================================== */
.section, .card, .pricing-package, .feature-item, .testimonial-card, .cta-button, .cookie-consent-banner, .cookie-modal-content {
  transition-property: box-shadow, background, border, color, transform;
  transition-duration: .18s;
  transition-timing-function: cubic-bezier(.3,1,.4,1);
}
.cta-button:active {
  transform: scale(0.99);
}

/* Utility classes & LAST-MILE SPACING */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.gap-24 { gap: 24px !important; }

/* Accessibility - Focus */
:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Hide visually but keep for screen readers */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; 
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* ========== END ========== */
