/* moonshinepike.com | style.css | Industrial Modern Theme */
/* ===================== CSS RESET & NORMALIZE ===================== */
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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #161b1d;
  color: #F7F7F1;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
b, strong {
  font-weight: bold;
}
ul, ol {
  margin-left: 24px;
}
a {
  color: #8BBF76;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #b0cf97;
  outline: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}
:focus {
  outline: 2px solid #8BBF76;
  outline-offset: 2px;
}

/* ===================== FONTS (WEB FONTS LOADER SUGGESTED) ===================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #E9ECEB;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.3rem; font-weight: 900; margin-bottom: 18px; }
h2 { font-size: 1.7rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
p, ul, ol {
  font-size: 1rem;
  color: #F7F7F1;
  line-height: 1.7;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.15rem;
  color: #B3C6B2;
  margin-bottom: 24px;
}

/* ===================== BRAND COLORS (VARIABLES + FALLBACKS) ===================== */
:root {
  --color-primary: #264434;
  --color-secondary: #8BBF76;
  --color-accent: #F7F7F1;
  --color-bg-dark: #161b1d;
  --color-bg-paper: #232826;
  --color-metal: #45494A;
  --color-steel: #BDC3C7;
  --color-shadow: rgba(20,26,18,0.2);
  --border-radius: 14px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ===================== BASE LAYOUT ===================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-section, .cta-inline {
  background: var(--color-metal);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 24px var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .container { padding: 0 10px; }
  section, .section, .cta-section, .cta-inline { padding: 32px 8px; }
}

/* ===================== HEADER AND NAV ===================== */
header {
  background: var(--color-bg-paper);
  box-shadow: 0 1px 6px var(--color-shadow);
  z-index: 12;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}
.logo-link img {
  height: 50px;
  width: auto;
  display: inline-block;
}
nav.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #E9ECEB;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-bg-dark);
}
.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: linear-gradient(91deg, var(--color-secondary), #78a965 90%);
  color: #181a1c;
  font-weight: 800;
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 30px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 14px var(--color-shadow);
  transition: background var(--transition), transform 0.14s;
  margin-left: 14px;
  margin-right: 10px;
  cursor: pointer;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #B8C3B1;
  border: none;
  padding: 6px 18px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition), transform .13s;
  margin-left: 8px;
  z-index: 1002;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-metal);
  color: var(--color-secondary);
  outline: none;
}

@media (max-width: 1020px) {
  nav.main-nav {
    gap: 12px;
  }
  .btn-primary { padding: 10px 18px; font-size: 1rem; }
}
@media (max-width: 860px) {
  nav.main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===================== MOBILE MENU & OVERLAY ===================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,27,29,.98);
  box-shadow: 6px 0 32px rgba(60,60,60,.24);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform .35s cubic-bezier(.4,.18,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  margin: 18px 22px 0 0;
  background: none;
  color: #8BBF76;
  border: none;
  border-radius: 8px;
  padding: 3px 9px;
  transition: background .16s, color .18s;
  z-index: 1700;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-steel);
  color: #161b1d;
}
nav.mobile-nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  border-radius: 8px;
  padding: 10px 8px;
  transition: background var(--transition), color var(--transition);
  display: block;
  width: 96%;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-metal);
  color: #E9ECEB;
}

