/* RESET & BASE STYLES ------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2e1f0d;
  background: #F8F8F8;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #133E7C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #aa4f08;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
strong, b {
  font-weight: bold;
  color: #a05c25;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #133E7C;
  background: #FFF9ED;
  border-left: 4px solid #F2C14E;
  margin-bottom: 12px;
  padding: 12px 20px;
  border-radius: 8px;
  font-style: italic;
}
:focus {
  outline: 2px dashed #F2C14E;
  outline-offset: 2px;
}

/* VINTAGE RETRO COLOR PALETTE
--------------------------------*/
:root {
  --primary: #133E7C;
  --secondary: #F2C14E;
  --accent: #F8F8F8;
  --brown: #a05c25;
  --deep-orange: #aa4f08;
  --beige: #FFF9ED;
  --mint: #E7F3EB;
  --vintage-blue: #3B5998;
  --pink: #FBCEC4;
  --soft-shadow: 0 2px 16px rgba(111, 71, 28, 0.12);
  --dark-text: #2e1f0d;
  --card-rad: 18px;
}

/* TYPOGRAPHY (RETRO INSPIRED)
------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Raleway', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.1;
}
h1 { font-size: 2.875rem; margin-bottom: 24px; }
h2 { font-size: 2.25rem; margin-bottom: 16px; }
h3 { font-size: 1.38rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
.subtitle {
  font-size: 1.25rem;
  color: var(--brown);
  letter-spacing: 0.5px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 22px;
}
p {
  margin-bottom: 14px;
  font-size: 1.06rem;
  color: var(--dark-text);
}

/* VINTAGE PATTERNS & TEXTURES AS SECTIONS -------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--beige);
  border-radius: var(--card-rad);
  box-shadow: var(--soft-shadow);
  border: 2px dashed #F2C14E44;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
}

/* HEADER & NAVIGATION (RETRO BANNER STYLE) ------------*/
header {
  background: var(--secondary);
  box-shadow: 0 2px 18px rgba(160, 92, 37, 0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 16px;
  gap: 12px;
}
header img {
  height: 46px;
}
.main-nav {
  display: flex;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--primary);
  background: transparent;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,.main-nav a:focus {
  background: #FBCEC4;
  color: var(--deep-orange);
}

.cta-btn {
  background: var(--primary);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(19,62,124,0.13);
  border: 2px solid var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--deep-orange);
  color: #fff;
  box-shadow: 0 8px 26px rgba(160,92,37,0.18);
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE NAVIGATION -----------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--secondary);
  font-size: 2.2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--secondary);
  margin-left: 14px;
  cursor: pointer;
  z-index: 201;
  transition: background .15s, color .15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #133E7C;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--beige);
  box-shadow: 0 2px 30px rgba(160, 92, 37, 0.32);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7,0,0.3,1);
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  padding: 28px 24px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-left: auto;
  margin-bottom: 22px;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  z-index: 4001;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--deep-orange);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  padding: 11px 4px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 10px;
  text-align: left;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FBCEC4;
  color: var(--deep-orange);
}

@media (max-width: 1000px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION ----------------------------------------*/
.hero {
  background: repeating-linear-gradient(135deg, #F2C14E, #F2C14E 20px, #FBCEC4 20px, #FBCEC4 40px);
  box-shadow: 0 8px 35px rgba(160,92,37,0.10);
  border-bottom: 6px dotted #a05c25;
  width: 100%;
  border-radius: 0 0 38px 38px;
  margin-bottom: 54px;
}
.hero .container {
  min-height: 400px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.hero .content-wrapper {
  margin: 0 auto;
  text-align: center;
  max-width: 700px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #aa4f08;
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 #ffe3cb, 6px 6px 0 #fff9ed;
}
.hero .subtitle {
  color: #a05c25;
}

/* FEATURES (RETRO CARDS) -----------------------------*/
.features, .feature-grid, .usp-list {
  width: 100%;
}
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--mint);
  border-radius: var(--card-rad);
  box-shadow: 0 2px 9px rgba(19,62,124,0.08);
  padding: 28px 22px 22px 22px;
  min-width: 210px;
  flex: 1 1 250px;
  border: 2px solid #F2C14E44;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .16s, transform .14s;
}
.feature-item img {
  width: 52px; height: 52px;
  object-fit: contain;
}
.feature-item h3 {
  font-size: 1.1rem;
  color: #133E7C;
  margin-bottom: 5px;
}
.feature-item:hover {
  box-shadow: 0 6px 22px #a05c2520;
  transform: translateY(-2px) scale(1.028);
  background: #fff9ed;
}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.usp-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FBCEC4;
  border-radius: var(--card-rad);
  padding: 22px 16px 16px 16px;
  min-width: 220px;
  box-shadow: 0 1px 6px #9c623212;
  border: 2px solid #133E7C13;
}
.usp-item img {
  width: 42px; height: 42px;
  margin-bottom: 8px;
}
.usp-item strong {
  color: var(--deep-orange);
  font-weight: 700;
  font-size: 1.13rem;
}
.usp-item p {
  color: #2e1f0d;
  margin-bottom: 0;
}

