/* ====================================================
   VINTAGE RETRO – GULDTRANSPORT EUROPA – STYLE.CSS
   Flexbox-only Modern Retro/Vintage Style, Responsive, All Components
   ==================================================== */
/* --- 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 { line-height: 1.15; }
body {
  min-height: 100vh;
  background: #FDF8F2;
  color: #252422;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
}
img { max-width: 100%; display: block; }
a { color: #294769; text-decoration: none; transition: color .18s; }
a:hover, a:focus { color: #F6B800; text-decoration: underline; }
ul, ol { padding-left: 32px; margin-bottom: 16px; }
li { margin-bottom: 8px; }
blockquote { font-style: italic; padding-left: 24px; color: #3A3432; border-left: 4px solid #F6B800; margin-bottom: 12px; }

/* --- FONT FAMILIES --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  color: #294769;
  margin-bottom: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-shadow: 1px 2px 0 #f6e5ba, 0 2px 8px #DED6CD22;
}
h1 { font-size: 2.75rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-top: 16px; }
h3 { font-size: 1.38rem; font-weight: 700; }
h4, h5 { font-size: 1.12rem; font-weight: 700; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
}

p, ul, ol, li, table, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}

/* --- MAIN CONTAINER --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}

/* --- RETRO COLOR PALETTE EXTENSION --- */
:root {
  --blue: #294769;
  --gold: #F6B800;
  --red: #C75B39;
  --beige: #FDF8F2;
  --brown: #A0845C;
  --white: #fff;
  --cream: #F9EFD4;
  --shadow: #C6BCA2;
  --border: #e5dac1;
  --heading-shadow: #f6e5ba;
  --font-display: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* --- SECTION & SPACING PATTERNS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--cream);
  border-radius: 18px;
  box-shadow: 0 2px 32px 0 #BCA87A18;
  border: 1.5px solid var(--border);
  position: relative;
}
section:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  section { padding: 24px 7px; margin-bottom: 36px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 290px;
  min-width: 260px;
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px #A0845C16;
  transition: box-shadow .26s;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 8px 32px #A0845C33;
}

/* --- GRID & FLEX UTILITIES --- */
.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;
  margin-bottom: 20px;
  background: #fffbe8;
  border-radius: 12px;
  border: 2px solid #F6B80055;
  box-shadow: 0 2px 16px #A0845C11;
  font-size: 1.08rem;
  font-style: italic;
  color: #352F2B;
  position: relative;
  transition: box-shadow .22s, transform .18s;
}
.testimonial-card h4 { font-style: normal; font-weight: bold; color: var(--blue); text-shadow: none; }
.testimonial-card:hover {
  box-shadow: 0 10px 36px #A0845C1E;
  transform: translateY(-2px) scale(1.02);
}

.feature-item, .feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 10px;
  padding: 20px 14px;
  margin-bottom: 20px;
  border: 1px solid #e5dac1;
  box-shadow: 0 2.5px 10px #a0845c09;
  transition: box-shadow .19s;
}
.feature:hover {
  box-shadow: 0 6px 24px #C6BCA233;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: flex-start;
}
.features-grid .feature { flex: 1 1 260px; min-width: 220px; }

.membership-logos, .client-logos-row, .route-icons, .transport-types {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin: 12px 0 16px;
}

.client-industries { margin-top: 16px; }
.client-industries ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.client-industries li {
  background: #ede1c6;
  border-radius: 32px;
  padding: 7px 22px;
  color: #5F5240;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.faq-accordion h3 {
  cursor: pointer;
  position: relative;
  padding-right: 28px;
  margin-bottom: 7px;
}
.faq-accordion h3:after {
  content: '+';
  position: absolute;
  right: 5px;
  color: #A0845C;
}
.faq-accordion p {
  margin-bottom: 14px;
}

