/* ==== 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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #111212;
  color: #F6F4EF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,ol {
  list-style: none;
}
a {
  color: #7affb3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,a:focus {
  color: #B7B096;
}
hr {
  border: 0;
  border-top: 1px solid #313d32;
}

/* ==== BRAND CSS VARIABLES ==== */
:root {
  --primary: #274C3A;
  --secondary: #B7B096;
  --accent: #F6F4EF;
  --dark-bg: #181e19;
  --surface1: #1b2922;
  --surface2: #21332a;
  --neon-green: #7affb3;
  --neon-yellow: #ECFF62;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, Helvetica, sans-serif;
  --shadow: 0 4px 24px 0 rgba(10,35,20,0.24);
}

/* ==== MAIN CONTAINER & SPACING PATTERNS ==== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.hero {
  min-height: 340px;
  background: linear-gradient(90deg, #1b2922 0%, #274C3A 100%);
  border-bottom: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}

/* ==== TYPOGRAPHY ==== */
h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.7rem;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 8px;
  text-shadow: 0 0 12px #143f2a90;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--neon-green);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
}
p {
  font-size: 1.08rem;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
strong {
  color: var(--secondary);
  font-weight: 600;
}

/* Typography scale */
@media (min-width: 700px) {
  h1 { font-size: 3.6rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.5rem; }
}

/* ==== HEADER (DESKTOP & MOBILE) ==== */
header {
  background: #181e19;
  box-shadow: 0 2px 14px 0 #131a1544;
  padding: 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1010;
}
header .container {
  min-height: 82px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  margin-left: 40px;
}
header nav a {
  font-family: var(--font-body);
  color: var(--accent);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
header nav a::after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0;
  background: linear-gradient(90deg,var(--neon-green)30%,var(--neon-yellow));
  transition: width 0.3s;
  position: absolute;
  left: 0; bottom: 0;
  border-radius: 1.5px;
}
header nav a:hover::after,header nav a:focus::after {
  width: 100%;
  background: linear-gradient(90deg,var(--neon-yellow)20%,var(--neon-green));
}
header nav a:hover, header nav a:focus {
  color: var(--neon-green);
}
header .cta-btn {
  margin-left: auto;
}
header img {
  width: 135px;
  height: auto;
  margin-right: 20px;
}

/* ==== PRIMARY BUTTONS ==== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  background: linear-gradient(98deg,var(--neon-green) 60%,#2f815b 100%);
  color: #212B23;
  border: 0;
  border-radius: 28px;
  letter-spacing: 0.03em;
  text-transform: none;
  text-shadow: 0 0 2px #e3ffed33;
  box-shadow: 0 0 0 2px #11412f26, 0 5px 18px 0 #14c48b22;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.2s;
  margin: 0 0 0 22px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(102deg,#ECFF62 40%,var(--neon-green) 90%);
  color: #15301e;
  box-shadow: 0 0 0 3px #87ffc2,0 7px 20px 0 #14c48b40;
  transform: translateY(-2px) scale(1.03);
}

/* ==== BURGER & MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent);
  background: transparent;
  border: none;
  outline: none;
  padding: 0 12px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  z-index: 1056;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--neon-yellow);
  background: #143f2a30;
  border-radius: 6px;
}

@media (min-width: 990px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #121e16ee;
  backdrop-filter: blur(6px);
  transition: transform 0.33s cubic-bezier(.83,.03,.19,.95);
  transform: translateX(-110vw);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 32px 18px 0;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: var(--neon-green);
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--neon-yellow);
}
.mobile-nav {
  width: 100%;
  padding: 23px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding: 12px 0 10px 8px;
  border-left: 5px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 5px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  margin-bottom: 0px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon-green);
  border-left: 5px solid var(--neon-yellow);
  background: #21473470;
}

@media (max-width: 989px) {
  header nav, header .cta-btn {
    display: none !important;
  }
}

@media (min-width: 990px) {
  .mobile-menu, .mobile-menu-close {
    display: none !important;
  }
}

/* ==== MAIN SECTIONS & FLEX PATTERNS ==== */
.features-grid, .service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
  justify-content: space-between;
}
.feature, .service {
  background: var(--surface2);
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 #1e573133;
  padding: 32px 28px 28px 28px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 320px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.2s;
  border: 2px solid transparent;
}
.feature:hover, .service:hover {
  box-shadow: 0 7px 32px 0 #37f3a340,0 0 0 3px #47f7be30;
  border-color: var(--neon-green);
  transform: translateY(-2px) scale(1.02);
}
.feature img, .service img {
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
  filter: drop-shadow(0 0 6px #9afecaae);
}

.features-grid {
  justify-content: flex-start;
  align-items: stretch;
}

/* Content grid for e.g. multiple cards or image-text */
.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, .features-grid, .service-categories {
    flex-direction: column;
    align-items: stretch;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface1);
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 #1552401b;
  margin-bottom: 20px;
  position: relative;
  padding: 26px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid #21332a;
  transition: box-shadow 0.18s, transform 0.22s, border-color 0.17s;
}
.card:hover {
  border-color: var(--neon-green);
  box-shadow: 0 7px 34px 0 #7affb399,0 0 0 2px #7affb380;
  transform: translateY(-2px) scale(1.013);
}

