/* CSS RESET & BASE STYLES */
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: 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: #F7F9FB;
  color: #283245;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 24px;
}
strong {
  font-weight: 600;
}

:root {
  /* Luxury Premium Palette */
  --primary: #23436D;
  --secondary: #F7F9FB;
  --accent: #F4A259;
  --gold: #D1B464;
  --deep-navy: #192536;
  --body-bg: #F7F9FB;
  --text: #283245;
  --text-dark: #1A2333;
  --text-light: #fff;
  --card-bg: #fff;
  --card-border: #EBEDF0;
  --shadow: 0 4px 24px rgba(36, 60, 109, 0.09);
  --shadow-hover: 0 8px 32px rgba(36, 60, 109, 0.16);
  --radius: 16px;
  --radius-small: 10px;
  --transition: all 0.23s cubic-bezier(.35,1.1,.34,1);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* TYPOGRAPHY SCALE */
h1 { font-size: 2.5rem; font-family: var(--font-display); font-weight: 700; color: var(--deep-navy); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
h2 { font-size: 2rem; font-family: var(--font-display); font-weight: 600; color: var(--primary); margin-bottom: 12px; }
h3 { font-size: 1.25rem; font-family: var(--font-display); font-weight: 500; color: var(--deep-navy); margin-bottom: 8px; }
h4 { font-size: 1.1rem; font-family: var(--font-display); font-weight: 500; color: var(--primary); margin-bottom: 8px; }
p, ul, ol, li { font-size: 1rem; font-family: var(--font-body); color: var(--text); margin-bottom: 10px; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}

/* LUXURY-PREMIUM EMPHASIS */
.gold {
  color: var(--gold);
}

/* CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
.section, .about, .services-list, .services-overview, .features, .fleet-types, .team, .countries-covered, .legal, .faq-content, .contact-section, .confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .content-wrapper {
    flex-direction: row;
    gap: 32px;
    justify-content: space-between;
    align-items: stretch;
  }
}

.text-section, .policy-text, .terms-text, .cookie-policy-text, .gdpr-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* HEADER */
header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 4px 20px rgba(36,67,109,0.06);
  font-family: var(--font-display);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}
header img {
  height: 50px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.main-nav a {
  color: var(--deep-navy);
  opacity: 0.9;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.16s, border-color 0.16s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  outline: none;
}
.cta-btn {
  background: var(--gold);
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 30px;
  border-radius: var(--radius-small);
  box-shadow: 0 2px 14px rgba(209, 180, 100, 0.13);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: var(--transition);
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #b39a53;
  color: #fff;
  box-shadow: 0 4px 20px rgba(209, 180, 100, 0.23);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--deep-navy);
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 50%;
  transition: background 0.15s;
  z-index: 201;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(36,67,109,0.09);
  outline: none;
}

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
  header .container { gap: 0; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36, 67, 109, 0.97);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.49,.39,.22,1.29);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--gold);
  cursor: pointer;
  margin: 22px 18px 0 0;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff486;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 38px;
  margin-left: 30px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #fff;
  font-family: var(--font-display);
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid rgba(209, 180, 100, 0.13);
  transition: color .17s, background .13s;
  border-radius: 0;
  margin-bottom: 0;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--gold);
  background: rgba(209,180,100,0.09);
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(100deg, #fff 67%, #faf5e4 100%);
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--card-border);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--deep-navy);
  font-weight: 700;
}
.hero p {
  font-size: 1.18rem;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 18px;
}
.hero .cta-btn { margin-top: 20px; }
@media (max-width: 768px) {
  .hero { padding-top: 20px; padding-bottom: 20px; }
  .hero h1 { font-size: 1.5rem; }
}

/* FEATURE GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 210px;
  transition: box-shadow .23s, transform .18s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
}
.feature-item h3 {
  color: var(--primary);
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.035);
  border-color: var(--gold);
}

/* SERVICE GRIDS */
.services-overview-grid, .services-list-grid, .fleet-type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item, .fleet-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow .23s, border-color .18s, transform .12s;
}
.service-item img, .fleet-item img {
  width: 36px;
  height: 36px;
}
.service-item:hover, .fleet-item:hover,
.service-item:focus-within, .fleet-item:focus-within {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(244, 162, 89, 0.06);
  transform: translateY(-2px) scale(1.025);
}

/* SECTION LINKS */
.link-secondary {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color .18s;
}
.link-secondary:hover, .link-secondary:focus {
  color: var(--gold);
  text-decoration: none;
}

/* TESTIMONIAL SLIDER & CARD */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff7eb;
  border-radius: var(--radius);
  border: 1.5px solid var(--gold);
  box-shadow: 0 6px 30px rgba(244, 162, 89, 0.07);
  padding: 20px 32px 20px 22px;
  min-width: 260px;
  max-width: 400px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow .21s, transform .14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 38px rgba(209, 180, 100, 0.15);
  transform: translateY(-3px) scale(1.02);
}
.testimonial-content p {
  font-size: 1.05rem;
  color: #222;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-name {
  font-weight: 700;
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-size: 1.01rem;
}
.testimonial-location {
  color: #797979;
  font-size: 0.99rem;
  font-style: normal;
  margin-left: 6px;
}
.star-rating {
  display: flex;
  gap: 3px;
  margin-top: 9px;
}
.star-rating img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 0 #fffbe5);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(95deg, #fff 74%, #f9e6c7 100%);
  padding: 38px 0 38px 0;
  border-radius: var(--radius);
  box-shadow: 0 4px 36px rgba(36,67,109,0.09);
  text-align: center;
}
.cta-section h2 { color: var(--primary); margin-bottom: 12px; }
.cta-section p { font-size: 1.07rem; margin-bottom: 20px; }
.cta-section .cta-btn { margin-top: 8px; }