/* --- TABLES (RUTTER) --- */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  margin: 18px 0 18px 0;
  font-size: 1em;
  box-shadow: 0 2px 26px #A0845C11;
  border-radius: 5px;
  overflow: hidden;
}
thead { background: #FFEBC6; }
th, td {
  padding: 13px 11px;
  border-bottom: 1.3px solid #e5dac1;
}
th {
  color: var(--blue);
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

/* --- BUTTONS & CTA --- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  padding: 11px 33px;
  border-radius: 24px;
  border: 2.2px solid var(--blue);
  background: var(--gold);
  color: var(--blue);
  box-shadow: 0 2px 8px #A0845C30;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background .2s, color .14s, transform .16s, box-shadow .186s;
  text-shadow: 0 2px 4px #FFF6D99a;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--blue);
  color: var(--gold);
  transform: translateY(-2px) scale(1.025);
}

.btn-secondary {
  background: var(--blue);
  color: var(--gold);
  border: 2.2px solid var(--gold);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F6B800;
  color: #294769;
}

.link-understated {
  color: #C75B39;
  text-decoration: underline dashed;
  letter-spacing: 0.02em;
  font-size: 1.06rem;
  transition: color .15s;
  font-family: var(--font-display);
  padding-left: 4px;
}
.link-understated:hover, .link-understated:focus { color: #8c4b24; }

/* Retro button shadow & press effect */
.btn-primary:active, .btn-secondary:active {
  box-shadow: 0 1px 2px #A0845C44;
  transform: translateY(0.5px) scale(.98);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #F6B800;
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 5px 12px #A0845C11;
  padding: 0;
  margin-bottom: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 10px 16px;
  gap: 14px;
}
header a img {
  height: 48px;
}

nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin: 0 14px;
}
nav.main-nav a {
  font-family: var(--font-display);
  color: var(--blue);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  text-shadow: 0px 1px 0 #fff6c090;
  padding: 2px 3px;
  transition: color .15s, text-shadow .16s;
  border-radius: 5px;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: #FFF4C2;
  color: #C75B39;
  text-shadow: none;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fffbe8;
  border: 2px solid var(--blue);
  border-radius: 7px;
  color: var(--blue);
  font-size: 2.2rem;
  width: 44px; height: 44px;
  cursor: pointer;
  box-shadow: 0 2px 8px #F6B80022;
  margin-left: 15px;
  transition: background .13s, box-shadow .17s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fff2b2;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #294769ee;
  z-index: 9999;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 18px 24px 18px;
  box-shadow: 0 5px 60px #00000088;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.85,0,0.11,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #F6B800;
  color: var(--blue);
  font-size: 2rem;
  border: none;
  border-radius: 7px;
  align-self: flex-end;
  margin-bottom: 16px;
  padding: 6px 15px;
  cursor: pointer;
  font-family: var(--font-display);
  transition: background .14s, color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff2b2;
  color: #C75B39;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100vw;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: #fffbe8;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  padding: 12px 0 6px 0;
  border-bottom: 1.3px dashed #F6B80040;
  text-shadow: 0px 2px 2px #3a3a1c60;
  transition: color .13s, background .13s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F6B800;
  background: #1A2739;
}

@media (max-width: 1020px) {
  nav.main-nav { gap: 12px; }
  header .container { flex-wrap: wrap; }
}
@media (max-width: 830px) {
  nav.main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 831px) {
  .mobile-menu, .mobile-menu.open { display: none !important; }
  .mobile-menu-toggle { display: none; }
}

/* --- FOOTER --- */
footer {
  background: #294769;
  color: #F6B800;
  width: 100%;
  padding: 48px 0 32px 0;
  border-top: 2.6px solid #F6B800;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-right: 32px;
}
footer nav.footer-nav a {
  color: #fdf8f2;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  padding: 2px 0;
  border-bottom: 1px dotted #F6B80090;
  transition: color .15s;
}
footer nav.footer-nav a:hover { color: #FAC759; }
.footer-contact {
  font-size: 1rem;
  color: #FFEBC6;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-right: 26px;
  margin-bottom: 14px;
}
.footer-logo img { height: 48px; margin-top: 20px; }
footer img { display: inline-block; margin-right: 9px; vertical-align: middle; height: 20px; }

@media (max-width: 800px) {
  footer .container { flex-direction: column; align-items: stretch; gap: 12px; }
  .footer-logo { margin: 0 auto; }
}

/* --- CTA/CONTACT --- */
.contact-highlight {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #C75B39;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.14rem;
  margin-top: 16px;
}

.address-info p { display: flex; align-items: center; gap: 7px; }
.address-info img { height: 1.3em; }

/* --- LIST/FEATURES/BENEFITS ETC --- */
.text-section {
  background: #fffbe8;
  border-radius: 9px;
  padding: 18px 14px;
  margin-bottom: 14px;
  box-shadow: 0 2px 7px #A0845C08;
}
.benefits-highlight ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.benefits-highlight li {
  background: #efe0ad;
  color: #584516;
  padding: 5px 15px;
  border-radius: 18px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.01rem;
}

/* --- OL/UL Retro Dots --- */
ul:not(.footer-nav):not(.client-industries ul) li::before {
  content: '\2022';
  color: var(--gold);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 1.5em;
}
ol li::marker {
  color: var(--blue);
  font-weight: bold;
}

/* --- MODALS / BANNERS --- */
/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 11000;
  display: flex;
  flex-direction: row;
  gap: 36px;
  background: #fffbe8;
  border-top: 3px solid #F6B800;
  box-shadow: 0 -3px 28px #A0845C25;
  padding: 28px 24px 24px 24px;
  align-items: center;
  width: 100vw;
  transition: transform 0.42s cubic-bezier(.8,0,.2,1), opacity .28s;
}
.cookie-banner.hide { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-banner-msg { font-size: 1rem; color: #313130; flex: 1; font-family: var(--font-body); }
.cookie-banner-btns { display: flex; gap: 18px; }
.cookie-banner-btns .btn-primary, .cookie-banner-btns .btn-secondary {
  font-size: 1rem;
  padding: 8px 25px;
  border-radius: 20px;
}
.cookie-settings-btn {
  background: transparent;
  border: 2px solid #C75B39;
  color: #C75B39;
  font-family: var(--font-display);
  padding: 8px 21px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #FFEBC6;
}

@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 12px 22px 12px;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 12000;
  background: #29476999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity .28s;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
.cookie-modal-content {
  background: #fffbe8;
  border-radius: 16px;
  box-shadow: 0 12px 48px #291c0c34;
  padding: 38px 34px 29px 34px;
  min-width: 320px; max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #C75B39;
  padding: 3px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background .14s;
}
.cookie-modal-close:hover { background: #F9EFD4; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.13rem;
}
.cookie-category label {
  font-family: var(--font-body);
  color: #252422;
}
.cookie-category input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: #F6B800;
  border: 1.2px solid var(--gold);
}
.cookie-category.essential label { color: #A0845C; font-style: italic; }

/* --- ANIMATIONS --- */
@keyframes retroPop {
  0% { transform: scale(.94); box-shadow: 0 2px 12px #A0845C12; }
  95% { transform: scale(1.04); box-shadow: 0 8px 44px #A0845C25; }
  100% { transform: scale(1); box-shadow: 0 4px 16px #A0845C16; }
}
.card:hover, .btn-primary:focus, .btn-secondary:focus {
  animation: retroPop 0.32s both;
}

/* --- MEDIA QUERIES FOR RESPONSIVENESS --- */
@media (max-width: 1100px) {
  .features-grid { gap: 18px; }
  .membership-logos, .client-logos-row, .route-icons { gap: 14px; }
}
@media (max-width: 900px) {
  .card-container, .content-grid, .features-grid, .membership-logos, .route-icons, .client-logos-row {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  section { padding: 23px 3px; margin-bottom: 36px; }
  .content-wrapper { gap: 14px; }
  .features-grid, .content-grid, .card-container { flex-direction: column; gap: 16px; }
  .testimonial-card, .feature, .feature-item, .card { min-width: 90%; }
  .btn-primary, .btn-secondary { font-size: .95rem; padding: 9px 18px; }
  th, td { font-size: .96rem; }
  .footer-logo img { height: 36px; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.18rem; }
  .btn-primary, .btn-secondary { font-size: 0.9rem; padding: 6px 10px; }
  section { padding: 13px 0; }
}

/* --- Z-INDEX LAYERING --- */
.mobile-menu, .cookie-modal, .cookie-banner { z-index: 9999; }

/* --- VISUAL RETRO ELEMENTS/DECOR --- */
/* Tiled subtle background pattern for an authentic touch */
body {
  background: repeating-linear-gradient(135deg, #FDF8F2 0px, #FDF8F2 48px, #F9EFD4 48px, #F9EFD4 96px);
}
section {
  background: repeating-linear-gradient(90deg, #fffbe8 0 44px, #f9efd4 44px 88px);
}

/* Retro frame for hero sections */
section:first-of-type {
  outline: 4px dashed #A0845C;
  outline-offset: 2px;
}

/* --- ACCESSIBILITY/CONTRAST --- */
.testimonial-card, .testimonial-card p, .testimonial-card blockquote {
  color: #251e1b;
  background: #FFFBE8;
  border-color: #F6B800BB;
}

/* --- FOCUS STYLES FOR A11Y --- */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-settings-btn:focus {
  outline: 2.5px dashed #C75B39;
  outline-offset: 1.5px;
  background: #f6b90025;
}

/* --- CUSTOM CLASSES/SUPPORT --- */
.next-steps.text-section h2 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}

/* --- PRINT --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, .container, .content-wrapper { box-shadow: none!important; outline: none!important; }
}

/* --- END OF CSS --- */
