/* ===========================
   CSS RESET & NORMALIZATION
   =========================== */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  box-sizing: border-box;
}
body {
  height: 100%;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1E2B34;
  background: #F5F6F8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #89161A;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.77,0,.18,1);
}
a:hover, a:focus {
  color: #1E2B34;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1E2B34;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
h3 {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}
h4 {
  font-size: 1.1rem;
}
h5, h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #1E2B34;
}
strong { font-weight: 700; }

/* ===========================
   GENERAL LAYOUT CONTAINERS
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===========================
   HEADER & NAV
   =========================== */
header {
  background: #fff;
  border-bottom: 4px solid #89161A;
  box-shadow: 0 2px 18px rgba(30,43,52,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  height: 72px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 16px;
  text-transform: uppercase;
  color: #1E2B34;
  transition: color 0.2s cubic-bezier(.77,0,.18,1);
  padding: 6px 0px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  color: #89161A;
  border-bottom: 2.5px solid #89161A;
}

/* Hide mobile nav toggle on desktop */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #89161A;
  border: 2px solid #89161A;
  border-radius: 10px;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 16px;
  right: 18px;
  z-index: 70;
  transition: box-shadow 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F5F6F8;
  box-shadow: 0 2px 8px rgba(137,22,26,0.08);
  outline: none;
}

