/* -------------------------------
   CSS RESET / NORMALIZE SECTION
------------------------------- */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background-color: #101b15;
  color: #ededed;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #174A3C 0%, #202e24 100%);
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
ul, ol {
  list-style: none;
}
:root {
  --primary: #174A3C;
  --primary-dark: #112F25;
  --secondary: #F7D25A;
  --accent: #FFFFFF;
  --neon-blue: #2FF0FC;
  --neon-yellow: #F7D25A;
  --neon-pink: #FF55B3;
  --bg-dark: #101b15;
  --bg-contrast: #18392d;
  --card-bg: #16271e;
  --shadow: 0 4px 24px 0 rgba(23, 74, 60, 0.18);
  --border-radius: 18px;
  --border-radius-card: 14px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* -------------------------------------
   TYPOGRAPHY and FONT HIERARCHY
------------------------------------- */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 0.2px;
  color: var(--accent);
  margin-bottom: 18px;
  text-shadow: 0 2px 24px var(--neon-blue),0 2px 12px var(--primary-dark);
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--secondary);
  letter-spacing: 0.1px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--neon-blue);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 8px;
}
p, li, span, label {
  font-family: var(--font-body);
  color: #ededed;
  font-size: 1rem;
  margin-bottom: 6px;
}
.subheadline {
  font-family: var(--font-body);
  font-size: 1.18rem;
  color: var(--neon-blue);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 8px var(--primary-dark);
}
.link-more {
  font-size: 1rem;
  color: var(--neon-yellow);
  border-bottom: 1px solid var(--neon-yellow);
  transition: color 0.2s, border-bottom 0.2s;
  display: inline-block;
  margin-top: 14px;
}
.link-more:hover,
.link-more:focus {
  color: var(--neon-blue);
  border-bottom: 1px solid var(--neon-blue);
}

/* -------------------------------------
   HEADER / NAVIGATION
------------------------------------- */
header {
  background: var(--bg-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px 10px 24px;
  box-shadow: 0 2px 22px -6px #0a1811;
  position: relative;
  z-index: 20;
}
header img {
  height: 40px;
  margin-right: 20px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  position: relative;
  font-family: var(--font-display);
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 1.09rem;
  padding: 7px 0px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
header nav a:hover,
header nav a:focus {
  color: var(--neon-blue);
  border-bottom: 2px solid var(--neon-blue);
}
.cta-btn {
  background: var(--neon-blue);
  border: none;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 11px 32px;
  margin-left: 26px;
  box-shadow: 0 8px 38px -12px var(--neon-blue), var(--shadow);
  text-shadow: none;
  outline: none;
  transition: background 0.2s, box-shadow 0.22s, color 0.16s;
  position: relative;
  overflow: hidden;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: #2B2B2B;
  box-shadow: 0 8px 38px -7px var(--secondary), 0 2px 16px var(--neon-blue);
}

/* Hamburger menu icon */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  color: var(--neon-yellow);
  font-size: 2rem;
  z-index: 100;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--neon-blue);
  box-shadow: 0 2px 18px var(--primary-dark);
  transition: background 0.14s, color 0.13s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--neon-blue);
}

@media (max-width: 1024px) {
  header nav {
    gap: 16px;
  }
  .cta-btn {
    margin-left: 10px;
  }
}

@media (max-width: 900px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* -------------------------------------
   MOBILE NAV MENU STYLES
------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(23,74,60,0.96);
  backdrop-filter: blur(5px);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-105vw);
  transition: transform 0.38s cubic-bezier(.86,0,.07,1);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 32px 12px #192f25a0;
}
.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.3rem;
  background: var(--card-bg);
  color: var(--neon-blue);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center; justify-content: center;
  border: 2px solid var(--neon-yellow);
  box-shadow: 0 0 18px -4px var(--neon-yellow);
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--neon-yellow);
  color: var(--primary);
}
.mobile-nav {
  margin-top: 80px;
  width: 100vw;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-left: 36px;
}
.mobile-nav a {
  color: var(--neon-blue);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  padding: 12px 0 8px 0;
  width: 100%;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  min-height: 50px;
  transition: color 0.18s, border-bottom 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
  }
}

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


