/* ===============================
   CSS RESET & NORMALIZE
=============================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #e8fff0;
  background: linear-gradient(135deg, #141d18 0%, #1a2f25 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.18s; }
ul { list-style: disc; margin-left: 1.25em; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
}
h1 { font-size: 2rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4 { font-size: 1rem; margin-bottom: 8px; }

/* ===============================
   VARIABLES & ROOT STYLES
=============================== */
:root {
  --primary: #176A47;
  --primary-dark: #124d34;
  --secondary: #ffffff;
  --background: #141d18;
  --background-light: #1a2f25;
  --accent: #E2B12B;
  --accent-light: #FFE597;
  --neon-green: #83C59B;
  --neon: #2dd87c;
  --error: #d13131;
  --card-bg: #19291D;
  --surface: #182319;
  --shadow: 0 4px 32px rgba(23,106,71, 0.18), 0 1.5px 6px rgba(226,177,43,0.07);
  --radius: 18px;
  --duration: 0.28s;
}

/* ===============================
   CONTAINER, SECTIONS & GRID
=============================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
  .container { padding: 0 8px; }
}

/* ===============================
   HEADER & NAVIGATION
=============================== */
header {
  width: 100%;
  background: #121a16;
  box-shadow: 0 2px 8px rgba(15, 45, 32, 0.13);
  position: sticky;
  top: 0; left: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}
header img { height: 40px; }
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #e4ffe1;
  border-radius: 8px;
  padding: 6px 15px;
  transition: background .18s, color .16s;
}
header nav a:hover, header nav a:focus {
  background: var(--primary);
  color: var(--accent);
}
.cta-btn {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  color: #181e15;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 11px 32px;
  border-radius: 28px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(226,177,43,0.13);
  transition: box-shadow var(--duration), background var(--duration), color var(--duration);
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-left: 20px;
  filter: brightness(1.01);
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffe067;
  color: #124d34;
  box-shadow: 0 6px 32px rgba(226,177,43,0.27);
}

@media (max-width: 1100px) {
  header nav { gap: 10px; }
  .cta-btn { padding: 11px 16px; font-size: .98rem; margin-left: 10px; }
}
@media (max-width: 900px) {
  header .container { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 768px) {
  header nav, .cta-btn { display: none; }
  header .container { justify-content: flex-start; }
}

/* ================================
   MOBILE MENU
=============================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 101;
  width: 52px;
  height: 52px;
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  transition: color .17s, box-shadow .17s;
}
.mobile-menu-toggle:focus {
  color: #fff;
  outline: none;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #1a2f25;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.27s;
  transform: translateX(100%);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 0.37s cubic-bezier(0.86,0,0.07,1), opacity .2s;
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 24px;
  color: var(--accent);
  background: none;
  border: none;
  font-size: 2rem;
  z-index: 2;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 86vw;
  max-width: 340px;
  background: #101912;
  height: 100vh;
  padding: 80px 32px 32px 32px;
  box-shadow: -4px 0 20px rgba(56,224,130,0.09), -1.5px 0 16px rgba(226,177,43,0.11);
  gap: 24px;
  align-items: flex-start;
  overflow-y: auto;
  position: relative;
}
.mobile-nav a {
  color: var(--neon-green);
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 12px 0;
  width: 100%;
  border-radius: 6px;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 425px) {
  .mobile-nav { padding-left:18px; padding-right: 14px; }
}

/* ===============================
   HERO SECTIONS & PAGE LAYOUT
=============================== */
.hero {
  background: linear-gradient(101deg, #101912 65%, var(--primary) 100%);
  border-radius: 0 0 46px 46px;
  box-shadow: 0 8px 32px rgba(118,225,158,0.09), 0 2px 14px rgba(226,177,43,0.06);
  margin-bottom: 60px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--neon-green);
  text-shadow: 0 2px 16px rgba(118,225,158,0.12), 0 1.5px 6px rgba(226,177,43,0.11);
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.3rem;
  color: var(--accent-light);
  margin-bottom: 24px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(130,205,155,0.10);
}
@media (max-width: 900px) {
  .hero { padding-top: 30px; padding-bottom: 28px; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1.05rem; }
}
@media (max-width: 600px) {
  .hero { 
    border-radius: 0 0 26px 26px; 
    margin-bottom: 32px;
    padding-top: 18px; padding-bottom: 18px; 
  }
  .hero h1 { font-size: 1.22rem; }
}

/* ===============================
   CARD LAYOUTS & GRIDS
=============================== */
.card-container, .feature-grid, .service-grid, .service-highlights, .value-grid, .team-members, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 20px;
}
.card, .service-grid > div, .feature-grid > div, .value-grid > div, .service-highlights > div, .team-members > div {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 24px;
  flex: 1 1 210px;
  min-width: 250px;
  max-width: 388px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow .2s, transform .17s;
}
.card:hover, .service-grid > div:hover,
.value-grid > div:hover, .feature-grid > div:hover, .service-highlights > div:hover, .team-members > div:hover {
  box-shadow: 0 6px 36px 0 rgba(39,222,129,0.14), 0 2px 24px rgba(226,177,43,0.14);
  transform: translateY(-3px) scale(1.027);
  border: 1.5px solid var(--neon-green);
}
@media (max-width: 900px) {
  .card, .service-grid > div, .feature-grid > div, .value-grid > div, .service-highlights > div, .team-members > div {
    min-width: 180px;
    padding: 18px 12px;
  }
  .card-container, .feature-grid, .service-grid, .service-highlights, .value-grid, .team-members, .testimonial-slider {
    gap: 14px; 
  }
}
@media (max-width: 600px) {
  .card, .service-grid > div, .feature-grid > div, .value-grid > div, .service-highlights > div, .team-members > div {
    min-width: 120px;
    max-width: 100%;
    padding: 13px 7px;
  }
  .card-container, .feature-grid, .service-grid, .service-highlights, .value-grid, .team-members, .testimonial-slider {
    gap: 8px;
    margin-bottom: 14px;
  }
}

