/* Normalize & CSS Reset */
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;
}

/* Set box-sizing for all */
*, *:before, *:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #174056;
  background: #F9F9F6;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

ul, ol {
  list-style: none;
}

a {
  color: #174056;
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 600;
}

a:hover, a:focus {
  color: #65AB66;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
  color: #174056;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

h4, h5, h6 {
  font-size: 1rem;
}

.subtitle {
  color: #65AB66;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section spacing (MANDATORY) */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

/* ---- HEADER ---- */
header {
  background: #F9F9F6;
  box-shadow: 0 2px 12px rgba(23, 64, 86, 0.10);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
header a img {
  height: 40px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #174056;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  border-bottom: 2px solid #65AB66;
  color: #65AB66;
}
.cta-btn {
  background: #174056;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 10px 34px;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  letter-spacing: .03em;
  box-shadow: 0 2px 12px rgba(23,64,86,0.10);
  cursor: pointer;
  margin-left: 30px;
  transition: background 0.17s, transform .14s, box-shadow .18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #65AB66;
  color: #174056;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 21px rgba(23,64,86,0.13);
}
button.mobile-menu-toggle {
  background: none;
  border: none;
  color: #174056;
  font-size: 2rem;
  display: none;
  margin-left: 32px;
  cursor: pointer;
  line-height: 1;
  z-index: 110;
  padding: 4px 7px;
  border-radius: 4px;
  transition: background 0.16s;
}
button.mobile-menu-toggle:hover {
  background: #ecf2ef;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,64,86,0.95);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.66,0,0.33,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.5rem;
  border: none;
  position: absolute;
  top: 20px;
  right: 25px;
  z-index: 125;
  cursor: pointer;
  padding: 9px 14px;
  border-radius: 40px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #65AB66;
  color: #174056;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin: 80px 0 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .04em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .16s, color .16s;
  min-width: 40px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #65AB66;
  border-bottom: 2px solid #65AB66;
}

/* Hide mobile menu toggle on desktop */
@media (min-width: 1024px){
  .mobile-menu-toggle {
    display: none;
  }
}

@media (max-width: 1023px){
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ---- HERO, SECTIONS ---- */
section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 30px rgba(23,64,86,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px){
  section {
    padding: 26px 7px;
    border-radius: 14px;
    margin-bottom: 36px;
  }
}

/* ---- FLEX & COMPONENTS ---- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #ecf2ef;
  border-radius: 18px;
  box-shadow: 0 2px 13px rgba(101,171,102,0.07);
  padding: 24px 20px 20px 20px;
  min-width: 225px;
  max-width: 340px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .14s;
}
.feature-item img {
  width: 38px; height: 38px;
}
.feature-item h3 {
  font-size: 1.13rem;
  color: #174056;
  font-weight: 800;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 1rem;
  color: #174056;
  margin-bottom: 0;
  font-family: 'Open Sans', sans-serif;
}
.feature-item:hover {
  box-shadow: 0 4px 27px rgba(101,171,102,0.24);
  transform: translateY(-3px);
}

/* Card-like services, etc. */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0;
  justify-content: flex-start;
}
.service-item {
  background: #fff;
  border: 2.5px solid #65AB66;
  border-radius: 18px;
  box-shadow: 0 2.5px 11px rgba(101,171,102,0.09);
  padding: 22px 20px 16px 20px;
  min-width: 225px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.service-item h3 {
  font-size: 1.10rem;
  letter-spacing: .01em;
}
.service-item .price {
  color: #174056;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 8px;
  background: #ECF2EF;
  padding: 4px 13px;
  border-radius: 9px;
}
.service-list .service-item:hover {
  box-shadow: 0 7px 25px rgba(101,171,102,0.19);
  border-color: #174056;
}

/* Testimonial Section */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0 0 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 20px;
  background: #F9F9F6;
  border-radius: 16px;
  box-shadow: 0px 3px 20px rgba(23,64,86,.10);
  min-width: 240px;
  flex: 1 1 225px;
  margin-bottom: 20px;
  border-left: 6px solid #65AB66;
  transition: box-shadow .16s, border-color .15s;
}
.testimonial-card p {
  color: #174056;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.5;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #65AB66;
  font-size: 1rem;
  font-weight: 800;
}
.testimonial-card:hover {
  border-left: 6px solid #174056;
  box-shadow: 0px 7px 27px rgba(23,64,86,.14);
}
.rating-summary {
  margin-top: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #174056;
  background: #ECF2EF;
  display: inline-block;
  padding: 9px 19px;
  border-radius: 20px;
  font-weight: 800;
  letter-spacing: .02em;
}

/* Footer */
footer {
  background: #174056;
  color: #fff;
  border-top: 6px solid #65AB66;
  padding: 36px 0 12px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
footer nav.footer-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin: 0 0 0 10px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: border-color .15s, color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-bottom: 2px solid #65AB66;
  color: #65AB66;
}
footer p {
  margin-top: 12px;
  width: 100%;
  text-align: right;
  font-family: 'Open Sans', Arial, sans-serif;
}
footer img {
  height: 38px;
}

/* TEXT SECTIONS, GENERAL */
.text-section {
  font-size: 1.06rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #174056;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul, .text-section ol {
  margin-left: 16px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: disc inside;
}
.text-section ul li, .text-section ol li {
  color: #174056;
  padding-left: 6px;
}
.text-section h3 {
  font-size: 1.1rem;
  color: #65AB66;
  margin-top: 17px;
}
.text-section a {
  color: #65AB66;
  text-decoration: underline;
}
.text-section a:hover {
  color: #174056;
  text-decoration: none;
}

.office-info ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-left: 0;
  list-style: none;
}
.office-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #174056;
  font-weight: 600;
}
.office-info img {
  width: 22px;
  height: 22px;
}

.stats-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 20px 0 24px 0;
}
.stats-highlights li {
  background: #ECF2EF;
  border-radius: 14px;
  font-size: 1.08rem;
  color: #174056;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 18px 22px;
}
.local-presence {
  margin-top: 20px;
  background: #65AB66;
  color: #fff;
  padding: 17px 22px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(101,171,102,0.10);
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0;
}
.features-list li {
  background: #ECF2EF;
  border-radius: 14px;
  padding: 16px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  color: #174056;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
  min-width: 210px;
}
.features-list img {
  width: 28px; height: 28px;
}