/* ===========================
   MOBILE NAVIGATION OVERLAY
   =========================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 120;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1),opacity 0.2s,visibility 0.2s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  box-shadow: -2px 0 24px rgba(30,43,52,0.14);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 10px 0;
  font-size: 2.2rem;
  color: #89161A;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover { color: #1E2B34; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #1E2B34;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  transition: background 0.2s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #89161A;
  color: #fff;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  background: linear-gradient(160deg, #F5F6F8 60%, #fff 100%);
  position: relative;
  border-radius: 0 0 56px 56px;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 48px 0 34px 0;
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 20px;
  text-align: center;
}
.hero h1 {
  font-size: 2.2rem;
  color: #89161A;
  margin-bottom: 10px;
}
.hero .subtitle {
  font-size: 1.1rem;
  color: #1E2B34;
  font-weight: 500;
  margin-bottom: 14px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 14px rgba(137,22,26,0.08);
  margin-top: 8px;
}
.btn.primary {
  background: #89161A;
  color: #fff;
}
.btn.primary:hover, .btn.primary:focus {
  background: #1E2B34;
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: #89161A;
  border: 2px solid #89161A;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: #89161A;
  color: #fff;
}

/* ===========================
   SECTIONS, FLEX CONTAINERS & CARDS
   =========================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(30,43,52,0.04);
}

/* For feature cards and flex card containers */
.card-container, .feature-icons-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(30,43,52,0.04);
  position: relative;
  padding: 28px 24px;
  flex: 1 1 260px;
  transition: transform 0.16s, box-shadow 0.16s;
}
.card:hover, .service-card:hover {
  box-shadow: 0 6px 18px rgba(137,22,26,0.08);
  transform: translateY(-4px) scale(1.02);
  z-index: 1;
}
.service-card {
  background: #F5F6F8;
  border: 2.5px solid #89161A;
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 24px 22px 20px 22px;
  box-shadow: 0 1.5px 9px rgba(137,22,26,0.07);
  flex: 1 1 270px;
  min-width: 260px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.14s, box-shadow 0.14s;
}
.service-card h3 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 0;
  gap: 7px;
  color: #89161A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.service-price {
  background: #1E2B34;
  color: #fff;
  border-radius: 12px;
  padding: 2px 11px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 8px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.content-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid li, .feature-icons-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1E2B34;
  box-shadow: 0 1px 6px rgba(30,43,52,0.07);
  padding: 12px 16px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.feature-icons-list {
  gap: 20px;
}
.feature-icons-list div img {
  width: 28px;
  height: 28px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonials {
  background: linear-gradient(98deg, #fff 65%, #F5F6F8 100%);
  padding: 40px 0 60px 0;
  border-radius: 42px;
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  align-items: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #F5F6F8;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(30,43,52,0.09);
  margin-bottom: 20px;
  max-width: 480px;
  transition: box-shadow 0.16s, transform 0.14s;
  color: #1E2B34;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(137,22,26,0.08);
  transform: scale(1.02);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #1E2B34;
  font-style: italic;
}
.testimonial-footer {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  color: #89161A;
  font-weight: 600;
}

.cta {
  padding: 40px 0 40px 0;
  background: #89161A;
  color: #fff;
  border-radius: 30px;
  margin-bottom: 60px;
}
.cta h2,.cta p {
  color: #fff;
}

/* Feature Items for Checklist, Benefits, etc */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 1rem;
}

.benefits-list {
  margin-top: 12px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 1px 9px rgba(30,43,52,0.06);
}
.pricing-table th, .pricing-table td {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1.5px solid #F5F6F8;
}
.pricing-table thead {
  background: #89161A;
  color: #fff;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 18px;
}
.faq-item {
  background: #F5F6F8;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 1.5px 8px rgba(30,43,52,0.07);
  font-size: 1rem;
}
.faq-item strong {
  color: #89161A;
  font-size: 1.06rem;
  display: block;
  margin-bottom: 8px;
}

/* Contact Form Info / Map */
.contact-form-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.map-placeholder {
  padding: 18px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 9px rgba(30,43,52,0.08);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.public-transport-info ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #89161A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.18s;
  padding-bottom: 2px;
}
.footer-nav a:hover {
  color: #1E2B34;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.97rem;
  margin-bottom: 12px;
  color: #1E2B34;
}
footer {
  background: #fff;
  border-top: 4px solid #89161A;
  box-shadow: 0 -2px 14px rgba(30,43,52,0.06);
  padding: 24px 0 10px 0;
}

/* ===========================
   COOKIE CONSENT BANNER + MODAL
   =========================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #1E2B34;
  border-top: 3px solid #89161A;
  box-shadow: 0 -2px 22px rgba(30,43,52,0.12);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 6px 18px 6px;
  gap: 24px;
  font-size: 0.98rem;
  transition: transform 0.33s cubic-bezier(.77,0,.18,1),opacity 0.18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-message {
  flex: 1;
  max-width: 720px;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 18px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 7px rgba(137,22,26,0.06);
  margin-top: 0;
  transition: background 0.14s, color 0.14s;
}
.cookie-btn.accept {
  background: #89161A;
  color: #fff;
}
.cookie-btn.accept:hover { background: #1E2B34; }
.cookie-btn.reject {
  background: #fff;
  color: #89161A;
  border: 2px solid #89161A;
}
.cookie-btn.reject:hover {
  background: #89161A;
  color: #fff;
}
.cookie-btn.settings {
  background: #1E2B34;
  color: #fff;
}
.cookie-btn.settings:hover {
  background: #89161A;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,43,52,0.36);
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 48px rgba(30,43,52,0.25);
  max-width: 430px;
  padding: 30px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  color: #1E2B34;
  z-index: 225;
  animation: appearModal 0.37s cubic-bezier(.77,0,.18,1);
}
@keyframes appearModal {
  0% { opacity: 0;transform: scale(0.98) translateY(24px); }
  100% {opacity: 1;transform: scale(1) translateY(0);}
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: #89161A;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}
.cookie-category-label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 13px;
  background: #ECECEC;
  border: 1.5px solid #89161A;
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-left: 4px;
  transition: background 0.15s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  width: 17px;
  height: 17px;
  background: #fff;
  border: 1.5px solid #89161A;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left 0.22s, background 0.14s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: #89161A;
  border-color: #89161A;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.8rem;
  color: #89161A;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.15s;
}
.cookie-modal .close-modal:hover { color: #1E2B34; }

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 990px) {
  header .container {
    gap: 16px;
  }
  .main-nav { gap: 16px; }
  .content-wrapper { gap: 22px; }
  .feature-icons-list { gap: 14px; }
}
@media (max-width: 850px) {
  .card-container, .feature-icons-list, .service-list {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  header .container {
    height: 54px;
    gap: 7px;
  }
  .main-nav {
    display: none !important;
  }
  .btn.primary, .btn.secondary {
    font-size: 1rem;
    padding: 10px 18px;
    border-radius: 17px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .section, .cta {
    border-radius: 16px;
    margin-bottom: 40px;
    padding: 28px 7px;
  }
  .hero {
    border-radius: 0 0 30px 30px;
    margin-bottom: 34px;
    padding: 30px 0 26px 0;
  }
  .footer-nav { gap: 12px; }
  .footer-info { font-size: 0.92rem; }
  .feature-grid, .feature-icons-list, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card { max-width: 96vw; }
  .pricing-table th, .pricing-table td {
    padding: 12px 7px;
    font-size: 0.98rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .faq-list { gap: 15px; }
  .cookie-modal {
    padding: 18px 9px 14px 9px;
    max-width: 98vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 11px 3px;
    font-size: 0.92rem;
  }
}
@media (max-width: 600px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .logo img { height: 32px; }
  .section, .cta {
    padding: 17px 3.5vw;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .card, .service-card {
    min-width: 0;
    max-width: 100%;
    padding: 12px 8px;
  }
}

/* ===========================
   GEOMETRIC/STRUCTURED EFFECTS
   =========================== */
.section, .card, .testimonial-card, .feature-icons-list div, .footer-info, .service-card, .faq-item, .map-placeholder {
  /* Geometric, structured design: bold shapes, smooth corners, subtle shadow */
  border-radius: 18px;
  box-shadow: 0 1.5px 6px rgba(137,22,26,0.05);
}
.hero, .cta {
  border-radius: 32px;
  box-shadow: 0 3px 32px rgba(137,22,26,0.07);
}
hr {
  border: none;
  border-top: 2px solid #F5F6F8;
  margin: 36px 0;
}

/* ===========================
   MICRO INTERACTIONS, TRANSITIONS
   =========================== */
.btn, .card, .service-card, .feature-icons-list div, .testimonial-card, .cookie-btn {
  transition: box-shadow 0.14s, transform 0.14s, background 0.14s, color 0.14s;
}
h1, h2, h3 {
  transition: color 0.18s;
}

/* Example: subtle hover shadow for all cards */
.card:hover, .service-card:hover, .feature-icons-list div:hover {
  box-shadow: 0 6px 20px rgba(137,22,26,0.09), 0 2px 7px rgba(30,43,52,0.03);
  transform: scale(1.03);
  z-index: 1;
}

input, select, textarea {
  border: 1.5px solid #89161A;
  border-radius: 10px;
  padding: 8px 11px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
input:focus, select:focus, textarea:focus {
  border-color: #1E2B34;
  outline: 2px solid #1E2B34;
}

/* ===========================
   SCROLLBAR STYLES (for overlay, modals)
   =========================== */
.cookie-modal::-webkit-scrollbar, .mobile-menu::-webkit-scrollbar {
  width: 10px;
  background: #eee;
  border-radius: 6px;
}
.cookie-modal::-webkit-scrollbar-thumb, .mobile-menu::-webkit-scrollbar-thumb {
  background: #89161A;
  border-radius: 6px;
}

::-webkit-scrollbar {
  width: 10px;
  background: #f5f6f8;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

/* Hide scroll on mobile-nav */
.mobile-menu {
  overflow-y: auto;
}

/* ===========================
   UTILITY SPACING CLASSES
   =========================== */
.mt-2 { margin-top: 8px !important; }
.mt-3 { margin-top: 18px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 18px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }

/* ===========================
   NO GRID/NO COLUMNS ENFORCED!
   =========================== */
/* No display: grid, grid-* or columns here! */