.card h3, .feature-grid h3, .service-grid h3, .value-grid h3, .team-members h3 { color: var(--neon-green); font-weight: 700; }
.card p, .feature-grid p, .service-grid p, .value-grid p, .team-members p { color: #d9ffd3; }

/* ===============================
   CONTENT LAYOUT FLEX
=============================== */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid { flex-direction: column; gap: 14px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============================
   TESTIMONIALS CARDS
=============================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {

  padding: 20px 32px;
  border-radius: 24px;
  min-width: 260px;
  max-width: 380px;
  box-shadow: 0 5px 38px 0 rgba(157,203,92,.10), 0 1.2px 7px rgba(23,106,71,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 200px;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--neon-green);
}
.testimonial-card p {
  color: #1a2f25;
  font-weight: 600;
  font-size: 1.1rem;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 6px;
  display: inline-block;
}
@media (max-width: 900px) {
  .testimonial-card { padding: 15px 10px; max-width: 100%; }
  .testimonial-slider { gap: 12px; }
}

/* For testimonials on single-column layout */
@media (max-width: 600px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card { min-width: 0; padding: 11px 4px; font-size: .99rem; }
}

/* ===============================
   ADDITIONAL FLEX STRUCTURES
=============================== */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 8px;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-size: 1rem;
}
@media (max-width: 768px) {
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 12px; }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  color: var(--accent-light);
}
.contact-details a {
  color: var(--neon-green);
  text-decoration: underline;
  transition: color .17s;
}
.contact-details a:hover { color: var(--accent); }

/* ===============================
   BUTTONS & LINKS
=============================== */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  outline: none; border: none;
}
button:not(.cta-btn):not(.mobile-menu-toggle):not(.mobile-menu-close) {
  background: var(--primary);
  color: #fff;
  padding: 9px 22px;
  border-radius: 10px;
  font-size: 1rem;
  transition: background .15s, box-shadow .18s;
}
button:not(.cta-btn):not(.mobile-menu-toggle):not(.mobile-menu-close):hover, button:focus {
  background: var(--neon-green);
  color: #101912;
  box-shadow: 0 2px 10px rgba(130,205,155,0.18);
}
a {
  transition: color .18s, text-shadow .14s;
  color: var(--accent);
}
a:hover, a:focus { color: var(--neon-green); text-shadow: 0 0 2px var(--neon); }

/* ===============================
   FOOTER
=============================== */
footer {
  background: #121a16;
  padding: 34px 0 12px 0;
  color: var(--accent-light);
  letter-spacing: .01em;
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
footer nav a {
  color: var(--accent);
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  background: none;
  transition: background .13s, color .13s;
}
footer nav a:hover,footer nav a:focus { background: var(--neon-green); color: #131f17; }
footer img { height: 40px; margin-bottom: 8px; }
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  footer nav { flex-direction: column; gap: 8px; }
}

/* ===============================
   COMMON TYPOGRAPHY
=============================== */
p, li, .card p, .feature-grid p, .service-grid p, .value-grid p, .testimonial-card p, .footer-contact > div {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #e8fff0;
  font-weight: 400;
  letter-spacing: 0.01em;
}
p { margin-bottom: 12px; }
ul { margin-bottom: 16px; }

h1, .thank-you h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--neon-green);
  margin-bottom: 10px;
  line-height: 1.14;
}
@media (max-width: 600px) {
  h1, .thank-you h1 { font-size: 1.3rem; }
  h2 { font-size: 1.07rem; }
}

strong { color: var(--accent); font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }

