/* ===========================================
   CSS RESET & NORMALIZATION (Monochrome, Sophisticated)
   =========================================== */
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;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}
body {
  line-height: 1.5;
  color: #15181C;
  background: #f9f9f9;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #212F4F;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.9,.1,.1,.9);
}
a:hover {
  color: #101721;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 0.4em;
}
button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}
button { cursor: pointer; }

/* ===========================================
   FONT SETUP (Monochrome, Sophisticated, Elegant)
   =========================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
:root {
  --mono-black: #101114;
  --mono-dark: #212121;
  --mono-mid: #33353F;
  --mono-light: #eaeaea;
  --mono-bg: #f9f9f9;
  --primary: #212F4F;
  --secondary: #4CAF50;
  --accent: #f5f5f5;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --text-base: #15181C;
  --text-light: #fff;
  --text-mid: #5a5a5a;
  --border-radius: 16px;
  --shadow-card: 0 4px 28px -10px rgba(16,17,20,0.10), 0 1.5px 4px 0 rgba(0,0,0,0.08);
  --shadow-header: 0 2px 10px -6px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 24px -6px rgba(16,17,20,0.14);
  --transition-main: 0.24s cubic-bezier(.9,.1,.1,.9);
}

/* ===========================================
   CONTAINER & SPACING SYSTEM
   =========================================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
  .container { padding: 0 10px; }
}

/* ============================================
   TYPOGRAPHY HIERARCHY & STYLE
   ============================================ */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mono-black);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 6px;
  line-height: 1.18;
  color: var(--mono-dark);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 3px;
  color: var(--mono-mid);
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--mono-mid);
}
p, .text-section, ul, ol {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-base);
  margin-bottom: 0.6em;
}
.text-section {
  color: var(--mono-mid);
  font-size: 1.08rem;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}
small {
  font-size: 0.92rem;
  color: #7c7c7c;
}
em {
  color: var(--mono-mid);
}

/* ===========================================
   HEADER, NAVIGATION, & MOBILE MENU
   =========================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: var(--shadow-header);
  z-index: 50;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 70px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.04rem;
  color: var(--mono-mid);
  padding: 12px 8px;
  border-radius: 6px;
  transition: background var(--transition-main), color var(--transition-main);
  font-weight: 600;
  letter-spacing: 0;
}
header nav a:hover,
header nav a.active {
  background: var(--accent);
  color: var(--primary);
}
header img {
  width: 160px;
  height: auto;
  margin-right: 16px;
  padding: 6px 0;
}
.btn-primary {
  font-family: var(--font-display);
  background: var(--primary);
  color: var(--text-light);
  font-size: 1.08rem;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  transition: background var(--transition-main), box-shadow var(--transition-main), color var(--transition-main);
  margin-left: 12px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  letter-spacing: .01em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #111928;
  color: #fff;
  box-shadow: var(--shadow-hover);
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 2rem;
  margin-left: 18px;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 6px;
  transition: background var(--transition-main), color var(--transition-main);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--mono-black);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #101114f0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.76,.05,.16,1.1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  color: #212F4F;
  border-radius: 50%;
  font-size: 2rem;
  border: none;
  padding: 6px 18px 6px 12px;
  margin: 26px 0 16px 16px;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
  align-self: flex-end;
  transition: background var(--transition-main), color var(--transition-main);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #d7dade;
  color: #181b24;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 0 0 38px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: #f5f5f5;
  padding: 12px 2px;
  border-radius: 0 24px 24px 0;
  transition: background var(--transition-main);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff2;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 12px;
  }
  .btn-primary {
    padding: 12px 18px;
    font-size: 1rem;
    margin-left: 6px;
  }
  header img { width: 120px; }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 600px) {
  header .container {
    padding: 0 7px;
  }
  header img {
    width: 95px;
    min-width: 76px;
  }
}
/* ===========================================
   HERO SECTION / CTA
   =========================================== */
