/* ============================================================================
   Crimson BauService – Minimalist UI CSS (Flexbox, Responsive, Animations)
   ============================================================================ */

/* ---------- RESET & BASE ---------- */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #31353B;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #B3131A;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* ---------- FONT FAMILIES ---------- */
h1, h2, h3, h4, h5, h6, .cta-button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #31353B;
  letter-spacing: 0.01em;
}

/* ---------- TYPOGRAPHY SCALE ---------- */
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, .testimonial-author, .contact-short, .office-hours, .value-card p, .service-detail p {
  font-family: 'Roboto', Arial, sans-serif;
  color: #31353B;
  font-size: 1rem;
  line-height: 1.6;
}

small {
  color: #97999c;
  font-size: 0.95rem;
}

/* ---------- GENERIC LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .container {
    padding: 0 8px;
  }
}

/* ---------- HEADER & NAVIGATION ---------- */
header {
  background: #fff;
  border-bottom: 1px solid #ECECEC;
  width: 100%;
}
.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  position: relative;
  z-index: 101;
}
.brand-bar img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #31353B;
  opacity: 0.85;
  padding: 4px 8px;
  position: relative;
  transition: color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B3131A;
  opacity: 1;
}
.cta-button {
  display: inline-block;
  background: #B3131A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 1rem;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(179,19,26,0.12);
  margin-left: 12px;
}
.cta-button:hover, .cta-button:focus {
  background: #931d1e;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(179,19,26,0.19);
}

@media (max-width: 1024px) {
  .brand-bar {
    gap: 10px;
  }
  .main-nav {
    gap: 18px;
  }
  .cta-button {
    padding: 10px 18px;
    font-size: 0.97rem;
    margin-left: 4px;
  }
}


