/* =======================================================
   RESET & NORMALIZE (Mobile-first, Flexbox Only)
=========================================================*/
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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #171f27;
  color: #f3eadb;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #63fff7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5ff3bb;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 0.6em;
}
li {
  margin-bottom: 0.4em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #f3eadb;
}
h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.21;
}
h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 12px;
}
h4, h5, h6 {
  margin-bottom: 10px;
}
p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #e6dfd3;
}
strong {
  color: #befff6;
  font-weight: 700;
}
/* Remove focus outlines except for accessibility */
:focus {
  outline: 2px solid #63fff7;
  outline-offset: 2px;
}

/* =============================
     BRAND COLORS & VARIABLES
============================= */
:root {
  --color-primary: #204855;
  --color-secondary: #7E9C88;
  --color-accent: #F3EADB;
  --color-dark-bg: #171f27;
  --color-darkest: #112029;
  --color-light-bg: #f3eadb;
  --color-neon: #63fff7; /* neon blue-aqua */
  --color-neon-hover: #5ff3bb; /* neon mint */
  --color-card-bg: #212b38;
  --color-card-border: #2e4456;
  --color-shadow: 0 2px 24px rgba(99,255,247,0.09);
}

/* ===============================
    LAYOUT CONTAINERS & FLEXBOX  
=============================== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.text-section {
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(132deg, #1e2d3a 75%, #191c24 100%);
  border-radius: 28px;
  box-shadow: var(--color-shadow);
}

/* Utility flex containers as per requirements */
.card-container, .features-grid, .testimonial-slider, .pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature, .pricing-option {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f3eadb;
  color: #204855;
  border-radius: 18px;
  margin-bottom: 22px;
  box-shadow: 0 2px 32px rgba(32,72,85,0.09);
  border: 1.5px solid #e5e0d7;
  min-width: 240px;
  max-width: 430px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.star-rating {
  color: #f9c846;
  font-size: 1.2em;
  letter-spacing: 0.12em;
  font-weight: bold;
  margin-bottom: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive media queries (mobile < 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .content-wrapper, .text-section {
    gap: 10px;
  }
  .features-grid, .card-container, .content-grid, .testimonial-slider, .pricing-table {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ===============================
        HEADER & NAVIGATION
=============================== */
header {
  background: #191c24;
  border-bottom: 2.5px solid var(--color-card-border);
  position: sticky;
  top: 0;
  z-index:  1003;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 68px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f3eadb;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
  padding: 8px 2px;
  border-radius: 6px;
}
header nav a:hover, header nav a:focus {
  color: var(--color-neon);
  background: rgba(99,255,247,0.07);
}
.cta-primary {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 11px 26px;
  background: linear-gradient(90deg, #63fff7 40%, #204855 100%);
  color: #204855;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 3px 30px rgba(99,255,247,0.21);
  margin-left: 18px;
  text-shadow: 0 1px 4px #fff3,e;
  transition: background 0.21s, color 0.16s, box-shadow 0.18s;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg,#5ff3bb 30%,#10323c 100%);
  color: #f3eadb;
  box-shadow: 0 2px 34px 0 #63fff7b3;
}
.cta-link {
  display: inline-block;
  color: var(--color-neon);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 12px;
  text-decoration: underline;
  transition: color 0.18s;
}
.cta-link:hover, .cta-link:focus {
  color: var(--color-neon-hover);
}

/* Hamburger Mobile Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--color-neon);
  font-size: 2.1rem;
  border: none;
  margin-left: 24px;
  cursor: pointer;
  z-index: 1006;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #5ff3bb;
}

@media (max-width: 980px) {
  header nav,
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===============
    MOBILE MENU
================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg, #14202a 75%, #134f54 100%);
  box-shadow: -4px 0 44px 0 #63fff712;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 44px;
  transition: transform 0.26s cubic-bezier(.42,.97,.65,1), left 0.01s;
  transform: translateX(0);
}
.mobile-menu.open {
  left: 0;
  transform: translateX(0);
}
.mobile-menu:not(.open) {
  left: 100vw;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 30px;
  background: none;
  color: var(--color-neon);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 1102;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F3EADB;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 26px 0 36px;
  width: 100%;
}
.mobile-nav a {
  color: #f3eadb;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 13px 8px 13px 3px;
  border-radius: 8px;
  font-weight: 600;
  background: none;
  transition: background 0.16s, color 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(99,255,247,0.09);
  color: #63fff7;
}

@media (max-width: 980px) {
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================================
        MAIN SECTIONS & FEATURE BLOCKS
=========================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
section .container {
  flex-direction: column;
}
.features-grid {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature {
  background: var(--color-card-bg);
  border: 1.5px solid var(--color-card-border);
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  padding: 25px 20px;
  flex: 1 1 270px;
  min-width: 225px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, border-color .16s, transform 0.18s;
}
.feature:hover, .feature:focus {
  border-color: var(--color-neon);
  box-shadow: 0 4px 38px #63fff727;
  transform: translateY(-3px) scale(1.015);
  z-index: 2;
}
.feature img {
  width: 42px;
  margin-bottom: 11px;
  filter: drop-shadow(0 2px 14px #63fff74c);
}
.feature h3 {
  color: #f3eadb;
  margin-bottom: 6px;
}
.feature p {
  color: #e6dfd3;
  font-size: 1.04rem;
}

/* PRICING TABLE */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  width: 100%;
}
.pricing-option {
  flex: 1 1 250px;
  background: var(--color-card-bg);
  border: 2.2px solid var(--color-card-border);
  border-radius: 16px;
  box-shadow: var(--color-shadow);
  padding: 22px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  max-width: 350px;
  transition: box-shadow 0.21s, border-color 0.19s, transform 0.18s;
  position: relative;
}
.pricing-option.best-value {
  border-color: var(--color-neon);
  box-shadow: 0 4px 38px #63fff726 !important;
}
.pricing-option .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-neon);
  margin-top: 10px;
}
.pricing-option .highlight {
  font-size: 0.99rem;
  background: var(--color-neon);
  color: #1e2d3a;
  border-radius: 13px;
  padding: 4px 15px;
  position: absolute;
  top: 14px;
  right: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 10px #63fff74b;
}
.pricing-option ul {
  color: #dee3e6;
  margin: 10px 0 0 0;
}
.pricing-option h3 {
  margin-bottom: 7px;
}
.pricing-option p {
  font-size: 1rem;
  margin-bottom: 8px;
}
.pricing-option:hover, .pricing-option:focus {
  border-color: #63fff7;
  box-shadow: 0 6px 42px #63fff733;
  transform: scale(1.022);
  z-index: 3;
}

@media (max-width: 768px) {
  .pricing-table {
    flex-direction: column;
    gap: 18px;
  }
  .pricing-option {
    min-width: 0;
    max-width: 100%;
  }
}

/* =========================================
             TESTIMONIAL CARDS
=========================================== */
.testimonial-card {
  background: #f3eadb;
  color: #204855;
  box-shadow: 0 2px 30px rgba(34,76,89,0.10);
  border: 1.5px solid #e5e0d7;
  border-radius: 18px;
  margin-bottom: 22px;
  min-width: 240px;
  max-width: 430px;
  padding: 20px;
  font-size: 1.12rem;
  line-height: 1.65;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.testimonial-card .star-rating {
  color: #f9c846;
}
.testimonial-card span {
  font-size: 1em;
  font-weight: 600;
  color: #204855;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-color: #63fff7;
  box-shadow: 0 4px 36px #20485544;
}
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}

/* =====================================
             FOOTER
======================================*/
footer {
  background: #191c24;
  border-top: 2px solid #253b4d;
  padding: 38px 0 18px 0;
  color: #e6dfd3;
  width: 100%;
  font-size: 0.97rem;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 1rem;
}
footer nav a {
  color: #63fff7;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #5ff3bb;
  text-decoration: none;
}
.contact-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  font-size: 0.98em;
}
.contact-footer img {
  height: 48px;
  width: auto;
  display: block;
}
.contact-footer span {
  color: #e6dfd3;
  line-height: 1.5;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    padding: 0 12px;
  }
  .contact-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ====================================
         FORMS & INPUTS (FAQ search)
==================================== */
input[type="text"], textarea {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  background: #202d39;
  color: #f3eadb;
  border: 2px solid #2e4456;
  border-radius: 10px;
  padding: 13px 18px;
  margin-top: 7px;
  margin-bottom: 22px;
  transition: border-color 0.16s, box-shadow 0.14s;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 1.5px 14px #2048550f;
}
input[type="text"]:focus, textarea:focus {
  border-color: #63fff7;
  outline: none;
  box-shadow: 0 2px 24px #63fff740;
}

/* List styling for brand accent */
ul li::marker {
  color: var(--color-neon);
  font-size: 1.1em;
}

/* Accent icon in lists (if any icon) */
ul li > img {
  display: inline-block;
  vertical-align: middle;
  height: 26px;
  margin-right: 10px;
  filter: drop-shadow(0 1px 10px #7E9C8833);
}

/* ==========================
      ADDRESS & MAP/CARDS
=========================== */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-top: 10px;
}
.address-map {
  background: var(--color-card-bg);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 1.03em;
  color: #f3eadb;
  box-shadow: 0 1.5px 34px #20485509;
  border: 1px solid #2e4456;
  margin-top: 10px;
}
.opening-hours {
  margin-top: 18px;
  font-size: 1.04em;
  color: #e6dfd3;
}
@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    gap: 12px;
  }
  .address-map {
    padding: 10px 8px;
  }
}