.hero {
  background: linear-gradient(135deg, #f6f7fa 60%, #e4e7eb 100%);
  border-bottom: 1px solid #eaeaea;
  display: flex; align-items: center;
  min-height: 390px;
  padding: 0;
  margin-bottom: 38px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 620px;
  padding: 56px 0 38px 0;
  gap: 20px;
}
.hero h1 {
  color: var(--mono-black);
}
.hero p {
  font-size: 1.21rem;
  color: var(--mono-mid);
  margin-bottom: 6px;
}
.hero .btn-primary {
  margin-top: 8px;
}

@media (max-width: 800px) {
  .hero .content-wrapper {
    padding: 38px 0 18px 0;
  }
  .hero { min-height: 200px; }
}

/* ===========================================
   FEATURES BLOCKS / FLEX GRIDS
   =========================================== */
.features {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.features .content-wrapper > h2 {
  margin-bottom: 8px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 20px 22px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  border: 1px solid #e0e1e3;
  transition: box-shadow var(--transition-main), border var(--transition-main);
}
.feature-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: #d0d2d5;
  background: #f9fafb;
}
.feature-item img {
  width: 42px; height: 42px; margin-bottom: 10px;
}
.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1px;
}
.feature-item p {
  color: var(--mono-mid);
}
@media (max-width: 850px) {
  .feature-grid { gap: 16px; }
  .feature-item { padding: 20px 10px; }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* ===========================================
     CARDS & CARD CONTAINERS
   =========================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #ecedf1;
  transition: box-shadow var(--transition-main), border var(--transition-main);
  flex: 1 1 280px;
  min-width: 240px;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: #dbdee6;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 20px 22px 20px;
  gap: 10px;
}

/* ===========================================
     TESTIMONIALS & RATING SECTIONS
   =========================================== */
.testimonials {
  background: linear-gradient(110deg, #fafbfc 80%, #eceeef 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding-top: 36px;
  padding-bottom: 36px;
  margin-bottom: 48px;
}
.testimonials h2 {
  margin-bottom: 16px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* consistent with flexbox requirements */
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  min-width: 240px;
  max-width: 340px;
  border: 1px solid #e3e3e3;
  position: relative;
  transition: box-shadow var(--transition-main), border var(--transition-main);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: #cacaca;
  z-index: 1;
}
.testimonial-rating {
  color: #F0C22A;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  font-family: var(--font-display);
  margin-bottom: -5px;
}
.testimonial-meta {
  font-size: .98rem;
  font-style: italic;
  color: var(--mono-mid);
}
.trust-signals ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style-type: disc;
  margin-left: 0;
}
.trust-signals li {
  background: #f3f3f3;
  color: #26272f;
  border-radius: 12px;
  padding: 6px 16px;
  margin-bottom: 6px;
  font-size: 1rem;
}

