/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F7FA;
  color: #232353;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ol, ul { list-style: none; }
img { vertical-align: middle; max-width: 100%; height: auto; }
table { border-collapse: collapse; border-spacing: 0; width: 100%; }
button, input, textarea {
  font-family: inherit; font-size: 1em;
  border: none; outline: none; background: none;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.18;
  color: #1A365D;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; margin-bottom: 22px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
p, ul, li, table, td, th, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #474763;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: #1A365D;
}

/* PLAYFUL JOYFUL FONTS FOR SPECIAL UI */
.feature-grid h3, .pricing-table th, .btn-primary, .btn-secondary, .main-nav a, .mobile-nav a, .testimonial-card strong {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* DYNAMIC SECTION SPACING (CRITICAL REQS) */
.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: 18px;
  box-shadow: 0 4px 16px 0 rgba(33,43,59,0.08), 0 1.5px 6px 0 rgba(33,43,59,0.06);
  transition: transform 0.18s cubic-bezier(.22,1,.36,1), box-shadow 0.22s;
  padding: 28px 20px;
  min-width: 240px;
  max-width: 300px;
  flex: 1 1 270px;
  z-index: 1;
}
.card:hover {
  transform: translateY(-8px) scale(1.025) rotate(-1deg);
  box-shadow: 0 7px 24px 0 rgba(221, 162, 36, 0.14), 0 2.5px 9px 0 rgba(33,43,59,0.07);
}

.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: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(26,54,93,0.10);
  margin: 0 12px 18px 0;
  min-width: 260px;
  flex: 1 0 290px;
  border: 2.5px solid #F7DC91;
}
.testimonial-card p {
  color: #1A365D;
  font-size: 1.13rem;
  text-align: center;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #D1A13C;
  font-size: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-right: 18px;
}

/* FLEXIBLE FEATURE LISTS (INCLUDING UL) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 230px;
  background: #FFFAF2;
  border-radius: 15px;
  box-shadow: 0 1px 7px 0 rgba(210,160,65,0.13);
  padding: 28px 20px 20px 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.17s linear, transform 0.19s cubic-bezier(.16,1,.29,0.99);
}
.feature-grid li:hover {
  box-shadow: 0 7px 20px 0 rgba(210,160,65,0.17);
  transform: translateY(-4px) rotate(-1deg) scale(1.03);
}
.feature-grid img {
  width: 42px; height: 42px; margin-bottom: 5px;
}

.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px 0 rgba(33,43,59,0.08);
  margin: 22px 0 26px 0;
  overflow: hidden;
}
.pricing-table th {
  background: #FFE9B5;
  color: #1A365D;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 16px 12px;
}
.pricing-table td {
  padding: 14px 12px;
  text-align: center;
}
.pricing-table tbody tr:nth-child(even) {
  background: #FAF5E4;
}
.pricing-table tbody tr:hover {
  background: #FFF7DE;
}

.included-features, .optional-addons ul, .experience-highlights, .faq-list, .accordion-layout, .company-mission ul, .core-values ul, .vehicle-categories, .reliability-features, .service-list {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.included-features li, .optional-addons ul li, .experience-highlights li, .core-values ul li, .reliability-features li, .vehicle-categories li, .service-list li {
  background: #fff;
  border-radius: 14px;
  padding: 13px 17px;
  color: #1A365D;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(33,43,59,0.09);
  flex: 1 0 220px;
}

.offer-banners {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.offer-banners p {
  background: #e2f6ff;
  color: #0A7FCC;
  border-radius: 13px;
  padding: 9px 14px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

.available-accessories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.available-accessories li {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #F7FCF9;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
}

.fuel-efficiency-info {
  background: #E0F4CB;
  color: #33691E;
  border-radius: 14px;
  font-size: 1rem;
  padding: 14px 16px;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* BUTTONS */
.btn-primary {
  background: #D1A13C;
  color: #1A365D;
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 13px 0 rgba(209,161,60,0.11);
  letter-spacing: 0.03em;
  transition: background 0.14s, color 0.2s, transform 0.22s;
  cursor: pointer;
  margin-top: 6px;
  display: inline-block;
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1A365D;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(33,43,59,0.16);
  transform: translateY(-2px) scale(1.04) skew(-1deg);
}
.btn-secondary {
  background: #F5F7FA;
  border: 2px solid #D1A13C;
  color: #1A365D;
  border-radius: 20px;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: border 0.16s, background 0.18s, color 0.17s, transform 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #D1A13C;
  color: #fff;
  border-color: #1A365D;
  transform: scale(1.04) rotate(1deg);
}

