/* Electra Spark Reinigung – Vibrant & Energetic Style CSS */
/* 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, 
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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #e6f4f1;
  color: #124d60;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #f6b100;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #17637a;
}
ul, ol {
  padding-left: 24px;
}

/* Typography and Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: #17637a;
  font-weight: bold;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.75rem;  /* ~44px */
  line-height: 1.1;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem; /* ~32px */
  line-height: 1.15;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.375rem; /* ~22px */
  line-height: 1.2;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
}
strong {
  color: #124d60;
  font-weight: bold;
}

/* Container and layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

/* Section Spacing and Alignment Patterns */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 26px;
}
@media (max-width: 768px) {
  section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
}

/* Hero Section */
.hero {
  background: #17637a;
  color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 28px 0 rgba(23, 99, 122, .15);
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 54px 0 60px 0;
}
.hero h1, .hero h2, .hero p {
  color: #ffffff;
}
.hero .cta-button {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 36px 0;
    border-radius: 16px;
  }
}


/* Features and Cards */
.features-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
}
.features-grid li, .feature-list li {
  background: #ffffff;
  color: #124d60;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(17,44,57,.06);
  padding: 24px 20px;
  flex: 1 1 240px;
  min-width: 230px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  position: relative;
  margin-bottom: 0;
  border: 2px solid #e6f4f1;
  transition: box-shadow 0.2s, border 0.2s;
}
.features-grid li:hover, .feature-list li:hover {
  box-shadow: 0 8px 28px 0 rgba(246, 177, 0, 0.18);
  border: 2px solid #f6b100;
}
.features-grid img, .feature-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}
.features-grid strong, .feature-list strong {
  color: #17637a;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .features-grid, .feature-list {
    gap: 14px;
  }
  .features-grid li, .feature-list li {
    padding: 16px 10px;
    min-width: 170px;
    max-width: 260px;
    font-size: 0.96rem;
  }
}
@media (max-width: 768px) {
  .features-grid, .feature-list {
    flex-direction: column;
    gap: 12px;
  }
  .features-grid li, .feature-list li {
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding: 16px 10px;
  }
}

/* Service Cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.service-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(23, 99, 122, .10);
  padding: 32px 24px 28px 24px;
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #e6f4f1;
}
.service-card:hover {
  box-shadow: 0 8px 36px 0 rgba(246, 177, 0, 0.24);
  transform: translateY(-4px) scale(1.025);
  border-color: #f6b100;
}
.service-card h3 {
  color: #17637a;
  margin-bottom: 0;
  font-size: 1.3rem;
}
.service-card a {
  font-weight: bold;
  color: #f6b100;
  text-transform: uppercase;
  font-size: 1rem;
  margin-top: 6px;
  letter-spacing: 0.04em;
  transition: color 0.18s;
}
.service-card a:hover {
  color: #17637a;
}
@media (max-width: 900px) {
  .service-cards {
    gap: 12px;
  }
  .service-card {
    padding: 20px 10px 20px 12px;
    min-width: 170px;
    max-width: 290px;
    font-size: 0.99rem;
  }
}
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    gap: 12px;
  }
  .service-card {
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding: 16px 10px 16px 10px;
  }
}

/* Testimonials */
.testimonial-slider-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(17,44,57,0.11);
  color: #124d60;
  width: 100%;
  max-width: 420px;
  font-size: 1.05rem;
  font-style: italic;
  border-left: 6px solid #f6b100;
  position: relative;
  margin-bottom: 0;
}
.testimonial-card p {
  color: #124d60;
  margin-bottom: 6px;
  font-style: italic;
  font-size: 1.07rem;
}
.testimonial-card span {
  color: #17637a;
  font-weight: 600;
  opacity: 0.86;
  font-size: 0.98rem;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .testimonial-slider-preview {
    flex-direction: column;
    gap: 10px;
  }
  .testimonial-card {
    padding: 16px 10px;
    border-radius: 12px;
    max-width: 100%;
  }
}

/* CTA Banner */
.cta-banner {
  background: #f6b100;
  color: #124d60;
  border-radius: 22px;
  box-shadow: 0 2px 22px 0 rgba(246, 177, 0, 0.13);
  text-align: center;
  margin-bottom: 60px;
  padding: 44px 0;
}
.cta-banner h2, .cta-banner p {
  color: #124d60;
}
.cta-banner .cta-button {
  margin-top: 14px;
}
@media (max-width: 768px) {
  .cta-banner {
    padding: 22px 0;
    border-radius: 13px;
  }
}