/* ---------- MOBILE NAVIGATION ---------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #B3131A;
  cursor: pointer;
  margin-left: 8px;
  z-index: 111;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #B3131A;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88vw;
  max-width: 340px;
  box-shadow: -2px 0 28px rgba(60,60,60,0.18);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.86,.01,.32,1);
  z-index: 1200;
  padding: 32px 28px 24px 28px;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #B3131A;
  font-size: 2rem;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid #B3131A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  color: #31353B;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3F3F3;
  color: #B3131A;
}
@media (max-width: 1024px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---------- HERO SECTION ---------- */
.hero {
  background: #F3F3F3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  padding: 60px 0 50px 0;
  box-shadow: 0 1px 18px 0 rgba(201,201,201,0.08);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero h1 {
  color: #B3131A;
}
.hero p {
  font-size: 1.1rem;
  color: #31353B;
  opacity: 0.88;
  margin-bottom: 8px;
}
.hero .cta-button {
  margin:  0 auto;
}

@media (max-width: 768px) {
  .hero {
    min-height: 210px;
    padding: 36px 0 24px 0;
  }
}

/* ---------- FEATURES SECTION ---------- */
.features {
  background: #fff;
  border-bottom: 1px solid #ECECEC;
}
.features .content-wrapper {
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
}
.feature {
  background: #F3F3F3;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(48,45,41,0.03);
  min-width: 170px;
  flex: 1 1 170px;
  max-width: 260px;
  padding: 26px 20px 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 1px solid #ECECEC;
}
.feature img {
  height: 44px;
  margin-bottom: 8px;
  opacity: .95;
}
.feature h3 {
  color: #B3131A;
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.feature p {
  color: #4A4A4A;
  opacity: 0.95;
  font-size: 0.99rem;
}
.feature:hover, .feature:focus {
  box-shadow: 0 6px 28px 0 rgba(179,19,26,0.11);
  transform: translateY(-2px) scale(1.02);
  border: 1px solid #b3131a2a;
}
@media (max-width: 1024px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    min-width: 0;
    max-width: 100%;
  }
}

/* ---------- ABOUT SHORT / TEXT SECTION ---------- */
.about-short, .about {
  background: #fff;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.trust-badges {
  display: flex;
  gap: 36px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.trust-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #F3F3F3;
  color: #B3131A;
  padding: 4px 10px 4px 8px;
  border-radius: 8px;
}
.trust-badges img {
  height: 22px;
}
@media (max-width: 768px) {
  .trust-badges {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- CTA LEADS / CTA SECTION ---------- */
.cta-leads, .cta-section, .cta-faq, .cta-contact, .cta-process {
  background: #F3F3F3;
  text-align: center;
  box-shadow: 0 1px 18px 0 rgba(180,180,180,0.08);
  border-radius: 20px;
  margin-bottom: 60px;
}
.cta-leads .content-wrapper, .cta-section .content-wrapper, .cta-faq .content-wrapper, .cta-contact .content-wrapper, .cta-process .content-wrapper {
  align-items: center;
  gap: 18px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials, .references-testimonials {
  background: #fff;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 24px;
  background: #F3F3F3;
  border-radius: 18px;
  min-width: 270px;
  max-width: 340px;
  box-shadow: 0 2px 18px 0 rgba(169,179,180,0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.16s;
  border: 1px solid #ECECEC;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 36px 0 rgba(179,19,26,0.13);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-rating img {
  height: 18px;
  width: auto;
  filter: grayscale(0) brightness(1) contrast(1.5);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #31353B;
  opacity: 0.97;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  color: #B3131A;
  margin-top: 8px;
  letter-spacing: .01em;
}
@media (max-width: 1024px) {
  .testimonial-list, .testimonial-slider {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 16px 12px;
  }
}

/* ---------- REFERENCES / PROJECTS ---------- */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.project-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(100,100,100,0.05);
  border: 1px solid #ECECEC;
  padding: 22px 20px 18px 20px;
  min-width: 240px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s;
}
.project-item h3 {
  color: #B3131A;
  margin-bottom: 6px;
  font-size: 1.09rem;
}
@media (max-width: 768px) {
  .project-list {
    flex-direction: column;
    gap: 14px;
  }
  .project-item {
    min-width: 0;
    max-width: 100%;
  }
}

/* ---------- SERVICE LIST & DETAILS ---------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.service-item {
  background: #F3F3F3;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(100,100,100,0.04);
  min-width: 190px;
  flex: 1 1 240px;
  padding: 24px 18px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ECECEC;
  align-items: flex-start;
  transition: box-shadow 0.16s, transform 0.13s; 
}
.service-item img {
  height: 36px;
  margin-bottom: 6px;
}
.service-item h2 {
  color: #B3131A;
  font-size: 1.18rem;
  margin-bottom: 4px;
}
.service-item:hover, .service-item:focus {
  box-shadow: 0 8px 32px 0 rgba(179,19,26,0.10);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .service-list {
    flex-direction: column;
    gap: 12px;
  }
  .service-item {
    min-width: 0;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.service-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-detail {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(124,124,124,0.05);
  border: 1px solid #ECECEC;
  padding: 18px 18px 14px 18px;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-detail h3 {
  color: #B3131A;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .service-detail-list {
    flex-direction: column;
    gap: 12px;
  }
  .service-detail {
    min-width: 0;
    max-width: 100%;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 20px;
}
.faq-item {
  background: #F3F3F3;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(179,19,26,0.07);
  padding: 20px 20px 18px 20px;
  margin-bottom: 20px;
  border-left: 4px solid #B3131A;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item h2 {
  font-size: 1.01rem;
  color: #B3131A;
  margin-bottom: 4px;
}
.faq-item p {
  margin-bottom: 0;
}

/* ---------- PROCESS STEPS ---------- */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.process-step {
  background: #F3F3F3;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(158,42,51,0.06);
  min-width: 220px;
  flex: 1 1 250px;
  padding: 26px 18px 21px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #ECECEC;
  transition: box-shadow 0.16s, transform 0.13s; 
}
.process-step:hover, .process-step:focus {
  box-shadow: 0 10px 36px 0 rgba(179,19,26,0.11);
  transform: scale(1.015);
}
.process-step img {
  height: 32px;
  margin-bottom: 6px;
}
.process-step h2 {
  color: #B3131A;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.process-step p {
  font-size: 1rem;
  opacity: 0.96;
}
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 12px;
  }
  .process-step {
    min-width: 0;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ---------- ABOUT PAGE: VALUE CARDS ---------- */
.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  margin-top: 4px;
}
.value-card {
  background: #F3F3F3;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(49,53,59,0.05);
  min-width: 180px;
  flex: 1 1 220px;
  padding: 20px 16px 14px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  border: 1px solid #ECECEC;
}
.value-card img {
  height: 28px;
  margin-bottom: 6px;
}
.value-card h3 {
  color: #B3131A;
  font-size: 1.11rem;
  margin-bottom: 2px;
}
.quality-promise, .experience-highlights {
  margin: 16px 0;
  background: #fff;
  border-radius: 8px;
  padding: 16px 14px 12px 18px;
  box-shadow: 0 1px 8px rgba(179,19,26,0.03);
}
.quality-promise h3, .experience-highlights h4 {
  color: #B3131A;
  font-size: 1.04rem;
  margin-bottom: 4px;
}
.quality-promise ul, .experience-highlights ul {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .value-cards {
    flex-direction: column;
    gap: 12px;
  }
  .value-card {
    min-width: 0;
    max-width: 100%;
  }
}

/* ---------- CONTACT SECTION ---------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}
.contact-details p, .contact-details a {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-details img {
  height: 19px;
  opacity: .93;
}
.office-hours {
  margin-top: 12px;
}
.office-hours ul {
  margin-bottom: 0;
}

.contact-recap, .next-steps-info {
  background: #F3F3F3;
  border-radius: 10px;
  padding: 14px 14px 10px 14px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(49,53,59,0.03);
}
.contact-recap h2,
.next-steps-info h2 {
  color: #B3131A;
  font-size: 1.02rem;
}
.contact-recap ul, .next-steps-info ul {
  margin-bottom: 0;
}

/* ---------- FOOTER ---------- */
footer {
  background: #fff;
  border-top: 1px solid #ECECEC;
  margin-top: 40px;
  font-size: 1rem;
  padding-top: 18px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-bottom: 8px;
}
.brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 150px;
  max-width: 220px;
}
.brand-info img {
  height: 38px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}
.footer-menu a {
  color: #31353B;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.75;
  font-size: 1rem;
  transition: color 0.12s, opacity 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #B3131A;
  opacity: 1;
}
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
  max-width: 240px;
}
.contact-short p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.96rem;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.social-links a img {
  display: block;
  height: 26px;
  width: 26px;
  opacity: 0.75;
  transition: opacity .12s, transform .16s;
}
.social-links a:hover img {
  opacity: 1;
  transform: scale(1.12);
}
.footer-bottom {
  padding: 11px 0 6px 0;
  border-top: 1px solid #ECECEC;
  text-align: center;
}

@media (max-width: 1024px) {
  .footer-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 2px;
    padding-bottom: 4px;
  }
}