/* HEADER NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(210,160,60,0.05);
  position: relative;
  z-index: 42;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  width: 100%;
  gap: 28px;
}
.logo img { height: 46px; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #1A365D;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  padding: 6px 7px;
  border-radius: 10px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFF7DE;
  color: #D1A13C;
}

/* BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: #D1A13C;
  color: #1A365D;
  font-size: 2.05rem;
  padding: 11px 15px;
  border-radius: 10px;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, transform 0.23s;
  z-index: 70;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1A365D;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(26,54,93,0.12);
  transform: scale(1.04) rotate(3deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(0.7,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 36px 0 rgba(210,161,60,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #D1A13C;
  color: #1A365D;
  font-size: 2.1rem;
  border: none;
  border-radius: 12px;
  padding: 6px 14px;
  margin: 22px 22px 0 0;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, transform 0.18s;
  z-index: 110;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1A365D;
  color: #fff;
  transform: rotate(7deg) scale(1.06);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 34px;
  gap: 24px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #1A365D;
  padding: 10px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  transition: background 0.15s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF7DE;
  color: #D1A13C;
}

/* SECTIONS AND CTA */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}

/* CTAs */
.quick-booking-cta {
  background: #FFE9B5;
  border-radius: 20px;
  box-shadow: 0 3px 12px 0 rgba(209,161,60,0.09);
  margin: 38px 0;
  padding: 40px 20px;
}

/* TESTIMONIAL SLIDER (FLEX) */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* FAQ ACCORDION/LIST */
.faq-list, .accordion-layout {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
}
.faq-item {
  background: #fff;
  padding: 22px 18px;
  border-radius: 13px;
  box-shadow: 0 1.5px 10px 0 rgba(209,161,60,0.07);
  position: relative;
  transition: box-shadow 0.17s, transform 0.19s;
}
.faq-item:hover {
  box-shadow: 0 3px 16px 0 rgba(210,161,60,0.13);
  transform: translateX(5px) scale(1.01);
}
.faq-item h3 {
  font-size: 1.11rem;
  color: #D1A13C;
  margin: 0 0 7px 0;
}
.faq-item p {
  margin: 0;
  color: #474763;
}

/* ADDRESS & CONTACT BLOCKS */
.address-block, .phone-email-block, .hours-block, .benefits-block {
  background: #FFF7DE;
  border-radius: 14px;
  padding: 20px 18px;
  margin-bottom: 17px;
  box-shadow: 0 1.5px 6px 0 rgba(210,161,60,0.07);
}
.benefits-block ul {
  gap: 12px;
  margin-bottom: 9px;
}
.response-guarantee {
  background: #E0F4CB;
  color: #265c19;
  border-radius: 9px;
  padding: 8px 14px;
}

/* FOOTER */
footer {
  background: #1A365D;
  color: #fff;
  padding: 36px 0 16px 0;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-top: 80px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.footer-nav nav a {
  color: #D1A13C;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: underline;
  border-radius: 8px;
  padding: 3px 6px;
  transition: color 0.14s, background 0.15s;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  background: #fff3d2;
  color: #1A365D;
}
.footer-contact p, .footer-contact img {
  color: #fff;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-tagline {
  color: #FFE9B5;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 18px 0 0 0;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* MICRO-ANIMATIONS */
.btn-primary, .btn-secondary, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.17s, transform 0.22s;
}
.card, .feature-grid li, .testimonial-card, .faq-item {
  transition: box-shadow 0.15s, transform 0.13s;
}

/* PLAYFUL DECORATIVE ANIMATION */
.card:before, .feature-grid li:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.13;
  width: 50px; height: 50px;
  background: #D1A13C;
  top: -18px; left: -15px;
  animation: floatDots 4.2s infinite alternate cubic-bezier(.61,.19,.52,1.27);
}
@keyframes floatDots {
  0% { transform: scale(1) translateY(0); }
  55% { transform: scale(1.17) translateY(-8px); }
  100% { transform: scale(0.98) translateY(4px); }
}
/* Remove floating accent in testimonial card for contrast compliance */
.testimonial-card:before { display: none; }