/* ==== TESTIMONIALS SECTION ==== */
.testimonials {
  width: 100%;
  margin: 0 0 52px 0;
  background: #1e2c2529;
  padding: 0 0 28px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fafcfb;
  color: #152618;
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 24px;
  min-width: 220px;
  box-shadow: 0 4px 24px #234a3840;
  font-family: var(--font-body);
  border: 2px solid #B7B09699;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.2s;
}
.testimonial-card p {
  color: #214734;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: #60755d;
  font-size: 0.96rem;
  font-style: italic;
  font-weight: 500;
}
.testimonial-card:hover {
  border-color: var(--neon-green);
  box-shadow: 0 6px 25px 0 #7affb355,0 0 0 2px #7affb326;
  transform: translateY(-2px) scale(1.01);
}

/* ==== FORMS, LISTS, GENERIC UI ==== */
ul, ol {
  margin-left: 0;
  list-style: none;
}
ul li, ol li {
  padding-left: 0;
  margin: 0 0 10px 0;
  font-size: 1.05rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
ul.contact-list li {
  color: var(--neon-green);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 0;
}
ul.contact-list li img {
  width: 22px;
  margin-right: 6px;
}

/* ==== FOOTER ==== */
footer {
  width: 100%;
  background: #151915;
  border-top: 2px solid var(--secondary);
  padding: 42px 0 22px;
  color: var(--secondary);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
footer img {
  width: 82px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 10px 0;
}
.footer-nav a {
  color: var(--neon-green);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--neon-yellow);
}
.contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 34px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  font-size: 0.98rem;
  color: var(--secondary);
  opacity: 0.85;
}
.contact-info span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-info img {
  width: 18px;
  margin-right: 2px;
  filter: drop-shadow(0 0 2px #83eab7cc);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;bottom: 0;
  z-index: 1500;
  background: #13211b;
  border-top: 3px solid var(--neon-green);
  color: #EBEFE6;
  padding: 20px 16px;
  box-shadow: 0 -5px 24px 0 #10251655;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  animation: cookieFadeIn 0.43s cubic-bezier(.58,.1,.65,1.02) 1;
}
@keyframes cookieFadeIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .btn-row {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 22px;
  font-size: 0.97rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  background: var(--surface2);
  color: var(--neon-green);
  margin: 0 2px;
  box-shadow: 0 2px 12px #7affb324;  
  transition: background 0.14s, color 0.13s, box-shadow 0.18s;
}
.cookie-banner button:hover, .cookie-banner .cookie-settings-btn:hover {
  background: var(--neon-green);
  color: #15301e;
  box-shadow: 0 2px 18px #7affb388;
}
.cookie-banner .cookie-settings-btn {
  background: #182a21;
  color: var(--neon-yellow);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -54%) scale(0.98);
  min-width: 308px;
  max-width: 98vw;
  width: 420px;
  background: #151d16;
  border: 2.5px solid var(--neon-green);
  box-shadow: 0 8px 48px #134330ee,0 0 0 2px #7affb333;
  border-radius: 20px;
  z-index: 1600;
  padding: 36px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalAppear 0.3s cubic-bezier(.38,.8,.56,1.41);
}
@keyframes cookieModalAppear {
  0% { opacity: 0; transform: translate(-50%,-80%) scale(0.83); }
  100% { opacity: 1; transform: translate(-50%,-54%) scale(0.98); }
}
.cookie-modal h2 {
  color: var(--secondary);
  font-size: 1.34rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  background: #1d2c23;
  border-radius: 10px;
  padding: 11px 16px;
}
.cookie-modal .cookie-desc {
  flex-grow: 1;
  color: var(--accent);
  font-size: 0.98rem;
}
.cookie-modal .cookie-switch {
  margin-left: auto;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  appearance: none;
  width: 36px;
  height: 18px;
  border-radius: 9px;
  background: #2a6e4f;
  outline: none;
  box-shadow: 0 0 0 1.5px #87ffc250;
  position: relative;
  transition: background 0.2s;
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked {
  background: var(--neon-green);
}
.cookie-modal .cookie-switch input[type="checkbox"]::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  left: 1.2px;
  top: 1px;
  transition: left 0.23s;
  box-shadow: 0 2px 7px #1b2d1e30; 
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked::after {
  left: 18px;
}
.cookie-modal .cookie-cat.essential .cookie-switch input[type="checkbox"] {
  background: #344b38;
  cursor: not-allowed;
}
.cookie-modal .cookie-cat.essential .cookie-switch input[type="checkbox"]:checked {
  background: #7affb3;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 10px 18px;
  border-radius: 18px;
  background: var(--neon-green);
  color: #15301e;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0;
  transition: background 0.18s, color 0.14s;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: var(--neon-yellow);
  color: #21332a;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 17px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--neon-green);
  cursor: pointer;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: var(--neon-yellow);
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
  header .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 800px) {
  .hero {
    min-height: 200px;
    padding: 16px 0;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .feature, .service {
    padding: 18px 13px 16px 13px;
    min-width: 0;
  }
  .card {
    padding: 12px 8px 14px 12px;
    max-width: 100vw;
  }
  .testimonial-card {
    padding: 15px 10px;
  }
  .contact-info {
    flex-direction: column;
    gap: 17px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 24px 5px;
  }
  header .container, footer .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .cookie-modal {
    padding: 17px 3vw 10px 3vw;
    width: 94vw;
    min-width: unset;
  }
}

/* ==== ANIMATIONS ==== */
.cta-btn, .feature, .service, .card, .testimonial-card, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.2s, background 0.15s, transform 0.18s, color 0.13s, border-color 0.13s;
}

/* ==== MICRO-INTERACTIONS ==== */
a, button, .cta-btn, .mobile-nav a, .footer-nav a {
  outline: none;
}
a:focus-visible, button:focus-visible, .cta-btn:focus-visible, .mobile-nav a:focus-visible {
  box-shadow: 0 0 0 2.5px var(--neon-yellow);
  background: #cbff7c22;
}

/* ==== SCROLLBAR ==== */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-thumb {
  background: #193422;
  border-radius: 9px;
  border: 2px solid #1e3d2b;
}
::-webkit-scrollbar-track { background: #101813; }

/* ==== FEATURE/LIST ITEM FLEX PATTERNS ==== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== UTILITY CLASSES ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-center { text-align: center !important; }
.mt-10 { margin-top: 10px; } .mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; } .pt-24 { padding-top: 24px; }
.gap-24 { gap: 24px !important; }

/* ==== SELECTION COLOR ==== */
::selection {
  background: var(--neon-yellow);
  color: #21332a;
}

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