/* ==== CSS RESET & 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background: #F4F6FA;
  color: #2A2A2A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
*, *:before, *:after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; border: none; display: inline-block; }
button { font: inherit; background: none; border: none; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 12px 8px; text-align: left; }
:focus { outline: 2px solid #FFAD1F; outline-offset: 2px; }

/* ==== BRAND FONTS & COLORS (Google Fonts import assumed in HTML) ==== */
:root {
  --color-primary: #244A87;
  --color-secondary: #F4F6FA;
  --color-accent: #FFAD1F;
  --color-text: #2A2A2A;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow-card: 0 2px 16px 0 rgba(36,74,135,0.07), 0 1.5px 6px 0 rgba(36,74,135,0.06);
}

/* ==== TYPOGRAPHY ==== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.15;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-accent);
}
p, ul li, ol li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
}
strong { font-weight: 700; }

/* ==== CONTAINER ==== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(36,74,135,0.07);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 80px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  border-radius: 6px;
  padding: 6px 14px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:active {
  background: var(--color-accent);
  color: #fff;
}
.cta-button {
  display: inline-block;
  font-family: var(--font-display);
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 32px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 12px 32px;
  box-shadow: 0 2px 8px rgba(255, 173, 31, 0.17);
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  margin-left: 16px;
  position: relative;
  overflow: hidden;
}
.cta-button:hover, .cta-button:focus {
  background: #ffb938;
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  box-shadow: 0 4px 16px rgba(255,173,31,0.21);
}
header img {
  height: 48px;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 1.65rem;
  font-weight: 700;
  margin-left: 14px;
  transition: background 0.12s, color 0.12s;
  z-index: 99;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.86,.01,.53,.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 28px 24px 28px;
  box-shadow: -8px 0 32px rgba(36,74,135,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: var(--color-primary);
  font-size: 2.1rem;
  border-radius: 8px;
  align-self: flex-end;
  margin-bottom: 16px;
  transition: background 0.2s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  background: var(--color-secondary);
  padding: 14px 0 14px 6px;
  font-size: 1.14rem;
  border-radius: 9px;
  transition: color 0.2s, background 0.18s;
  font-weight: 600;
  border-left: 4px solid var(--color-accent);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: #fcebcb;
}
@media (max-width: 1050px) {
  header .container {
    gap: 18px;
  }
  nav a {
    padding: 8px 4px;
  }
}
@media (max-width: 900px) {
  header .container nav,
  header .container .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  header img { height: 36px; }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(90deg, #F4F6FA 45%, #ffeadf 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 6px 40px rgba(33,44,77,0.07);
  margin-bottom: 40px;
  padding-top: 32px;
  padding-bottom: 36px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
}
.hero h1 {
  font-size: 2.2rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 14px;
  text-shadow: 0 2px 10px #fcebcb37;
}
.hero p {
  font-size: 1.2rem;
  color: #325985;
  font-family: var(--font-body);
  margin-bottom: 22px;
  max-width: 550px;
}

/* ==== ARTISTIC BULLETS/ICONS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 34px 0;
}
.feature-grid li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
  font-size: 1.1rem;
  position: relative;
  min-width: 220px;
  color: #295ea2;
  font-family: var(--font-body);
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-grid li img {
  height: 32px;
  width: 32px;
}
.feature-grid li:hover {
  transform: translateY(-4px) scale(1.035) rotate(-1deg);
  box-shadow: 0 8px 28px 0 rgba(255,173,31,0.16),var(--shadow-card);
  background: #fcebcb;
}

/* ==== CARD & SECTION SPACING PATTERNS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 10px 36px rgba(36,74,135,0.15), 0 6px 18px rgba(255,173,31,0.16);
  transform: translateY(-5px) scale(1.035);
}
.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;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 25px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 16px 0 rgba(36,74,135,0.07);
  flex: 1 1 280px;
  min-width: 280px;
  max-width: 450px;
  min-height: 130px;
  font-family: var(--font-body);
  border-left: 8px solid var(--color-accent);
  color: var(--color-text);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #30477e;
  font-family: var(--font-display);
  margin-bottom: 8px;
  font-style: italic;
  max-width: 340px;
}
.testimonial-card span {
  color: #666;
  font-size: .98rem;
  font-style: normal;
  margin-left: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === CUSTOM COMPONENTS: PRICING, TABLES, STEPS, ETC === */
.pricing-table table {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  margin: 30px 0 22px 0;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
}
.pricing-table th {
  background: #244A87;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08rem;
}
.pricing-table tr:nth-child(even) td {
  background: #f7f3ff;
}
.pricing-table td {
  color: #334;
  font-family: var(--font-body);
  font-size: 1.01rem;
}
.step-by-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 18px 0;
}

.fleet-advantages-list, .vehicle-spec-list, .business-package-list {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.case-study-teasers {
  margin-top: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
}
.case-study-teasers h3 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.13rem;
  margin-bottom: 9px;
}

