/* ==== 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: #141b24;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  color: #F6F6F2;
  background: #141b24;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: #55FFD6;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
}
[tabindex]:focus-visible {
  outline: 2px solid #55FFD6;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border: none;
  background: none;
  cursor: pointer;
}

/* ==== BRAND VARIABLES ==== */
:root {
  --color-primary: #24384B;
  --color-secondary: #88A047;
  --color-accent: #F6F6F2;
  --color-bg-dark: #141b24;
  --color-bg-light: #263042;
  --color-neon: #55FFD6;
  --color-warning: #ff4141;
  --font-display: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --header-height: 84px;
}

/* ==== TYPOGRAPHY ==== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 32px rgba(85,255,214,0.16), 0 6px 48px rgba(36,56,75,0.48);
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-neon);
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 1px 24px rgba(85,255,214,0.19), 0 1px 24px rgba(36,56,75,0.16);
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 10px;
  text-shadow: 0 1px 18px rgba(136,160,71,0.16);
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 400;
}
p, li, small, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}
strong, b {
  color: var(--color-neon);
}
small {
  font-size: 0.92rem;
  opacity: .96;
}

/* General formating for content-wrapper */
.content-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: var(--color-primary);
  box-shadow: 0 0 16px 0 rgba(34, 255, 205, 0.04), 0 4px 24px 0 rgba(36,56,75,0.14);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  height: var(--header-height);
  justify-content: space-between;
}
.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(85,255,214,0.13));
  transition: filter 0.24s;
}
.logo:hover img {
  filter: drop-shadow(0 6px 16px var(--color-neon));
}
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
nav.main-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 5px;
  position: relative;
  transition: color 0.2s, box-shadow 0.2s;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  color: var(--color-neon);
  box-shadow: 0 0 8px var(--color-neon);
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-neon) 0%, #88A047 100%);
  color: #141b24;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.14rem;
  padding: 12px 32px;
  border-radius: 30px;
  box-shadow: 0 3px 24px 0 rgba(85,255,214,0.24), 0 1.5px 15px 0 rgba(136,160,71,0.07);
  margin-left: 12px;
  border: none;
  transition: background 0.18s, color 0.18s, transform 0.12s;
  text-shadow: 0 0 8px #fff7, 0 1px 1px #fff2;
}
.cta-btn:hover, .cta-btn:active, .cta-btn:focus {
  background: var(--color-secondary);
  color: var(--color-neon);
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 0 16px var(--color-neon), 0 8px 32px rgba(85,255,214,0.08);
}