/* ---------- PRIVACY POLICY & TERMS ---------- */
.privacy-policy, .gdpr-info, .cookie-policy, .terms-section {
  background: #fff;
}
.privacy-policy h2, .gdpr-info h2, .cookie-policy h2, .terms-section h2 {
  color: #B3131A;
  font-size: 1.17rem;
  margin-bottom: 8px;
  margin-top: 12px;
}
.privacy-policy ul, .gdpr-info ul, .cookie-policy ul, .terms-section ul {
  margin-bottom: 12px;
} 

/* ---------- THANK YOU PAGE ---------- */
.thank-you-section {
  background: #F3F3F3;
  border-radius: 20px;
  box-shadow: 0 0.5px 7px rgba(132,16,33,0.07);
  margin-bottom: 50px;
}
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.thank-you-section h1 {
  color: #B3131A;
}

/* ---------- GENERIC UTILITIES ---------- */
.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* ---------- TRANSITIONS & MICRO-INTERACTIONS ---------- */
button, .cta-button, .feature, .feature-card, .testimonial-card, .process-step, .service-item, .project-item {
  transition: 
    background 0.18s,
    border-color 0.18s,
    box-shadow 0.20s,
    color 0.16s,
    transform 0.14s;
}
button:focus, .cta-button:focus {
  outline: 2px solid #B3131A;
  outline-offset: 2px;
}

