/* CSS RESET & NORMALIZATION */
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;
  background: #232a28;
  color: #fffefa;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}

:root {
  --color-primary: #34524d;
  --color-secondary: #d4bb8a;
  --color-accent: #fffefa;
  --color-bg: #232a28;
  --color-bg-light: #283732;
  --color-bg-card: #27302d;
  --color-hover: #1d3932;
  --color-neon: #6affdb;
  --color-dark-hr: #19221f;

  --font-display: 'Merriweather', serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: linear-gradient(135deg, #232a28 0%, #34524d 100%);
  min-height: 100vh;
  color: var(--color-accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-secondary);
  text-shadow: 0 1px 2px rgba(0,0,0,0.07);
  font-weight: 900;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
  line-height: 1.2;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.section h2 {
  color: var(--color-neon);
  letter-spacing: 0.02em;
}

p, ul, ol, address, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-accent);
  margin-bottom: 12px;
}
strong {
  color: var(--color-neon);
  font-weight: 700;
}

blockquote {
  font-style: italic;
  border-left: 3px solid var(--color-neon);
  padding-left: 20px;
  color: var(--color-secondary);
  margin: 28px 0 20px 0;
  background: rgba(38,47,44,0.6);
  border-radius: 14px;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-light);
  border-radius: 18px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  overflow: hidden;
  z-index: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-grid, .feature-list, .card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-card);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: #222;
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 22px;
  box-shadow: 0 4px 18px rgba(52,82,77,0.10),0 0px 0px 1.8px #6affdb99;
  position: relative;
  min-width: 250px;
  max-width: 530px;
}
.testimonial-card .star-rating {
  color: #ffe66d;
  font-size: 1.25rem;
  margin-bottom: 2px;
  letter-spacing: 1px;
  user-select: none;
}
.testimonial-author {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 200px;
  background: var(--color-bg-card);
  border-radius: 12px;
  padding: 20px 16px;
  min-width: 210px;
  box-shadow: 0 2px 14px rgba(52,82,77,0.08);
  margin-bottom: 20px;
  border: 1.5px solid #385e57;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 6px #6affdb89);
}
.feature-item h3 {
  color: var(--color-neon);
  font-size: 1.14rem;
}
.feature-item:hover, .feature-item:focus {
  border-color: var(--color-neon);
  box-shadow: 0 4px 24px rgba(106,255,219,0.16);
}

.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  background: var(--color-bg-card);
  border-radius: 10px;
  padding: 18px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--color-bg-light);
  padding: 0;
  box-shadow: 0 2px 12px rgba(34,66,61,0.13);
  z-index: 1003;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 0;
}
.logo img {
  width: 134px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
nav a {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 0 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom 0.18s;
  letter-spacing: 0.01em;
}
nav a.cta {
  color: var(--color-bg);
  background: var(--color-neon);
  border-radius: 21px;
  padding: 7px 24px;
  font-weight: 700;
  border: none;
  transition: box-shadow 0.18s, background 0.18s;
  box-shadow: 0 2px 8px rgba(106,255,219,0.11);
  margin-left: 10px;
}
nav a:hover, nav a:focus {
  color: var(--color-neon);
  border-bottom: 2px solid var(--color-neon);
}
nav a.cta:hover, nav a.cta:focus {
  background: #38eebd;
  color: var(--color-bg);
  box-shadow: 0 2px 24px #6affdb44;
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-neon);
  color: var(--color-bg);
  font-size: 2rem;
  border-radius: 8px;
  padding: 7px 15px;
  margin-left: 12px;
  z-index: 1004;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #33ddb0;
}

/* Mobile menu styles */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,47,44,0.98);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.67,.21,.3,1.14);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--color-neon);
  color: var(--color-bg);
  font-size: 2.1rem;
  padding: 7px 16px;
  margin: 30px 30px 0 0;
  border-radius: 9px;
  align-self: flex-end;
  z-index: 2000;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #3bffee;
}
.mobile-nav {
  margin: 60px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.26rem;
  color: var(--color-neon);
  padding: 12px 0;
  border-radius: 8px;
  width: 100%;
  display: block;
  font-weight: 700;
  text-align: left;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #30705b;
  color: #fffefa;
}

@media (max-width: 1050px) {
  nav {
    gap: 18px;
  }
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 880px) {
  nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    margin-bottom: 34px;
    padding: 26px 8px;
  }
  .container {
    padding: 0 3vw;
  }
  .feature-grid, .feature-list, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 18px 12px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  .footer-contact address {
    font-size: 0.98rem;
  }
}