/* ==== MOBILE NAV MENU ==== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-neon);
  background: transparent;
  border: none;
  margin-left: 10px;
  z-index: 120;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: background 0.1s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #202630;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  z-index: 1501;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #151C24ed;
  padding: 32px 24px 16px 24px;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.7,.03,.33,1.09);
  box-shadow: 0 0 32px 0 rgba(85,255,214,0.08);
  min-height: 100vh;
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  color: var(--color-neon);
  border: none;
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-close:hover {
  background: #252A34;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  margin-top: 12px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.16rem;
  background: transparent;
  border-radius: 6px;
  padding: 13px 8px 13px 4px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2B3849;
  color: var(--color-neon);
}

/* Show/hide menus on mobile */
@media (max-width: 1024px) {
  nav.main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==== MAIN SECTIONS ==== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #161F2B;
  border-radius: 18px;
  box-shadow: 0 10px 40px -20px rgba(85,255,214,0.07),0 4px 40px -19px rgba(36,56,75,0.12);
  position: relative;
  overflow: hidden;
}
section:nth-child(even) {
  background: linear-gradient(100deg, #1b252f 0%, #232e3d 98%);
}

@media (max-width: 768px) {
  section {
    padding: 28px 4vw;
    margin-bottom: 38px;
    border-radius: 12px;
  }
}

/* ==== FLEXBOX UTILITY LAYOUTS ==== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px 0 0 0;
}
.features-grid > div {
  background: #1b2430;
  border-radius: 12px;
  box-shadow: 0 6px 32px -14px #55ffd674;
  border: 1.5px solid #22374C;
  padding: 24px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 200px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, border 0.18s, background 0.2s;
  margin-bottom: 20px;
}
.features-grid > div:hover {
  box-shadow: 0 0 24px 0 var(--color-neon), 0 16px 64px -34px var(--color-neon);
  border: 2px solid var(--color-neon);
  background: #202A3E;
}
.features-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 7px;
  filter: drop-shadow(0 0 10px var(--color-neon));
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 20px 0;
  justify-content: flex-start;
}
.services-cards > div {
  background: #1c2531;
  border-radius: 13px;
  border: 1.5px solid rgba(85,255,214,0.12);
  box-shadow: 0 8px 32px -12px rgba(85,255,214,0.11);
  padding: 22px 20px 16px 20px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border 0.17s;
  position: relative;
}
.services-cards > div:hover {
  border-color: var(--color-neon);
  box-shadow: 0 0 30px var(--color-neon), 0 4px 30px -10px rgba(136,160,71,.1);
}

.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  background: #1b232b;
  border-radius: 13px;
  padding: 22px 18px;
  box-shadow: 0 7px 28px -12px var(--color-neon);
}

.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) {
  .features-grid, .services-cards, .card-container, .card-grid, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}


/* ==== TESTIMONIALS ==== */

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fafafc;
  color: #202430;
  border-radius: 15px;
  padding: 20px 28px 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 5px 24px -12px #55ffd633, 0 1.5px 12px 0 #22374c23;
  border: 1.5px solid #ddeeff;
  position: relative;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  min-width: 180px;
}
.testimonial-card p {
  color: #202430;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #24384B;
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 0.98rem;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #24384B;
}
.testimonial-card span:last-child {
  color: #88A047;
  letter-spacing: 0.03em;
  font-size: 1.13rem;
}

/* ==== BUTTON, LINKS, INTERACTION ==== */
.button, .btn, .cta-btn {
  transition: all 0.17s cubic-bezier(.4,0,.2,1.2);
  outline: none;
}
.cta-btn:active {
  filter: brightness(1.06) saturate(120%);
  transform: scale(1.03);
}

/* ==== BLOG PREVIEW ==== */
.blog-preview {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #1d2736;
  border-radius: 13px;
  box-shadow: 0 7px 28px -12px var(--color-neon);
  padding: 18px 18px 16px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s;
}
.blog-preview:hover {
  box-shadow: 0 2px 20px 0 var(--color-neon);
}

/* ==== CONTACT DETAILS ==== */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #232d36;
  border-radius: 9px;
  padding: 10px 16px;
  color: #F6F6F2;
  margin-bottom: 0;
}
.contact-details img {
  width: 23px; height: 23px;
  filter: drop-shadow(0 0 5px var(--color-neon));
}
.opening-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.map-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  background: #191d24;
  border-radius: 8px;
  padding: 10px 13px;
}
.map-info img {
  width: 21px;
}


/* ==== LISTS ==== */
ul, ol {
  margin-top: 8px;
  margin-bottom: 14px;
  padding-left: 22px;
}
ul li, ol li {
  font-size: 1rem;
  color: var(--color-accent);
  line-height: 1.6;
  margin-bottom: 6px;
  list-style-type: disc;
}
ul li img {
  margin-left: 7px;
  vertical-align: bottom;
  height: 24px;
  width: 24px;
}
/* Feature checklist adjustments */
ul li strong, ul li b {
  color: var(--color-secondary);
}

/* ==== FOOTER ==== */
footer {
  background: #171B22;
  padding: 34px 0 18px 0;
  border-top: 2px solid #222d3a;
  margin-top: 70px;
  box-shadow: 0 -3px 14px #22374c12;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.footer-nav a {
  color: var(--color-accent);
  font-size: 1rem;
  opacity: .92;
  border-radius: 7px;
  padding: 5px 9px;
  transition: color 0.15s, background 0.18s;
}
.footer-nav a:hover {
  color: var(--color-neon);
  background: #1c2230;
}
.footer-contact {
  color: #d8eae1;
  font-size: 0.99rem;
  opacity: .7;
  padding-top: 7px;
}
@media (max-width:768px) {
  footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 13px;
    margin-bottom: 11px;
    flex-wrap: wrap;
  }
}


