/* ===================================================================
   Neblina Kurier Minimalist CSS Framework
   Author: Senior CSS Developer
   mobile-first, flexbox-only layout, modern/minimalist, brand styling
==================================================================== */

/* ------------- CSS Reset & Normalize ----------------- */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: #F4F4F9;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img, picture, video {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; color: #034078; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
h1 { font-size: 2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.125rem; margin-bottom: 12px; color: #222; font-weight: 600; }
p { margin-bottom: 16px; }
strong { font-weight: bold; }

/* ------------- Container & Layouts ------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(3,64,120,0.03);
  position: relative;
}
@media (max-width: 900px) {
  .section { padding: 32px 8px; margin-bottom: 40px; }
}

/* -------------------- Header --------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #E5E8ED;
  position: sticky;
  top: 0;
  z-index: 2200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px 14px 20px;
}
header img { height: 38px; width: auto; }
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}
header nav a:hover,
header nav a:focus {
  color: #034078;
}
.btn-primary {
  background: #034078;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1px 8px rgba(3,64,120,0.07);
  transition: background .18s, box-shadow .18s;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #FF9000;
  color: #222;
  box-shadow: 0 2px 16px rgba(255,144,0,0.09);
}

/* ----------- Mobile Menu (Burger) ------------- */
.mobile-menu-toggle {
  display: none;
  background: #034078;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: background .14s;
  z-index: 2501;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FF9000;
  color: #222;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(3,64,120,0.94);
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.7,.05,.6,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  z-index: 2444;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 18px 0 0;
  font-size: 2rem;
  background: #fff;
  color: #034078;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
  transition: background .13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FF9000;
  color: #222;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 28px;
  align-items: flex-start;
  padding-left: 44px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 9px 0;
  display: block;
  transition: color .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FF9000;
}
@media (max-width: 1020px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* --------------- Hero Section ------------------- */
.hero {
  background: #F4F4F9;
  border-radius: 0;
  box-shadow: none;
  padding: 48px 0 36px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 280px;
}
.hero h1 {
  font-size: 2.2rem;
  color: #034078;
  margin-bottom: 18px;
}
.hero .subheadline {
  font-size: 1.2rem;
  color: #3A4554;
  margin-bottom: 26px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
@media (max-width: 640px) {
  .hero {
    padding: 36px 0 22px 0;
  }
  .hero h1 { font-size: 1.35rem; }
  .hero .container { min-height: 130px; }
}

/* ---------------- Sections, Cards, Features ---------------- */
.feature-grid, .service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid {
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(3,64,120,0.06);
  padding: 26px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  flex: 0 1 305px;
  gap: 15px;
  transition: box-shadow .2s, transform .17s;
  margin-bottom: 20px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 4px 22px rgba(3,64,120,0.11), 0 2px 10px rgba(255,144,0,0.03);
  transform: translateY(-3px) scale(1.015);
}
.feature img { height: 46px; width: 46px; margin-bottom: 6px; }
.service-card, .service-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(3,64,120,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 18px 18px 18px;
  min-width: 190px;
  flex: 0 1 270px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .16s;
}
.service-card img, .service-item img { height: 38px; width: 38px; margin-bottom: 4px; }
.service-card:hover, .service-card:focus-within, .service-item:hover, .service-item:focus-within {
  box-shadow: 0 4px 20px rgba(3,64,120,0.09), 0 1px 6px rgba(255,144,0,0.02);
  transform: translateY(-2px) scale(1.01);
}
.package-options ul, .service-summary {
  margin-top: 14px; margin-bottom: 6px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }

.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;
}

@media (max-width: 900px) {
  .feature-grid, .service-cards, .service-list, .content-grid { flex-direction: column; gap: 18px; }
  .feature, .service-card, .service-item { min-width: unset; width: 100%; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ----------- Testimonials ----------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  border-radius: 12px;
  background: #FAFAFB;
  box-shadow: 0 2px 20px rgba(3,64,120,0.06);
  min-width: 240px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  border-left: 4px solid #034078;
}
.testimonial-card p {
  color: #292929;
  font-size: 1.09rem;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #666;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card:before {
  content: '';
  display: block;
  width: 28px;
  height: 6px;
  border-radius: 6px;
  background: #FF9000;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card { width: 100%; }
}

/* ----------------- Table Styles ------------------- */
.price-table {
  width: 100%;
  margin: 16px 0 20px 0;
  border-collapse: collapse;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(3,64,120,0.04);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 13px 10px;
  border-bottom: 1px solid #E9E9F5;
}
.price-table th {
  background: #F4F4F9;
  color: #034078;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
}
.price-table tr:last-child td { border-bottom: 0; }
@media (max-width: 600px) {
  .price-table th, .price-table td { padding: 9px 4px; }
}

/* ------------------- FAQ Styles ------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 9px rgba(3,64,120,0.03);
  padding: 18px 12px 14px 18px;
  transition: box-shadow .15s, transform .12s;
  margin-bottom: 20px;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 4px 18px rgba(3,64,120,0.07);
  transform: scale(1.012);
}

/* --------------- Steps Overview, List Styles --------------- */
.steps-overview {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 22px 0 10px 0;
  counter-reset: stp;
}
.steps-overview li {
  position: relative;
  padding-left: 36px;
  min-height: 32px;
  font-size: 1.07rem;
  color: #1B222B;
}
.steps-overview li:before {
  counter-increment: stp;
  content: counter(stp);
  background: #034078;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  border-radius: 50%;
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute; left: 0; top: 2px;
}

ul, ol { margin-bottom: 14px; }
ul li, ol li {
  padding-left: 8px;
  margin-bottom: 4px;
  font-size: 1rem;
}

/* ------------- Contact Page Blocks ------------- */
.contact-block {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 14px rgba(3,64,120,0.04);
  padding: 30px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  max-width: 570px;
  min-width: 200px;
  margin-bottom: 20px;
}
.address-block, .phone-email, .business-hours {
  display: flex;
  align-items: center;
  gap: 10px;
}
.address-block img, .phone-email img, .business-hours img {
  height: 22px; width: 22px;
}
.embedded-map {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.directions-text { margin-top: 8px; font-size: 1rem; }

/* ------------ Text Section/List/Legal ------------ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}
.legal-text {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 12px rgba(3,64,120,0.05);
  padding: 20px 14px 18px 20px;
  font-size: 1.01rem;
  color: #353a41;
}

/* ------------- Footer ------------- */
footer {
  background: #fff;
  border-top: 1px solid #E5E8ED;
  margin-top: 70px;
  padding: 30px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
footer img { height: 34px; margin-bottom: 9px; }
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 7px;
}
footer nav a {
  color: #034078;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .15s;
  padding: 5px 0;
}
footer nav a:hover,
footer nav a:focus {
  color: #FF9000;
}
.contact-info {
  font-size: 1rem;
  color: #676e7c;
  margin-bottom: 0;
}
footer .copyright {
  font-size: 0.97rem;
  color: #B2B8C4;
  margin: 20px 0 10px 0;
}
@media (max-width: 800px) {
  footer .container { padding-left: 8px; padding-right: 8px; }
}

/* --------- Thank You Page --------- */
.thank-you {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(3,64,120,0.05);
  padding: 30px 22px 22px 22px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 530px;
}
.thank-you ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 24px;
  list-style: disc inside;
}

/* --------- Cookie Consent Banner & Modal ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #E5E8ED;
  box-shadow: 0 -4px 18px rgba(3,64,120,0.08);
  width: 100vw;
  z-index: 2800;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 12px 22px 12px;
  gap: 28px;
  flex-wrap: wrap;
  transition: transform .33s cubic-bezier(.7,.05,.6,1), opacity .2s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  max-width: 450px;
  color: #222;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 22px;
  border: none;
  transition: background .16s, color .13s;
  margin-top: 0;
}
.cookie-btn.accept { background: #034078; color: #fff; }
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #FF9000; color: #222; }
.cookie-btn.reject { background: #E5E8ED; color: #034078; }
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #FF9000; color: #222; }
.cookie-btn.settings { background: #fff; color: #034078; border: 1px solid #034078; }
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: #034078; color: #fff; }

.cookie-modal {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.34);
  z-index: 2900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .23s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px;
  max-width: 420px;
  min-width: 240px;
  width: 92vw;
  padding: 35px 28px 28px 28px;
  box-shadow: 0 6px 32px rgba(3,64,120,0.15);
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: modalIn .42s cubic-bezier(.7,.05,.6,1);
}
@keyframes modalIn {
  0% { opacity: 0; transform: translateY(22px) scale(0.98); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal-content h2 {
  font-size: 1.15rem;
  color: #034078;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  cursor: pointer;
}
.cookie-toggle {
  width: 44px; height: 25px;
  border-radius: 13px;
  background: #E5E8ED;
  border: none;
  position: relative;
  transition: background .17s;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #FF9000;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute; left: 4px; top: 4px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(3,64,120,0.09);
  transition: transform .18s;
}
.cookie-toggle:checked:before {
  transform: translateX(19px);
}
.cookie-category .info {
  font-size: 0.92rem;
  color: #B2B8C4;
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 580px) {
  .cookie-banner { flex-direction: column; gap: 13px; padding: 17px 5px; }
  .cookie-modal-content { padding: 20px 10px 14px 10px; }
}

/* ----------- Responsive Typography ------------- */
@media (max-width: 780px) {
  html { font-size: 15px; }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.06rem; }
  .section { padding: 20px 4px; }
}

@media (max-width: 520px) {
  html { font-size: 14px; }
  .container { padding-left: 5px; padding-right: 5px; }
}

/* -------- General Utility -------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }

/* ----------- Accessibility ----------- */
a:focus-visible, button:focus-visible, .btn-primary:focus-visible {
  outline: 2px dashed #FF9000;
  outline-offset: 2px;
}

/* ------------- Hide on Desktop and Mobile Utility ----------- */
.d-mobile { display: none !important; }
.d-desktop { display: block !important; }
@media (max-width: 1020px) {
  .d-mobile { display: block !important; }
  .d-desktop { display: none !important; }
}

/*----------------------- END ----------------------*/
