/* TICKERAD BERLIN LUXURY PREMIUM CSS
-------------------------------------------
RESET & BASE TYPOGRAPHY
------------------------------------------- */
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;
  background: #fff;
}
*::before, *::after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #f4f6f8;
  color: #153957;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: #153957;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #b99c4a; /* gold accent */
}
os, ul, li { list-style: none; }
h1, h2, h3, h4, .cta-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #153957;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
strong { font-weight: 700; }

/* GOLD ACCENT */
.gold {
  color: #b99c4a;
}

/* LUXURY BOX SHADOW AND BORDER RADIUS */
:root {
  --gold: #b99c4a;
  --dark-blue: #153957;
  --teal: #15967d;
  --light: #f4f6f8;
  --card-radius: 18px;
  --btn-radius: 24px;
  --shadow: 0 2px 16px 0 rgba(21,57,87,0.06), 0 7px 14px rgba(185,156,74,0.07);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

/* Container alignment for max-width */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  /* 'gap' between major elements in container applied below where needed */
}

/* NAVIGATION & HEADER
------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 22px 0 rgba(21,57,87,0.06);
  padding: 0 0 0 0;
  position: relative;
  z-index: 1001;
}
header > .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 16px 12px 16px 12px;
}
header img {
  height: 42px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #153957;
  position: relative;
  padding: 5px 8px;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  margin: 0 auto;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.2s;
}
.main-nav a:hover::after {
  width: 70%;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--gold);
}

.cta-primary {
  background: var(--gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(185,156,74,.09);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.14s cubic-bezier(0.21,1.04,0.37,0.97);
  display: inline-block;
  margin-left: 12px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #fff;
  color: var(--gold);
  box-shadow: 0 7px 24px 0 rgba(185,156,74,.20);
  border: 2px solid var(--gold);
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 8px 18px;
  cursor: pointer;
  margin-left: 8px;
  transition: background .18s;
  z-index: 1302;
}
.mobile-menu-toggle:hover {
  background: var(--dark-blue);
  color: var(--gold);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 28px 0 rgba(21,57,87,0.13);
  z-index: 1300;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(0.5, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 22px 0 0;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--dark-blue);
  cursor: pointer;
  padding: 4px 12px;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 54px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #153957;
  font-weight: 600;
  padding: 12px 0;
  transition: color 0.2s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  background: #f2ead4;
}

/* Show/hide navs based on screen */
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/*---------------------------
SECTION LAYOUTS & SPACING
----------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.content-wrapper {
  width: 100%;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* Features / Grids */