/* BUTTONS & CTA */
.cta, .cta:visited {
  background: linear-gradient(92deg, #6affdb 0%, #d4bb8a 100%);
  color: var(--color-bg);
  border: none;
  border-radius: 32px;
  padding: 13px 36px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 16px rgba(106,255,219,0.17);
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, box-shadow 0.26s, transform 0.18s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin-top: 10px;
}
.cta:hover, .cta:focus {
  background: linear-gradient(92deg, #d4bb8a 0%, #6affdb 100%);
  color: #061812;
  box-shadow: 0 3px 28px 0 #6affdb85;
  transform: translateY(-2px) scale(1.04);
}

/* TABLE STYLES */
table {
  width: 100%;
  margin: 20px 0 12px 0;
  border-collapse: collapse;
  background: var(--color-bg-card);
  border-radius: 11px;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 1rem;
}
thead th {
  background: var(--color-primary);
  color: var(--color-accent);
  font-weight: 600;
  padding: 14px 10px;
  text-align: left;
  border-bottom: 2px solid var(--color-neon);
}
tbody td {
  padding: 13px 10px;
  color: var(--color-secondary);
  border-bottom: 1px solid #283732;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--color-bg-card);
  color: var(--color-secondary);
  border-radius: 10px;
  padding: 16px 19px;
  box-shadow: 0 2px 7px 0 #6affdb22;
  transition: box-shadow 0.18s, border-color 0.16s;
  border: 1.8px solid #385e57;
  margin-bottom: 5px;
  cursor: pointer;
}
.faq-item:hover, .faq-item:focus {
  border-color: var(--color-neon);
  box-shadow: 0 4px 14px #6affdb77;
}
.faq-item strong {
  color: var(--color-neon);
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1.04rem;
}
.faq-item div {
  color: var(--color-secondary);
  font-size: 0.98rem;
  margin-top: 3px;
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--color-bg-light);
  padding: 0;
  margin-top: 40px;
  border-top: 1.5px solid var(--color-dark-hr);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 18px 24px 18px;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 10px;
}
footer nav a {
  color: var(--color-neon);
  font-size: 1rem;
  font-family: var(--font-body);
  opacity: 0.78;
  transition: color 0.16s, opacity 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.footer-contact address {
  font-style: normal;
  color: var(--color-accent);
  line-height: 1.6;
  font-size: 1.06rem;
  word-break: break-word;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .footer-contact {
    align-items: flex-start;
  }
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2999;
  background: var(--color-bg-card);
  color: var(--color-accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 32px #6affdb22;
  border-top: 3px solid var(--color-neon);
  padding: 22px 18px;
  gap: 16px;
  font-size: 1rem;
  flex-wrap: wrap;
  opacity: 1;
  transition: transform 0.32s cubic-bezier(.69,1.33,0,1.01), opacity 0.35s;
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  outline: none;
  border-radius: 18px;
  font-size: 1rem;
  padding: 8px 24px;
  margin: 0 1px;
  font-family: var(--font-body);
  font-weight: 700;
  transition: background 0.16s,color 0.15s, box-shadow 0.19s;
  cursor: pointer;
}
.cookie-banner .cookie-accept {
  background: var(--color-neon);
  color: var(--color-bg);
  box-shadow: 0 0 8px #6affdb77;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #1cffe9;
  color: #253732;
}
.cookie-banner .cookie-reject {
  background: #27302d;
  color: #fffefa;
  border: 1.1px solid var(--color-neon);
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #1f2725;
  color: var(--color-neon);
}
.cookie-banner .cookie-settings {
  background: #19221f;
  color: var(--color-secondary);
  border: 1.1px solid var(--color-secondary);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #385e57;
  color: var(--color-neon);
}
@media (max-width: 576px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 12px;
    gap: 13px;
    font-size: 0.95rem;
  }
  .cookie-banner .cookie-banner-buttons {
    flex-direction: column;
    gap: 9px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,66,61,0.97);
  z-index: 3001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--color-bg);
  padding: 38px 30px 28px 30px;
  border-radius: 20px;
  color: var(--color-accent);
  width: 96vw;
  max-width: 440px;
  box-shadow: 0 6px 36px #6affdb33;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 3002;
  animation: modalShow .39s cubic-bezier(.36,1.22,.47,.97);
}
@keyframes modalShow {
  0% { transform: translateY(40px) scale(.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-neon);
  font-size: 1.22rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--color-accent);
  font-family: var(--font-body);
}
.cookie-toggle {
  width: 36px;
  height: 22px;
  border-radius: 12px;
  background: #27302d;
  position: relative;
  margin-left: 8px;
  transition: background 0.18s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2.5px; left: 3px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--color-secondary);
  transition: transform 0.19s, background 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  transform: translateX(14px);
  background: #6affdb;
}
.cookie-category.essential label {
  opacity: 0.72;
  color: #B2E2BC;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.33;
  pointer-events: none;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-buttons button {
  padding: 8px 24px;
  border-radius: 17px;
  font-weight: 700;
  font-family: var(--font-body);
  background: var(--color-neon);
  color: var(--color-bg);
  border: none;
  transition: background 0.16s, color 0.15s;
}
.cookie-modal-buttons button.cookie-save {
  background: var(--color-neon);
}
.cookie-modal-buttons button.cookie-cancel {
  background: var(--color-secondary);
  color: var(--color-bg);
}
.cookie-modal-buttons button:hover, .cookie-modal-buttons button:focus {
  background: #4bffe4;
  color: #222;
}

/* GENERAL ELEMENT STYLES (Spacing etc.) */
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 7px;
  color: var(--color-accent);
  font-family: var(--font-body);
}
a {
  color: var(--color-neon);
  text-decoration: underline;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: var(--color-secondary);
}

/* PRICE STYLING */
.price {
  color: var(--color-neon);
  font-size: 1.15rem;
  font-weight: 700;
  margin-left: 11px;
}

/* Misc */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-bg-card);
}
::-webkit-scrollbar-thumb {
  border-radius: 12px;
  background: #395b52;
}
::-webkit-scrollbar-thumb:hover {
  background: #6affdb99;
}

/* Animations & Microinteractions */
.section, .card, .feature-item, .testimonial-card, .faq-item, .cta {
  transition: box-shadow 0.20s, border-color 0.15s, background 0.21s, color 0.15s, transform 0.16s;
}
.section:hover, .card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 6px 38px #6affdb33;
  transform: translateY(-2px) scale(1.011);
  border-color: var(--color-neon);
}

/* Utility Classes (Spacing/Align) */
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-16 { gap: 16px; }

/* NO ABSOLUTE POSITION for content cards/texts! Only allow for decorations */

/* OVERLAP PREVENTION */
.card, .section, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}

/**************************/
/* PLACEHOLDER FOR JS CLASSES (mobile-menu.open, cookie-modal-overlay.active, etc) */
/**************************/
