/* --- CSS RESET & BASE TYPOGRAPHY --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #151515;
  background: #FAFAFA;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #183152;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.55,.17,.44,.88);
}
a:hover, a:focus { color: #45A2B5; outline: none; }
ul, ol { list-style: none; }

/* --- BRAND TYPOGRAPHY & SCALES --- */
h1, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #111;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.65rem;
  color: #183152;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #323232;
}
strong {
  font-weight: 500;
}
p {
  margin-bottom: 1em;
  font-size: 1rem;
}

/* --- LAYOUT & CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
main {
  width: 100%;
  margin-top: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, .hero, .about-section, .services-preview, .features-section, .industries-preview, .news-list-section, .company-announcements, .services-list-section, .industries-section, .contact-info-section, .contact-form-section, .testimonials-section, .contact-preview {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(30,34,43,0.05);
}

/* --- HEADER NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(30, 34, 43, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
  filter: grayscale(0%) brightness(0.1);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #232323;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #183152;
  transition: width 0.25s cubic-bezier(.77,0,.18,1);
  position: absolute;
  left: 0; bottom: -3px;
}
.main-nav a:hover:after, .main-nav a:focus:after { width: 100%; }

.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #183152;
  color: #fff;
  padding: 12px 28px;
  border-radius: 32px;
  letter-spacing: 0.03em;
  transition: background 0.24s, color 0.24s, box-shadow 0.24s;
  box-shadow: 0 2px 8px rgba(24,49,82,0.09);
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #313131;
  color: #fff;
  box-shadow: 0 6px 20px rgba(24,49,82,0.13);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  background: none;
  border: 0;
  color: #183152;
  font-size: 2rem;
  display: none;
  margin-left: 18px;
  cursor: pointer;
  z-index: 1201;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #45A2B5;
  outline: 2px solid #45A2B5;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,49,82,0.97);
  color: #fff;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  min-height: 100vh;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  z-index: 1202;
  line-height: 1;
  transition: color 0.15s;
}
.mobile-menu-close:focus {
  color: #45A2B5;
  outline: 2px solid #45A2B5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 84px;
  padding-left: 32px;
  padding-bottom: 40px;
  width: 100%;
  height: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #45A2B5;
  color: #fff;
}

@media (max-width: 1024px) {
  header .container {
    gap: 8px;
  }
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav,.cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 0;
  }
}

/* --- HERO --- */
.hero {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  min-height: 300px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero .container { flex-direction: column; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 630px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 0.5rem;
}
@media (max-width: 600px) {
  .hero { padding-top: 32px; padding-bottom: 32px; }
  .hero h1 { font-size: 2rem; }
}

/* --- FLEX PATTERNS (with ONLY FLEXBOX) ---*/
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 16px; box-shadow: 0 2px 16px rgba(24,49,82,0.06); padding: 32px 26px; display: flex; flex-direction: column; gap: 18px; transition: box-shadow 0.2s; }
.card:hover { box-shadow: 0 8px 32px rgba(24,49,82,0.12);}
.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: #f8f8f8; border-radius: 14px; box-shadow: 0 2px 12px rgba(24,49,82,0.05); margin-bottom: 20px; flex: 1 1 280px; min-width: 260px; max-width: 600px; transition: box-shadow 0.22s; }
.testimonial-card p { color: #232323; font-size: 1.1rem; font-style: italic; margin-bottom: 0; }
.testimonial-card span { color: #183152; font-family: Montserrat, sans-serif; font-size: 1rem; font-weight: bold; }
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(24,49,82,0.09);
}
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px; background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(24,49,82,0.07);
  padding: 28px 20px;
  min-width: 210px;
  flex: 1 1 220px;
  transition: box-shadow 0.22s;
}
.feature-item:hover {
  box-shadow: 0 8px 28px rgba(24,49,82,0.15);
  background: #f5f6f8;
}
.feature-item img { height: 36px; width: 36px; filter: grayscale(100%) brightness(0.6); }
.features-grid {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: flex-start;
}

