/* =====================================
CSS RESET & NORMALIZE (MOBILE FIRST)
======================================= */
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;vertical-align:baseline;font:inherit;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1;font-family:'Georgia',serif;background:#F9F8F6;color:#223140;-webkit-font-smoothing:antialiased}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}img{max-width:100%;display:block;height:auto}a{text-decoration:none;color:inherit}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;box-sizing:border-box;outline:none;background:transparent;border:none}html{font-size:100%;scroll-behavior:smooth}

/* =====================================
FONT & COLOR VARIABLES W/ FALLBACKS
======================================= */
:root {
  --brand-primary: #214A6D;
  --brand-primary-dark: #18314c;
  --brand-secondary: #EDECE7;
  --brand-secondary-dark: #cbc8ba;
  --brand-accent: #FFBB3B;
  --brand-white: #fff;
  --brand-black: #223140;
  --brand-grey: #F5F3F0;
  --font-display: 'Georgia', serif; /* fallback classic serif */
  --font-body: 'Georgia', serif;
  --shadow-card: 0 2px 10px rgba(33,74,109,0.06), 0 1.5px 6px rgba(60,60,60,0.05);
  --shadow-hover: 0 4px 16px rgba(33,74,109, .12);
  --radius-main: 14px;
  --transition-main: all .3s cubic-bezier(.66,.07,.51,1.05);
}

body {
  color: var(--brand-black);
  background: #F9F8F6;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.74;
  letter-spacing: 0.01em;
}

/* =====================================
TYPOGRAPHY
====================================== */
h1 {
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: 1.2;
  margin: 0 0 24px 0;
  color: var(--brand-primary);
  font-weight:700;
  letter-spacing:.01em
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height:1.25;
  font-weight:600;
  color: var(--brand-primary);
  margin-bottom:18px;
  margin-top:0;
  letter-spacing:.01em;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight:600;
  color: var(--brand-black);
  margin-bottom:7px;
}
h4,h5,h6 {
  font-family:var(--font-display);
  font-weight:600;
  color:var(--brand-primary-dark);
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color:#292b30;
}
strong, b {
  font-weight:700;
  color: var(--brand-primary);
}

ul,ol {
  margin-bottom:24px;
  padding-left: 20px;
}
ul li,ol li {margin-bottom:10px;}

/* ================================
CONTAINER & SPACING SYSTEM
================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap:24px;
}
@media (min-width: 900px) {
  .section {
    padding: 64px 0;
    gap:32px;
  }
}

/* ==============================
HEADER & NAVIGATION (DESKTOP)
============================== */
header {
  background: var(--brand-secondary);
  box-shadow:0 1px 10px rgba(33,74,109,0.04);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap:0;
  padding-top:16px;
  padding-bottom:16px;
}
header a img {height:48px;}

nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family:var(--font-body);
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 6px 0;
  border-radius: 6px;
  position: relative;
  transition: background .2s, color .2s;
}
nav a:hover,
nav a:focus {
  color: var(--brand-accent);
  background: var(--brand-secondary-dark);
}
nav .cta {
  background: var(--brand-accent);
  color: var(--brand-black);
  font-weight:700;
  padding: 8px 26px;
  border-radius: 999px;
  box-shadow:0 1px 10px rgba(33,74,109,0.07);
  transition: var(--transition-main);
  margin-left:14px;
}
nav .cta:hover, nav .cta:focus {
  box-shadow:0 4px 20px rgba(33,74,109,0.10);
  background: #ffd366;
  color: var(--brand-primary);
}

/* =========================
MOBILE NAVIGATION
========================= */
.mobile-menu-toggle {
  display: flex;
  align-items:center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  font-size: 2rem;
  color: var(--brand-primary);
  background: var(--brand-white);
  border: 1px solid var(--brand-secondary-dark);
  cursor: pointer;
  z-index:1051;
  transition: box-shadow 0.2s;
  margin-left:16px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  box-shadow: 0 2px 6px rgba(33,74,109,0.07);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}
