/* 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 {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #101932;
  color: #F0F8FF;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #10FFD6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ff38f6;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #F7B05B;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  text-shadow: 0 2px 32px #0ff8, 2px 0 48px #f7b05bcc;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-shadow: 0 0 24px #10FFD6a0;
}
h3 {
  font-size: 1.24rem;
}
strong {
  color: #10FFD6;
  font-weight: 700;
}
em {
  color: #ff38f6;
}
/* ----- MAIN WRAPPER & FLEX LAYOUTS ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #151f3b;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 #10ffd678, 0 6px 64px 0 #12455926;
  position: relative;
  overflow: hidden;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
  background: #181d27;
  border-radius: 16px;
  box-shadow: 0 2px 24px #10ffd660, 0 2px 0 #ff38f640;
  padding: 32px 24px;
  color: #F0F8FF;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px #ff38f680, 0 2px 0 #10FFD6a0;
  transform: translateY(-6px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
/* ----- NEON BUTTON & CTA BUTTON ----- */
.cta-btn {
  background: linear-gradient(90deg, #ff38f6 0%, #10ffd6 100%);
  color: #151f3b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 36px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 0 14px #10ffd6a0, 0 2px 0 #ff38f6;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 2px 8px #fff8,0 0 2px #10ffd6;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #10ffd6 0%, #ff38f6 100%);
  color: #fff;
  box-shadow: 0 0 24px #ff38f6a8, 0 0 24px #10FFD6c0;
  transform: translateY(-2px) scale(1.04);
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  transition: color 0.15s;
}
/* ----- HEADER ----- */
header {
  background: #151f3b;
  color: #F0F8FF;
  box-shadow: 0 4px 28px #10ffd638, 0 1px 0 #ff38f638;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
header a img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #10FFD6;
  font-size: 16px;
  font-weight: 600;
  border-radius: 18px;
  padding: 6px 16px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #10FFD6;
  color: #151f3b;
}
.main-nav .cta-btn {
  margin-top: 0;
}
.mobile-menu-toggle {
  font-size: 2.3rem;
  color: #ff38f6;
  margin-left: 20px;
  background: none;
  border: none;
  display: none;
  z-index: 202;
}
/* ----- MOBILE MENU ----- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,31,59, 0.95);
  box-shadow: -8px 0 48px #ff38f660, 0 4px 48px #10ffd660;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.72,.21,.42,1.09);
  z-index: 501;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.1rem;
  color: #10FFD6;
  z-index: 502;
  background: none;
  border: none;
  border-radius: 50%;
  transition: background 0.11s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #12f9e615;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 58px;
  width: 90vw;
  max-width: 340px;
}
.mobile-nav a {
  color: #F0F8FF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  background: none;
  border-radius: 14px;
  padding: 12px 12px 12px 2px;
  transition: background 0.11s, color 0.11s;
  margin-left: -6px;
}
.mobile-nav a:hover {
  background: #10ffd614;
  color: #10FFD6;
}
/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 980px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ----- SECTIONS & SPACING ----- */
main {
  margin-top: 0;
  padding-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 0;
}
/* Apply only section spacing rule from .section for .section class */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* ----- TESTIMONIAL CARDS ----- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: #F0F8FF;
  color: #151f3b;
  border-radius: 18px;
  box-shadow: 0 2px 22px #10ffd644;
  padding: 20px 28px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  font-size: 1.1rem;
}
.testimonial-card p {
  color: #151f3b;
  font-weight: 500;
  flex: 3 1 220px;
}
.testimonial-card span {
  font-size: 1.4em;
  color: #ff38f6;
  text-shadow: 0 0 2px #10FFD6;
}
.testimonial-card strong {
  color: #124559;
  display: block;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px #10ffd680;
  transform: translateY(-2px) scale(1.02);
}
/* ----- TABLE (PREISLISTE) ----- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #181d27;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 24px #10ffd636;
}
thead {
  background: #124559;
  color: #10FFD6;
}
th, td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #10FFD614;
}
tr:last-child td {
  border-bottom: none;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08em;
}
tr:hover {
  background: #10193244;
}
/* ----- FOOTER ----- */
footer {
  background: #151f3b;
  color: #F0F8FF;
  box-shadow: 0 -2px 32px #12455939, 0 4px 36px #10FFD638;
  padding-top: 38px;
  padding-bottom: 30px;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-brand img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  font-size: 15px;
}
.footer-nav a {
  color: #10FFD6;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #ff38f6;
}
.footer-contact, .footer-hours {
  color: #F0F8FF;
  font-size: 15px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
/* ----- FORMS, TABLES, MISC ----- */
input, textarea {
  font-family: inherit;
  font-size: 1em;
  border-radius: 10px;
  border: 1px solid #10FFD6;
  background: #151f3b;
  color: #fff;
  padding: 12px 14px;
  margin-bottom: 14px;
  outline: none;
  transition: border 0.12s, box-shadow 0.12s;
}
input:focus, textarea:focus {
  border: 1.5px solid #ff38f6;
  box-shadow: 0 0 8px #ff38f6a3;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  color: #10FFD6;
}
/* --------- COOKIE CONSENT BANNER --------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1b2237ec;
  color: #F0F8FF;
  box-shadow: 0 -2px 24px #10ffd638;
  z-index: 699;
  padding: 24px 18px 24px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  transition: transform 0.35s;
  font-size: 16px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  background: #ff38f6;
  color: #fff;
  padding: 10px 24px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  margin: 0 3px;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
  box-shadow: 0 0 10px #10ffd655;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #10FFD6;
  color: #151f3b;
}
.cookie-settings-btn {
  background: none;
  color: #F7B05B;
  border: 1.4px solid #F7B05B;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F7B05B;
  color: #151f3b;
}
/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #151f3bcc;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.25s;
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #1b2237;
  border-radius: 18px;
  box-shadow: 0 4px 28px #10ffd638, 0 1px 0 #ff38f638;
  padding: 36px 28px 28px 28px;
  width: 95vw;
  max-width: 375px;
  color: #F0F8FF;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: movein 0.28s cubic-bezier(.44,.99,.61,1.2);
}
@keyframes movein {
  from { transform: scale(0.96) translateY(20px); opacity: 0.5; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.8em;
  color: #10FFD6;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.cookie-modal-close:hover {
  background: #10FFD610;
}
.cookie-modal h3 {
  color: #ff38f6;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  flex: 1;
}
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.switch input {
  display: none;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  background: #124559;
  transition: background 0.15s;
}
.switch input:checked + .slider {
  background: #10FFD6;
}
.slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.15s;
}
.switch input:checked + .slider:before {
  transform: translateX(16px);
  background: #151f3b;
}
/* ----- ICONS ----- */
img[alt^='Zertifiziert'], img[alt^='Tierliebe'], img[alt^='Telefon'], img[alt^='E-Mail'], img[alt^='Adresse'], img[alt^='Standortkarte'] {
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: -4px;
}
@media (max-width: 850px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .container {
    padding: 0 10px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-brand img {
    height: 33px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .text-section {
    gap: 12px !important;
  }
  .feature-item {
    gap: 8px !important;
  }
  .section {
    padding: 27px 6px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px 13px;
    font-size: 1em;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .main-nav {
    display: none !important;
  }
  header .container {
    padding: 12px 10px;
  }
  .footer-contact, .footer-hours {
    font-size: 13px;
  }
  .footer-brand img {
    height: 25px;
  }
}
@media (max-width: 540px) {
  .section {
    padding: 14px 2px;
    border-radius: 8px;
  }
  h1 {
    font-size: 1.1rem;
  }
  h2 {
    font-size: 1rem;
  }
  .card {
    padding: 18px 10px;
    border-radius: 7px;
  }
  .testimonial-card {
    border-radius: 7px;
    padding: 11px 6px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 15px;
    gap: 8px;
  }
  .cookie-modal {
    padding: 18px 8px 16px 8px;
    border-radius: 7px;
  }
}
/* ----- NEON GLOW ANIMATION EFFECT (decorative) ----- */
@keyframes neon-glow {
  0%, 100% { box-shadow: 0 0 24px #10ffd690, 0 0 80px #ff38f650; }
  50% { box-shadow: 0 0 32px #ff38f6a0, 0 0 120px #10ffd670; }
}
.cta-btn, .card, .testimonial-card {
  animation: neon-glow 2.8s ease-in-out infinite alternate;
}
/* --------- VISUAL HIERARCHY AND ELEMENTS --------- */
/* ----- HERO AREA (title) ----- */
.content-wrapper h1 {
  font-size: 2.1rem;
  color: #ff38f6;
  text-shadow: 0 2px 28px #10ffd670, 2px 0 14px #ff38f6c0;
}
/* ----- LISTS ----- */
li {
  margin-bottom: 8px;
  color: #F0F8FF;
  font-weight: 400;
}
ul li strong {
  color: #10FFD6;
  font-weight: 600;
}
/* ----- MISC: QUOTE STYLE ----- */
blockquote, .quote {
  background: #181d27;
  padding: 22px 28px;
  border-left: 5px solid #ff38f6;
  color: #F0F8FF;
  border-radius: 9px;
  margin: 22px 0;
  font-style: italic;
}
/* ----- OVERWRITE BROWSER AUTO-LINK COLORS ----- */
::-webkit-input-placeholder, ::placeholder {
  color: #8cf3e8;
  opacity: 1;
}
/* Hide outline for mouse users, keep for keyboard accessibility */
*:focus:not(:focus-visible) {
  outline: none;
}
*:focus-visible {
  outline: 2.5px solid #10FFD6;
}
/* ----------- END ----------- */