/* --- SERVICES, INDUSTRY, CASES --- */
.services-list, .service-details, .services-list-section ul, .industries-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.service-item, .industry-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(24,49,82,0.06);
  padding: 22px 18px;
  min-width: 195px;
  margin-bottom: 20px;
  flex: 1 1 210px;
  transition: box-shadow 0.2s;
}
.service-item:hover, .industry-item:hover {
  box-shadow: 0 6px 24px rgba(24,49,82,0.11);
  background: #f8f8fa;
}
.industry-grid {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: flex-start; align-items: stretch;
  margin-bottom: 28px;
}
.case-snippet, .case-studies, .custom-logistics, .compliance-certifications, .vehicle-types, .featured-articles {
  background: #f2f3f7;
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 22px;
  box-shadow: 0 1px 8px rgba(24,49,82,0.06);
}

.logo-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}
.logo-strip img {
  filter: grayscale(100%) contrast(1.1) brightness(0.70);
  max-width: 64px;
  height: 48px;
}

/* --- TESTIMONIALS/SLIDER --- */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 900px) {
  .testimonials-slider {
    flex-direction: column;
    gap: 20px;
  }
}

/* --- CONTACT & INFO --- */
.contact-info ,.contact-info-section, .contact-form-section, .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info p, .contact-info-section p, .text-section p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.contact-info img, .contact-info-section img, .text-section img {
  height: 18px;
  width: 18px;
  filter: grayscale(100%) brightness(0.3);
}

/* --- FOOTER --- */
footer {
  background: #111;
  color: #fff;
  padding: 36px 0 16px 0;
  margin-top: 40px;
  box-shadow: 0 -2px 14px rgba(24,49,82,0.10);
  font-size: 0.97rem;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #e2e2e2;
  transition: color 0.16s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.footer-nav a:hover { color: #45A2B5; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img { height: 36px; width: auto; filter: invert(1) grayscale(100%); }
.footer-brand span { color: #bbb; }

/* --- CARDS (General) --- */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(24,49,82,0.06);
  padding: 28px 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 40px rgba(24,49,82,0.11);
  background: #fafbfc;
}

/* --- BUTTONS, LINKS, MICRO-INTERACTIONS --- */
button, .cta-btn, .cookie-btn {
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 32px;
  padding: 10px 24px;
  font-size: 1rem;
  margin-right: 14px;
  background: #183152;
  color: #fff;
  transition: background 0.19s, color 0.19s;
}
.cookie-btn.reject {
  background: #222;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #183152;
  border: 1.5px solid #183152;
  margin-right: 0;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #45A2B5;
  color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #313131;
  color: #fff;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #f4f8fa;
  color: #183152;
  border-color: #45A2B5;
}

/* --- LISTS --- */
ul, ol {
  margin-bottom: 1em;
  padding-left: 22px;
}
ul li, ol li {
  font-size: 1rem;
  color: #262626;
  margin-bottom: 0.5em;
  line-height: 1.6;
  position: relative;
}
ul li:before {
  content: '\2022';
  color: #183152;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* --- COOKIE CONSENT --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: rgba(24,49,82, 0.98);
  color: #fff;
  border-top: 3px solid #45A2B5;
  box-shadow: 0 -4px 18px rgba(34,31,41,0.10);
  z-index: 5000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 8vw 24px 8vw;
  font-size: 1.03rem;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.2s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  width: 100%;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex: 1 1 auto;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,49,82,0.84);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.77,0,.18,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: #1b1b1b;
  border-radius: 15px;
  box-shadow: 0 8px 66px rgba(24,49,82,0.16);
  padding: 38px 28px;
  min-width: 300px;
  max-width: 98vw;
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #222;
  background: none;
  border: none;
  font-size: 2.25rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #45A2B5;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1.05rem;
  font-family: 'Roboto', sans-serif;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  border-radius: 22px;
  background: #dbe3ef;
  position: relative;
  margin-right: 8px;
  transition: background 0.18s;
  cursor: pointer;
  display: inline-block;
}
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch .switch-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #183152;
  transition: transform 0.20s, background 0.18s;
}
.cookie-switch input[type="checkbox"]:checked + .switch-slider {
  transform: translateX(16px);
  background: #45A2B5;
}
.cookie-switch input[type="checkbox"]:disabled + .switch-slider {
  background: #b0b5bf;
}
.cookie-category input[type="checkbox"]:disabled ~ label {
  color: #afafaf;
}