/* Hide Desktop nav on mobile */
@media (max-width: 1023px) {
  nav {
    display:none;
  }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width:1024px){
  .mobile-menu-toggle{ display: none;}
  .mobile-menu { display:none !important; }
}

.mobile-menu {
  position: fixed;
  top:0;left:0;right:0;bottom:0;
  background: rgba(29,30,38,0.95);
  z-index:2010;
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  justify-content:flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.77,0,.18,1);
  /* Hidden by default, use .is-open to show */
}
.mobile-menu.is-open {
  transform: translateX(0);
  box-shadow: 4px 0 20px rgba(33,74,109,0.12);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 22px 6px 0;
  background:var(--brand-white);
  border-radius:8px;
  border: 1px solid var(--brand-secondary-dark);
  color:var(--brand-primary);
  font-size:1.7rem;
  width:46px;height:46px;
  cursor:pointer;
  display:flex;justify-content:center;align-items:center;
  transition:background .2s,border .2s, color .2s;
  z-index:2012;
}
.mobile-menu-close:hover,.mobile-menu-close:focus{
  background:var(--brand-accent);
  color:var(--brand-primary);
  border-color:var(--brand-accent);
}
.mobile-nav {
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:0 30px;
  margin-top:30px;
  width:100%;
}
.mobile-nav a {
  font-size:1.16rem;
  font-weight:600;
  color:var(--brand-white);
  border-radius:8px;
  padding:11px 0 10px 8px;
  background:none;
  transition:background .18s, color .18s;
  width:90%;
  display:block;
}
.mobile-nav a:hover,.mobile-nav a:focus{
  background:var(--brand-primary);
  color:var(--brand-accent);
}
.mobile-nav a.cta {
  background:var(--brand-accent);
  color:var(--brand-primary);
  border-radius:30px;
  padding: 13px 0 13px 18px;
  margin-top:12px;
}

/* full screen overlay for mobile menu animation */
.mobile-menu.is-open {
  display:flex;
}

/* =============================
HERO & PROMO SECTION
============================= */
.hero-section {
  padding: 60px 0 50px 0;
  background: linear-gradient(120deg, var(--brand-secondary) 90%, #e4e3dc 100%);
  display:flex;
  align-items:center;
}
.hero-section .container,.hero-section .content-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  text-align:center;
}
.hero-section h1 {
  font-size:2.2rem;
  max-width:520px;
  margin-bottom:0;
}
.hero-section p{max-width:460px;margin-bottom:21px;}

/* =============================
FEATURES/FLEXBOX GRIDS/CARDS
============================= */
.feature-grid, .service-tiles, .value-cards, .testimonial-cards, .features-list, .card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content:center;
  align-items:stretch;
}
.feature-item, .service-item, .value-card, .card {
  background: var(--brand-white);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .2s;
  border: 1px solid rgba(33,74,109,0.075);
  margin-bottom:20px;
  min-width:230px;
  max-width:340px;
}
.feature-item img, .features-list img {height:44px;width:44px;}
.feature-item h3{margin-bottom:3px;}
.feature-item:hover,
.feature-item:focus,
.value-card:hover,
.value-card:focus,
.service-item:hover,
.service-item:focus,
.card:hover,
.card:focus{
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-accent);
}

.features-section ul.USP-bullets, .features-section .usp-bullets, .quick-benefits-list, .pricing-notes ul, .discounts-specials ul, .no-hidden-fees-list,
.rental-options-summary ul{
  margin:21px 0 12px 24px;
  padding-left: 16px;
  font-size:1rem;
  color:#555;
}
.features-section .usp-bullets li::before, .quick-benefits-list li::before {
  content:'•'; color:var(--brand-accent);font-weight:700;font-size:1em; margin-right:8px;}

.features-list {
  flex-wrap:wrap;
  gap:24px;
  margin-bottom:12px;
}
.features-list .feature-item {
  min-width:190px; max-width:320px;
  align-items:center; gap:12px;
  flex-direction:row;
  border:0;
  background:var(--brand-grey);
  box-shadow:none;
  padding:18px 14px;
}
.features-list .feature-item span {
  font-weight:600;
  color:var(--brand-primary);
}