/* -------------------------------------
   HERO SECTION
------------------------------------- */
.hero {
  margin-bottom: 60px;
  padding: 54px 0 46px 0;
  background: linear-gradient(125deg, #174A3C 80%, #18392d 100%);
  position: relative;
}
.hero .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--accent);
}
.hero .cta-btn {
  margin-top: 12px;
  background: var(--secondary);
  color: var(--primary);
}
.hero .cta-btn:hover {
  background: var(--neon-blue);
  color: var(--primary);
}

@media (max-width: 768px) {
  .hero { padding: 40px 0 32px 0; }
  .hero h1 { font-size: 2rem; }
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 auto;
  align-items: flex-start;
}

/* -------------------------------------
   FEATURES SECTION: Card Grid & Items
------------------------------------- */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.feature-grid li {
  background: var(--card-bg);
  border-radius: var(--border-radius-card);
  padding: 26px 24px 20px 24px;
  box-shadow: 0 4px 18px 0 rgba(25,60,48,0.23);
  min-width: 228px;
  max-width: 340px;
  flex: 1 1 228px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1.5px solid var(--primary);
  transition: transform 0.17s, box-shadow 0.23s, border-color 0.2s;
  position: relative;
}
.feature-grid li img {
  width: 46px; height: 46px;
  margin-bottom: 2px;
  filter: drop-shadow(0 0 6px var(--neon-blue));
}
.feature-grid li:hover, .feature-grid li:focus-within {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px -6px var(--neon-blue);
  border-color: var(--neon-blue);
}
.feature-grid h3 {
  color: var(--secondary);
}

@media (max-width: 900px) {
  .feature-grid { gap: 16px; }
  .feature-grid li { min-width: 160px; }
}
@media (max-width: 600px) {
  .feature-grid { flex-direction: column; align-items: stretch; }
  .feature-grid li { width: 100%; max-width: 100%; margin-bottom: 20px; }
}

/**** Section Spacing Patterns ****/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--border-radius-card);
  box-shadow: 0 2px 18px -5px var(--primary-dark);
}
.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;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(33, 69, 55, .08);
  flex-direction: column;
  align-items: flex-start;
  border-left: 6px solid var(--neon-blue);
  position: relative;
  min-width: 220px;
  max-width: 480px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width:768px) {
  .section {
    margin-bottom: 36px;
    padding: 26px 7px;
  }
  .card-container, .content-grid {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 14px;
    min-width: unset;
    max-width: 100%;
  }
}

/* -------------------------------------
   ABOUT SNIPPET & TEXT SECTIONS
------------------------------------- */
.about-snippet, .about, .values, .legal, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-contrast);
  border-radius: var(--border-radius-card);
  box-shadow: 0 3px 12px 0 #192f2514;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .about-snippet, .about, .values, .legal, .contact {
    margin-bottom: 30px;
    padding: 19px 5px;
  }
}