/* CTA Button Styles */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: #f6b100;
  color: #17637a;
  border: none;
  border-radius: 99px;
  box-shadow: 0 4px 18px 0 rgba(246, 177, 0, 0.18);
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s, color 0.16s, transform .16s, box-shadow 0.19s;
  margin-left: 18px;
  margin-bottom: 0;
  text-shadow: none;
}
.cta-button:hover, .cta-button:focus {
  background: #17637a;
  color: #fff;
  box-shadow: 0 7px 32px 0 rgba(18, 77, 96, 0.19);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 900px) {
  .cta-button {
    font-size: 1rem;
    padding: 12px 22px;
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .cta-button {
    padding: 11px 18px;
    font-size: 0.95rem;
    margin-left: 0;
  }
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
  margin-top: 0;
  list-style: decimal inside;
}
.process-steps li {
  background: #ffffff;
  color: #124d60;
  border-radius: 12px;
  border: 2px solid #f6c000;
  padding: 14px 22px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px 0 rgba(17,44,57,0.05);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-width: 120px;
  font-weight: 600;
  transition: box-shadow 0.18s, border 0.2s;
}
.process-steps li:hover {
  border-color: #17637a;
  box-shadow: 0 8px 26px 0 rgba(23,99,122,0.17);
}
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 8px;
  }
  .process-steps li {
    width: 100%;
    min-width: unset;
    padding: 11px 10px;
  }
}

/* Services List on Leistungen */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.service-section {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(246, 193, 0, 0.07);
  padding: 28px 20px;
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border: 1.5px solid #e6f4f1;
  transition: box-shadow 0.2s, border 0.2s;
}
.service-section:hover {
  box-shadow: 0 7px 28px 0 rgba(246, 193, 0, 0.17);
  border: 1.5px solid #f6b100;
}
@media (max-width: 900px) {
  .services-list {
    gap: 10px;
  }
  .service-section {
    padding: 14px 7px;
    min-width: 150px;
    max-width: 240px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .services-list {
    flex-direction: column;
    gap: 8px;
  }
  .service-section {
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding: 12px 7px;
  }
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(17,44,57,0.09);
  padding: 22px 18px;
  flex: 1 1 280px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 0;
  border: 2px solid #e6f4f1;
  transition: box-shadow 0.19s, border 0.19s;
}
.faq-item:hover {
  border-color: #f6b100;
  box-shadow: 0 8px 24px 0 rgba(246, 193, 0, 0.14);
}
@media (max-width: 800px) {
  .faq-list {
    gap: 10px;
  }
  .faq-item {
    padding: 12px 6px;
    min-width: 140px;
    max-width: 260px;
  }
}
@media (max-width: 768px) {
  .faq-list {
    flex-direction: column;
    gap: 8px;
  }
  .faq-item {
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding: 9px 6px;
  }
}

/* Thank You Section */
.thankyou {
  background: #e6f4f1;
  color: #124d60;
  border-radius: 18px;
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
}
.thankyou .content-wrapper {
  align-items: center;
  text-align: center;
}
.thankyou h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .thankyou {
    min-height: 24vh;
    border-radius: 9px;
  }
}