/* ===============================
   MICRO-INTERACTIONS & EFFECTS
=============================== */
.card, .testimonial-card, .service-grid > div, .feature-grid > div, .value-grid > div, .service-highlights > div, .team-members > div {
  transition: box-shadow .2s, border-color .19s, transform .18s;
}
.cta-btn, button, .mobile-menu-toggle, .mobile-nav a, .mobile-menu-close {
  transition: background .17s, box-shadow .18s, color .15s, filter .14s, transform .14s;
}
.cta-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  filter: brightness(.93);
  transform: scale(.97);
}

/* ===============================
   COOKIE CONSENT BANNER
=============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #242e26;
  color: #e8fff0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  box-shadow: 0 -6px 18px rgba(130,205,155,0.13);
  padding: 23px 42px 18px 32px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .22s, transform .24s;
  font-size: 1rem;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .18s, transform .32s;
}
.cookie-banner p { margin-bottom: 0; font-size: 1rem; color: #e8fff0; }
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-banner button {
  background: var(--accent);
  color: #141d18;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 20px;
  margin-right: 3px;
  transition: filter .17s, background .15s, color .14s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--neon-green);
  color: #101912;
  filter: brightness(1.09);
}
.cookie-banner .cookie-settings-btn {
  background: none;
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
  transition: color .16s, background .15s, border-color .16s;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--neon-green);
  color: #101912;
  border-color: var(--accent);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 12px 8px 10px 8px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background: rgba(20,29,24,.82);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity .24s;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeIn .23s;
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal {
  background: #182319;
  border-radius: 22px;
  box-shadow: 0 8px 38px rgba(226,177,43,.23);
  padding: 32px 36px;
  max-width: 470px;
  width: 95vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 6px;
  color: var(--accent);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 13px;
  background: linear-gradient(90deg, var(--primary), var(--neon-green));
  outline: none;
  margin-right: 9px;
  position: relative;
  transition: background .17s;
  cursor: pointer;
}
.cookie-modal .cookie-switch:checked {
  background: linear-gradient(90deg, var(--accent), var(--neon-green));
}
.cookie-modal .cookie-switch::after {
  content: "";
  position: absolute;
  left: 4px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 7px;
  background: #fff;
  transition: transform .18s, background .15s;
  transform: translateX(0);
}
.cookie-modal .cookie-switch:checked::after {
  transform: translateX(14px);
  background: #FFD000;
}
.cookie-modal .essential-label {
  color: var(--neon-green);
  font-weight: 700;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--accent);
  cursor: pointer;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 18px; margin-top: 14px;
  flex-direction: row;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 9px;
  padding: 6px 19px;
  background: var(--accent);
  color: #182319;
  font-weight: 700;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--neon-green);
  color: #101912;
}

@media (max-width: 480px) {
  .cookie-modal { padding: 13px 5vw; }
  .cookie-modal h2 { font-size: 1.13rem; }
}

/* ===============================
   SPECIAL - THANK-YOU SECTION
=============================== */
.thank-you {
  background: linear-gradient(120deg, #0e1912 65%, var(--primary) 100%);
  border-radius: 28px;
  margin: 40px 0 60px 0;
  padding: 42px 28px;
  box-shadow: 0 8px 32px rgba(118,225,158,0.07), 0 2px 14px rgba(226,177,43,0.09);
}
.thank-you .content-wrapper {
  align-items: flex-start;
}

/* ===============================
   RESPONSIVE UTILITIES
=============================== */
.hide-mobile { display: block; }
.show-mobile { display: none; }
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
}

/* ===============================
   CUSTOM SCROLLBARS
=============================== */
body, .mobile-nav, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: var(--neon-green) #151f15;
}
body::-webkit-scrollbar {
  width: 8px; background: #121a16; }
body::-webkit-scrollbar-thumb {
  background: var(--neon-green); border-radius: 8px;
}

/* ===============================
   MISC ELEMENTS
=============================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

hr, .divider {
  border: none;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-green) 50%, transparent 100%);
  margin: 28px 0;
  border-radius: 2px;
}

/* ===============================
   FOCUS & ACCESSIBILITY
=============================== */
a:focus, button:focus, .cta-btn:focus, .mobile-menu-close:focus, .cookie-modal-close:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
::selection {
  background: var(--accent);
  color: #181e15;
}

/* ===============================
   NEON & FUTURISTIC EFFECTS
=============================== */
.card:hover, .cta-btn:hover, .cta-btn:focus, .mobile-nav a:focus, .mobile-nav a:hover {
  box-shadow: 0 0 14px 1px var(--neon-green), 0 4px 24px 0 rgba(226,177,43,0.16);
}
.hero, .thank-you {
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 44px 1px rgba(130,205,155,0.13);
}

/* ===============================
   PRINT STYLES
=============================== */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { color: #111 !important; background: #fff !important; }
  .container { max-width: 100% !important; }
  .section, .hero, .thank-you { background: none !important; border: none !important; box-shadow: none !important; }
}
