/* =====================
   GlanzSpur Naturgärten
   style.css
   Tech Futuristic UI
   ===================== */

/* ===== CSS 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, main, 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background: #1A2422;
  color: #F4F1ED;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #171D1B;
  color: #F4F1ED;
  min-height: 100vh;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #89FFB1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4AFFBF;
  text-decoration: underline;
}

/* Remove list style */
ul, ol {
  list-style: none;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #2D3836;
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: #1A2422;
}

/* ===== BRAND VARIABLES ===== */
:root {
  --primary: #35673B;
  --primary-alt: #289263;
  --secondary: #99BE8C;
  --secondary-dark: #618254;
  --accent: #F4F1ED;
  --background: #171D1B;
  --foreground: #F4F1ED;
  --neon-green: #89FFB1;
  --neon-blue: #15C9FE;
  --neon-pink: #FC46AA;
  --neon-violet: #A68DFF;
  --navy: #171D1B;
  --shadow: rgba(20,40,36,0.28);
  --border-radius: 18px;
  --transition: 0.2s cubic-bezier(.77,.16,.18,.78);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  color: #F4F1ED;
  letter-spacing: .5px;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.15; text-shadow: 0 4px 28px #202;
}
h2 { font-size: 1.8rem; margin-bottom: 18px; line-height: 1.22; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
h4 { font-size: 1.08rem; margin-bottom: 8px; }

p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--foreground);
}
strong { color: var(--neon-green); font-weight: 700; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1rem; }
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section { padding: 30px 5px; margin-bottom: 34px; }
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(90deg, #171D1B 80%, #35673B 100%);
  box-shadow: 0 6px 24px -16px var(--shadow);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 18px;
}
header img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 12px var(--accent));
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--foreground);
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--primary-alt);
  color: #fff;
}
.main-nav .cta-btn {
  background: var(--neon-green);
  color: #171D1B;
  font-weight: 700;
  box-shadow: 0 2px 14px 0 var(--neon-green);
  text-shadow: none;
  border: none;
  padding: 8px 20px;
  margin-left: 14px;
  border-radius: 40px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  outline: none;
  letter-spacing: 1.4px;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--neon-blue);
  color: #fff;
  box-shadow: 0 8px 32px 0 var(--neon-blue);
}

/* Hamburger (Mobile) */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--neon-green);
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  z-index: 70;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--neon-blue);
}

@media (max-width: 950px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(19,30,29,0.99);
  box-shadow: 0 8px 30px 0 #171D1B;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.82,-0.09,.64,1.27), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--neon-green);
  font-size: 2rem;
  padding: 24px 36px 18px 0;
  cursor: pointer;
  z-index: 120;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--neon-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 40px 28px;
  width: 100%;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--neon-green);
  padding: 8px 0;
  font-weight: 600;
  letter-spacing: 1.2px;
  width: 100%;
  border-radius: 8px;
  transition: color .15s, background .22s;
}
.mobile-nav a:focus,.mobile-nav a:hover {
  background: var(--primary-alt);
  color: #fff;
}
@media (min-width: 951px) {
  .mobile-menu { display: none !important; }
}


/* ===== HERO SECTIONS ===== */
.hero {
  background: linear-gradient(113deg, #1A2422 83%, #35673B 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 48px 0 24px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  width: 100%;
}
.hero h1 {
  color: var(--neon-green);
  letter-spacing: 1.5px;
  text-shadow: 0 0 44px var(--primary-alt);
}
.hero p {
  font-size: 1.18rem;
  color: #F4F1ED;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .hero { min-height: 170px; padding: 36px 0 12px 0; }
  .hero p { margin-bottom: 18px; }
}

/* ===== FEATURES / SERVICES FLEX CARDS ===== */
.features, .services-list {
  background: #161E1B;
  margin-bottom: 60px;
  padding: 40px 0px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 24px -2px var(--shadow);
}
.features .content-wrapper, .services-list .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  width: 100%;
}
.feature-grid li {
  background: #222c26;
  border: 1.5px solid var(--primary-alt);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 32px -4px #1A2422;
  padding: 24px 20px 20px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  max-width: 305px;
  transition: box-shadow 0.18s, transform .18s, border 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 8px 40px 0 var(--neon-blue);
  border-color: var(--neon-blue);
  transform: translateY(-7px) scale(1.03);
}
.feature-grid h3 {
  color: var(--neon-green);
  margin-bottom: 0;
  font-size: 1.09rem;
}
.feature-grid p {
  color: var(--foreground);
  opacity: .95;
}
.feature-grid img {
  height: 46px;
  width: 46px;
  margin-bottom: 0;
  filter: drop-shadow(0 2px 14px var(--neon-green));
}