/* ABOUT & TEAM PAGE SECTIONS */
.team {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.team .text-section, .about .text-section {
  width: 100%;
  max-width: 540px;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  border: 1.5px solid var(--primary);
  transition: box-shadow .20s, border-color .18s;
  margin-bottom: 0;
}
.faq-item h3 {
  font-size: 1.14rem; color: var(--primary); margin-bottom: 8px;
  cursor: pointer; position: relative; font-family: var(--font-display);
}
.faq-item .faq-answer {
  font-size: 1rem; color: var(--deep-navy); margin-bottom: 0;
  margin-top: 6px;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.faq-contact-cta {
  margin-top: 14px;
  font-size: 1.05rem;
}
.faq-contact-cta a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
}

/* LEGAL, POLICY SECTIONS & TEXT SECTIONS */
.legal {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.policy-text, .terms-text, .cookie-policy-text, .gdpr-text {
  font-size: 1.07rem;
  color: var(--text);
}

/* CONTACT PAGE */
.contact-section {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact-section .content-wrapper {
  gap: 36px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
  margin-bottom: 7px;
}
.contact-details img {
  width: 18px;
  height: 18px;
  margin-right: 0px;
}
.contact-details a {
  color: var(--primary);
  text-decoration: underline;
}
.contact-map {
  min-width: 220px;
}
.map-placeholder {
  background: #EAE6DA url("../assets/icons/icon-marker.svg") center no-repeat;
  background-size: 64px;
  min-height: 120px; min-width: 180px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-top: 8px;
}

/* FOOTER */
footer {
  background: var(--deep-navy);
  color: var(--text-light);
  padding: 44px 0 22px 0;
  font-family: var(--font-body);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.footer-brand {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.footer-brand img {
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
  max-width: 350px;
}
.footer-contact img {
  width: 16px;
  margin-right: 4px;
  vertical-align: middle;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* CARDS, SHADOWS, SPACING */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  border: 1.5px solid var(--card-border);
  transition: var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.017);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* BUTTONS */
button, .cta-btn {
  font-family: var(--font-display);
  cursor: pointer;
}
button {
  background: var(--gold);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-small);
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(209,180,100,0.08);
  transition: background .19s, color .12s, box-shadow .19s;
}
button:hover, button:focus {
  background: #b39a53;
  color: #fff;
  outline: none;
}

/* MISC UTILITY */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 1100px) {
  .container { max-width: 95vw; }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; gap: 12px; }
  .feature-grid, .services-overview-grid, .fleet-type-grid, .services-list-grid, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .cta-section { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 500px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .section, .about, .services-list, .features, .fleet-types, .team, .countries-covered, .legal, .faq-content, .contact-section {
    padding: 22px 4px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe9;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -2px 18px rgba(36,67,109,0.08);
  z-index: 9933;
  padding: 23px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  width: 100vw;
  font-size: 1rem;
  font-family: var(--font-body);
  animation: cookieSlideIn 0.9s cubic-bezier(.12,.96,.46,1.18);
  align-items: center;
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 6px;
  max-width: 540px;
  flex: 1;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner .cookie-btn {
  background: var(--gold);
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 18px;
  margin-right: 4px;
  transition: var(--transition);
  box-shadow: 0 1px 8px rgba(209,180,100,0.07);
  cursor: pointer;
}
.cookie-banner .cookie-btn.secondary {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
  font-weight: 500;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #b39a53;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,40,54,0.45);
  z-index: 9996;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fffaf1;
  border-radius: var(--radius);
  padding: 36px 28px 28px 28px;
  min-width: 290px;
  max-width: 420px;
  color: var(--primary);
  box-shadow: 0 12px 38px rgba(209,180,100,0.21);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: modalFadeIn .55s ease;
  position: relative;
}
@keyframes modalFadeIn {
  from { transform: translateY(-30px) scale(.93); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}
.cookie-modal-content label {
  font-size: 1.01rem;
  font-weight: 500;
  color: var(--deep-navy);
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: var(--gold);
  width: 18px; height: 18px;
}
.cookie-modal-content .essential {
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute; top: 12px; right: 13px;
  font-size: 1.4rem; color: var(--gold);
  background: none; border: none;
  cursor: pointer; outline: none;
  transition: color .17s;
}
.cookie-modal-close:hover { color: #fff486; }
.cookie-modal-content .cookie-modal-actions {
  display: flex; gap: 14px; margin-top: 18px; justify-content: flex-end;
}
.cookie-modal-content .cookie-btn {
  padding: 8px 16px;
}

/* LUXURY-STYLE DETAILS */
h1::after, h2::after {
  display: block;
  content: '';
  margin-top: 10px;
  width: 38px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}

@media (max-width: 768px) {
  /* Hide after pseudo on h1, h2 for mobile for spacing */
  h1::after, h2::after { content: none; }
}

/* FORM FIELD BASIC STYLES (for contact forms if present) */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-small);
  padding: 11px 13px;
  width: 100%;
  background: #fff;
  margin-bottom: 14px;
  transition: border .16s, box-shadow .14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--gold);
  outline: none;
  box-shadow: 0 0 6px rgba(244,162,89,0.11);
}

/* TRANSITIONS ON INTERACTIVE ELEMENTS */
a, button, .cta-btn, .feature-item, .testimonial-card, .service-item, .fleet-item, .faq-item {
  transition: var(--transition);
}

/* A11Y: FOCUS VISIBLE */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* PRINT (Hide header, footer, and nav on print) */
@media print {
  header, footer, nav, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
