/* 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,
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #171c23;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #1b2c20 0%, #223147 100%);
  color: #F2ECE3;
  line-height: 1.6;
  transition: background 0.4s;
  letter-spacing: 0.04em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #8ef9f3; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #f2c34b; }
strong { color: #f2c34b; }
ul, ol { margin-left: 22px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Roboto', serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2rem; margin-bottom: 18px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.125rem; margin-bottom: 10px; }

@media (min-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.2rem; }
}


/* BRAND COLORS */
:root {
  --primary: #213B2F;
  --primary-dark: #181f26;
  --secondary: #627687;
  --accent: #F2ECE3;
  --neon-main: #8ef9f3;
  --neon-lime: #9aff92;
  --neon-yellow: #f2c34b;
  --neon-pink: #ff3cac;
  --card-bg: #242d37;
  --testimonial-bg: #fffbe7;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* HEADER & NAVIGATION */
header {
  background: var(--primary-dark);
  border-bottom: 1.5px solid #223147;
  box-shadow: 0 4px 30px 0 rgba(34,51,71,0.12);
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 64px;
}
.main-nav a {
  color: #f2ece3;
  font-weight: 500;
  font-size: 16px;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--primary);
  color: var(--neon-main);
}
.main-nav .cta-btn {
  margin-left: auto;
  background: linear-gradient(90deg, #2ff6ff, #f2c34b);
  color: #222c34;
  box-shadow: 0 0 10px 2px #2ff6ff77, 0 2px 24px 0 #f2c34b33;
  font-weight: 700;
  font-size: 17px;
  border-radius: 22px;
  padding: 8px 26px;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: linear-gradient(90deg, #f2c34b, #2ff6ff);
  color: #151a22;
  transform: translateY(-2px) scale(1.06);
}

header img {
  height: 38px;
  margin-right: 14px;
  vertical-align: middle;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--neon-main);
  font-size: 2rem;
  cursor: pointer;
  z-index: 98;
  border-radius: 8px;
  box-shadow: 0 0 0 0 transparent;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #2ff6ff28;
  color: #f2c34b;
}
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(135deg, #1b2c20 65%, #212e59 100%);
  box-shadow: 0 2px 40px 0 #0009;
  z-index: 130;
  transform: translateX(-100vw);
  transition: transform 0.42s cubic-bezier(.81,0,.33,1.09);
  display: flex;
  flex-direction: column;
  padding-top: 48px;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 121;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f2c34b24;
  color: #f2c34b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 54px;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.25em;
  color: var(--neon-main);
  background: none;
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.12s, box-shadow 0.2s;
  box-shadow: 0 2px 12px 0 #2ff6ff11;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #f2c34b;
  background: #2ff6ff22;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}


/* HERO SECTION */
.hero {
  background: linear-gradient(125deg, #223147 0%, #181f26 100%);
  padding: 80px 0 48px 0;
  margin-bottom: 45px;
  box-shadow: 0 4px 64px 0 #1b2c2050;
}
.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 15px;
  color: var(--neon-main);
  text-shadow: 0 2px 16px #2ff6ff55;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 28px;
  max-width: 600px;
}
.hero .cta-btn {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .hero {
    padding: 100px 0 68px 0;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1.3rem;
  }
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #2ff6ff, #f2c34b);
  color: #1b2c20;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 34px;
  border-radius: 30px;
  border: none;
  outline: none;
  box-shadow: 0 0 18px 0 #2ff6ff66, 0 2px 34px 0 #f2c34b44;
  letter-spacing: 0.06em;
  transition: background 0.22s, color 0.18s, transform 0.19s;
  cursor: pointer;
  margin-bottom: 8px;
  margin-top: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #f2c34b, #2ff6ff);
  color: #151a22;
  transform: translateY(-2px) scale(1.055);
  box-shadow: 0 0 32px 0 #f2c34b88;
}

/* LAYOUTS & FLEX SPACING */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-grid, .story-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 1.5em;
}
.story-tiles > div, .feature-grid > div {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 #2ff6ff22;
  padding: 26px 20px 22px 20px;
  min-width: 220px;
  flex: 1 1 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
  border: 1.5px solid #1b2c2040;
  transition: box-shadow 0.25s, border-color 0.18s, transform 0.2s;
}
.feature-grid > div:hover, .story-tiles > div:hover {
  box-shadow: 0 0 22px 0 var(--neon-main), 0 2px 44px 0 #2ff6ff44;
  border-color: #2ff6ff;
  transform: translateY(-5px) scale(1.022);
}
.feature-grid img, .story-tiles img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  align-self: flex-start;
  filter: drop-shadow(0 0 12px #2ff6ff76);
}
@media (max-width: 900px) {
  .feature-grid, .story-tiles {
    flex-direction: column;
  }
  .feature-grid > div, .story-tiles > div {
    max-width: 100%;
    width: 100%;
  }
}

.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;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  color: #f2ece3;
  padding: 28px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 #151a2240;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 0 12px 2px var(--neon-main), 0 6px 30px #1b2c2022;
  transform: translateY(-4px) scale(1.019);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
@media (max-width: 768px) {
  .content-grid { flex-direction: column; }
  .card-container { flex-direction: column; }
}

/* LISTS & ICONS */
.feature-list, .tip-list, .directions-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
}
.feature-list li, .tip-list li, .directions-list li, .features ul li {
  padding-left: 0;
  font-size: 1.08em;
  line-height: 1.7em;
  position: relative;
}
.tip-list img, .features ul img, .directions-list img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
  vertical-align: middle;
  filter: drop-shadow(0 0 6px #2ff6ff55);
}