/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1D232C;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 16px 18px 22px;
  box-shadow: 0 -2px 18px 0 #151b2072, 0 0 50px #55ffd626;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.34s, visibility 0.34s;
}
.cookie-consent-banner.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.cookie-consent-banner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1rem;
  max-width: 355px;
}
.cookie-consent-banner .cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  border:none;
  border-radius: 8px;
  padding: 10px 20px;
  margin-left: 7px;
  margin-right: 3px;
  cursor: pointer;
  background: linear-gradient(90deg, #55FFD6 0%, #88A047 100%);
  color: #121a1c;
  font-weight: 700;
  box-shadow: 0 0 18px -6px #55ffd644;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
}
.cookie-consent-banner .cookie-btn:hover,
.cookie-consent-banner .cookie-btn:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 0 18px var(--color-neon);
}
.cookie-consent-banner .cookie-settings-btn {
  background: #101820;
  color: #55FFD6;
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: #1d302c;
  color: #fff;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #151c2390;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.33s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-content {
  background: #212936;
  padding: 32px 30px 18px 30px;
  border-radius: 18px;
  box-shadow: 0 8px 45px -7px var(--color-neon);
  width: 95vw;
  max-width: 430px;
  color: #fff;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  animation: modalBounceIn 0.36s cubic-bezier(.6,-0.06,.45,1.19);
}
@keyframes modalBounceIn {
  0% { transform: scale(0.80) translateY(60px); opacity: 0; }
  80% { transform: scale(1.04) translateY(-4px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  color: var(--color-neon);
  border: none;
  font-size: 1.9rem;
  cursor: pointer;
  border-radius: 50%;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.08rem;
  color: #fafcf7;
}
.cookie-switch {
  appearance: none;
  width: 44px;
  height: 22px;
  background: #222b2f;
  outline: none;
  border-radius: 22px;
  position: relative;
  margin-left: 10px;
  transition: background 0.2s;
}
.cookie-switch:checked {
  background: var(--color-neon);
}
.cookie-switch:disabled {
  background: #343c40;
}
.cookie-switch::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1px; left: 2px;
  transition: left 0.2s, background 0.16s;
}
.cookie-switch:checked::after {
  background: #101E1A;
  left: 22px;
}
.cookie-switch:disabled::after {
  background: #b1c1bb;
}

.cookie-modal-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal-actions .cookie-btn {
  min-width: 100px;
  font-size: 1.01rem;
}

/* ==== MEDIA QUERIES ==== */
@media (max-width: 900px) {
  .features-grid > div, .services-cards > div {
    min-width: 160px;
    max-width: 100%;
  }
  .card, .blog-preview {
    min-width: 100px;
  }
  .contact-details {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 650px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 480px) {
  h1, .h1 { font-size: 1.36rem; }
  h2, .h2 { font-size: 1.13rem; }
  .cta-btn, .cookie-btn {
    font-size: 0.98rem;
    padding: 10px 12px;
  }
  section {
    margin-bottom: 18px;
    padding: 16px 3vw;
  }
}

/* ==== CUSTOM SCROLLBAR ==== */
::-webkit-scrollbar {
  width: 10px;
  background: #202a2b;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #23324c 0%, #55FFD6 85%);
  border-radius: 7px;
}

/* ==== OTHER MICRO-INTERACTIONS ==== */
input, select, textarea {
  border-radius: 6px;
  border: 1.5px solid #25334a;
  background: #181d26;
  color: #fff;
  padding: 10px 14px;
  outline: none;
  margin-bottom: 12px;
  font-family: var(--font-body);
  transition: border 0.16s, background 0.12s,
    box-shadow 0.14s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-neon);
  box-shadow: 0 0 11px 0 var(--color-neon);
}

/* ==== THANK YOU PAGE ==== */
.content-wrapper[style*="text-align:center"] {
  text-align: center;
}

/* ==== MODAL & OVERLAY Z-INDEX ADJUST ==== */
@media (max-width: 425px) {
  .cookie-modal-content {
    padding: 16px 6px 10px 10px;
    max-width: 98vw;
  }
}