/* =============================
CARD CONTAINER/FLEX LAYOUTS
============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position:relative;
  margin-bottom:20px;
}
.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;
}
@media(max-width:768px){
  .text-image-section{ flex-direction:column; align-items:flex-start; gap:20px; }
}

/* ==========================
TESTIMONIALS & REVIEWS
========================== */
.testimonials-section {
  background: var(--brand-white);
  padding:60px 0 54px 0;
}
.testimonials-section .content-wrapper {align-items:center;gap:36px;}
.testimonial-cards {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: var(--brand-secondary);
  color: var(--brand-black);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  padding: 20px 28px 22px 26px;
  min-width:230px;
  max-width:330px;
  transition: box-shadow .22s;
  margin-bottom: 20px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-accent);
}
.testimonial-card p {
  font-size:1.04rem;
  line-height:1.52;
  color: #1d222b;
}
.testimonial-meta {
  font-style: italic;
  font-size:.98rem;
  color:#556077;
  text-align:right;
  align-self:flex-end;
  margin-top:4px;
}
.rating-summary {
  margin-top:14px;
  font-size:1.1rem;
  font-family: var(--font-display);
  color: var(--brand-primary);
}

/* CAR FLEET TABLE
---------------------*/
.car-detail-tables h2 {
  margin-top:32px;
  margin-bottom:16px;
}
.car-detail-tables table {
  width:100%;
  border-radius:10px;
  overflow:hidden;
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
  border:1px solid #e2e2e2;
  margin-bottom:28px;
}
.car-detail-tables th, .car-detail-tables td {
  text-align:left;
  padding: 16px 14px;
  border-bottom:1px solid #eee;
  font-size:1rem;
}
.car-detail-tables th {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight:600;
  font-size:1.06rem;
  letter-spacing:.01em;
}
.car-detail-tables td {
  background:var(--brand-white);
}
.car-detail-tables tr:last-child td {
  border-bottom:none;
}
.car-detail-tables a {
  color: var(--brand-accent);
  font-weight:700;
  letter-spacing:.03em;
}
.car-detail-tables a:hover, .car-detail-tables a:focus {
  text-decoration:underline;
  color:var(--brand-primary);
}


/* =============================
CONTACT INFORMATION BLOCKS
============================= */
.address-block, .phone-block, .email-block, .hours-block {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  margin-bottom:14px;
  color: var(--brand-primary);
}

/* =============================
CTA BUTTONS & LINKS
============================= */
.cta, a.cta, button.cta {
  display:inline-block;
  font-family:var(--font-display);
  font-size:1.11rem;
  font-weight:700;
  background: var(--brand-accent);
  color: var(--brand-primary);
  padding: 14px 36px;
  border-radius:999px;
  box-shadow:0 2px 7px rgba(255,187,59,.05);
  border:none;
  cursor:pointer;
  margin-top:6px;
  transition:var(--transition-main), color .12s;
  letter-spacing:.01em;
  text-align:center;
}
.cta:hover,.cta:focus {
  background:#ffd366;
  color: var(--brand-black);
  box-shadow:0 6px 16px rgba(255,187,59,.19);
}

/* =============================
ACCORDION FAQ
============================= */
.accordion-faq-list {display: flex; flex-direction: column; gap: 20px;}
.faq-item {
  border-radius: var(--radius-main);
  background: var(--brand-secondary);
  box-shadow: var(--shadow-card);
  padding: 18px 20px;
  transition: box-shadow .18s;
}
.faq-item h2 {
  font-size: 1.12rem; font-family: var(--font-display); margin-bottom: 8px;
  color: var(--brand-primary);
}
.faq-item p {font-size:.99rem; margin-bottom:0;}

/* =============================
LEGAL SECTIONS/TEXT
============================= */
.legal-section {
  min-height: 60vh;
  padding:40px 0 60px 0;
  background: var(--brand-secondary);
  border-radius: 0 0 24px 24px;
}
.legal-section .content-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