/* --- SPACING & RESPONSIVE TYPOGRAPHY --- */
@media (max-width: 1024px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .content-wrapper { gap: 16px; }
  .section, .about-section, .services-preview, .industries-preview, .testimonials-section, .news-list-section, .company-announcements, .services-list-section, .industries-section, .contact-info-section, .contact-form-section, .contact-preview {
    padding: 28px 10px;
  }
  .footer-nav, .logo-strip { gap: 16px; }
}
@media (max-width: 800px) {
  .features-grid, .industry-grid, .services-list, .service-details {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 22px; align-items: flex-start; }
  .testimonials-slider { flex-direction: column; gap: 18px; }
}
@media (max-width: 600px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .hero, .section, .about-section, .services-preview, .features-section, .industries-preview, .testimonials-section, .news-list-section, .company-announcements, .services-list-section, .industries-section, .contact-info-section, .contact-form-section, .contact-preview {
    padding: 16px 2px;
    margin-bottom: 35px;
    border-radius: 10px;
  }
  h1,.hero h1 { font-size: 1.32rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }
  .feature-item img { height: 26px; width: 26px; }
}
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 15px 4vw 12px 4vw; font-size: 0.92rem; }
}

/* --- FORMS --- */
input, textarea, select {
  font-family: 'Roboto', sans-serif;
  background: #FAFAFA;
  border: 1.5px solid #e3e8f0;
  color: #222;
  padding: 12px 14px;
  border-radius: 7px;
  margin-bottom: 16px;
  width: 100%;
  font-size: 1rem;
  transition: border 0.17s, box-shadow 0.18s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #45A2B5;
  box-shadow: 0 0 0 2px #e6f5fc;
}
label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #151515;
  margin-bottom: 6px;
  display: block;
}

/* --- MISCELLANEOUS --- */
::-webkit-input-placeholder { color: #b2b6c7; }
::-moz-placeholder { color: #b2b6c7; }
:-ms-input-placeholder { color: #b2b6c7; }
::placeholder { color: #b2b6c7; }
hr {
  border: none;
  border-top: 1.5px solid #ececec;
  margin: 32px 0;
}

/* --- PRINT --- */
@media print { 
  header, footer, .cookie-banner, .mobile-menu { display: none !important; } 
  .container, .content-wrapper { width: 100%; margin: 0; padding: 0; }
  .section, .hero, .about-section, .services-preview, .features-section, .industries-preview, .testimonials-section, .news-list-section, .company-announcements, .services-list-section, .industries-section, .contact-info-section, .contact-form-section, .contact-preview  { box-shadow: none; background: #fff; }
}

/* --- TRANSITIONS & ANIMATIONS --- */
.card, .feature-item, .testimonial-card, .service-item, .industry-item {
  transition: box-shadow 0.18s, background 0.15s, transform 0.18s;
}
.cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, color 0.15s, box-shadow 0.22s;
}
.mobile-menu, .cookie-banner, .cookie-modal { transition: transform 0.36s cubic-bezier(.77,0,.18,1), opacity 0.24s cubic-bezier(.77,0,.18,1); }

/* --- COLORS FOR MONOCHROME_SOPHISTICATED AESTHETIC --- */
body, .section, .about-section, .services-preview, .features-section, .industries-preview, .testimonials-section, .news-list-section, .company-announcements, .services-list-section, .industries-section, .contact-info-section, .contact-form-section, .contact-preview {
  background: #fff;
  color: #181818;
}
.card, .feature-item, .service-item, .industry-item, .case-snippet, .case-studies, .custom-logistics, .compliance-certifications, .vehicle-types, .featured-articles {
  background: #f9fafe;
  border: 1.2px solid #edeef5;
}
hr {
  border-color: #ededed;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; background: #eceff2; }
::-webkit-scrollbar-thumb { background: #b2b6c7; border-radius: 100px; }