@media (max-width: 850px) {
  .testimonial-slider {
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .testimonial-slider {
    flex-direction: column;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* ===========================================
    FLEX LAYOUT UTILITIES FOR OTHER GRIDS
   =========================================== */
.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;
    align-items: flex-start;
  }
  .content-grid,
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===========================================
     SERVICE CARDS (Sportangebote)
   =========================================== */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  border: 1px solid #e5e5e8;
  flex: 1 1 225px;
  min-width: 200px;
  max-width: 315px;
  margin-bottom: 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding: 22px 16px 16px 16px;
  transition: box-shadow var(--transition-main), border var(--transition-main);
}
.service-item img {
  width: 34px; height: 34px;
  margin-bottom: 2px;
}
.service-item h3 { font-size: 1.16rem; }
.service-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: #a2acc0;
}
@media (max-width: 900px) {
  .services .service-list {
    gap: 13px;
  }
  .service-item { max-width: 100%; min-width: 0; }
}
@media (max-width: 600px) {
  .services .service-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===========================================
    FAQ ACCORDION, LOCATION CARDS, TEAM, ETC.
   =========================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-top: 8px;
}
.faq-item {
  background: #f7f7f9;
  border-radius: 12px;
  box-shadow: 0 0.5px 2px rgba(80,80,80,0.04);
  border: 1px solid #edeef0;
  padding: 18px 22px 14px 18px;
  transition: box-shadow var(--transition-main);
}
.faq-item h3 {
  cursor: pointer;
  color: var(--mono-dark);
  margin-bottom: 5px;
  font-size: 1.11rem;
  font-weight: 600;
  transition: color var(--transition-main);
  position: relative;
}
.faq-item h3:after {
  content: '▼';
  font-size: .89em;
  float: right;
  color: #999;
  margin-left: 10px;
}
.faq-item.open h3:after {
  content: '▲';
  color: var(--primary);
}
.faq-content {
  display: none;
  padding: 0 0 0.5em 0;
  color: var(--mono-mid);
}
.faq-item.open .faq-content {
  display: block;
  animation: fadeIn 0.15s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* LOCATIONS, TEAMS, MAPS */
.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.location-item {
  background: #fff;
  border-radius: var(--border-radius);
  border: 1px solid #ececec;
  box-shadow: var(--shadow-card);
  padding: 24px 20px 22px 20px;
  min-width: 220px; max-width: 340px;
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.location-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 5px;
  list-style: none;
  padding-left: 0;
}
.location-item ul li {
  background: #f4f7fa;
  border-radius: 22px;
  color: #26272f;
  padding: 5px 16px 5px 8px;
  font-size: .97rem;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.location-item ul img {
  width: 18px; height: 18px; margin-right: 7px;
}
@media (max-width: 800px) {
  .location-list {
    gap: 12px;
  }
  .location-item { max-width: 100%; min-width: 0; }
}
@media (max-width: 600px) {
  .location-list {
    flex-direction: column;
    gap: 15px;
  }
}

.team-grid {
  display: flex; flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-member {
  background: #fff;
  border-radius: var(--border-radius);
  border: 1px solid #e6e7eb;
  box-shadow: var(--shadow-card);
  padding: 24px 20px 18px 20px;
  min-width: 200px; max-width: 280px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.team-member img {
  width: 38px; height: 38px;
  margin-bottom: 2px;
}
@media (max-width: 700px) {
  .team-grid { flex-direction: column; gap: 14px; }
  .team-member { max-width: 100%; min-width: 0; }
}

/* ===========================================
   SCHEDULE TABLES, ALERTS, FORMS, ETC.
   =========================================== */
.schedule-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin: 18px 0 8px 0;
}
.schedule-filter label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--mono-mid);
  display: flex;
  align-items: center;
  gap: 7px;
}
.schedule-filter select {
  border-radius: 8px;
  padding: 7px 26px 7px 12px;
  border: 1.5px solid #cacaca;
  background: #fff;
  color: #111;
  font-size: 1rem;
  font-family: var(--font-body);
  min-width: 110px;
  transition: border var(--transition-main);
}
.schedule-filter select:focus {
  border-color: var(--primary);
}

.schedule-table {
  overflow-x: auto;
  margin-bottom: 12px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 16px 8px 4px 8px;
}
.schedule-table table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}
.schedule-table th, .schedule-table td {
  padding: 11px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  border-bottom: 1px solid #e6e6e8;
  text-align: left;
}
.schedule-table thead th {
  font-family: var(--font-display);
  background: #f4f6fa;
  color: var(--mono-mid);
}
.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.alert-bar {
  display: flex; align-items: center;
  padding: 13px 18px;
  background: #FFFFFF;
  border-left: 5px solid #D12726;
  border-radius: 8px;
  box-shadow: 0 1.5px 8px 0 rgba(70,20,20,0.10);
  margin: 18px 0 10px 0;
  color: #101114;
  font-weight: 500;
}

.history-log ul {
  list-style: disc inside;
  color: #444;
  padding-left: 22px;
}
.history-log li {
  margin-bottom: 4px;
  font-size: 1rem;
}

.confirmation .btn-primary {
  margin-top: 16px;
  font-size: 1.1rem;
}

/* Forms (probetraining) */
.form-section ul {
  color: #131516;
}
.steps ol {
  padding-left: 22px;
  color: #15181C;
}
.steps li { font-size: 1.04rem; margin-bottom: 10px; }

/* Contact Page Details */
.contact-details ul {
  display: flex; flex-direction: column; gap: 12px;
  list-style: none;
}
.contact-details li {
  display: flex; align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  color: #15181C;
}
.contact-details img {
  width: 20px; height: 20px;
}

