/* =====================
   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 {
  font-size: 16px;
  box-sizing: border-box;
  height: 100%;
}

body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #f0eada;
  background: #101422;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: #101422;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #23fa8e;
}

strong { font-weight: bold; }

/* =====================
   BRAND FONTS & COLORS
   ===================== */
:root {
  --color-primary: #183153;
  --color-secondary: #34915b;
  --color-accent: #f0eada;
  --color-dark-bg: #101422;
  --color-bg-elevate: #16253a;
  --color-neon: #23fa8e;
  --color-error: #dc143c;
  --color-border-card: #203a57;
  --color-shadow: rgba(36, 255, 135, 0.05);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Source Sans Pro', Arial, sans-serif;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 992px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-elevate);
  border-radius: 20px;
  box-shadow: 0 4px 32px var(--color-shadow);
  border: 1px solid var(--color-border-card);
  margin-bottom: 20px;
  padding: 32px 24px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 2px 24px 2px #1cfc9980, 0 0 0 2px var(--color-neon);
  transform: translateY(-6px) scale(1.02);
  z-index: 1;
}

.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: 20px;
  }
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 24px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg-elevate);
  border: 1.5px solid #18315344;
  border-radius: 18px;
  box-shadow: 0 2px 18px var(--color-shadow);
  padding: 26px 22px 22px 22px;
  margin-bottom: 20px;
  transition: border 0.2s, box-shadow 0.2s, transform 0.18s;
}
.feature-item:hover {
  border: 1.5px solid var(--color-neon);
  box-shadow: 0 0 14px 2px #28fc84cc, 0 0 0 2px #24c78dcc;
  transform: translateY(-4px) scale(1.01);
}

/* =====================
   HERO & HEADINGS
   ===================== */
.hero {
  background: linear-gradient(120deg, #183153 0%, #34915b 100%);
  color: var(--color-accent);
  text-align: center;
  padding: 64px 0 56px 0;
  box-shadow: 0 6px 40px -8px #19fd8e33;
  margin-bottom: 48px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: #f0eada;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 2px 24px rgba(36,255,135,0.08);
}
.hero .subheadline {
  font-size: 1.25rem;
  font-family: var(--font-body);
  max-width: 640px;
  margin: 0 auto 26px auto;
  color: #f0eada;
  line-height: 1.4;
  opacity: 0.94;
}

@media (max-width: 768px) {
  .hero {
    padding: 42px 0 30px 0;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  color: var(--color-accent);
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}

@media (max-width: 600px) {
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.08rem; }
}

/* =====================
   NAVIGATION DESKTOP
   ===================== */
header {
  background: var(--color-dark-bg);
  box-shadow: 0 2px 32px -13px #3fffa522;
  position: relative;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 18px;
  justify-content: space-between;
  min-height: 74px;
}

header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: var(--font-display);
  color: #c1eaf5;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 8px 0;
  transition: color 0.19s, border-bottom 0.23s;
  border-bottom: 2px solid transparent;
  position: relative;
}
header nav a:hover, header nav a.active {
  color: var(--color-neon);
  border-bottom: 2px solid var(--color-neon);
}

header a.cta-primary {
  margin-left: 10px;
  font-family: var(--font-display);
}

@media (max-width: 990px) {
  header nav {
    display: none;
  }
  header a.cta-primary {
    display: none;
  }
}

/* =====================
   MOBILE NAVIGATION
   ===================== */