/* -------------------------------------
   SERVICES SECTIONS & UL
------------------------------------- */
.services {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.service-list, .tour-highlights, .culinary-highlights, .route-highlights {
  margin-top: 16px;
  font-family: var(--font-body);
  color: var(--accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list a {
  color: var(--neon-blue);
  border-bottom: 1px dashed var(--neon-blue);
  font-weight: 500;
  transition: color 0.17s, border-bottom 0.18s;
  padding-bottom: 1px;
}
.service-list a:hover, .service-list a:focus {
  color: var(--neon-yellow);
  border-bottom: 1px solid var(--neon-yellow);
}
.tour-highlights li, .culinary-highlights li, .route-highlights li {
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .service-list, .tour-highlights, .culinary-highlights, .route-highlights {
    gap: 8px;
  }
}

/* -------------------------------------
   TEAM SECTION
------------------------------------- */
.team {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.team-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.team-member {
  background: var(--card-bg);
  border-radius: var(--border-radius-card);
  padding: 26px 18px 16px 22px;
  min-width: 200px; max-width: 320px;
  box-shadow: 0 4px 16px 0 rgba(23,74,60,0.16);
  margin-bottom: 20px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  border-left: 3px solid var(--neon-blue);
  font-size: 1rem;
}
.team-member em {
  color: var(--neon-pink);
  font-size: 0.98rem;
}
@media (max-width: 768px) {
  .team-list { flex-direction: column; gap: 10px; }
  .team-member { min-width: unset; max-width: 100%; }
}

/* -------------------------------------
   TESTIMONIALS & REVIEW CARDS
------------------------------------- */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonials h2 {
  color: var(--accent);
  margin-bottom: 8px;
}
.testimonial-card {
  background: #fff;
  color: #232100;
  border-radius: 16px;
  box-shadow: 0 8px 34px 0 rgba(32,64,44,0.17);
  border-left: 6px solid var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 500px;
  position: relative;
  z-index: 3;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: box-shadow 0.17s, border-color 0.18s;
}
.testimonial-card .stars {
  font-size: 1.25rem;
  color: var(--neon-yellow);
  letter-spacing: 0.13em;
  font-family: var(--font-display);
  margin-bottom: 3px;
}
.testimonial-card p {
  margin-bottom: 2px;
  color: #101b15;
  font-size: 1.09rem;
  font-weight: 500;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #8b7b17;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 9px 38px -8px var(--neon-blue), 0 8px 36px -8px var(--secondary);
  border-left: 6px solid var(--neon-blue);
}
@media (max-width: 600px) {
  .testimonial-card { max-width: 100%; }
}

/* -------------------------------------
   CTA SECTIONS
------------------------------------- */
.cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(105deg, #1ba970 72%, #142a21 100%);
  border-radius: var(--border-radius-card);
  box-shadow: 0 3px 22px -8px #12442a77;
}
.cta h2 {
  color: var(--accent);
  margin-bottom: 12px;
}
.cta .cta-btn {
  background: var(--neon-pink);
  color: #fff;
  font-weight: 700;
  margin-top: 16px;
  transition: box-shadow 0.14s, background 0.17s, color 0.18s;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: var(--neon-blue);
  color: var(--primary);
}

@media (max-width: 768px) {
  .cta { margin-bottom: 28px; padding: 18px 7px; }
}

/* -------------------------------------
   CONTACT SECTION
------------------------------------- */
.contact-info {
  background: var(--bg-contrast);
  border-radius: 12px;
  padding: 16px 14px;
  margin-top: 14px;
  box-shadow: 0 2px 14px 0 #18392d1c;
  color: var(--accent);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info a {
  color: var(--neon-blue);
  border-bottom: 1px solid var(--neon-blue);
}
.contact-info a:hover, .contact-info a:focus {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

/* -------------------------------------
   FOOTER STYLES
------------------------------------- */
footer {
  background: var(--primary-dark);
  color: var(--accent);
  padding: 0 0 0 0;
}
.footer-main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid #223b33;
  padding: 32px 0 20px 0;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-main nav a {
  font-family: var(--font-display);
  color: var(--secondary);
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.16s, border-bottom 0.18s;
  width: fit-content;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  color: var(--neon-blue);
  border-bottom: 1px solid var(--neon-blue);
}
.contact-snippet {
  color: var(--accent);
  margin: 0 22px;
}
.contact-snippet h3 {
  color: var(--neon-yellow);
  font-size: 1.17rem;
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.contact-snippet a {
  color: var(--neon-blue);
  border-bottom: 1px solid var(--neon-blue);
  font-size: 1rem;
}
.contact-snippet a:hover, .contact-snippet a:focus {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}
.footer-main .social-icons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-start;
  margin-left: auto;
}
.footer-main .social-icons img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 8px var(--neon-blue));
  background: var(--card-bg);
  border-radius: 40%;
  padding: 3px;
  transition: filter 0.15s;
}
.footer-main .social-icons img:hover {
  filter: drop-shadow(0 0 10px var(--neon-yellow));
}
.footer-legal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  font-size: 0.98rem;
  margin-top: 7px;
  color: var(--secondary);
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}
.footer-legal a {
  color: var(--neon-blue);
  border-bottom: 1px solid var(--neon-blue);
  padding-bottom: 1px;
  transition: border-bottom 0.18s, color 0.15s;
}
.footer-legal a:hover, .footer-legal a:focus {
  color: var(--neon-yellow);
  border-bottom: 1px solid var(--neon-yellow);
}
.footer-copy {
  text-align: center;
  color: #7bcdb9;
  font-size: 0.97rem;
  margin: 8px 0 0 0;
  padding-bottom: 13px;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 26px;
  }
  .footer-main .social-icons {
    margin-left: 0;
  }
}

/* -------------------------------------
   COOKIE CONSENT BANNER & MODAL
------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  background: #122a20;
  color: var(--accent);
  padding: 20px 20px 18px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 28px;
  box-shadow: 0 -2px 22px 2px #08271660;
  z-index: 9999;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.66,0,.33,1);
  border-radius: 22px 22px 0 0;
}
.cookie-banner .cookie-btn {
  background: var(--neon-blue);
  color: #023028;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 22px;
  padding: 9px 24px;
  border: none;
  margin-left: 14px;
  transition: background 0.14s, color 0.16s, box-shadow 0.17s;
  box-shadow: 0 2px 24px -7px var(--neon-blue);
  min-width: 120px;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 24px 0 var(--secondary);
}
.cookie-banner .cookie-settings-btn {
  background: var(--neon-yellow);
  color: var(--primary);
  border: none;
  font-family: var(--font-display);
  border-radius: 18px;
  padding: 8px 18px;
  margin-left: 12px;
  font-weight: 600;
  transition: background 0.13s, color 0.14s, box-shadow 0.16s;
  min-width: 110px;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--neon-blue);
  color: #023028;
}
/* Hide banner when dismissed */
.cookie-banner.hide {
  transform: translateY(110%);
}

@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    padding: 15px 8px 12px 8px;
  }
  .cookie-banner .cookie-btn, .cookie-banner .cookie-settings-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}