/* Map Section */
.map-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  background: #f6f6fa;
  border: 1.5px solid #e3e5e8;
  border-radius: var(--border-radius);
  padding: 32px 22px;
  margin: 28px 0 10px 0;
}
.map-placeholder img {
  width: 160px; margin-top: 8px;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
  background: #11141a;
  color: #fff;
  padding: 46px 0 18px 0;
}
footer .container {
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-nav a {
  color: #ededed;
  font-family: var(--font-display);
  font-size: 1.04rem;
  opacity: .92;
  transition: color var(--transition-main), opacity var(--transition-main);
}
.footer-nav a:hover { color: #fff; opacity: 1; }
.footer-contact {
  display: flex; flex-direction: row; align-items: flex-start; gap: 16px;
  min-width: 250px;
}
.footer-contact img {
  min-width: 54px; width: 54px; height: auto; margin-right: 12px; margin-top: 3px;
}
.footer-contact strong { color: #98a6cf; font-size: 1.02rem; }
.footer-contact div {
  color: #e4e9f1;
  font-size: 1.02rem;
  font-family: var(--font-body);
  line-height: 1.6;
}
.footer-cta {
  min-width: 200px;
  display: flex; flex-direction: column; align-items: center;
}
.footer-cta .btn-primary {
  background: var(--secondary);
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 0;
  margin-left: 0;
}
.footer-cta .btn-primary:hover {
  background: #3B8A3E;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .footer-contact, .footer-cta { align-items: flex-start; }
}

/* ===========================================
   COOKIE CONSENT BANNER & COOKIE MODAL
   =========================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #181c20f9;
  color: #fff;
  box-shadow: 0 -4px 20px 0 rgba(0,0,0,0.14);
  z-index: 1400;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 22px 14px;
  transition: transform var(--transition-main), opacity var(--transition-main);
}
.cookie-banner.hide { transform: translateY(100%); opacity: 0; pointer-events: none; }
.cookie-banner__content {
  max-width: 650px;
  font-size: 1.05rem;
}
.cookie-banner__actions {
  display: flex; flex-direction: row; gap: 16px;
}
.cookie-btn, .cookie-btn-primary {
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  padding: 10px 26px;
  font-size: 1.04rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-main), color var(--transition-main);
}
.cookie-btn-primary {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn-primary:hover { background: #388935; color: #fff; }
.cookie-btn {
  background: #222a32;
  color: #fff;
}
.cookie-btn:hover { background: #383d45; }

@media (max-width: 740px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 8px;
  }
  .cookie-banner__actions { gap: 10px; justify-content: flex-end; }
}

/* Cookie Modal (Preferences) */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #101114e5;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-main);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: var(--border-radius);
  min-width: 340px;
  max-width: 97vw;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  padding: 38px 30px 24px 30px;
  color: #101114;
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
}
.cookie-modal__close {
  position: absolute;
  top: 12px; right: 16px;
  background: #efefef;
  color: #101114;
  border-radius: 50%;
  width: 30px; height: 30px;
  font-size: 1.12rem;
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  transition: background var(--transition-main);
}
.cookie-modal__close:hover { background: #e0e0e0; }
.cookie-modal h2 { font-size: 1.36rem; color: var(--mono-black); margin-bottom: 14px; }
.cookie-modal__categories {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
}
.cookie-category label {
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: #1b1c28;
}
.cookie-modal__actions {
  display: flex; flex-direction: row; gap: 16px;
  margin-top: 12px;
}
/* Switch Style */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
  margin-right: 12px;
}
.cookie-switch input { display: none; }
.cookie-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 22px;
  transition: background 0.2s;
}
.cookie-switch .slider:before {
  position: absolute;
  content: "";
  height: 19px; width: 19px;
  left: 2px; bottom: 1.5px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.21s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.cookie-switch input:checked + .slider {
  background: var(--secondary);
}
.cookie-switch input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-category.essential .cookie-switch {
  opacity: 0.4;
  pointer-events: none;
}
.cookie-category.essential label {
  font-style: italic;
  color: #78787b;
}

@media (max-width: 500px) {
  .cookie-modal__dialog {
    min-width: 0; max-width: 99vw; padding: 22px 8px;
  }
}

/* ===========================================
   MICRO-INTERACTIONS / TRANSITIONS
   =========================================== */
.btn-primary, .service-item, .feature-item, .testimonial-card, .card, .location-item, .team-member, .faq-item, .alert-bar, .cookie-banner, .cookie-btn, .cookie-btn-primary, .cookie-modal__dialog {
  transition: box-shadow var(--transition-main), background var(--transition-main), border var(--transition-main), color var(--transition-main), transform 0.17s;
}
h1, h2, h3, .btn-primary {
  transition: color var(--transition-main);
}
@media (hover: hover) {
  .service-item:hover, .feature-item:hover, .testimonial-card:hover, .location-item:hover, .card:hover, .team-member:hover {
    transform: translateY(-3px) scale(1.015);
  }
}

/* ===========================================
   Utility/Helper Classes
   =========================================== */
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-center { align-items: center !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-20 { gap: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.text-center { text-align: center !important; }

/* ================================================
    Responsive tweaks for padding, nav and hero
   ================================================ */
@media (max-width: 500px) {
  .footer-contact img { width: 40px; }
  .footer-nav, .footer-contact, .footer-cta {
    font-size: .98rem;
  }
}