@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 20px; }
  .feature-grid li { min-width: 170px; max-width: 100%; width: 100%; }
}

/* Generic feature-items for other flex blocks */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== ABOUT SHORT ===== */
.about-short {
  background: #141916;
  padding: 40px 0 36px 0;
  margin-bottom: 60px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px var(--shadow);
}
.about-short ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 18px 0;
}
.about-short ul li {
  background: #1A2422;
  color: var(--neon-green);
  font-family: var(--font-display);
  padding: 7px 16px;
  border-radius: 10px;
  font-size: 0.98rem;
  letter-spacing: 0.5px;
  border: 1.2px solid var(--primary-alt);
}
.about-short a {
  display: inline-block;
  color: var(--neon-green);
  background: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-top: 7px;
  border: 1.2px solid var(--neon-green);
  transition: background .19s, color .19s;
}
.about-short a:hover, .about-short a:focus {
  background: var(--neon-green);
  color: #1A2422;
  font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0 36px 0;
  background: #181E1B;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 20px var(--shadow);
}
.testimonials h2 {
  color: var(--neon-green);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #1a2220;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: 0 4px 32px -12px var(--primary-alt);
  border: 1px solid #e8fdea;
  flex-direction: row;
  position: relative;
  max-width: 620px;
  transition: box-shadow .17s, transform .13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px -8px var(--neon-green);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  color: #171D1B; font-size: 1.07rem; flex: 1;
  margin-bottom: 0;
}
.testimonial-meta {
  font-family: var(--font-display);
  color: var(--secondary-dark);
  font-size: 1.04rem;
  min-width: 155px;
}
.testimonials .rating-info {
  font-size: 1.08rem;
  color: var(--neon-green);
  margin-top: 10px;
  letter-spacing: 0.6px;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    max-width: 100%;
  }
}

/* ===== CTA FINAL (BOTTOM CALL TO ACTION) ===== */
.cta-final {
  padding: 48px 0 40px 0;
  margin-bottom: 0;
  background: linear-gradient(90deg, #141916 80%, #171D1B 100%);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px -2px rgba(68,255,209,0.04);
}
.cta-final .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.cta-btn {
  display: inline-block;
  background: var(--neon-green);
  color: #171D1B;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 36px;
  font-size: 1.13rem;
  text-shadow: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 24px 0 var(--neon-green);
  letter-spacing: 1.2px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform .16s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--neon-blue);
  color: #fff;
  box-shadow: 0 8px 48px 0 var(--neon-blue);
  transform: scale(1.04);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(90deg, #171D1B 80%, #35673B 100%);
  color: var(--accent);
  padding: 35px 0 15px 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 -2px 16px 0 var(--shadow);
  margin-top: 30px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-branding {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--neon-green);
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.12rem;
}
.footer-branding img {
  height: 34px;
  width: auto;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.footer-menu a {
  color: var(--accent);
  background: none;
  border-radius: 6px;
  padding: 5px 10px;
  transition: background .18s, color .18s;
  font-size: 1rem;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--primary-alt);
  color: #fff;
}
@media (max-width: 750px) {
  footer .container { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-menu { flex-wrap: wrap;
    gap: 14px; }
}

/* ===== CARD + FLEX CONTAINERS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232B28;
  border-radius: var(--border-radius);
  box-shadow: 0 2.5px 14px var(--shadow);
  padding: 28px 22px;
  min-width: 200px;
  flex: 1 1 270px;
  transition: box-shadow .17s, transform .13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px var(--neon-violet);
  transform: translateY(-3px) scale(1.01);
  border: 1.2px solid var(--neon-violet);
}
.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; gap: 18px; }
  .content-grid { flex-direction: column; gap: 16px; }
  .card-container { flex-direction: column; gap: 16px; }
}

/* ===== GENERIC FLEX ALIGNMENT UTILS ===== */
.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}

/* ===== LEGAL SECTION (POLICY PAGES) ===== */
.legal-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #191F1F;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px var(--shadow);
}
.legal-section h1, .legal-section h2 {
  color: var(--neon-green);
}
.legal-section ul {
  margin: 18px 0 18px 0;
  padding-left: 24px;
  list-style: disc inside;
}
.legal-section ul li {
  color: var(--foreground);
  margin-bottom: 8px;
  padding-left: 0px;
  background: transparent;
  border-radius: none;
}