/* Contact Info */
.contact-info, .map-embed, .contact-pitch {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px 0 rgba(23, 99, 122, .06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info p, .map-embed p {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Footer */
footer {
  background: #124d60;
  color: #ffffff;
  padding: 36px 0 5px 0;
  margin-top: 24px;
}
footer .container {
  align-items: stretch;
}
.footer-main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
.footer-main-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}
.footer-main-nav nav a {
  color: #fff;
  opacity: 0.95;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.footer-main-nav nav a:hover {
  color: #f6b100;
  opacity: 1;
}
.footer-menu a {
  color: #f6b100;
  opacity: 1;
}
.footer-menu a:hover {
  color: #ffffff;
}
.footer-contact {
  margin-top: 10px;
  margin-bottom: 10px;
  background: #17637a;
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 2px 12px 0 rgba(246, 193, 0, 0.09);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
}
.footer-contact img:first-child {
  width: 116px;
  margin-bottom: 9px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e6f4f1;
  font-size: 0.96rem;
  margin-bottom: 4px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 10px 0 25px 0;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 8px #17637a20);
  transition: filter 0.15s, transform 0.13s;
}
.footer-social a:hover img {
  filter: saturate(1.5) drop-shadow(0 2px 16px #f6b10080);
  transform: scale(1.08);
}
.small-print {
  color: #e6f4f1;
  font-size: 0.92rem;
  margin-top: 16px;
  opacity: 0.85;
  text-align: right;
}
@media (max-width: 768px) {
  .footer-main-nav {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    margin-bottom: 14px;
  }
  .footer-main-nav nav {
    gap: 12px;
    font-size: 0.96rem;
  }
  .footer-contact {
    padding: 10px 5px;
    margin-bottom: 5px;
  }
  .small-print {
    text-align: left;
  }
}

/* Header Navigation */
header {
  background: #ffffff;
  box-shadow: 0 2px 12px 0 rgba(23, 99, 122, 0.07);
  padding: 0 0 0 0;
  border-radius: 0 0 16px 16px;
  margin-bottom: 7px;
  position: sticky;
  top: 0;
  z-index: 22;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 20px;
  min-height: 72px;
}
header img[alt="Electra Spark Reinigung"] {
  display: block;
  width: 126px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: #17637a;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 600;
  font-size: 1.06rem;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background .15s, color .13s;
}
header nav a:hover, header nav a:focus {
  color: #f6b100;
  background: #17637a11;
}
header .cta-button {
  margin-left: 26px;
}
@media (max-width: 1050px) {
  header nav {
    gap: 8px;
    font-size: 1rem;
  }
  header img[alt="Electra Spark Reinigung"] {
    width: 88px;
  }
  header .cta-button {
    margin-left: 6px;
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  header .container {
    min-height: 56px;
    padding: 0 8px;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #f6b100;
  color: #17637a;
  border: none;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 4px 20px 7px 20px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(246, 177, 0, 0.18);
  margin-right: 10px;
  position: absolute;
  right: 12px;
  top: 17px;
  z-index: 50;
  transition: background 0.15s, color 0.13s, transform .12s;
}
.mobile-menu-toggle:hover {
  background: #17637a;
  color: #fff;
  transform: scale(1.08);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #17637add;
  z-index: 1100;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  transform: translateX(102vw);
  transition: transform .35s cubic-bezier(.75,.06,.17,1.09);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #f6b100;
  border: none;
  font-size: 2.5rem;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 28px;
  cursor: pointer;
  transition: color .13s, transform .1s;
  z-index: 1150;
  padding: 4px 12px;
}
.mobile-menu-close:hover {
  color: #fff;
  transform: scale(1.2) rotate(12deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 92px 0 0 38px;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  padding: 12px 8px 9px 0;
  border-radius: 6px;
  transition: color .14s, background .12s;
  min-width: 180px;
  box-shadow: none;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #f6b100;
  background: #124d6025;
}
@media (max-width: 1200px) {
  .mobile-nav {
    padding-left: 20px;
  }
}
@media (max-width: 700px) {
  .mobile-nav {
    padding-left: 7vw;
    gap: 22px;
  }
  .mobile-nav a {
    font-size: 1.19rem;
    min-width: 120px;
    padding: 8px 4px 7px 0;
  }
  .mobile-menu-close {
    top: 10px;
    right: 14px;
    font-size: 2rem;
  }
}
/* Hide desktop nav / show mobile menu toggle on mobile */
@media (max-width: 1020px) {
  header nav, header .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 1020px) {
  .mobile-menu {
    display: flex;
    transform: translateX(102vw);
  }
}

/* Ensure overlay covers header (no accidental hidden menu) */
.mobile-menu {
  box-shadow: 0 0 150px 90px #124d6044;
}

/* Text/Image Section (for possible future use) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* Card and Card container patterns */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .card-content {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(17,44,57,0.05);
  min-width: 180px;
  padding: 24px 18px;
}
@media (max-width: 800px) {
  .card-container, .card-grid {
    gap: 10px;
  }
}

/* Content-Grid pattern */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .content-grid {
    gap: 7px;
  }
}

/* Feature Item pattern */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Misc. Utility Classes */
.text-section {
  margin: 0 0 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #124d60;
}

.map-embed {
  background: #e6f4f1;
  border-radius: 10px;
  padding: 15px 11px;
  color: #124d60;
  box-shadow: 0 1px 6px 0 rgba(23,99,122,.07);
}
.contact-pitch {
  background: #f6b10033;
  border-radius: 7px;
  padding: 6px 7px 7px 10px;
  color: #17637a;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 1.08rem;
}


/* Cookie Consent Banner Styles */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #17637a;
  color: #fff;
  padding: 24px 16px 22px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  box-shadow: 0 -3px 30px rgba(18,77,96,.07);
  z-index: 2000;
  font-size: 1.08rem;
  border-radius: 20px 20px 0 0;
  animation: cookieBannerIn .58s ease;
}
@keyframes cookieBannerIn {
  0% { transform: translateY(80px); opacity: 0; }
  90% { opacity: .7; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 220px;
  color: #fff;
  font-size: 1.05rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 600;
  padding: 9px 18px;
  border: none;
  border-radius: 7px;
  margin: 0 3px;
  cursor: pointer;
  font-size: 1.04rem;
  box-shadow: 0 1px 7px 0 rgba(246,177,0,0.13);
  transition: background 0.16s, color 0.13s, transform 0.14s;
}
.cookie-banner .accept {
  background: #f6b100;
  color: #17637a;
}
.cookie-banner .reject {
  background: #e6f4f1;
  color: #17637a;
}
.cookie-banner .settings {
  background: #fff;
  color: #124d60;
  border: 1.5px solid #f6b100;
}
.cookie-banner button:hover {
  transform: scale(1.04) translateY(-2px);
}
@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    border-radius: 11px 11px 0 0;
    padding-bottom: 12px;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
    margin-top: 5px;
  }
  .cookie-banner p {
    font-size: 0.96rem;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #124d6090;
  z-index: 3000;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  animation: cookieModalFadeIn .4s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #124d60;
  border-radius: 18px;
  box-shadow: 0 8px 36px 0 rgba(23,99,122,0.09);
  padding: 40px 30px 28px 30px;
  min-width: 310px;
  max-width: 95vw;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  animation: cookieModalDrop .54s cubic-bezier(.73,0,.28,1.04);
}
@keyframes cookieModalDrop {
  0% { transform: scale(.77) translateY(-80px); opacity:0; }
  84% { opacity: .87; }
  100% { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #f6b100;
  cursor: pointer;
  transition: color .13s, transform .1s;
}
.cookie-modal .modal-close:hover {
  color: #124d60;
  transform: scale(1.18) rotate(8deg);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  background: #e6f4f1;
  border-radius: 7px;
  padding: 10px 11px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-category label {
  font-weight: 600;
  cursor: pointer;
}
.cookie-category .switch {
  margin-left: auto;
  margin-right: 4px;
}
/* Switch / Checkbox (for analytics/marketing) */
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.switch input {
  opacity: 0;
  width: 0; height: 0;
}
.switch span {
  position: absolute;
  display: block;
  left: 0; top: 0;
  width: 38px;
  height: 22px;
  background: #ccc;
  border-radius: 22px;
  transition: background .18s;
}
.switch span:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px #124d6011;
  transition: transform .19s;
}
.switch input:checked + span {
  background: #f6b100;
}
.switch input:checked + span:before {
  transform: translateX(16px);
  background: #17637a;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal-actions button {
  padding: 9px 18px;
  border-radius: 7px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 600;
  font-size: 1.07rem;
  border: none;
  background: #f6b100;
  color: #124d60;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, transform 0.13s;
}
.cookie-modal-actions button.secondary {
  background: #e6f4f1;
  color: #124d60;
  border: 1.4px solid #124d60;
}
.cookie-modal-actions button:hover {
  background: #17637a;
  color: #fff;
  transform: scale(1.04) translateY(-3px);
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 18px 4vw 16px 4vw;
    border-radius: 9px;
    font-size: 0.95rem;
  }
  .cookie-modal .modal-close {
    top: 8px;
    right: 7px;
    font-size: 1.7rem;
  }
}

/* Responsive - Mobile First Adjustments */
@media (max-width: 530px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.19rem; }
  .footer-contact img:first-child { width: 76px; }
}

/* Accessibility and Focus States */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #f6b100;
  outline-offset: 2px;
}

/* Vibrant/Energetic micro interactions */
.cta-button, .service-card, .service-section, .testimonial-card, .faq-item, .features-grid li {
  transition: box-shadow 0.19s, border 0.18s, background 0.25s, color 0.19s, transform 0.13s;
}
.cta-button:active {
  box-shadow: 0 2px 6px 0 rgba(246, 177, 0, 0.10) inset;
  transform: scale(0.97);
}

/* Hide scrollbars for mobile menu when open */
.mobile-menu::-webkit-scrollbar {
  display: none;
}
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
