/* ----------------------------------------------------------------------
   Minimalist CSS for SwiftMove Logistics (style.css)
   Author: Professional CSS/UI Designer
   BRAND COLORS:
     - Primary: #174B80
     - Secondary: #ECC801
     - Accent: #F2F2F2
   FONTS:
     - Display: Montserrat
     - Body: Open Sans
   ---------------------------------------------------------------------- */

/* -----------------------
   RESET & BASE 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #174B80;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ECC801;
  outline: none;
}

/* Remove input inner shadow on iOS */
input, textarea, select, button {
  font-family: inherit;
  outline: none;
  background: none;
  border: none;
  resize: none;
  appearance: none;
}

/* -----------------------
   TYPOGRAPHY HIERARCHY
-------------------------- */
h1, .h1 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #174B80;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #174B80;
  margin-bottom: 12px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #174B80;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #174B80;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  color: #222;
  margin-bottom: 16px;
}
ul, ol {
  margin-left: 22px;
  padding-left: 0;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
strong, b {
  font-weight: 600;
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  h3, .h3 { font-size: 1.1rem; }
}

/* -----------------------
   CONTAINER & LAYOUTS
-------------------------- */
.container {
  max-width: 1152px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
  padding: 20px 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(23,75,128,0.04);
  padding: 32px 24px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(23,75,128,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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #F2F2F2;
  box-shadow: 0 2px 14px rgba(23,75,128,0.06);
  transition: box-shadow 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 34px rgba(23,75,128,0.15);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.feature-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  padding: 24px 20px;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(23,75,128,0.03);
  border: 1px solid #F2F2F2;
  transition: box-shadow 0.15s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 4px 24px rgba(23,75,128,0.09);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #174B80;
}

.office-hours-info, .map-embed {
  background: #F2F2F2;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 18px;
}

.client-logos {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin: 16px 0 0 0;
}

/* -------------------------
   HEADER & NAVIGATION
---------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #F2F2F2;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  padding: 3px 0;
  position: relative;
  transition: color 0.17s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #174B80;
}
.cta-primary {
  display: inline-block;
  background: #174B80;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border-radius: 24px;
  padding: 10px 24px;
  margin-left: 14px;
  box-shadow: 0 2px 8px rgba(23,75,128,0.07);
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #ECC801;
  color: #174B80 !important;
  box-shadow: 0 6px 22px rgba(236,200,1,0.10);
}
.cta-secondary {
  display: inline-block;
  background: #ECC801;
  color: #174B80 !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 22px;
  padding: 9px 22px;
  margin-top: 10px;
  box-shadow: 0 1px 7px rgba(236,200,1,0.05);
  transition: background 0.14s, color 0.14s, box-shadow 0.15s;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #174B80;
  color: #fff !important;
  box-shadow: 0 5px 17px rgba(23,75,128,0.09);
}

/* -----------------------------
   MOBILE NAVIGATION (BURGER)
-------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #174B80;
  cursor: pointer;
  margin-left: 14px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #ECC801;
  outline: 2px solid #ECC801;
  outline-offset: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 3px 48px rgba(23,75,128,0.13);
  z-index: 9999;
  padding: 32px 24px 24px 24px;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #174B80;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 26px;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ECC801;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 10px;
}
.mobile-nav a {
  color: #174B80;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #ECC801;
  color: #174B80;
}
@media (max-width: 1020px) {
  .header-container {
    gap: 14px;
  }
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 870px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .main-nav,
  .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* -------------------------
   HERO SECTION
---------------------------- */
.hero {
  background: #F2F2F2;
  border-radius: 0 0 18px 18px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 60px;
  padding: 72px 0;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 700px;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 18px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.5rem;
  color: #174B80;
}
.hero p {
  color: #222;
  font-size: 1.17rem;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 170px;
    padding: 48px 0;
  }
  .hero .content-wrapper {
    padding: 0;
    text-align: left;
    align-items: flex-start;
  }
}

/* ------------
   FOOTER
-------------- */
footer {
  background: #fff;
  border-top: 1px solid #F2F2F2;
  padding-top: 44px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-start;
  padding-bottom: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 200px;
}
.footer-brand img {
  width: 98px;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 1rem;
  color: #174B80;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 148px;
}
.footer-nav a {
  color: #174B80;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #ECC801;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #174B80;
  font-size: 1rem;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 5px;
  width: 19px;
  height: 19px;
}
.footer-bottom {
  border-top: 1px solid #F2F2F2;
  padding: 18px 0;
  font-size: 1rem;
  color: #BBB;
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-brand,
  .footer-nav,
  .footer-contact {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
  }
}

/* --------------------
   GENERAL LIST STYLING
----------------------- */
ul, ol {
  margin-left: 22px;
  padding-left: 0;
}
ul {
  list-style: disc inside;
}
ol {
  list-style: decimal inside;
}
@media (max-width: 600px) {
  ul, ol {
    margin-left: 16px;
  }
}

/* -----------------------------
   SPACING FOR SECTIONS/CARDS
----------------------------- */
section {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
    padding: 28px 0;
  }
  .feature-grid, .content-grid {
    gap: 14px;
  }
}