/* SERVICE CARDS (ANGEBOTE PAGE) -----------------------*/
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 34px 0 32px 0;
  justify-content: flex-start;
}
.service-card {
  background: #FFF9ED;
  padding: 28px 20px 24px 20px;
  border-radius: 26px;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 3px 16px #aa4f0820;
  flex: 1 1 248px;
  min-width: 208px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  border: 3px double var(--secondary);
  transition: box-shadow .17s, border .17s;
}
.service-card img {
  width: 54px; height: 54px;
  margin-bottom: 9px;
}
.service-card h3 {
  color: var(--primary);
  font-size: 1.14rem;
  margin-bottom: 7px;
}
.service-card .service-price {
  color: var(--brown);
  background: #e7f3eb;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin-top: 5px;
  font-weight: bold;
  padding: 6px 13px;
  letter-spacing: 1px;
}
.service-card:hover {
  box-shadow: 0 10px 38px #133E7C13;
  border-color: var(--brown);
}

/* SECTION SPACING & FLEX LAYOUTS -------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF9ED;
  border-radius: var(--card-rad);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 10px #a05c2530;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF9ED;
  border-radius: 29px;
  box-shadow: 0 1px 8px #9c623215;
  margin-bottom: 20px;
  border: 2px solid #E7F3EB;
  flex-direction: row;
  transition: box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px #F2C14E33;
}
.testimonial-card blockquote {
  background: transparent;
  color: #133E7C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  border-left: 6px solid #F2C14E;
  margin-bottom: 3px;
  padding-left: 13px;
}
.testimonial-card p {
  font-size: 1rem;
}
.feature-item strong,
.usp-item strong {
  color: #aa4f08;
}

/* CONTACT SECTION --------------------------------------*/
.contact {
  background: var(--mint);
  border-radius: var(--card-rad);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 10px #a05c2520;
  border: 2px solid #F2C14E44;
}
.contact ul {
  margin-bottom: 16px;
}
.location-info {
  color: #a05c25;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 0;
}
.public-transport h3 {
  margin-bottom: 8px;
  color: var(--deep-orange);
}

/* FOOTER ------------------------------------------------*/
footer {
  background: #133E7C;
  border-radius: 36px 36px 0 0;
  padding: 0;
  margin-top: 42px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 16px;
}
footer img {
  width: 60px;
  height: 60px;
}
.footer-nav {
  display: flex;
  gap: 18px;
}
.footer-nav a {
  color: #F2C14E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: transparent;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F2C14E;
  color: #133E7C;
}
footer p {
  color: #fff9ed;
  font-size: 0.95rem;
}

