/* =============================================================
   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 {
  line-height: 1.6;
  background: #f7f7f7;
  color: #1a2731;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  background: none;
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border: 0;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

/* =============================================================
   Variables
============================================================= */
:root {
  --primary: #22587E;
  --secondary: #F4B800;
  --accent: #F7F7F7;
  --text: #1a2731;
  --text-light: #f7f7f7;
  --card-bg: #fff;
  --card-shadow: rgba(34, 88, 126, 0.08);
  --card-radius: 18px;
  --border-light: #e2e6ea;
  --btn-shadow: 0 2px 8px rgba(34, 88, 126, 0.08);
  --footer-bg: #1a2731;
  --footer-text: #fafbfc;
  --transition: 0.22s cubic-bezier(.4,1,.34,.98);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* =============================================================
   Typography
============================================================= */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.14;
}
@media (min-width: 600px) {
  h1, .h1 { font-size: 2.8rem; }
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
@media (min-width: 600px) {
  h2, .h2 { font-size: 2.1rem; }
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--primary);
}
p, li, dd {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text);
}
p:last-child, li:last-child {
  margin-bottom: 0;
}
strong, b { font-weight: 700; }
em, i { font-style: italic; }
dt {
  font-weight: 600;
  margin-top: 16px;
  color: var(--primary);
}
dd {
  margin-left: 0;
  margin-bottom: 12px;
}
q {
  font-style: italic;
  border-left: 4px solid var(--primary);
  margin-left: 14px;
  padding-left: 10px;
  color: #344354;
}
.subheadline {
  color: #3b4958;
  margin-bottom: 18px;
  font-size: 1.15rem;
  font-family: var(--font-body);
}

/* Visual hierarchy */
h1, h2, h3 { margin-top: 0; }

/* =============================================================
   Containers & Sections
============================================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--card-radius);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =============================================================
   HEADER & NAVIGATION
============================================================= */
header {
  background: linear-gradient(100deg, #f9fafb, var(--accent) 70%);
  box-shadow: 0 2px 18px 0 rgba(34, 88, 126, 0.04);
  position: relative;
  z-index: 15;
  border-bottom: 1px solid #e9edf1;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 8px;
  border-radius: 5px;
  transition: background var(--transition), color var(--transition);
}
header nav a:hover, header nav a:focus {
  background: #e4eaf1;
  color: var(--secondary);
}
.btn-primary,
nav a.btn-primary {
  background: var(--primary);
  color: var(--text-light) !important;
  border: none;
  padding: 8px 22px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: var(--btn-shadow);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-left: 4px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--primary) !important;
  box-shadow: 0 3px 18px 0 rgba(34, 88, 126, 0.14);
  transform: translateY(-2px) scale(1.035);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: var(--text-light);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary);
  border-radius: 50%;
  padding: 8px 12px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  z-index: 103;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e4eaf1;
}
/* Hide nav, show burger on mobile */
@media (max-width: 940px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 941px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ================================
   MOBILE MENU OVERLAY
================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,36,52,0.94);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.67,0,.27,1);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 22px 26px 8px 16px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 30px;
  margin-top: 22px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.18rem;
  padding: 12px 0;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: rgba(244,184,0,0.085);
  padding-left: 10px;
}

@media (min-width: 941px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Prevent scroll on body when mobile menu is open (JS toggles .menu-open on body) */
body.menu-open {
  overflow: hidden;
}

/* =============================================================
   HERO SECTION
============================================================= */
.hero {
  background: linear-gradient(90deg, #eaf4fb 55%, #d5e6fa 100%);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 48px 0 rgba(34, 88, 126, 0.025);
  min-height: 350px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.2rem;
}

/* =============================================================
   FLEXBOX LAYOUTS (MANDATORY)
============================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: 0 2px 16px 0 var(--card-shadow);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 260px;
  flex: 1 1 270px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 24px 0 rgba(34,88,126,0.13);
  transform: translateY(-3px) scale(1.017);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafdff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(34,88,126,0.07);
  color: #163048;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Utility class for flex vertical stack on mobile */
.stack-vertical-mobile {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =============================================================
   FEATURES GRID & SERVICE CARDS
============================================================= */
.features .feature_grid,
.services .services_list,
.values_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features .feature_grid li,
.services .services_list li,
.values_list li {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: 0 2px 14px 0 var(--card-shadow);
  padding: 24px 20px;
  min-width: 230px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.18s;
  margin-bottom: 20px;
}
.features .feature_grid li:hover,
.services .services_list li:hover,
.values_list li:hover {
  box-shadow: 0 7px 24px 0 rgba(244,184,0, 0.11);
  transform: translateY(-3px) scale(1.018);
}
.features .feature_grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.services .services_list h3,
.features .feature_grid h3 {
  font-size: 1.05rem;
  margin-bottom: 9px;
}
.services .services_list p,
.features .feature_grid p {
  font-size: 0.99rem;
  color: #333c47;
}

.services .service_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.services .service_cards > div {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: 0 2px 12px 0 var(--card-shadow);
  padding: 30px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.18s;
}
.services .service_cards > div:hover {
  box-shadow: 0 7px 26px 0 rgba(34,88,126,0.16);
  transform: translateY(-3px) scale(1.018);
}
.services .service_cards img {
  width: 43px;
  height: 43px;
  margin-bottom: 14px;
}

.what-we-transport ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.what-we-transport ul li {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: 18px 15px;
  box-shadow: 0 2px 14px 0 var(--card-shadow);
  flex: 1 1 200px;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #355176;
  margin-bottom: 20px;
}
.what-we-transport ul img {
  width: 34px;
  height: 34px;
}

/* =============================================================
   TABLES, FAQ, PRICING CARDS, ETC.
============================================================= */
.price_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 2px 16px 0 var(--card-shadow);
  border-radius: var(--card-radius);
  overflow: hidden;
}
.price_table th, .price_table td {
  padding: 15px 16px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #e9edf1;
}
.price_table th {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
}
.price_table tr:last-child td {
  border-bottom: none;
}
.price_notes ul {
  margin-bottom: 10px;
  margin-top: 8px;
  color: #3e4e5d;
}
.faq .question_list {
  margin-bottom: 28px;
}
.faq .question_list dt {
  color: var(--primary);
  margin-bottom: 2px;
}
.faq .question_list dd {
  color: #2b3944;
  margin-bottom: 12px;
}

/* =============================================================
   PROCESS / STEP BY STEP
============================================================= */
.step_by_step, .step_by_step_process {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  flex-direction: column;
  margin: 18px 0;
  counter-reset: step;
}
.step_by_step li, .step_by_step_process li {
  position: relative;
  padding-left: 40px;
  font-size: 1.01rem;
  color: #22405e;
}
.step_by_step li:before, .step_by_step_process li:before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 2px;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: bold;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px 0 rgba(244,184,0,0.12);
}
ol.step_by_step, ol.step_by_step_process {
  padding-left: 0;
  margin-left: 0;
}

/* =============================================================
   CTA & BUTTONS
============================================================= */
.cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(95deg, #eaf4fb 60%, #f7f8fc 100%);
  border-radius: 32px;
  box-shadow: 0 2px 18px 0 rgba(34, 88, 126, 0.04);
}
.cta h2 {
  color: var(--primary);
}
.cta .btn-primary {
  margin-top: 18px;
}

/* =============================================================
   FOOTER
============================================================= */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
footer nav a {
  color: #c8d7ef;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: color 0.18s;
  border-radius: 5px;
  padding: 4px 8px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  background: #253247;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 38px;
  height: 38px;
}
.footer-brand span {
  color: #e5ecf7;
  font-family: var(--font-display);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: #ccd1da;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-contact span, .footer-contact a {
  line-height: 1.6;
}

@media (min-width: 800px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    margin-top: 0;
  }
}

