/* =====================================================
   CSS RESET & NORMALIZE (Mobile-first, font-smoothing)
====================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #272B36;
  background-color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}
a {
  color: #D7B471;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #ff3982; /* Energetic hot pink hover */
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #272B36;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; letter-spacing: -1px; }
h2 { font-size: 1.8rem; margin-bottom: 16px; letter-spacing: -.5px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p { margin-bottom: 16px; }
strong { color: #272B36; font-weight: 700; }
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #272B36;
  background: #fffbe7;
  border-left: 5px solid #D7B471;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 12px 0 0 12px;
}

/* ========================
   VIBRANT ENERGETIC COLORS
========================= */
:root {
  --brand-primary: #272B36;
  --brand-secondary: #D7B471;
  --brand-accent: #FFFFFF;
  --electric-pink: #ff3982;
  --electric-blue: #19B2FF;
  --electric-green: #38eb96;
  --charcoal: #232837;
  --light-bg: #F5F4F2;
  --card-bg: #fff;
  --shadow: 0 6px 24px rgba(39,43,54,0.07),0 1.5px 5px rgba(215,180,113,0.10);
}

/* ===================
   CONTAINERS & LAYOUT
==================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: transparent;
  border-radius: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 480px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(255,57,130,0.15);
  transform: translateY(-6px) scale(1.025);
  z-index: 2;
}
.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;
  background: #fffbe7;
  border: 2px solid #D7B471;
  box-shadow: 0 3px 12px rgba(39,43,54,0.08);
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 24px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px #ff39823d, 0 2px 6px #D7B47155;
  transform: translateY(-3px) scale(1.02);
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #272B36;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.05em;
  margin-left: 8px;
  font-weight: 600;
  white-space: nowrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(110deg, #D7B471 69%, #19B2FF 120%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 30px 30px;
  position: relative;
  margin-bottom: 60px;
  box-shadow: 0 12px 64px -22px #ff39824f;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.7rem;
  text-shadow: 0 2px 16px #ffffff85;
  letter-spacing: -2px;
}
.tagline {
  color: #232837;
  background: #fff;
  padding: 8px 22px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 8px #D7B47144;
  margin-bottom: 16px;
  font-size: 1.07rem;
}
.cta-button, .primary-cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  background: linear-gradient(90deg, #ff3982 15%, #19B2FF 90%);
  color: var(--brand-accent);
  border: none;
  padding: 14px 34px;
  margin-top: 8px;
  font-size: 1.07rem;
  letter-spacing: 0.07em;
  border-radius: 22px;
  box-shadow: 0 4px 16px #d7b47144,0 2px 6px #272B3630;
  cursor: pointer;
  transition: background .2s,cubic-bezier(.4,0,.2,1), box-shadow .2s, transform .1s;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .primary-cta:hover,
.cta-button:focus, .primary-cta:focus {
  background: linear-gradient(91deg,#19B2FF 5%, #ff3982 96%);
  color: #fff;
  box-shadow: 0 6px 28px #ff398262;
  transform: translateY(-2px) scale(1.04);
}
.primary-cta {
  background: linear-gradient(90deg,#D7B471 50%,#ff3982 120%);
  color: var(--brand-primary);
  border-radius: 22px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 14px;
}
.primary-cta:hover, .primary-cta:focus {
  background: linear-gradient(90deg,#ff3982 18%,#D7B471 90%);
  color: #fff;
}

/* MAIN NAV */
header {
  background: #fff;
  box-shadow: 0 1.5px 8px #23283718;
  padding: 0;
  position: relative;
  z-index: 23;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  padding: 10px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #272B36;
  font-size: 1.04rem;
  padding: 6px 16px;
  border-radius: 14px;
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #ff3982;
  color: #fff;
}
.main-nav img {
  height: 42px;
  margin-right: 10px;
  vertical-align: middle;
}

/* STORY/ABOUT/FEATURES */
.features, .feature-grid, .luxury-features-grid, .value-list, .vehicle-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 22px 0 16px 0;
  padding: 0;
}
.features .content-wrapper > h2, .services-preview h2, .benefits h2 {
  color: #ff3982;
}
.feature-grid li, .luxury-features-grid li, .value-list li, .vehicle-categories-list li {
  flex: 1 1 220px;
  min-width: 180px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border-left: 5px solid #19B2FF;
  transition: border-color .16s, box-shadow .16s;
}
.feature-grid li:hover, .luxury-features-grid li:hover, .value-list li:hover, .vehicle-categories-list li:hover {
  border-left: 5px solid #ff3982;
  box-shadow: 0 4px 16px #19b2ff33,0 2px 6px #ff398234;
}
.feature-grid img {
  width: 34px;
  height: 34px;
  margin-bottom: 4px;
}