/* ACCENT SHADOW ON HERO HEADINGS */
h1, h2 {
  text-shadow: 0 2px 7px #FFE9B5;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    max-width: 930px;
    padding: 0 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 17px;
  }
  .nav-links {
    gap: 17px;
  }
  .footer-nav, .testimonial-list, .feature-grid {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 18px;
    padding-left: 0;
    padding-right: 0;
  }
  section {
    padding: 27px 0 0 0;
    margin-bottom: 36px;
  }
  .card-container, .feature-grid, .testimonial-slider, .testimonial-list, .available-accessories ul, .vehicle-categories {
    flex-direction: column;
    gap: 16px;
  }
  .card, .feature-grid li, .testimonial-card {
    max-width: 98vw;
    min-width: 0;
    flex: 1 1 100%;
  }
  .pricing-table th, .pricing-table td {
    padding: 12px 4px;
    font-size: 0.99rem;
  }
  .quick-booking-cta { padding: 24px 8px; }
  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .faq-list, .accordion-layout {
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .btn-primary { width: 100%; padding: 14px 0; font-size: 1.1rem; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.48rem; margin-bottom: 12px; }
  h2 { font-size: 1.19rem; margin-bottom: 12px; }
  h3 { font-size: 1.05rem; margin-bottom: 7px; }
  .card, .feature-grid li, .testimonial-card {
    padding: 13px 7px;
    font-size: .98rem;
  }
  .footer-tagline { font-size: 0.99rem; }
  .mobile-nav {
    padding: 18px 13px;
  }
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #fffbe9;
  border-top: 3px solid #D1A13C;
  padding: 22px 8vw 18px 8vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 -2px 14px 0 rgba(210,161,60,0.10);
  animation: cookiesBannerAppear 0.5s cubic-bezier(.54,1.23,.41,1.01) 1;
}
@keyframes cookiesBannerAppear {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner-message {
  color: #232353;
  font-size: 1.02rem;
  flex: 1 1 200px;
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 0;
}
.cookie-banner .btn-primary { box-shadow: none; }
@media (max-width: 770px) {
  .cookie-banner {
    flex-direction: column;
    padding: 12px 2vw 12px 2vw;
    gap: 13px;
    font-size: 0.99rem;
  }
  .cookie-banner-message { margin-right: 0; }
  .cookie-banner-actions { gap: 9px; }
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(30,30,60,0.57);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: cookiesModalAppear 0.45s cubic-bezier(.54,1.23,.41,1.01) 1;
}
.cookie-modal.open { display: flex; }

@keyframes cookiesModalAppear {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 22px 0 rgba(210,161,60,0.16);
  padding: 36px 26px 24px 26px;
  min-width: 310px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  color: #D1A13C;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1A365D;
}
.cookie-category input[type=checkbox] {
  width: 22px; height: 22px;
  accent-color: #D1A13C;
  border-radius: 7px;
}
.cookie-category.essential label { color: #B18C2F; }
.cookie-close-btn {
  background: #D1A13C;
  color: #1A365D;
  border: none;
  border-radius: 12px;
  font-size: 1.45rem;
  position: absolute; top: 12px; right: 15px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, transform 0.17s;
}
.cookie-close-btn:hover, .cookie-close-btn:focus {
  background: #1A365D;
  color: #fff;
  transform: rotate(6deg) scale(1.07);
}
.cookie-modal-content .modal-footer {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}

/* UTILITY */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 12px !important; }
.mb-2 { margin-bottom: 12px !important; }

/* ANIMATIONS/TRANSITIONS HELPERS */
.fade-in {
  animation: fadeIn 0.42s ease-in;
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}

/* COLORED ACCENTS */
.highlight-primary { color: #D1A13C; background: #1A365D18; border-radius: 7px; padding: 1px 6px; }
.highlight-success { color: #33691E; background: #E0F4CB; border-radius: 7px; padding: 1px 6px; }

/* INPUTS, FORMS (if extended in pages) */
input, textarea {
  padding: 12px 13px;
  background: #fff;
  border: 1.7px solid #EEE2BB;
  border-radius: 7px;
  font-size: 1.03rem;
  margin-bottom: 9px;
  transition: border 0.13s, box-shadow 0.13s;
}
input:focus, textarea:focus {
  border-color: #D1A13C;
  box-shadow: 0 0 7px 0 #FFE9B5;
}

/* ENSURE LAYOUTS STRICTLY USE FLEX ONLY */
/* No grid, columns, break-inside or absolute for main blocks!  */