/* ===================
   ANIMATIONS + HOVER
=================== */
section, .feature, .card, .testimonial-card, .pricing-option {
  transition: box-shadow 0.21s, border-color 0.18s, transform 0.18s, background 0.21s;
}
a, button {
  transition: background 0.16s, color 0.15s, border-color 0.14s;
}

/* ===================
    COOKIE BANNER
=================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 1500;
  background: linear-gradient(90deg, #1e2d3a 75%, #191c24 100%);
  color: #f3eadb;
  padding: 20px 8vw;
  box-shadow: 0 -3px 24px #111e;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
  font-size: 1.06rem;
  border-top: 2px solid #7E9C88;
  animation: cookie-banner-in 360ms cubic-bezier(.32,1.17,.51,1.08) 1;
}
@keyframes cookie-banner-in {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  flex: 1;
  font-size: 1.05em;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01em;
  border-radius: 16px;
  border: none;
  padding: 10px 18px;
  background: var(--color-neon);
  color: #204855;
  margin: 0 1px;
  box-shadow: 0 2px 18px #63fff70b;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
  display: inline-block;
}
.cookie-btn.reject {
  background: #ed6364;
  color: #fff8ee;
}
.cookie-btn.settings {
  background: #232e3a;
  color: #f3eadb;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #5ff3bb;
  color: #204855;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b53136;
  color: #fff8ee;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #1e2d3a;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 20px 12px;
    gap: 15px;
    align-items: flex-start;
  }
  .cookie-banner-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,31,39,0.94);
  z-index: 1510;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.37s cubic-bezier(.35,1.35,.44,1.09) 1;
}
@keyframes cookie-modal-in {
  0% { opacity:0; transform: scale(0.95); }
  100% { opacity:1; transform: scale(1); }
}
.cookie-modal-content {
  background: #f3eadb;
  color: #204855;
  border-radius: 20px;
  max-width: 380px;
  width: 90vw;
  padding: 32px 26px 24px 26px;
  box-shadow: 0 2px 38px #2048552f;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal h2 {
  margin-bottom: 18px;
  font-size: 1.33rem;
  color: #204855;
}
.cookie-modal-category {
  font-size: 1.09em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 19px;
  background: #7E9C88;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.14s;
}
.cookie-toggle:checked {
  background: var(--color-neon);
}
.cookie-toggle::before {
  content: '';
  display: block;
  width:15px; height:15px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.2s;
  box-shadow: 0 2px 8px #a2efee56;
}
.cookie-toggle:checked::before {
  left: 19px;
}
.cookie-modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.7em;
  position: absolute;
  top: 21px;
  right: 32px;
  color: #204855;
  cursor: pointer;
}
.cookie-modal-close:hover { color: #a82724; }

@media (max-width: 550px) {
  .cookie-modal-content {
    padding: 18px 8px 16px 8px;
    max-width: 98vw;
  }
}

/* ===============================
        MISC UTILITIES
=============================== */
.hide {
  display: none!important;
}

/* ===============
   TYPOGRAPHY SCALE
================ */
@media (max-width: 520px) {
  html { font-size: 15px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 380px) {
  html { font-size: 13.7px; }
  h1 { font-size: 1.55rem; }
}

/* ===============================
   CUSTOM SCROLLBAR (Webkit)
=============================== */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #253b4d;
  border-radius: 7px;
}
::-webkit-scrollbar-track {
  background: #171f27;
  border-radius: 7px;
}

/* ===============
   ACCESSIBILITY
================ */
@media (prefers-contrast:high) {
  :root {
    --color-card-border:#63fff7;
    --color-card-bg:#12181f;
    --color-dark-bg:#11181f;
  }
  body {
    background: #0a1418;
    color: #f3eadb;
  }
}

/* ===============
   PRINT STYLES
================ */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer { display:none !important; }
  section, .section, .container, .content-wrapper { background: none !important; box-shadow: none !important; color:#111!important; }
  body { color: #111; background: #fff; }
}
