/* ====== Squeaky Mount Logistics Creative Artistic CSS ====== */
/* Reset / Normalize + Box sizing */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd {
  margin: 0; }
ul, ol { list-style: none; padding: 0; }
img { max-width: 100%; display: block; height: auto; border: 0; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button, input, select, textarea { font-family: inherit; font-size: inherit; outline: none; background: none; border: none; }
button { cursor: pointer; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F2F6FB;
  color: #18273a;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

:root {
  --primary: #1C4670;
  --primary-dark: #13325b;
  --secondary: #F2F6FB;
  --accent: #E88331;
  --accent-dark: #C05A00;
  --bg-light: #FFFFFF;
  --border-radius: 20px;
  --shadow-card: 0 8px 28px rgba(28, 70, 112, 0.10), 0 1.5px 7px 0 rgba(232,131,49,0.16);
}

.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

/* Typography */
h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-shadow: 0 2px 0 rgba(232,131,49,0.10);
}
h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.75px;
  margin-bottom: 14px;
  line-height: 1.18;
}
h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
p, li, blockquote {
  font-size: 1.04em;
  color: #263347;
}
blockquote {
  font-style: italic;
  background: var(--secondary);
  border-left: 5px solid var(--accent);
  padding: 16px 18px;
  border-radius: 10px;
}
strong { font-weight: bold; }

/* Headings Artistic Treatment */
h1, h2, h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  text-transform: none;
  letter-spacing: -0.5px;
}
h2 {
  background: linear-gradient(to right, var(--primary) 60%, var(--accent) 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* Artistic elements */
.section, .content-wrapper, .card, .testimonial-card {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

/* Header/Navbar */
header {
  width: 100%;
  background: var(--bg-light);
  box-shadow: 0 3px 12px -2px rgba(28, 70, 112,0.05);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 101;
  display: flex;
  flex-direction: column;
}
.logo-header {
  display: flex;
  align-items: center;
  padding: 12px 0 0 0;
  margin-bottom: 2px;
}
.logo-header img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 3px 8px rgba(232, 131, 49, 0.04));
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 8px 0 8px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.09em;
  padding: 8px 16px;
  border-radius: 14px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #fff;
}
.cta-header {
  margin-left: auto;
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 18px;
  font-size: 1.05em;
  box-shadow: 0 2px 10px 0 rgba(28,70,112,0.11);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-header:hover, .cta-header:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 5px 18px -3px var(--accent);
}

/* Mobile burger menu */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  z-index: 202;
  margin-left: 16px;
  transition: background 0.2s;
  box-shadow: 0 1px 5px 0 rgba(28, 70, 112,0.08);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary);
  outline: 3px solid var(--accent-dark);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-light);
  z-index: 3001;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 28px 40px 28px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,.32,.43,1.09);
  box-shadow: 0 6px 32px 0 rgba(28,70,112,0.19);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.1rem;
  margin-bottom: 24px;
  align-self: flex-end;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a {
  padding: 14px 10px;
  color: var(--primary);
  font-size: 1.27em;
  font-weight: 600;
  border-radius: 11px;
  transition: background 0.2s, color 0.15s;
  position: relative;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

/* ===== Hero Section ===== */
.hero-section {
  background: linear-gradient(120deg, var(--accent) 6%, var(--primary) 98%);
  color: #fff;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 16px 46px 0 rgba(28, 70, 112,0.19);
  margin-bottom: 60px;
  padding: 44px 0 62px 0;
  overflow: hidden;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.6rem;
  text-shadow: 0 4px 24px rgba(28,70,112,0.10);
}
.hero-section p {
  font-size: 1.32rem;
  color: #fff;
  max-width: 600px;
  margin-bottom: 14px;
  text-shadow: 0 2px 18px rgba(28,70,112,0.25);
}
.cta-main {
  display: inline-block;
  font-family: 'Montserrat',Arial,sans-serif;
  color: #fff;
  background: var(--accent);
  border-radius: 28px;
  box-shadow: 0 4px 18px 0 rgba(232,131,49,0.12);
  font-size: 1.25em;
  font-weight: 700;
  padding: 16px 34px;
  margin-top: 10px;
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.2s, transform 0.18s, box-shadow 0.22s;
  position: relative;
  cursor: pointer;
}
.cta-main:hover, .cta-main:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 var(--accent);
}

/* Features section */
.features-section {
  background: var(--secondary);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li {
  min-width: 230px;
  flex: 1 1 200px;
  color: var(--primary-dark);
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 8px rgba(28,70,112,0.05);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 18px;
  font-weight: 600;
  font-size: 1.1em;
  transition: box-shadow 0.14s, transform 0.16s;
}
.feature-grid li:hover { box-shadow: 0 6px 18px var(--accent); transform: translateY(-2px); }
.feature-grid img { width: 34px; height: 34px; }

/* Cards & Info sections */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 250px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.card:hover { box-shadow: 0 8px 42px 0 var(--accent); }

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

.services-list, .fleet-categories, .tech-features-list, .value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 10px;
}
.services-list li, .fleet-categories li, .tech-features-list li, .value-cards li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--secondary);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 1.5px 8px rgba(28,70,112,0.06);
  font-size: 1.03em;
}
.services-list img, .fleet-categories img, .tech-features-list img, .value-cards img {
  width: 32px;
  height: 32px;
}