/* TABLES (PRICING TABLE) */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin: 24px 0 18px 0;
  overflow: hidden;
}
thead {
  background: #D7B471;
}
th, td {
  padding: 14px 18px;
  text-align: left;
  font-size: 1.02rem;
  border-bottom: 1px solid #ede8da;
}
th {
  color: #272B36;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
}
td {
  color: #272B36;
}
tr:last-child td {
  border-bottom: none;
}

/* FOOTER */
footer {
  background: #232837;
  color: #fff;
  padding: 40px 0 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
  justify-content: center;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.94;
  transition: color .16s, opacity .13s;
}
.footer-menu a:hover {
  color: #ff3982;
  opacity: 1;
}
.footer-brand {
  font-size: 0.98rem;
  opacity: 0.67;
  letter-spacing: 0.04em;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  margin-top: 14px;
  font-size: 1rem;
  padding: 16px 20px;
  background: #fffbe7;
  border: 1.5px solid #D7B47177;
  border-radius: 13px;
  color: #272B36;
}

/* FORMS (Contact) */
input, textarea {
  width: 100%;
  padding: 12px 14px;
  margin: 12px 0;
  border-radius: 11px;
  border: 1.5px solid #ede8da;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #ff3982;
}

/* =========================================
   MOBILE NAVIGATION & HAMBURGER ANIMATION
========================================= */
.mobile-menu-toggle {
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ff3982;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 11px;
  width: 48px;
  height: 48px;
  z-index: 400;
  cursor: pointer;
  box-shadow: 0 2px 8px #d7b47133,0 1px 4px #23283718;
  transition: background .18s, color .18s, box-shadow .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #D7B471;
  color: #232837;
  box-shadow: 0 5px 18px #ff398262;
}
.main-nav {
  width: 100%;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 95vw;
  max-width: 340px;
  background: #232837;
  color: #fff;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(.73,-0.21,.63,1.49);
  z-index: 9903;
  box-shadow: -11px 2px 44px #272b366f;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: #ff3982;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  border-radius: 11px;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 20px 18px 18px 0;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #D7B471;
  color: #232837;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  padding: 34px 32px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  background: none;
  padding: 8px 6px 8px 8px;
  border-radius: 12px;
  transition: background .16s, color .16s;
  border-left: 2px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ff3982;
  color: #fff;
  border-left: 2.5px solid #D7B471;
}

/* Hamburger/nav responsive hiding */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* =====================================
   COOKIE CONSENT BANNER & MODAL
======================================= */
#cookie-banner, .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #272B36;
  color: #fffbe7;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px 8px 27px 8px;
  z-index: 9908;
  box-shadow: 0 -2px 18px #D7B47177;
  font-size: 1rem;
  border-radius: 24px 24px 0 0;
  animation: cookie-banner-in .5s cubic-bezier(.62,0,.34,1.57);
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0%);   opacity: 1; }
}
.cookie-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
}
.cookie-btn {
  background: #ff3982;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .14s;
  box-shadow: 0 2px 7px #D7B47122;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#19B2FF 5%, #ff3982 110%);
}
.cookie-btn.decline {
  background: #272B36;
  color: #fffbe7;
  border: 2px solid #ff3982;
}
.cookie-btn.settings {
  background: #D7B471;
  color: #232837;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #19B2FF;
  color: #fff;
  box-shadow: 0 4px 14px #ff398255;
}