/* =============================
FOOTER
============================= */
footer {
  background: var(--brand-secondary-dark);
  padding:38px 0 13px 0;
  box-shadow:0 -1px 8px rgba(33,74,109,0.04);
}
footer .container {
  flex-direction:column;
  align-items:center;
  gap:16px;
  text-align:center;
}
footer a img {height:32px;margin-bottom:10px;}
footer nav {display:flex;flex-direction:row;gap:22px;margin:14px 0;align-items:center;}
footer nav a{font-size:0.97rem; color: var(--brand-primary-dark);font-family:var(--font-body);font-weight:600;transition:color .16s;}
footer nav a:hover,footer nav a:focus{color:var(--brand-accent);}
.footer-contact {
  display:flex;
  flex-direction:column;
  gap:7px;
  align-items:center;
  font-size:.97rem;
  color: #353944;
  margin-bottom:4px;
  margin-top:10px;
}
.footer-contact img {vertical-align:middle;height:18px;width:18px;margin-right:6px;}
footer p {
  font-size:.91rem;
  color:#7c7c7c;
}

/* ============================
COOKIE CONSENT BANNER
============================ */
.cookie-banner {
  position: fixed;
  left:0; right:0; bottom:0;
  background: var(--brand-secondary-dark);
  color: var(--brand-black);
  z-index: 2500;
  padding: 18px 24px;
  box-shadow:0 -2px 20px rgba(24,40,65,.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap:18px;
  animation: cookieSlideIn 0.6s cubic-bezier(.76,0,.2,1);
}
@keyframes cookieSlideIn{
  0%{transform:translateY(120px);opacity:0;}100%{transform:translateY(0);opacity:1;}
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: 7px;
  border: 1px solid var(--brand-accent);
  font-family: var(--font-display);
  font-weight:600;
  font-size:1rem;
  padding:6.5px 22px;
  cursor:pointer;
  box-shadow:0 1px 6px rgba(33,74,109,0.04);
  transition: background .18s, color .18s, box-shadow .16s;
}
.cookie-banner button:hover,.cookie-banner button:focus{
  background:var(--brand-primary);
  color:var(--brand-white);
  box-shadow:0 4px 18px rgba(33,74,109,0.13);
}
.cookie-banner .cookie-settings-btn {
  background: var(--brand-white);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}
.cookie-banner .cookie-settings-btn:hover,.cookie-banner .cookie-settings-btn:focus {
  background:var(--brand-primary);
  color: var(--brand-accent);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top:50%;
  transform: translate(-50%, -50%) scale(1);
  background: var(--brand-white);
  border: 1.5px solid var(--brand-primary);
  border-radius: 24px;
  box-shadow:0 7px 32px rgba(33,74,109,0.17);
  padding:38px 26px 26px 32px;
  z-index: 2600;
  display: flex;
  flex-direction: column;
  gap:18px;
  max-width:375px; width:95vw;
  min-width:250px;
  animation: cookieModalIn .45s cubic-bezier(.6,.1,.3,1.15) forwards;
}
@keyframes cookieModalIn{
  0%{transform:translate(-50%,70%) scale(.95);opacity:0;}100%{transform:translate(-50%,-50%) scale(1);opacity:1;}
}
.cookie-modal h2{font-size:1.23rem;margin-bottom:5px;}
.cookie-modal label {
  display:flex; align-items:center; gap:12px;
  font-size:1.07rem; margin-bottom:12px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--brand-primary);
  width:19px;height:19px;margin:0 5px 0 0;
}
.cookie-modal .cookie-modal-actions{display:flex;gap:12px;margin-top:10px;}
.cookie-modal .cookie-modal-actions button {
  background: var(--brand-accent);
  color:var(--brand-primary);
  font-weight:600;
  border-radius:7px;
  padding:8px 18px;
  border:none;
  margin-top:0;
}
.cookie-modal .cookie-modal-actions button:hover,.cookie-modal .cookie-modal-actions button:focus{
  background: var(--brand-primary);
  color:var(--brand-white);
}
.cookie-modal .cookie-close-btn{
  position:absolute;top:12px;right:16px;
  background:var(--brand-white);
  border-radius:50%;
  font-size:1.4rem;
  color:var(--brand-primary);
  border:none;cursor:pointer;
  width:34px;height:34px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 1px 6px rgba(33,74,109,0.05);}