/* -----------
   BUTTONS
------------- */
button, .cta-primary, .cta-secondary {
  cursor: pointer;
  user-select: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.14s;
}
button:active,
.cta-primary:active,
.cta-secondary:active {
  opacity: 0.9;
}

/* -----------
   FORMS (if used)
------------- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #D4D8DE;
  padding: 11px 14px;
  background: #F2F2F2;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.15s, background 0.15s;
}
input:focus, textarea:focus {
  border-color: #174B80;
  background: #fff;
}
label {
  font-size: 1rem;
  color: #222;
}

/* -----------
   UTILITIES
-------------- */
.mt-2 { margin-top: 16px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-4 { margin-bottom: 32px !important; }
.pt-2 { padding-top: 16px !important; }
.pb-4 { padding-bottom: 32px !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* ----------
   RESPONSIVE FLEX FOR MAJOR CONTAINERS
------------- */
@media (max-width: 900px) {
  .feature-grid, .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .card-container {
    flex-direction: column;
  }
  .client-logos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }
}
@media (max-width: 620px) {
  .feature-item {
    min-width: 0;
    max-width: 100%;
    padding: 18px 10px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ------------
   TESTIMONIALS (Extra Emphasis)
------------------------------- */
.testimonial-card {
  background: #fff;
  border-color: #E6ECF2;
  color: #222;
  box-shadow: 0 2px 18px rgba(23,75,128,0.09);
  min-width: 220px;
  max-width: 500px;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  transition: box-shadow 0.14s;
}
.testimonial-card span {
  font-size: 1rem;
  color: #174B80;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* -------------
   COOKIE CONSENT BANNER & MODAL
------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #E6ECF2;
  box-shadow: 0 -2px 18px rgba(23,75,128,0.10);
  padding: 28px 22px 22px 22px;
  z-index: 9900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: slideUp 0.38s cubic-bezier(.62,0,.53,1.71);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner p {
  font-size: 1rem;
  color: #222;
  text-align: center;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.btn-cookie {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 18px;
  border: none;
  background: #F2F2F2;
  color: #174B80;
  transition: background 0.15s, color 0.15s;
}
.btn-cookie.primary {
  background: #174B80;
  color: #fff;
}
.btn-cookie.secondary {
  background: #ECC801;
  color: #174B80;
}
.btn-cookie:hover, .btn-cookie:focus {
  background: #ECC801;
  color: #174B80;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(17,34,34,0.35);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.32s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 48px rgba(23,75,128,0.15);
  padding: 38px 30px 24px 30px;
  max-width: 450px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: slideUp 0.34s cubic-bezier(.62,0,.53,1.71);
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.5rem;
  color: #174B80;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #222;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid #174B80;
  background: #F2F2F2;
  margin: 0;
  outline: none;
  transition: background 0.16s, border-color 0.16s;
  position: relative;
  cursor: pointer;
}
.cookie-category input[type="checkbox"]:checked {
  background: #174B80;
  border-color: #174B80;
}
.cookie-category input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  left: 6px;
  top: 6px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category.essential label {
  color: #888;
}
.cookie-category.essential input[type="checkbox"] {
  background: #F2F2F2;
  border: 2px solid #ccc;
  cursor: not-allowed;
}
.cookie-category.essential input[type="checkbox"]:checked {
  background: #ccc;
  border: 2px solid #ccc;
}

.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-end;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 24px 10px 14px 10px;
    max-width: 98vw;
  }
}

/* ---------------
   Helper Classes
------------------- */
.hide { display: none !important; }
.visible { display: block !important; }

/* ---------------
   MISC ELEMENTS
------------------- */
::-webkit-scrollbar { width: 7px; background: #F2F2F2; }
::-webkit-scrollbar-thumb { background: #E6ECF2; border-radius: 3.5px; }

/* ------------
   ACCESSIBILITY
-------------- */
:focus { outline: 2px solid #ECC801; outline-offset: 2px; }

/* ------------
   PRINT SAFE
-------------- */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
}

/* ----------------------------
   END OF STYLE.CSS (REQUIRED)
------------------------------- */