/* ---------- RESPONSIVENESS: LAYOUT SWITCHING ---------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------- COOKIE CONSENT BANNER ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(100%);
  width: 98vw;
  max-width: 480px;
  background: #fff;
  color: #31353B;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 2px 30px rgba(49,53,59,0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2400;
  padding: 22px 22px 18px 20px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.77,0,.18,1), opacity 0.2s;
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0%);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner h2 {
  font-size: 1.1rem;
  color: #B3131A;
  margin-bottom: 6px;
}
.cookie-banner p {
  font-size: 0.97rem;
  color: #3A3C3B;
  margin-bottom: 12px;
}
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 19px;
  padding: 8px 18px;
  font-size: 1rem;
  margin-bottom: 0;
  box-shadow: 0 1.5px 8px rgba(179,19,26,0.10);
  transition: background 0.17s, color 0.14s, box-shadow 0.13s;
}
.cookie-btn.accept {
  background: #B3131A;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #931d1e;
}
.cookie-btn.reject {
  background: #ECECEC;
  color: #B3131A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F3F3F3;
}
.cookie-btn.settings {
  background: #fff;
  color: #31353B;
  border: 1px solid #B3131A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F3F3F3;
}
@media (max-width: 500px) {
  .cookie-banner {
    max-width: 99vw;
    border-radius: 8px 8px 0 0;
    padding: 12px 6px 12px 8px;
  }
  .cookie-btn-group {
    flex-direction: column;
    gap: 7px;
  }
}

/* ---------- COOKIE MODAL ---------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(49,53,59,0.26);
  z-index: 2600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.17s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 54%;
  transform: translate(-50%,-50%) scale(0.97);
  background: #fff;
  color: #31353B;
  min-width: 310px;
  max-width: 96vw;
  width: 400px;
  box-shadow: 0 6px 44px rgba(49,53,59,0.23);
  border-radius: 16px;
  z-index: 2700;
  opacity: 0;
  pointer-events: none;
  padding: 34px 24px 22px 24px;
  transition: opacity 0.18s, transform 0.32s cubic-bezier(.66,0,0,1);
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  color: #B3131A;
  font-size: 1.14rem;
  margin-bottom: 4px;
}
.cookie-modal .close-x {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: #B3131A;
  font-size: 1.6rem;
  cursor: pointer;
}
.cookie-modal .categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  border-bottom: 1px solid #ECECEC;
}
.cookie-modal .category-row:last-child {
  border-bottom: none;
}
.cookie-modal .category-label {
  font-size: 1rem;
  flex: 1 1 auto;
}
.cookie-modal .toggle {
  width: 42px; height: 24px;
  position: relative;
  display: inline-block;
}
.cookie-modal .toggle input[type="checkbox"] {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-modal .slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ECECEC;
  border-radius: 16px;
  transition: background 0.18s;
}
.cookie-modal .toggle input[type="checkbox"]:checked + .slider {
  background: #B3131A;
}
.cookie-modal .slider:before {
  position: absolute; content: '';
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  transition: transform 0.18s;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(49,53,59,0.13);
}
.cookie-modal .toggle input[type="checkbox"]:checked + .slider:before {
  transform: translateX(18px);
}
.category-row.essential .category-label {
  font-weight: 600; color: #31353B;
}
.category-row.essential .toggle {
  pointer-events: none;
  opacity: .54;
}
@media (max-width: 450px) {
  .cookie-modal {
    width: 97vw;
    padding: 14px 6px 18px 8px;
    font-size: 0.97rem;
  }
}

/* ---------- ACCESSIBILITY & PRINT ---------- */
@media print {
  header, footer, .cta-button, .cookie-banner, .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  main, .container, .content-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
  }
}

/* ---------- END OF FILE ---------- */