/* ===================== MAIN CONTENT ===================== */
main {
  min-height: 400px;
  background: none;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-paper);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 32px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  flex: 1 1 320px;
  transition: box-shadow var(--transition), background var(--transition), transform .15s;
  border: 1.5px solid #313534;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 30px rgba(33,33,33,0.26);
  background: #25302c;
  transform: translateY(-3px) scale(1.02);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-section {
  margin-bottom: 20px;
  background: none;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===================== FEATURE GRID ===================== */
.feature-grid, .project-list, .blog-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.feature {
  background: var(--color-bg-paper);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 32px 22px 24px 22px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  text-align: left;
  border: 1.5px solid #303733;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 240px;
  transition: box-shadow var(--transition), background var(--transition), transform .13s;
}
.feature:hover {
  box-shadow: 0 5px 30px rgba(33,33,33,0.23);
  background: #233029;
  transform: scale(1.025);
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: grayscale(.2) brightness(0.94) drop-shadow(0 1px 3px #222);
}
.feature h3 {
  color: var(--color-secondary);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 30px 0 12px 0;
  align-items: center;
}
.feature-icons li {
  font-size: 1rem;
  color: #D7EEE7;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #233026;
  border-radius: 6px;
  padding: 5px 14px 5px 7px;
}
.feature-icons img {
  width: 20px; height: 20px;
}

.usp-list, .benefits, .process-steps, .step_by_step {
  margin-top: 14px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #D7EEE7;
  font-size: 1rem;
}

.process-steps li, .step_by_step li {
  margin-bottom: 5px;
}

.timeline-overview {
  margin-top: 14px;
  margin-bottom: 22px;
  padding: 21px 18px;
  background: #232a25;
  border-left: 5px solid var(--color-secondary);
  border-radius: 7px;
}
.timeline-overview ul {
  margin-left: 12px;
  color: #C7DFC0;
}

.categories-list {
  margin: 18px 0 0 0;
  font-size: 1rem;
}
.categories-list strong {
  color: var(--color-secondary);
  font-weight: 700;
}
.categories-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 4px;
  margin-top: 7px;
}
.categories-list li {
  background: #2E3733;
  color: #B4D9A2;
  padding: 4px 15px;
  border-radius: 7px;
  font-size: 0.97rem;
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.testimonial-card {
  background: #F7F7F1;
  color: #232826;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 18px rgba(38,44,34,.072);
  padding: 20px;
  min-width: 250px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-secondary);
  transition: box-shadow .14s, border-color .15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px #a1c49a33;
  border-left: 5px solid var(--color-primary);
}
.testimonial-card p {
  color: #292f2c;
  font-size: 1.07rem;
}
.testimonial-author {
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #294f3e;
  text-align: right;
  margin-top: 9px;
}

/* ===================== BUTTONS & INTERACTIVE ELEMENTS ===================== */
.btn-primary,
button,
input[type="submit"],
.mobile-menu-toggle,
.mobile-menu-close {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform .13s;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--color-bg-paper);
  color: #B6BEBA;
  padding: 36px 0 18px 0;
  box-shadow: 0 -2px 14px var(--color-shadow);
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-logo img {
  width: 48px;
  height: auto;
  margin-bottom: 8px;
  filter: grayscale(.18) contrast(1.2);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #8BBF76;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 3px;
  transition: color .18s;
  letter-spacing: 0.01em;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F7F7F1;
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.99rem;
  color: #B6BEBA;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  margin-right: 7px;
  filter: saturate(0) grayscale(.45);
  vertical-align: middle;
}

@media (max-width:900px) {
  .footer-flex {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
  }
  .footer-logo img { margin-bottom: 0; }
}

/* ===================== RESPONSIVE FLEX CONTAINERS ===================== */
@media (max-width: 1000px){
  .feature-grid, .project-list, .card-container, .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid { flex-direction: column; gap: 20px; }
}
@media (max-width: 600px){
  .feature-grid, .project-list, .blog-snippets, .card-container,
  .testimonial-list, .footer-flex {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===================== ARTICLE & FAQ ===================== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}
.faq-list .text-section {
  background: #212523;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(40,40,40,0.10);
  padding: 24px 18px;
  flex: 1 1 330px;
  margin-bottom: 20px;
  color: #d7deda;
}

/* ===================== FORM ELEMENTS (General) ===================== */
input, textarea, select {
  border-radius: 7px;
  border: 1.5px solid #436051;
  background: #242b27;
  color: #e7edea;
  padding: 8px 13px;
  font-size: 1rem;
  transition: border-color .15s, background .14s;
  margin-bottom: 18px;
  box-shadow: 0 1.5px 6px #232b2315;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
  background: #161d19;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #8BBF76;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* ===================== ADDRESS BLOCKS ===================== */
address {
  font-style: normal;
  margin-bottom: 18px;
  color: #b6bfba;
}
address strong {
  color: #C6E5B6;
}

/* ===================== COOKIE CONSENT BANNER ===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #232826;
  color: #e6ead7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 23px 18px 23px 18px;
  box-shadow: 0 -2px 24px #23282688;
  border-top: 2px solid #8BBF76;
  font-size: 1.04rem;
  transition: transform .32s var(--transition);
}
.cookie-banner .cookie-button {
  margin-right: 6px;
  margin-left: 2px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 21px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: var(--color-bg-paper);
  color: #8BBF76;
  transition: background var(--transition), color var(--transition);
}
.cookie-banner .cookie-button.accept {
  background: var(--color-secondary);
  color: #181a1c;
}
.cookie-banner .cookie-button.reject {
  background: #bd7979;
  color: #fff;
}
.cookie-banner .cookie-button.settings {
  background: var(--color-metal);
  color: #E9ECEB;
}
.cookie-banner .cookie-button:hover, .cookie-banner .cookie-button:focus {
  background: var(--color-primary);
  color: #F7F7F1;
}

/* Hide when dismissed */
.cookie-banner.dismissed {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}

/* ===================== COOKIE PREFERENCES MODAL ===================== */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,32,30,.92);
  z-index: 2400;
  align-items: center;
  justify-content: center;
  animation: fadeIn .36s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #282e2c;
  color: #F7F7F1;
  border-radius: 20px;
  max-width: 410px;
  width: 97vw;
  padding: 38px 24px 28px 24px;
  box-shadow: 0 6px 30px #23282699;
  margin: 22px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal-content h3 {
  color: #8BBF76;
  font-size: 1.21rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #222723;
  padding: 13px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.cookie-category .toggle {
  margin-left: auto;
}
.cookie-modal-content .cookie-close-modal {
  align-self: flex-end;
  background: none;
  color: #bd7979;
  font-size: 2.2rem;
  border: none;
  padding: 2px 10px;
  border-radius: 7px;
  transition: background .16s, color .18s;
}
.cookie-modal-content .cookie-close-modal:hover {
  background: #ad5454;
  color: #fff;
}

/* Switch toggle style */
.toggle-switch {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #323c37;
  transition: background 0.14s;
  border-radius: 50px;
}
.toggle-switch input:checked + .toggle-slider {
  background: #8BBF76;
}
.toggle-slider:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform .19s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(16px);
}
.cookie-category .description {
  font-size: 0.98rem;
  color: #c6e6c6;
}

/* ===================== UTILITIES & FLEXBOX EXTRAS ===================== */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 10px;
  background: #282e2c;
}
::-webkit-scrollbar-thumb {
  background: #333b37;
  border-radius: 8px;
}

/* ===================== ANIMATIONS & MICRO-INTERACTIONS ===================== */
.card, .feature, .btn-primary, .testimonial-card, .mobile-menu, .cookie-banner, .cookie-modal-content {
  transition: box-shadow .16s, background var(--transition), color .13s, transform .15s;
}
.card:active, .feature:active, .testimonial-card:active {
  transform: scale(0.99);
}

/* ===================== PRINT ===================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}