.contact-info, .office-hours, .map-embed {
  margin-bottom: 18px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info li img, .contact-short-info img {
  height: 20px;
  margin-right: 9px;
  vertical-align: middle;
}

.contact-short-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0 18px 0;
}

.text-section {
  margin-bottom: 30px;
}

.faq-section {
  margin-top: 36px;
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
}
.faq-section h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.faq-section ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ==== FOOTER ==== */
footer {
  background: #212945;
  color: #fff;
  margin-top: 60px;
  padding: 30px 0 22px 0;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
footer nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
footer nav a {
  color: #FFAD1F;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
footer nav a:hover {
  background: #fff;
  color: #244A87;
}

/* ==== BUTTONS & LINK EFFECTS ==== */
a, button {
  transition: color 0.18s, background 0.18s, box-shadow 0.18s;
}

/* ==== ARTISTIC/CREATIVE STYLE DECORATIONS ==== */
h1, h2, h3 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: var(--color-accent);
  margin: 0.5em 0 0.1em 0;
  opacity: .68;
  transition: background 0.18s;
}
h1:hover::after, h2:hover::after {
  background: #ffcf57;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe8;
  color: #214078;
  box-shadow: 0 -2px 24px rgba(36,74,135,0.14);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 26px 22px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: transform 0.3s cubic-bezier(.8,1.2,.2,1.1);
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(140%);
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 360px;
  min-width: 160px;
  margin-right: 10px;
}
.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  background: var(--color-accent);
  color: #fff;
  border-radius: 24px;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 32px;
  margin-bottom: 2px;
  box-shadow: 0 1px 6px rgba(255,173,31,.13);
  transition: background 0.18s, color 0.18s, transform 0.11s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #fffbe8;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.settings {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 46px #244a8722, 0 2px 8px #ffad1f11;
  z-index: 10001;
  min-width: 328px;
  max-width: 90vw;
  padding: 32px 36px 22px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.25s cubic-bezier(.74,1.44,.19,.61);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal h3 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: #f3e9d2;
  position: relative;
  margin-left: 10px;
  transition: background 0.14s;
  flex-shrink: 0;
}
.cookie-modal .cookie-toggle.enabled {
  background: var(--color-accent);
}
.cookie-modal .cookie-toggle::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 10px #244a8727;
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle.enabled::after {
  left: 20px;
}
.cookie-modal .cookie-toggle.disabled {
  opacity: 0.5;
}
.cookie-modal .cookie-description {
  font-size: .92rem;
  color: #444;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}

/* ==== MEDIA QUERIES (MOBILE-FIRST) ==== */
@media (max-width: 800px) {
  .container {
    max-width: 97vw;
  }
  .feature-grid {
    gap: 15px;
  }
  .content-grid { gap: 12px; }
  .section {
    padding: 32px 10px;
  }
  .testimonials { gap: 14px; }
  .testimonial-card {
    padding: 12px;
    min-width: 0;
    max-width: 100vw;
    font-size: 1rem;
  }
}
@media (max-width: 700px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  .section { margin-bottom: 36px; }
}
@media (max-width: 540px) {
  header .container {
    min-height: 60px;
    padding: 6px 7px 6px 11px;
    gap: 6px;
  }
  .section {
    margin-bottom: 22px;
    padding: 16px 4px;
  }
  .feature-grid li {
    padding: 10px 10px;
    min-width: 0;
    font-size: .97rem;
  }
  .card {
    padding: 13px 9px;
  }
  .cta-button {
    padding: 9px 18px;
    font-size: .99rem;
    margin-left: 0;
  }
  .cookie-consent-banner .cookie-text {
    font-size: .98rem;
    margin-right: 5px;
  }
  .cookie-consent-buttons { gap: 8px; }
}

/* === FLEX DIRECTION ADJUSTMENTS FOR MOBILE === */
@media (max-width: 768px) {
  .text-image-section, .content-grid, .feature-grid, .card-container, .testimonials {
    flex-direction: column;
    gap: 14px;
  }
}

/* ==== UNIQUE ARTISTIC ELEMENTS ==== */
.feature-grid li::before {
  content: '';
  display: block;
  position: absolute;
  left: -14px;
  top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: .55;
  z-index: 1;
}
.feature-grid li:hover::before {
  background: #ffa800;
  opacity: .85;
  transform: scale(1.23) rotate(6deg);
}

/* ==== ANIMATIONS AND MICRO-INTERACTIONS === */
.card, .testimonial-card, .feature-grid li, .cta-button, .cookie-consent-banner, .cookie-modal {
  transition: box-shadow 0.17s, background 0.16s, transform 0.18s, opacity 0.18s;
}

/* ==== HELPER CLASSES ==== */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mr-12 { margin-right: 12px; }
.mb-40 { margin-bottom: 40px; }

/* ==== END ==== */