/* ABOUT, TEXT SECTIONS & BLOCKQUOTE */
.about {
  background: linear-gradient(110deg, #213B2F 70%, #627687 100%);
  border-radius: 22px;
  box-shadow: 0 2px 28px 0 #2231472e;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 16px;
}
blockquote {
  display: block;
  padding: 18px 20px;
  background: #222e3a;
  color: var(--neon-main);
  border-radius: 12px;
  margin: 18px 0;
  font-size: 1.15em;
  border-left: 4px solid #2ff6ff;
  box-shadow: 0 2px 12px 0 #2ff6ff22;
}

.inspirational-quotes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(110deg, #223147 70%, #F2ECE3 100%);
  border-radius: 18px;
  box-shadow: 0 2px 28px 0 #22314742;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  background: var(--testimonial-bg);
  color: #222c34;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 #1b2c2066;
  min-width: 220px;
  max-width: 350px;
  font-size: 1.07em;
  margin-bottom: 20px;
  border: 1.4px solid #f2c34b44;
  transition: box-shadow 0.19s, border 0.14s, transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 0 22px 0 var(--neon-yellow);
  border: 1.4px solid var(--neon-yellow);
  transform: translateY(-2px) scale(1.022);
}
.testimonial-card p {
  color: #2e3a45;
}
.testimonial-card span {
  color: #627687;
  font-size: 0.98em;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
  }
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.03em;
}
.contact-buttons {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* FOOTER */
footer {
  background: #181f26;
  color: #f2ece3;
  border-top: 2px solid #223147;
  padding: 28px 0 10px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #f2ece3;
  font-size: 1em;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.17s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--neon-main);
  background: #1b2c203f;
}
.brand-statement {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1em;
  color: #f2ece3c0;
}
.brand-statement p {
  margin-bottom: 6px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  width: 100vw;
  background: linear-gradient(95deg, #223147 60%, #181f26 100%);
  color: #f2ece3;
  padding: 22px 18px 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 24px 0 #151a2265;
  font-size: 1.08em;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s, transform 0.31s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-btn {
  margin: 0 8px;
  padding: 10px 22px;
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #222c34;
  box-shadow: 0 0 14px 0 #2ff6ff44;
  transition: background 0.15s, color 0.1s, transform 0.18s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: linear-gradient(90deg, #2ff6ff, #f2c34b);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: linear-gradient(90deg, #f2c34b, #2ff6ff);
  color: #151a22;
}
.cookie-banner .reject {
  background: #b1345b;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e45988;
}
.cookie-banner .settings {
  background: #213b2f;
  color: var(--neon-main);
  border: 1.2px solid #2ff6ff99;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #2ff6ff22;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 400;
  background: rgba(12,26,24,0.94);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #171c23;
  color: #f2ece3;
  padding: 36px 24px 30px 24px;
  border-radius: 22px;
  box-shadow: 0 0 52px 0 #2ff6ff33;
  min-width: 320px;
  transition: transform 0.25s;
}
.cookie-modal h3 {
  color: var(--neon-main);
  font-size: 1.3em;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.cookie-category input[type='checkbox'] {
  accent-color: #2ff6ff;
  width: 20px;
  height: 20px;
}
.cookie-category .always-on {
  color: #4bd876;
  font-size: 0.98em;
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  align-items: center;
}
.cookie-modal .close-modal {
  background: #627687;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 20px;
  font-size: 1em;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #2ff6ff;
  color: #181f26;
}

@media (max-width: 600px) {
  .cookie-modal-dialog { min-width: 80vw; padding: 24px 10px 18px 10px; }
}

/* ANIMATION (smooth for main UI) */
.cta-btn, .main-nav .cta-btn, .feature-grid > div, .story-tiles > div, .card, .testimonial-card, .cookie-banner .cookie-btn {
  transition: box-shadow 0.2s, background 0.17s, color 0.14s, border 0.13s, transform 0.16s;
}

/* GENERAL RESPONSIVE - MOBILE FIRST */
@media (max-width: 900px) {
  .container { max-width: 98vw; padding: 0 7px;}
  .section, .testimonials, .about { padding: 24px 4px; }
  .content-wrapper { gap: 13px; }
}
@media (max-width: 600px) {
  .hero { padding: 50px 0 32px 0; }
  .footer-nav { flex-direction: column; gap: 10px; margin-bottom: 18px; }
  .footer-nav a { font-size: 0.98em; }
  .brand-statement { font-size: 0.95em; }
  .section, .testimonials, .about { padding: 12px 2px; }
}

/* FORMS & INPUTS (Generic) */
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  border-radius: 7px;
  outline: none;
  background: #222e3a;
  color: #f2ece3;
  box-shadow: 0 2px 9px 0 #2ff6ff12;
  padding: 10px 14px;
  margin-bottom: 13px;
  margin-top: 5px;
  width: 100%;
  transition: border 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.2px solid #2ff6ff;
  box-shadow: 0 0 14px 0 #2ff6ff22;
}
label { font-weight: 600; color: var(--neon-main); }

/* ACCESSIBILITY FOCUS */
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2px solid #2ff6ff;
  outline-offset: 3px;
}

/* SCROLLBAR STYLING (Webkit Browsers) */
::-webkit-scrollbar {
  width: 9px;
  background: #181f26;
}
::-webkit-scrollbar-thumb {
  background: #223147;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2ff6ff77;
}

/* UTILITIES */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/*******************************************
 * FLEXBOX SPACING & SECTION ALIGNMENT
 *******************************************/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { 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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/*******************************************
 * END OF CSS
 *******************************************/