.cookie-modal .cookie-close-btn:hover{
  background:var(--brand-secondary);color:var(--brand-accent);
}

/* Hide scroll when cookie modal open */
body.cookie-modal-open {overflow:hidden;}

/* =============================
TABLES & PRICING
============================= */
.pricing-table-section table {
  width:100%; border-radius:11px; background: var(--brand-white); box-shadow: var(--shadow-card);
  border:1px solid #dedede; overflow:hidden; margin-bottom: 20px;
}
.pricing-table-section th,.pricing-table-section td {
  padding:15px 13px; text-align:left; border-bottom:1px solid #efefef; font-size:1.01rem;
}
.pricing-table-section th {
  background:var(--brand-secondary);
  color:var(--brand-primary);
  font-weight:600;
  font-family:var(--font-display);
}
.pricing-table-section tr:last-child td{border-bottom:none;}
.pricing-notes ul,.discounts-specials ul {
  margin-left:18px; margin-top:10px;}

@media (max-width:750px){
  .pricing-table-section table, .car-detail-tables table { font-size:.93rem; }
  .pricing-table-section th, .car-detail-tables th, .pricing-table-section td, .car-detail-tables td { padding:10px 6px; }
}

/* =============================
RESPONSIVE DESIGN (MOBILE-FIRST)
============================= */
@media (max-width:1100px){
  .container{max-width:98vw;padding:0 14px;}
}
@media (max-width: 1023px) {
  header .container{flex-direction:row;gap:0;}
}
@media (max-width:900px){
  h1{font-size:2.07rem;}
  h2{font-size:1.4rem;}
  .hero-section{padding:38px 0 38px 0;}
  .section{padding:30px 10px;}
  .feature-item,.service-item,.value-card,.card,.testimonial-card{min-width:160px;max-width:98vw;padding:17px 10px}
}
@media (max-width:750px){
  .feature-grid, .service-tiles, .value-cards, .testimonial-cards, .features-list,.card-grid {
    flex-direction: column;
    gap:18px;
    align-items:center;
  }
}
@media (max-width: 700px) {
  .hero-section h1{font-size:1.43rem;}
  .container{padding:0 7px;}
}
@media (max-width:520px){
  .section{padding:22px 3px;}
  .feature-item,.service-item,.card,.testimonial-card,.faq-item{padding:10px 6px;}
}

/* =============================
MICRO-INTERACTIONS & HOVER FX
============================= */
.cta, button.cta, nav .cta, .mobile-nav a.cta, .cookie-banner button, .cookie-modal .cookie-modal-actions button {
  transition: background .17s, color .13s, box-shadow .16s, border .16s;
  outline:none;
}
.cta:active,button.cta:active,.cookie-banner button:active{box-shadow:0 2px 3px rgba(33,74,109,0.12);}

/* =============================
MISCELLANEOUS/ELEMENT UTILS
============================= */
.highlight, .mission-statement, .local-roots{
  background:var(--brand-secondary);
  border-left:5px solid var(--brand-accent);
  padding:9px 16px 9px 18px;
  border-radius:7px;
  font-size:1.03rem;
  margin:9px 0 13px 0;
}
.trust-badges {font-size:0.98rem;color:var(--brand-primary-dark);margin-top:7px;margin-bottom:14px;}

/* UTILITIES */
.text-center{text-align:center}
.mt-2{margin-top:14px}
.mt-3{margin-top:18px}
.mt-4{margin-top:28px}
.mb-2{margin-bottom:14px}
.mb-3{margin-bottom:18px}
.mb-4{margin-bottom:28px}

/* Hide elements on mobile if needed */
.mobile-hide {display:block;}
@media (max-width:800px) { .mobile-hide {display:none;} }

/* END CSS */