/* COOKIE MODAL/PREFERENCES */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1); 
  background: #fffbe7;
  color: #232837;
  z-index: 10710;
  min-width: 320px;
  max-width: 95vw;
  border-radius: 21px;
  padding: 34px 32px 24px 32px;
  box-shadow: 0 13px 60px #23283764, 0 1px 10px #D7B47186;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookie-modal-in .4s cubic-bezier(.53,-0.23,.23,1.39);
}
@keyframes cookie-modal-in {
  from { transform: translate(-50%,-48%) scale(.81); opacity: 0; }
  to   { transform: translate(-50%,-50%) scale(1);   opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 18px;
  color: #ff3982;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.04rem;
  padding-bottom: 6px;
  border-bottom: 1px solid #ede8da88;
}
.cookie-category.essential label,
.cookie-category.essential input {
  cursor: not-allowed;
  opacity: .6;
}


/* ====================
   MISC / UTILITIES
===================== */
.section:last-child,
section:last-child {
  margin-bottom: 0 !important;
}
li {
  margin-bottom: 10px;
}
li:last-child {
  margin-bottom: 0;
}

/* List with icon */
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  padding-bottom: 6px;
}
.text-section img {
  width: 22px;
  height: 22px;
}

/* Responsive Typography & Spacing */
@media (max-width: 700px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, section {
    margin-bottom: 36px;
    padding: 25px 4px 32px 4px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  .hero {
    min-height: 200px;
    padding-top: 23px;
    padding-bottom: 22px;
    border-radius: 0 0 19px 19px;
  }
  .cta-button, .primary-cta {
    font-size: .98rem;
    padding: 11px 21px;
    border-radius: 14px;
    margin-left: 0;
  }
  .main-nav img {
    height: 34px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .features, .feature-grid, .luxury-features-grid, .value-list, .vehicle-categories-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
  }
}

/* Accessibility/Focus States */
a:focus, button:focus, input:focus {
  outline: 2.5px solid #19B2FF;
  outline-offset: 2px;
}

/* Animations for microinteractions */
.cta-button, .primary-cta, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn {
  transition: background .18s, color .18s, transform .12s, box-shadow .18s;
}

/* SHADOW & CARD DESIGN */
.card, .testimonial-card, .feature-grid li, .luxury-features-grid li {
  box-shadow: 0 2px 14px #d7b47121,0 2px 16px #ff39820f;
}

/**** CRITICAL: Prevent Overlapping ****/
.card, .feature-grid li, .luxury-features-grid li, .testimonial-card, .content-wrapper, .section, section {
  margin-bottom: 20px;
}
/*** spacing between all major elements ***/
.section > *, section > * {
  margin-bottom: 18px;
}
/**** Hide empty last margins ****/
.section > *:last-child, section > *:last-child { margin-bottom: 0; }

/* ------------------------------------ */
/* HIGH-ENERGY / VIBRANT VISUAL CUES ---- */
/* Gradient/solid block divider for energetic rhythm */
.vibrant-divider {
  width: 80px;
  height: 7px;
  background: linear-gradient(90deg, #D7B471 10%, #19B2FF 60%, #ff3982 100%);
  border-radius: 5px;
  margin: 32px auto 32px auto;
  box-shadow: 0 2px 15px #19b2ff44, 0 1px 2px #ff398244;
}

/* TABLET+ (Tighten card grid) */
@media (min-width: 620px) {
  .card-container, .features .feature-grid, .content-grid {
    flex-direction: row;
    gap: 24px;
  }
  .card {
    min-width: 300px;
    flex: 1 1 320px;
  }
}

/* Style Legal/Info Pages */
.legal {
  background: #f9f6ef;
  border-radius: 19px;
  box-shadow: 0 2px 22px #d7b47112;
  margin-bottom: 40px;
  padding: 32px 18px 26px 18px;
}
.legal h1, .legal h2 {
  color: #19B2FF;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Confirmation/success pages */
.confirmation h1 {
  color: #19B2FF;
  margin-bottom: 18px;
}
.confirmation a.cta-button {
  margin-top: 20px;
}

/* -- ============= END OF CSS ============== -- */