/* =============================================================
   ABOUT & LEGAL SECTIONS
============================================================= */
.text-section {
  background: #fafdff;
  padding: 24px 18px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 var(--card-shadow);
  margin-bottom: 18px;
  color: #273b4d;
}
.legal .text-section {
  background: #fff;
}

/* =============================================================
   CONTACT SECTION
============================================================= */
.contact-details .address_block,
.contact-details .phone_email,
.contact-details .business_hours {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-details .address_block img,
.contact-details .phone_email img,
.contact-details .business_hours img {
  width: 24px;
  height: 24px;
}

/* =============================================================
   CONFIRMATION PAGE
============================================================= */
.confirmation {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(87deg, #ebf3fd 70%, #f9fefd 100%);
  border-radius: 24px;
}
.confirmation .next-steps {
  margin-top: 20px;
  background: #f7fafd;
  padding: 20px 18px;
  border-radius: 13px;
  color: #22405e;
}

/* =============================================================
   SEARCH FAQ
============================================================= */
.search_faq {
  background: #f7fafd;
  padding: 22px 15px;
  border-radius: 12px;
  margin-top: 18px;
  box-shadow: 0 2px 9px 0 var(--card-shadow);
}

/* =============================================================
   RESPONSIVE DESIGN
============================================================= */
@media (max-width: 1024px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .features .feature_grid,
  .services .service_cards,
  .services .services_list,
  .values_list,
  .what-we-transport ul,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card, .what-we-transport ul li, .services .service_cards > div, .features .feature_grid li, .services .services_list li, .values_list li {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-brand { margin-bottom: 7px; }
  .section, .cta {
    padding: 24px 6px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .features .feature_grid,
  .services .services_list,
  .what-we-transport ul,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  h1, .h1 { font-size: 1.6rem; }
  h2, .h2 { font-size: 1.22rem; }
  .btn-primary, .btn-secondary { font-size: 0.98rem; padding: 7px 14px; }
}

/* =============================================================
   COOKIE CONSENT BANNER (Bottom fixed)
============================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #142434;
  color: #fff;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  box-shadow: 0 -3px 16px 0 rgba(34, 88, 126, 0.13);
  font-size: 1rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  animation: banner-in 0.5s cubic-bezier(.5,1,.5,1) 1;
  gap: 16px;
}
@keyframes banner-in {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  padding: 8px 16px;
  margin: 0 3px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 3px 0 rgba(34,88,126,0.09);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  color: var(--secondary);
  border: 1.2px solid var(--secondary);
  font-size: 0.97rem;
  font-weight: 600;
  padding: 7px 13px;
  margin-left: 0;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 540px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1001;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20,36,52, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-ov 0.3s;
}
@keyframes fadein-ov {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--text);
  padding: 34px 26px 26px 26px;
  box-shadow: 0 8px 44px 0 rgba(34,88,126,0.15);
  border-radius: 19px;
  max-width: 370px;
  min-width: 260px;
  animation: modal-in 0.28s cubic-bezier(.6,1,.6,1);
}
@keyframes modal-in {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  color: var(--primary);
  margin-bottom: 19px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.cookie-modal-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal-list input[type='checkbox'] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-category-essential {
  font-weight: 600;
  color: var(--primary);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  color: var(--primary);
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.22s;
  z-index: 20;
}
.cookie-modal .modal-close:hover {
  color: var(--secondary);
}

/* ========== END ==========
   BlitzBote Bonn CSS - gradient_modern
========================== */