.feature-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid > div {
  background: #f4f6f8;
  border-radius: calc(var(--card-radius) - 6px);
  flex: 1 1 240px;
  min-width: 230px;
  max-width: 340px;
  box-shadow: 0 2px 10px 0 rgba(21,57,87,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 24px 24px 24px;
  transition: box-shadow 0.2s, transform .14s cubic-bezier(0.48,1.44,.56,1.16);
  position: relative;
  margin-bottom: 20px;
}
.feature-grid > div img {
  width: 36px; height: 36px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 6px #ebdfb3);
}
.feature-grid > div h3 {
  font-size: 1.18rem;
  color: var(--dark-blue);
  margin-bottom: 0;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 32px 0 rgba(185,156,74,0.15);
  transform: translateY(-4px) scale(1.034);
  z-index: 2;
}

/* Tables */
.tarif-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.tarif-table th, .tarif-table td {
  padding: 13px 16px;
  font-size: 1.08rem;
  border-bottom: 1px solid #e2e2e2;
  text-align: left;
}
.tarif-table thead th {
  background: #f9f6ee;
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
}

/* Section grid presets (MANDATORY CLASSES) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--card-radius);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 220px;
  margin: 20px 0 0 0;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 18px 0 rgba(21,57,87,0.13);
  border-left: 6px solid var(--gold);
  transition: box-shadow 0.15s, border-color 0.18s;
}
.testimonial-card blockquote {
  color: var(--dark-blue);
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 6px 0;
  line-height: 1.45;
}
.testimonial-card strong {
  color: var(--teal);
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(21,57,87,0.21);
  border-color: var(--teal);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Accordion FAQ */
.faq-accordion {
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-accordion h3 {
  margin-top: 7px;
  cursor: pointer;
  font-size: 1.13rem;
  color: var(--gold);
  font-weight: 700;
  position: relative;
  padding-left: 24px;
}
.faq-accordion h3::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 1.05em;
  transition: transform 0.18s;
}
.faq-accordion h3.open::before {
  transform: rotate(90deg);
}
.faq-accordion p {
  margin-left: 0;
  margin-bottom: 4px;
  color: #30435f;
  background: #f8fafb;
  border-radius: 9px;
  padding: 8px 16px 8px 16px;
  box-shadow: 0 1px 4px 0 rgba(21,57,87,.03);
}

/* Card & Partner Section */
.partners {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 16px 0 0 0;
}
.partners img {
  height: 48px;
  border-radius: 9px;
  border: 2px solid #f7ead5;
}
.partners span { color: #686868; font-size: 1.02rem; }

/* Contact info lists */
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.contact-info img {
  width: 23px;
  height: 23px;
  border-radius: 100%;
  background: #f8f8f8;
  padding: 2px;
}

/* Text sections */
.text-section, .zonenkarten, .preisbeispiele {
  margin: 18px 0 0 0;
  padding: 18px 20px 8px 20px;
  background: #f6f7fb;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(185,156,74,0.05);
}
.text-section ul, .zonenkarten ul, .preisbeispiele ul {
  margin: 12px 0 0 20px;
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1rem;
}

/*******************************
FOOTER
*******************************/
footer {
  padding: 0;
  background: #153957;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 12px 18px 12px;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.22s;
}
.footer-nav a:hover {
  color: var(--gold);
}
.footer-contact {
  color: #ecdba7;
  font-size: 0.96rem;
}

/*******************************
BUTTONS
*******************************/
button, .cta-primary {
  outline: none;
  border: none;
  font-family: inherit;
  transition: all 0.18s cubic-bezier(0.5, 0, 0.2, 1);
}
button:focus, .cta-primary:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/*******************************
RESPONSIVE DESIGN
*******************************/
@media (max-width: 991px) {
  .container {
    max-width: 97vw;
    padding: 0 7px;
  }
  section {
    padding: 26px 0;
  }
  .content-wrapper {
    padding: 28px 8px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.19rem; }
}
@media (max-width: 768px) {
  section, .section {
    margin-bottom: 36px;
    padding: 23px 0;
  }
  .content-wrapper {
    padding: 15px 4vw;
    gap: 11px;
  }
  .feature-grid {
    flex-direction: column;
  }
  .main-nav { display: none !important; }
  .testimonial-card { min-width: 0; }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .partners {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
  }
}

/********************************
COOKIE BANNER
*********************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(255,255,255,0.98);
  border-top: 2.5px solid var(--gold);
  box-shadow: 0 -2px 16px 0 rgba(21,57,87,0.08);
  padding: 18px 24px 17px 24px;
  z-index: 1401;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  animation: cookie-fadein 0.45s cubic-bezier(0.25,1,.40,1);
}
@keyframes cookie-fadein {
  0% { opacity: 0; transform: translateY(45px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner-text {
  font-size: 1.03rem;
  color: #2b2f3b;
  font-family: 'Roboto', Arial, sans-serif;
  flex: 1 1 360px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  padding: 10px 25px;
  border-radius: var(--btn-radius);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid var(--gold);
  background: #fff;
  color: var(--gold);
  transition: background 0.2s, color 0.2s, transform 0.13s;
}
.cookie-accept {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--dark-blue);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.045);
}
.cookie-reject:hover, .cookie-reject:focus,
.cookie-settings:hover, .cookie-settings:focus {
  background: #f2ead4;
  color: var(--gold);
  transform: translateY(-1.5px) scale(1.03);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 14px 5px;
  }
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  z-index: 1700;
  background: rgba(21,57,87,0.29);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadein 0.38s cubic-bezier(0.3,1,.39,1);
}
@keyframes modal-fadein {
  0% { opacity: 0; transform: scale(0.94); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 7px 30px 0 rgba(185,156,74,0.13);
  padding: 32px 26px 30px 26px;
  min-width: 290px;
  max-width: 92vw;
  font-family: 'Roboto', Arial, sans-serif;
  color: #153957;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1.07rem;
  color: var(--dark-blue);
}
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch span {
  width: 46px;
  height: 24px;
  background: #eaeaea;
  border-radius: 14px;
  display: inline-block;
  position: relative;
  transition: background 0.14s;
  margin-left: 10px;
}
.cookie-switch span::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 12px;
  background: #b3af94;
  transition: left 0.16s, background 0.15s;
}
.cookie-switch input[type="checkbox"]:checked + span {
  background: var(--teal);
}
.cookie-switch input[type="checkbox"]:checked + span::before {
  left: 25px;
  background: var(--gold);
}
.cookie-modal-actions {
  margin-top: 15px;
  display: flex;
  gap: 17px;
  justify-content: flex-end;
}
.cookie-modal .cookie-accept {
  min-width: 120px;
}
.cookie-modal .cookie-reject, .cookie-modal .cookie-settings {
  min-width: 91px;
}

/******************************
MICRO-INTERACTIONS & EFFECTS
*******************************/
.card, .feature-grid > div, .testimonial-card, .content-wrapper, .menu {
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s cubic-bezier(0.3,1,.36,1.15);
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(185,156,74,0.18);
  border-color: var(--teal);
  z-index: 2;
}

/*******************************
MISCELLANEOUS
*******************************/
::-webkit-scrollbar {
  width: 9px;
  background: #efe7cd;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 12px;
}
h1, h2, h3, h4, h5, h6 {
  text-shadow: 0 2px 7px #f4e8c1;
}

/*******************************
FORMS (optional future extension)
*******************************/
input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 9px;
  border: 1.5px solid #d6d6d6;
  padding: 9px 14px;
  transition: border-color .13s;
}
input:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 4px 12px 0 rgba(185,156,74,0.06);
}

/************************/
SPECIAL CASES
************************/
.zonenkarten, .preisbeispiele {
  background: #fcfaf6;
}

/************************/
ACCESSIBILITY
************************/
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