/* Cookie prefs modal */
.cookie-modal {
  position: fixed;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--card-bg);
  color: #ecfdff;
  padding: 36px 28px 28px 28px;
  border-radius: 24px;
  z-index: 10001;
  box-shadow: 0 9px 44px 12px #174A3C66;
  min-width: 312px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 19px;
  opacity: 1;
  transition: opacity 0.24s, transform 0.26s cubic-bezier(.83,0,0.17,1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -48%) scale(.8);
}
.cookie-modal h2 {
  color: var(--neon-yellow);
  font-size: 1.29rem;
}
.cookie-modal .cookie-categories {
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.03rem;
}
.cookie-modal .cookie-toggle {
  width: 36px; height: 20px;
  border-radius: 12px;
  background: #333e36;
  position: relative;
  margin-left: 10px;
  cursor: pointer;
  border: 1px solid #36594a;
  transition: background 0.15s, border 0.14s;
}
.cookie-modal .cookie-toggle[data-enabled="true"] {
  background: var(--neon-blue);
  border-color: var(--neon-blue);
}
.cookie-modal .cookie-toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.12s, background 0.12s;
}
.cookie-modal .cookie-toggle[data-enabled="true"]::after {
  left: 18px; background: var(--neon-blue);
}
.cookie-modal .cookie-toggle[data-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
  background: #44574c;
  border-color: #36594a;
}
.cookie-modal .cookie-toggle[data-disabled="true"]::after {
  background: #e2e3e7;
  left: 2px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  background: var(--neon-blue);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 18px;
  padding: 7px 22px;
  border: none;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: var(--secondary);
  color: var(--primary-dark);
}
@media (max-width:450px) {
  .cookie-modal { padding: 13px 6px 14px 8px; }
}

/* Overlay for modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(12,30,23,0.75);
  z-index: 10000;
  transition: opacity 0.22s;
  opacity: 1;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}

/* -------------------------------------
   UTILITY: SPACING & MODERN EFFECTS
------------------------------------- */
/* Professional spacing & white space */
main > section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  main > section, .section {
    margin-bottom: 32px;
    padding: 18px 6px;
  }
}

/* Animations */
.cta-btn, .cookie-btn, .cookie-settings-btn, .cta .cta-btn {
  transition: background 0.18s, color 0.17s, transform 0.16s, box-shadow 0.17s;
}
.cta-btn:active, .cookie-btn:active, .cookie-settings-btn:active {
  transform: scale(0.98);
}
.card, .card-container > *, .feature-grid li, .team-member {
  transition: box-shadow 0.17s, border-color 0.18s, transform 0.16s;
}
.card:hover, .feature-grid li:hover, .team-member:hover {
  box-shadow: 0 9px 39px -6px var(--neon-blue), 0 8px 40px -7px var(--secondary);
  z-index: 2;
}

/* Focus outline for accessibility */
:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 2px;
}

/* SCROLLBAR CUSTOMIZATION */
::-webkit-scrollbar {
  width: 9px;
  background: var(--card-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-blue);
}

/* Misc utility */
strong { font-weight: 700; color: var(--secondary); }

/* -----------------------------
   END OF STYLE.CSS
----------------------------- */