.mobile-menu-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: var(--color-neon);
  font-size: 2.1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  z-index: 1012;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover {
  background: #16253a;
}
@media (min-width: 991px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(120deg, #101422 82%, #23fa8e33 100%);
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.82,.05,.75,1.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  cursor: pointer;
  margin-bottom: 18px;
  margin-right: 4px;
  padding: 7px 9px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:hover {
  background: #2b434b;;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: #f0eada;
  font-size: 1.24rem;
  padding: 10px 0 10px 12px;
  border-left: 3px solid transparent;
  border-radius: 0 7px 7px 0;
  transition: color 0.22s, border-left 0.24s, background 0.18s;
}
.mobile-nav a:active {
  background: #19fd8e17;
  color: var(--color-neon);
  border-left: 3px solid var(--color-neon);
}
.mobile-nav a:hover {
  color: var(--color-neon);
  border-left: 3px solid var(--color-neon);
  background: #23fa8e0f;
}

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

/* =====================
   CTA BUTTONS
   ===================== */
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg,#23fa8e 0,#34915b 100%);
  color: #183153;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4;
  padding: 15px 36px;
  border-radius: 40px;
  box-shadow: 0 0 16px 0 #21fa8ea4;
  border: none;
  outline: none;
  margin-top: 22px;
  margin-bottom: 4px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-shadow: none;
  transition: background 0.19s, box-shadow 0.16s, transform 0.17s;
}
.cta-primary:focus,
.cta-primary:hover {
  background: linear-gradient(90deg,#18d178 0,#15b357 100%);
  box-shadow: 0 0 0 2.5px #1cfc99, 0 6px 32px -7px #15fc6444;
  color: #101422;
  transform: translateY(-1px) scale(1.02);
}

/* =====================
   CARDS, FEATURES, CATEGORIES
   ===================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
}
.category-item {
  flex: 1 1 240px;
  min-width: 210px;
  background: #0e1530;
  border-radius: 14px;
  border: 1px solid #23fa8e25;
  padding: 28px 20px;
  color: #f0eada;
  box-shadow: 0 2px 14px 2px #19fd8e13;
  transition: border 0.18s, box-shadow 0.18s, transform 0.17s;
  margin-bottom: 20px;
}
.category-item:hover {
  border: 1.5px solid var(--color-neon);
  box-shadow: 0 0 18px 1.5px #23fa8e99;
  transform: translateY(-4px) scale(1.02);
}

@media (max-width: 800px) {
  .category-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* =====================
   TESTIMONIALS & RATING SUMMARY
   ===================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #f0eada;
  color: #183153;
  box-shadow: 0 2px 14px #18315318;
  border-left: 5px solid var(--color-neon);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card p {
  font-size: 1.13rem;
  font-family: var(--font-body);
  margin-right: 8px;
}
.testimonial-card span {
  font-size: 1rem;
  font-family: var(--font-display);
  opacity: 0.74;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 0 16px 3px #34915b11, 0 0 0 2px #18315322;
  transform: scale(1.01);
}
.rating-summary {
  background: #16253a;
  color: #f0eada;
  border-radius: 12px;
  padding: 14px 20px;
  margin: 2px 0 0 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 10px #23fa8e11;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
}

/* =====================
   FAQ ACCORDION
   ===================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.faq-item {
  background: var(--color-bg-elevate);
  border-radius: 14px;
  border: 1.5px solid #18315344;
  padding: 26px 20px 15px 22px;
  box-shadow: 0 1px 12px #23fa8e15;
  transition: box-shadow 0.18s, border 0.16s;
  cursor: pointer;
}
.faq-item h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--color-neon);
}
.faq-item p {
  color: var(--color-accent);
  font-size: 1rem;
}
.faq-item:hover {
  border: 1.8px solid var(--color-neon);
  box-shadow: 0 0 16px 2px #23fa8e55;
}

/* =====================
   TEXT & CONTENT SECTIONS
   ===================== */
.text-section {
  flex: 1 1 0;
  min-width: 220px;
  color: var(--color-accent);
  font-size: 1.1rem;
  font-family: var(--font-body);
  line-height: 1.7;
  gap: 18px;
  display: flex;
  flex-direction: column;
}
.text-section ul {
  list-style: disc;
  margin-left: 22px;
  font-size: 1rem;
  margin-top: 5px;
}
.timeline {
  margin: 22px 0 18px 0;
  border-left: 3px solid var(--color-neon);
  padding-left: 12px;
  color: #f0eada;
}

/* =====================
   CONTACT DETAILS
   ===================== */
.contact-details {
  font-size: 1.06rem;
  color: var(--color-accent);
  padding: 15px 0 15px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-details img {
  vertical-align: middle;
  width: 22px;
  margin-right: 9px;
}

/* =====================
   MAP EMBED SECTION
   ===================== */
.map-embed {
  background: #16253a;
  border-radius: 10px;
  padding: 14px 18px 12px 18px;
  color: #c1eaf5;
  min-width: 220px;
  margin-top: 14px;
  box-shadow: 0 0 10px 2px #18315311;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #152033;
  color: #b9d9df;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 48px 0 28px 0;
  border-top: 2px solid #18315366;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}
footer nav {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: #aeeec1;
  font-family: var(--font-display);
  font-size: 1.08rem;
  transition: color 0.16s;
}
footer nav a:hover {
  color: var(--color-neon);
}
.footer-contact {
  flex: 2 1 0;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-accent);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
  }
}

/* =====================
   CTA SECTIONS
   ===================== */
.cta {
  background: linear-gradient(90deg, #183153 0,#22324a 100%);
  color: var(--color-accent);
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 12px 60px -18px #23fa8e22;
  margin-bottom: 18px;
}
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
}

.cta h2 {
  color: #f0eada;
}

/* Next Steps on thank-you */
.next-steps {
  background: #182f47;
  color: #f0eada;
  border-radius: 12px;
  padding: 24px 18px 20px 18px;
  margin: 25px auto 0 auto;
  max-width: 500px;
  box-shadow: 0 2px 14px #23fa8e12;
  font-size: 1.06rem;
}
.next-steps ul {
  margin: 14px 0 0 26px;
  color: #81efba;
  font-size: 1rem;
}

/* =====================
   CATEGORY NAVIGATION
   ===================== */
.category-navigation {
  margin: 20px auto 0 auto;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 1.09rem;
}
.category-navigation a {
  color: #81efba;
  border-bottom: 1.7px dotted #23fa8e44;
  padding: 3px 5px 2px 6px;
  border-radius: 6px;
  transition: background 0.16s, color 0.18s, border-bottom 0.16s;
}
.category-navigation a:hover {
  background: #23fa8e11;
  color: var(--color-neon);
  border-bottom: 1.7px solid var(--color-neon);
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: linear-gradient(90deg, #183153 82%, #23fa8e33 100%);
  color: #f0eada;
  text-align: center;
  padding: 26px 18px 20px 18px;
  box-shadow: 0 -4px 30px 0 #12ff9433;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.32s cubic-bezier(.78,.14,.45,1.07), opacity 0.22s;
}
.cookie-banner[hidden] {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #f0eada;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  cursor: pointer;
  background: #19fd8e;
  color: #183153;
  border: none;
  border-radius: 18px;
  padding: 8px 22px;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  transition: background 0.16s, box-shadow 0.16s, transform 0.14s;
  box-shadow: 0 0 12px #23fa8e21;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #13b968;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn-reject {
  background: #16253a;
  color: #f0eada;
  border: 1.5px solid #19fd8e;
}
.cookie-btn-reject:hover {
  background: #101422;
  color: #19fd8e;
  border: 1.5px solid #13b968;
}
.cookie-btn-settings {
  background: #fff0;
  color: #23fa8e;
  border: 1.8px solid #23fa8e;
}
.cookie-btn-settings:hover {
  background: #23fa8e33;
  color: #183153;
}

/* Cookie modal overlay & container */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: #101422cc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.20s;
  opacity: 1;
}
.cookie-modal-overlay[hidden] {
  display: none;
  opacity: 0;
}
.cookie-modal {
  background: #f0eada;
  color: #183153;
  border-radius: 24px;
  padding: 40px 28px 30px 28px;
  box-shadow: 0 16px 76px 0 #18315355;
  min-width: 330px;
  max-width: 93vw;
  font-family: var(--font-body);
  position: relative;
}
.cookie-modal h3 {
  color: #183153;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 13px;
  background: none;
  border: none;
  color: #23fa8e;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 5px 7px;
  transition: background 0.14s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #23fa8e13;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 11px 0 7px 0;
  font-size: 1.08rem;
  color: #183153;
}
.toggle-switch {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 44px;
  height: 26px;
  margin-right: 6px;
}
.toggle-switch input[type='checkbox'] {
  opacity: 0;
  width: 0; height: 0;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  background: #18315333;
  border-radius: 34px;
  top: 0; left: 0;
  right: 0; bottom: 0;
  transition: background 0.16s;
}
.toggle-switch input:checked + .switch-slider {
  background: linear-gradient(90deg,#23fa8e 0,#34915b 100%);
}
.switch-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  top: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 2px 5px #18315333;
}
.toggle-switch input:checked + .switch-slider:before {
  transform: translateX(17px);
  background: #23fa8e;
}
.cookie-categories {
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .cookie-buttons {
  margin: 20px 0 0 0;
  justify-content: flex-end;
}

/* =====================
   RESPONSIVE RULES
   ===================== */
@media (max-width: 600px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 5px;
  }
  .hero {
    padding: 31px 0 17px 0;
  }
  .card, .feature-item, .category-item {
    padding: 16px 12px;
  }
}

/* =====================
   TRANSITIONS / MICRO-INTERACTIONS
   ===================== */
button, .cta-primary, .cookie-btn, .cookie-btn-settings, .cookie-btn-reject {
  transition: box-shadow 0.18s, background 0.17s, color 0.16s, border 0.16s, transform 0.14s;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* =====================
   UTILITY CLASSES
   ===================== */
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }

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

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