/* Stats/Numerical highlight */
.statistics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 20px;
  justify-content: flex-start;
}
.statistics-grid > div {
  flex: 1 1 150px;
  background: #fff;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 1px 8px rgba(28,70,112,0.09);
  padding: 18px 12px;
  margin-bottom: 16px;
}
.statistics-grid strong {
  font-family: 'Montserrat',sans-serif;
  font-size: 2.25em;
  color: var(--accent);
  display: block;
}
.statistics-grid span { color: var(--primary-dark); font-size: 1.01em; }

/* Testimonials */
.testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(110deg, #fff 60%, #fbeee5 100%);
  border-radius: 25px;
  box-shadow: 0 4px 28px 0 rgba(28,70,112,0.07);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: #fff;
  border-radius: 17px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 34px var(--accent);
  transform: translateY(-2px) scale(1.012);
}
.testimonial-card blockquote { flex: 1; font-size: 1.1em; color: #23395a; background: none; border-left: 5px solid var(--accent); }
.testimonial-card span {
  font-size: 0.98em;
  color: var(--accent-dark);
  font-style: italic;
  font-weight: 500;
}

/* Calls to action banner */
.cta-banner-section, .services-cta-banner {
  background: linear-gradient(102deg,var(--primary) 66%, var(--accent) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 40px 16px 38px 16px;
  margin-bottom: 60px;
  box-shadow: 0 10px 36px 0 rgba(28,70,112,0.14);
  display: flex;
  align-items: center;
}
.cta-banner-section h2, .services-cta-banner h2 { color: #fff; margin-bottom: 10px; }

/* Feature/Benefit items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Flex Spacing/Layouts */
.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;
}

/****** Contact Info ******/
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--secondary);
  border-radius: 13px;
  padding: 11px 16px;
  font-size: 1em;
}
.contact-info-list img{ width: 26px; }

/* Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 20px 0;
  border-radius: 28px 28px 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 14px 0 rgba(28,70,112,0.13);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.99em;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #fff;
  opacity: 0.94;
  border-radius: 8px;
  padding: 7px 14px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--accent);
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  font-size: 1em;
  align-items: flex-start;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact img { width: 20px; filter: brightness(2); }
.footer-logo img {
  margin: 0 auto;
  height: 48px;
  filter: drop-shadow(0 3px 8px rgba(255,255,255,0.22));
}
footer p {
  color: #d6e2f1;
  opacity: 0.89;
  font-size: 0.98em;
  text-align: center;
  margin-top: 10px;
}

/* Cookie Consent Banner (fixed bottom) */
.cookie-banner {
  position: fixed;
  left: 0; right:0; bottom: 0;
  background: var(--primary);
  color: #fff;
  width: 100%;
  z-index: 4200;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 16px 24px 36px;
  box-shadow: 0 -4px 24px rgba(28,70,112,0.11);
  font-size: 1.06em;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 26px 26px 0 0;
  animation: fadeInUp 0.8s cubic-bezier(.4,.6,.2,1);
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(48px);} to { opacity: 1; transform: translateY(0); }}
.cookie-banner p{flex:1;padding-right:20px;}
.cookie-banner .cookie-btn {
  border-radius: 22px;
  padding: 12px 20px;
  box-shadow: 0 1.5px 6px 0 rgba(232,131,49,0.10);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  margin-right: 10px;
  transition: background 0.14s, color 0.14s, box-shadow 0.18s;
  min-width: 130px;
  border: none;
}
.cookie-banner .cookie-btn.accept {
  background: var(--accent);
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover{
  background: var(--primary);
  color:#fff;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-banner .cookie-btn.reject:hover{
  background: var(--accent);
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 2px dashed #fff;
}
.cookie-banner .cookie-btn.settings:hover{
  background: #fff;
  color: var(--primary);
}

/* Cookie Modal - Overlay & Dialog */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  width: 100vw; height:100vh;
  background: rgba(28, 70, 112, 0.55);
  z-index: 4250;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s cubic-bezier(.4,.6,.2,1);
}
.cookie-modal-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;}}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 22px;
  padding: 38px 32px;
  min-width: 310px;
  max-width: 98vw;
  width: 420px;
  box-shadow: 0 6px 32px 0 rgba(28,70,112,0.16);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: fadeInUp 0.38s cubic-bezier(.6,0,.33,1);
}
.cookie-modal-title{
  font-size: 1.28em;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  font-size:1.06em;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--accent);
  width: 22px; height: 22px;
  margin:0 8px 0 0;
  border-radius: 4px;
}
.cookie-category .always-on {
  font-weight: 600;
  color: var(--primary-dark);
}
.cookie-modal-actions{
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal-actions .cookie-btn{
  font-size: 1em;
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 14px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.65em;
  border-radius: 50%;
  width: 38px; height: 38px;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-modal-close:hover{
  background: var(--primary);
  color: #fff;
}

/* Process steps (Usługi) */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  counter-reset: stepnum;
}
.process-steps li {
  background: var(--secondary);
  border-radius: 11px;
  padding: 14px 16px 14px 46px;
  font-weight: 600;
  position: relative;
}
.process-steps li::before {
  counter-increment: stepnum;
  content: counter(stepnum)'.';
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18em;
  font-weight: bold;
}

/* Ol/Ul Clean */
ul, ol {
  margin: 0; padding: 0; list-style: none; }

/* Artistic / Creative Accents */
.section, .about-section, .thankyou-section, .privacy-policy-section, .cookie-modal {
  border: none;
  background:
    repeating-linear-gradient(105deg, #F2F6FB, #fff 20px, #f5efe2 48px, #F2F6FB 80px);
}

/* Thank You / Minimal Templates  */
.thankyou-section {
  min-height: 360px;
  background: linear-gradient(120deg,#fff 80%, var(--secondary) 100%);
  text-align: center;
  border-radius: var(--border-radius);
  display:flex; align-items:center; justify-content:center;
}
.thankyou-section .content-wrapper {
  align-items: center;
  gap: 22px;
}
.thankyou-section h1 { color: var(--accent); margin-bottom: 30px; }

/* ===================== RESPONSIVE DESIGN ================== */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
  .feature-grid, .services-list, .fleet-categories, .value-cards, .content-grid, .footer-contact {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 100%;}
  .feature-grid, .statistics-grid { gap: 12px; }
  .footer-contact { flex-direction: column; gap: 8px; }
  .card { min-width: 160px; padding: 18px 8px; }
}
@media (max-width: 768px) {
  .main-nav{ display: none; }
  .cta-header{ display: none; }
  .mobile-menu-toggle{ display: inline-block; position: absolute; top: 16px; right: 16px;}
  header {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 0 0 0;
    position: sticky;
  }
  .hero-section, .section, .testimonials-section, .cta-banner-section, .features-section {
    padding-left: 6px; padding-right: 6px;
    border-radius: 14px;
  }
  .feature-grid, .services-list, .fleet-categories, .value-cards, .statistics-grid {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 14px;
  }
  .footer-menu { gap: 13px; flex-direction: column; align-items: flex-start; }
  .footer-contact { flex-direction: column; gap: 4px; }
  .footer-logo img { height: 36px; }
  .testimonial-card, .card { padding: 14px 7px; }
  .content-wrapper { gap: 13px; }
  .text-image-section { flex-direction: column; gap: 13px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 22px 8px 22px 8px; }
  .cookie-banner .cookie-btn{ margin-right:0; margin-bottom:10px; }
  .cookie-modal { width: 97vw; min-width: unset; padding: 22px 7px; }
}
@media (max-width:540px) {
  h1{ font-size:2rem; }
  h2{ font-size:1.35rem; }
  .hero-section{ padding: 25px 0 28px 0; }
  .content-wrapper { padding-left: 2px; padding-right: 2px; gap: 8px; }
  body{ font-size:15px; }
}

/* ============== ANIMATIONS + HOVERS =============== */
a, button {
  transition: background 0.19s cubic-bezier(.3,.6,.25,1),
              color 0.12s, box-shadow 0.18s, transform 0.16s;
}
.feature-grid li, .card, .footer-menu a, .testimonial-card, .cta-main, .cookie-btn {
  transition: box-shadow 0.19s, background 0.14s, color 0.11s, transform 0.12s;
}

.cta-main:focus-visible, .cookie-btn:focus-visible {
  outline: 2.5px dashed var(--primary);
  outline-offset: 2.5px;
}

/* ========== COLOR CONTRAST Fixes in Testimonials ========== */
.testimonials-section, .testimonial-card{
  background: #fff;
  color: #263347;
}
.testimonial-card blockquote { color: #183049; }
.testimonial-card span { color: var(--accent-dark); }

/* ========== DECORATIVE Artistic Details ========== */
.section:before, .hero-section:before, .cta-banner-section:before {
  content: '';
  position: absolute;
  left: -43px; top: -25px;
  width: 122px; height: 122px;
  background: rgba(232,131,49,0.07);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.section, .hero-section, .cta-banner-section { position: relative; overflow: hidden; }

/**** Remove before on mobile for less clutter ****/
@media (max-width:570px) {
  .section:before,.hero-section:before,.cta-banner-section:before { display: none; }
}

/* ===================== PRINT SUPPORT =================== */
@media print {
  body, .container, .content-wrapper, .section, .card, .card-content, .features-section,.testimonials-section, .about-section, .thankyou-section{
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  nav, header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}

/**** Hide display util ****/
[hidden] { display: none !important; }

/* END | Squeaky Mount Logistics CSS */