/* COOKIE CONSENT BANNER & MODAL -----------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFF9ED;
  color: #2e1f0d;
  padding: 26px 24px 22px 24px;
  box-shadow: 0 -2px 20px #a05c2534;
  z-index: 4800;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 1.05rem;
  transition: transform .3s;
}
.cookie-banner.hide {
  transform: translateY(128px);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: 22px;
}
.cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 23px;
  border: 2px solid var(--primary);
  font-size: 1rem;
  padding: 9px 22px;
  font-weight: 700;
  cursor: pointer;
  margin: 4px 0;
  transition: background .2s, color .2s, border .12s;
}
.cookie-btn.accept {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #aa4f08;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--deep-orange);
  border: 2px solid #aa4f08;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #FBCEC4;
  color: #a05c25;
}
.cookie-btn.settings {
  background: #E7F3EB;
  color: #133E7C;
  border: 2px solid #E7F3EB;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #F2C14E;
  color: #133E7C;
  border: 2px solid #F2C14E;
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #00000066;
  z-index: 4900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #FFF9ED;
  color: #2e1f0d;
  padding: 32px 22px 28px 22px;
  min-width: 320px;
  max-width: 90vw;
  border-radius: 25px;
  box-shadow: 0 10px 28px #a05c253b;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
.cookie-modal-content h3 {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 500;
  color: #a05c25;
  font-size: 1.01rem;
}
.cookie-category input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: #F2C14E;
  margin-right: 5px;
  transition: accent-color 0.17s;
}
.cookie-modal .cookie-btn {
  margin-top: 9px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: var(--secondary);
  border-radius: 50%;
  border: 2px solid var(--primary);
  width: 38px;
  height: 38px;
  font-size: 1.13rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 4910;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  background: var(--deep-orange);
  color: #fff;
}

/* ABOUT PAGE - ICON ROWS, TEAM, ETC. ------------------*/
.icons-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 22px 0 12px 0;
  justify-content: flex-start;
}
.icons-row img {
  width: 48px; height: 48px;
  opacity: 0.92;
}

/* MISC ELEMENTS & EFFECTS ------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: #F2C14E24;
}
::-webkit-scrollbar-thumb {
  background: #F2C14E;
  border-radius: 20px;
}

/* BUTTONS ---------------------------------------------*/
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/* SECTION/FORMATTING SPACING --------------------------*/
.section + .section, .features + .services, .services + .features {
  margin-top: 44px;
}

/* RESPONSIVE DESIGN: MOBILE FIRST ---------------------*/
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 8px;
  }
  .main-nav {
    display: none;
  }
  .hero .container {
    padding-top: 32px;
    min-height: 208px;
    flex-direction: column;
  }
  .hero h1 {
    font-size: 1.45rem;
    margin-bottom: 18px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  .features, .contact, .section {
    padding: 25px 6px;
  }
  .feature-grid, .service-grid, .usp-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-card, .usp-item {
    min-width: unset;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 4px;
  }
  .footer-nav {
    gap: 14px;
    font-size: .95rem;
  }
  .testimonials .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  .icons-row {
    gap: 13px;
  }
}

@media (max-width:480px) {
  .hero .container {
    padding-top: 12px;
  }
  .feature-item, .usp-item, .service-card {
    padding: 18px 8px 14px 8px;
  }
  .footer-nav {
    gap: 9px;
    font-size: .93rem;
  }
}

/* ADDITIONAL RETRO TOUCHES ----------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: '';
  position: absolute;
  top: -35px; left: -45px;
  width: 110px; height: 110px;
  background: repeating-linear-gradient(135deg, #F2C14E, #F2C14E 7px, #FBCEC4 7px, #FBCEC4 14px);
  opacity: 0.16;
  border-radius: 50%;
  z-index: 1;
}
.hero:after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 130px; height: 130px;
  background: radial-gradient(circle, #3B5998 35%, transparent 81%);
  opacity: 0.09;
  border-radius: 50%;
  z-index: 1;
}
.hero .content-wrapper {
  position: relative;
  z-index: 2;
}

/* RETRO SHADOWS & CARD EFFECTS ------------------------*/
.card, .feature-item, .usp-item, .testimonial-card, .service-card {
  box-shadow: var(--soft-shadow);
  border-radius: var(--card-rad);
  background: #FFF9ED;
  border: 2px solid #F2C14E29;
}

/* MICRO-INTERACTIONS ----------------------------------*/
.feature-item, .usp-item, .service-card, .testimonial-card, .cta-btn, .cookie-btn {
  transition: transform .15s, box-shadow .17s, border .16s, background .15s, color .14s;
}
.feature-item:active,
.usp-item:active,
.cta-btn:active,
.cookie-btn:active {
  transform: scale(.97) translateY(2px);
}

/* PAGE-SPECIFIC STYLES (FOOTER SECTIONS for POLICY PAGES) */
section.footer {
  margin: 60px auto;
  max-width: 780px;
  background: #FFF9ED;
  border-radius: 23px;
  padding: 39px 12px 32px 18px;
  box-shadow: 0 2px 14px #aa4f0820;
  border: 2px solid #F2C14E29;
}

/* PRINT STYLES - policy pages only */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
  .section, .features, .card, .testimonial-card, .service-card {
    box-shadow: none !important;
    border: none !important;
    background: #fff !important;
  }
}