/* Table (Car Rental Options) */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  font-size: 1.06rem;
  box-shadow: 0 2px 12px rgba(23,64,86,0.07);
}
th, td {
  padding: 14px 17px;
  text-align: left;
}
th {
  background: #65AB66;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
td {
  color: #174056;
}
tr:nth-child(even) td {
  background: #F9F9F6;
}

/* Buttons (non-cta generic) */
button,
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 22px;
  border: none;
  border-radius: 22px;
  background: #65AB66;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(101,171,102,0.13);
  transition: background 0.17s, color 0.13s, box-shadow .15s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #174056;
  color: #fff;
}

/* Highlights sections */
.customer-support-detail, .customer-support-highlight, .reliability-highlight {
  margin-top: 18px;
  background: #ECF2EF;
  color: #174056;
  font-weight: 600;
  padding: 18px 23px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(23,64,86,0.07);
}

.corporate-offers {
  margin-top: 20px;
  background: #174056;
  color: #fff;
  padding: 14px 19px;
  border-radius: 12px;
}
.corporate-offers ul {
  margin: 10px 0 0 0;
}
.corporate-offers li {
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .features-grid, .service-list, .testimonials, .features-list, .stats-highlights {
    gap: 18px;
  }
}

@media (max-width: 850px) {
  .container {
    max-width: 100vw;
    padding: 0 4px;
  }
  .features-grid, .service-list, .testimonials, .features-list, .stats-highlights {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .main-nav {
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 17px;
    text-align: center;
    align-items: center;
  }
  footer p {
    text-align: center;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.37rem;
  }
  h3 {
    font-size: 1rem;
  }
  .content-wrapper {
    gap: 18px;
  }
  .subtitle {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }
  .office-info ul {
    gap: 9px;
  }
  .feature-item, .service-item, .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 540px) {
  .cta-btn, button, input[type="submit"] {
    padding: 9px 13px;
    font-size: 0.92rem;
  }
  .feature-item, .service-item, .testimonial-card {
    padding: 16px 10px 15px 10px;
  }
  th, td {
    padding: 8px 5px;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #174056;
  padding: 22px 14px 24px 14px;
  box-shadow: 0 -1px 14px rgba(23,64,86,0.17);
  color: #fff;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
  gap: 22px;
  animation: slideUpCookie .6s cubic-bezier(0.77,0,0.18,1);
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.cookie-banner .cookie-btn {
  margin-left: 12px;
  margin-right: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  background: #65AB66;
  border: none;
  color: #174056;
  padding: 10px 22px;
  border-radius: 22px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.14s, color 0.11s;
  box-shadow: 0 1px 7px rgba(101,171,102,0.13);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #ECF2EF;
  color: #174056;
}
.cookie-banner .cookie-btn.reject {
  background: #E74A50;
  color: #fff;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #c93535;
}
.cookie-banner .cookie-btn.settings {
  background: #ECF2EF;
  color: #174056;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #65AB66;
  color: #fff;
}

/* --- Cookie Modal --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,64,86,0.47);
  z-index: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInCookieModal .4s cubic-bezier(0.87,0,0.13,1);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #174056;
  border-radius: 26px;
  max-width: 94vw;
  width: 420px;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 7px 23px rgba(23,64,86,0.21);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.02rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #174056;
  font-weight: 800;
  margin-bottom: 9px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-option label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #174056;
  font-weight: 700;
}
.cookie-option input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #65AB66;
}
.cookie-modal .save-btns {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #174056;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 44px;
  padding: 2px 8px;
  transition: background .14s;
}
.cookie-modal .close-cookie-modal:hover {
  background: #ECF2EF;
}

@media (max-width: 430px) {
 .cookie-modal {
   width: 99vw;
   max-width: 99vw;
   padding: 18px 5px 13px 9px;
 }
}

/* --- Accessibility/Focus Styles --- */
a:focus-visible,
button:focus-visible, 
.cta-btn:focus-visible, 
input:focus-visible {
  outline: 2px solid #65AB66;
  outline-offset: 2px;
}

/* ----------- Extra Micro-interactions ----------- */
.cta-btn:active,
button:active,
.mobile-menu-toggle:active,
.mobile-menu-close:active {
  transform: scale(0.97);
  background: #ECF2EF;
}

/* ----------- Geometric Decorative Patterns (for Modern Bold) ----------- */
/* Example: minor geometric accent triangles at some corners (use with :before/:after if needed)
Not for content elements, only decorative. Only show if .geom-accent is present */
.geom-accent {
  position: relative;
  overflow: visible;
}
.geom-accent::before {
  content: "";
  position: absolute;
  width: 38px; height: 38px;
  background: #65AB66;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: -18px; left: -18px;
  z-index: 0;
  opacity: 0.12;
}

/* hide when not used */
.geom-accent:not(:hover)::before {
  opacity: 0.09;
}

/* ----------- Utilities ----------- */
.mt-32 { margin-top: 32px! important; }
.mb-32 { margin-bottom: 32px! important; }
.mb-24 { margin-bottom: 24px! important; }
.spacer { height: 34px; display: block; width: 100%; }

/* ----------- Hide when JS/cookie accepted ----------- */
.cookie-banner.hide, .cookie-modal-overlay.hide {
  display: none !important;
}

/* ----------- END ----------- */