/* ===== THANK YOU HERO (Simple Alternative) ===== */
.thank-you-hero {
  background: linear-gradient(90deg, #141916 77%, #35673B 100%);
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: 30px 0 14px 0;
}
.thank-you-hero h1 {
  color: var(--neon-green);
}

/* ===== BLOG ENTRIES & IMPRESSIONS ===== */
.blog-entries, .impressions {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #191F1F;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px var(--shadow);
}
.blog-entries h2, .impressions h2 {
  color: var(--neon-green);
}
.blog-entries ul, .impressions ul {
  margin: 16px 0 21px 0;
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-entries li, .impressions li {
  background: #242A25;
  border-radius: 10px;
  padding: 15px 17px;
  font-size: 1rem;
  color: var(--foreground);
  box-shadow: 0 2px 14px #212;
}

/* ===== CONTACT DETAILS & SERVICE BENEFITS ===== */
.contact-details, .service-benefits {
  background: #151B18;
  padding: 38px 0px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 13px var(--shadow);
  margin-bottom: 60px;
}
.contact-details ul, .service-benefits ul {
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.07rem;
}
.contact-details img {
  height: 26px; width: 26px;
  filter: drop-shadow(0 1px 7px var(--neon-green));
}

/* ===== BRAND STORY & WHY GLANZSPUR ===== */
.brand-story, .why-glanzspur {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #1B2221;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px var(--shadow);
}
.brand-story h2, .why-glanzspur h2, .brand-story h3 { color: var(--neon-green); }
.core-values {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 15px;
}
.core-values li {
  background: #243025;
  color: var(--neon-green);
  font-family: var(--font-display);
  padding: 8px 17px;
  border-radius: 10px;
  letter-spacing: 0.3px;
  border: 1.1px solid var(--primary-alt);
}

/* ===== CARD-LIKE STYLES FOR LISTED SERVICES ===== */
.services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.services-list li {
  background: #1C2620;
  border: 1.1px solid var(--primary-alt);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 14px var(--shadow);
  padding: 23px 19px 18px 19px;
  min-width: 210px;
  flex: 1 1 240px;
  max-width: 350px;
  margin-bottom: 0;
  transition: box-shadow 0.14s, transform .12s, border .14s;
}
.services-list li:hover {
  box-shadow: 0 8px 32px 0 var(--neon-pink);
  border-color: var(--neon-pink);
  transform: scale(1.025);
}
.services-list h3 {
  color: var(--neon-green);
}
@media (max-width: 900px) {
  .services-list ul { flex-direction: column; gap: 17px; }
  .services-list li { min-width: 170px; max-width: 100%; width: 100%; }
}

/* ===== QUALITY PROMISE ===== */
.quality-promise {
  margin-bottom: 60px;
  padding: 34px 20px;
  background: #191F1F;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 14px var(--shadow);
}
.quality-promise h2 {
  color: var(--neon-green);
}
.quality-promise ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quality-promise li {
  background: #273229;
  color: #F4F1ED;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
}

/* ===== NEXT STEPS (THANK YOU PAGE) ===== */
.next-steps {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #181E1B;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 14px var(--shadow);
}

.next-steps ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.next-steps li {
  background: #232b28;
  color: #F4F1ED;
  border-radius: 9px;
  padding: 10px 15px;
  font-size: 1rem;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 700px) {
  .container { padding: 0 7px; }
  .footer-menu, .main-nav { gap: 12px; }
}
@media (max-width: 650px) {
  .footer-branding img { height: 24px; }
}
@media (max-width: 500px) {
  .footer-branding { font-size: 1rem; gap: 7px; }
}

/* ===== BUTTONS & MICRO-INTERACTIONS ===== */
button, .cta-btn {
  cursor: pointer;
  outline: none;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
button:focus, .cta-btn:focus {
  box-shadow: 0 0 0 3px var(--neon-green);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInMenu {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes glow {
  0% { box-shadow: 0 0 24px 0 var(--neon-green); }
  25% { box-shadow: 0 0 14px 4px var(--neon-blue); }
  50% { box-shadow: 0 0 24px 0 var(--neon-pink); }
  75% { box-shadow: 0 0 18px 5px var(--neon-violet); }
  100% { box-shadow: 0 0 24px 0 var(--neon-green); }
}
.cta-btn:active {
  animation: glow .35s linear;
}

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #181E1B;
  color: #fff;
  border-top: 2.5px solid var(--primary-alt);
  box-shadow: 0 -4px 22px 0 var(--primary);
  z-index: 200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 11vw 22px 7vw;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.4s, opacity 0.3s;
}
#cookie-banner.hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
#cookie-banner p { color: #fff; margin-right: 18px; }
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--neon-green);
  color: #161E1B;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 8px 0 var(--neon-green);
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: var(--neon-blue);
  color: #fff;
  box-shadow: 0 4px 18px 0 var(--neon-blue);
}
.cookie-btn.reject {
  background: var(--neon-pink); color: #fff;
  box-shadow: 0 1px 8px 0 var(--neon-pink);
}
.cookie-btn.reject:hover {
  background: #1A2422;
  color: var(--neon-pink);
  box-shadow: 0 8px 28px 0 var(--neon-pink);
}
@media (max-width: 700px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 11px; padding: 17px 3vw 15px 3vw; }
}

/* ===== COOKIE PREFERENCES MODAL ===== */
#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(17,25,23,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s, pointer-events 0.2s;
  opacity: 1;
  pointer-events: auto;
}
#cookie-modal.hidden {
  opacity: 0; pointer-events: none;
}
.cookie-modal-content {
  background: #181E1B;
  border-radius: 18px;
  padding: 36px 28px 28px 28px;
  color: #F4F1ED;
  min-width: 320px;
  max-width: 96vw;
  box-shadow: 0 8px 46px 0 var(--neon-blue);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-content h2 {
  color: var(--neon-green);
  margin-bottom: 12px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category .category-label {
  font-weight: bold;
  color: var(--neon-green);
  font-size: 1.07rem;
}
.cookie-category .toggle {
  position: relative;
  width: 46px; height: 26px;
}
.toggle input[type=checkbox]{ display:none; }
.toggle .slider {
  position: absolute;
  cursor: pointer;
  background: var(--neon-green);
  border-radius: 18px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.2s;
}
.toggle input[type=checkbox]:checked + .slider {
  background: var(--neon-blue);
}
.toggle .slider:before {
  content: '';
  position: absolute;
  height: 20px; width: 20px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
}
.toggle input[type=checkbox]:checked + .slider:before {
  transform: translateX(20px);
  background: var(--neon-blue);
}
.toggle .slider:active:before {
  box-shadow: 0 0 6px 3px var(--neon-green);
}
	
/* Disabled state for essential cookies */
.cookie-category .toggle input[disabled] + .slider {
  background: #bbb;
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-modal-close {
  position: absolute;
  top: 12px; right: 15px;
  background: none;
  border: none;
  color: var(--neon-green);
  font-size: 1.8rem;
  cursor: pointer;
}
.cookie-modal-close:hover { color: var(--neon-blue); }

/* Modal buttons */
.cookie-modal-actions {
  display: flex; flex-direction: row; gap: 18px; margin-top: 12px;
}
.cookie-modal-actions button {
  background: var(--neon-green);
  color: #171D1B;
  font-weight: 700;
  border-radius: 20px;
  border: none;
  padding: 10px 22px;
  font-size: 1.08rem;
  transition: background .16s, color .16s;
}
.cookie-modal-actions button:hover { background: var(--neon-blue); color: #fff; }
@media (max-width: 450px) {
  .cookie-modal-content { padding: 16px 5px 14px 5px; min-width: 98vw; }
}

/* ===== A11Y HIGHLIGHT FOCUS RING ===== */
:focus {
  outline: 2.5px solid var(--neon-green) !important;
  outline-offset: 2.5px;
}

/* ===== UTILITIES ===== */
.bg-neon-glow {
  background: var(--neon-green);
  box-shadow: 0 2px 18px var(--neon-green);
  color: #181E1B;
}
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.pb-12 { padding-bottom: 12px; }
.text-center { text-align: center; }

/* ===== PRINT ===== */
@media print {
  header, footer, #cookie-banner, .mobile-menu { display: none !important; }
  .container { max-width: 100vw; padding: 0; }
}
