/* ===================== CSS 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 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #11181f;
  color: #F0F4F8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  outline: none;
}

/* =============== BRAND COLORS & FONTS ================== */
:root {
  --color-primary: #153E5C;
  --color-secondary: #F0F4F8;
  --color-accent: #D1B06B;
  --color-bg: #11181f;
  --color-surface: #22303e;
  --color-card: #171e26;
  --color-border: #252e39;
  --color-metal: #7C7D83;
  --font-display: 'Merriweather', serif;
  --font-body: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ============== TYPOGRAPHY & BASE ELEMENTS ============== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  color: var(--color-secondary);
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 500; }

p, li, span, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-secondary);
}
p {
  margin-bottom: 16px;
}
strong {
  color: var(--color-accent);
  font-weight: 700;
}
a:hover, .footer-links a:hover, .main-nav a:hover { color: var(--color-accent); }

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ========= FLEX PATTERNS & SPACING UTILITY CLASSES ========= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(30,42,60,0.13);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(30,42,60,0.40);
  transform: translateY(-4px) scale(1.012);
}
.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;
  padding: 20px;
  background: var(--color-secondary);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(21,62,92,0.09);
  color: #172339;
  flex-direction: column;
  margin-bottom: 20px;
  min-width: 260px;
  font-style: italic;
  border-left: 4px solid var(--color-accent);
  position: relative;
  transition: box-shadow 0.21s, transform 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(21,62,92,0.17);
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ================== HEADER & NAVIGATION ==================== */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 2px 12px rgba(18,42,64,0.08);
  z-index: 20;
  position: relative;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 0;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-secondary);
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
  position: relative;
}
.main-nav a.cta-btn {
  background: var(--color-accent);
  color: #14181D;
  font-weight: 700;
  padding: 10px 22px;
  margin-left: 6px;
  box-shadow: 0 2px 10px rgba(209,176,107,0.06);
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background 0.21s, color 0.21s, box-shadow 0.21s;
}
.main-nav a.cta-btn:hover {
  background: #856615;
  color: #fff;
}
.main-nav a:hover {
  background: rgba(23,30,38,0.17);
  color: var(--color-accent);
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 18px;
  display: inline-block;
  filter: brightness(110%);
}

/* Hamburger Icon */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--color-accent);
  z-index: 110;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #fff48e;
}

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 92vw;
  max-width: 400px;
  background: var(--color-card);
  box-shadow: -6px 0 40px rgba(12,22,34,0.55);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 28px 28px 28px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.83,0,0.17,1);
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--color-accent);
  background: none;
  border: none;
  margin-bottom: 8px;
  margin-right: -8px;
  cursor: pointer;
  transition: color 0.21s;
  z-index: 201;
}
.mobile-menu-close:hover {
  color: #ffecab;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 12px 2px;
  color: var(--color-accent);
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(23,30,38,0.11);
  margin-bottom: 3px;
  transition: background 0.19s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #153E5C;
}

/* Hide desktop nav on mobile */
@media (max-width: 992px) {
  .main-nav {
    display:none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: none!important;
  }
}

/* ======================= HERO SECTION ======================= */
.hero {
  background: linear-gradient(89deg, rgba(21,62,92,0.89) 60%, rgba(17,24,31,0.94) 100%);
  padding: 64px 0 44px 0;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 730px;
}
.hero h1 {
  color: var(--color-accent);
  font-size: 2.7rem;
  text-shadow: 0 2px 7px rgba(30,42,60,0.19);
}
.hero p {
  color: var(--color-secondary);
  font-size: 1.25rem;
  margin-bottom: 26px;
  letter-spacing: 0.005em;
}
.hero .cta-btn {
  margin-top: 16px;
}

/* ======================== FEATURE LISTS ======================== */
.features, .fleet-features, .membership-benefits, .event-highlights, .impressions-features {
  background: var(--color-surface);
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(31,62,92,0.12);
}
.features .feature-list, .fleet-overview .fleet-list, .icon-list, .details-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}
.features .feature-list li,
.fleet-overview .fleet-list li, 
.icon-list li, .details-list li {
  min-width: 220px;
  background: var(--color-card);
  color: var(--color-accent);
  border-radius: 10px;
  padding: 18px 20px 18px 56px;
  position: relative;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.07rem;
  box-shadow: 0 2px 6px rgba(17,24,31,0.06);
  border-left: 5px solid var(--color-accent);
}
.features .feature-list li img,
.fleet-overview .fleet-list li img,
.icon-list li img,
.details-list li img {
  position: absolute;
  top: 13px; left: 14px;
  width: 28px;
  height: 28px;
  filter: contrast(130%) brightness(1.11);
}

/* ======================== SERVICE LIST ======================== */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 15px 0 0 0;
  width: 100%;
}
.services .service-list li {
  background: var(--color-card);
  padding: 30px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 9px rgba(21,62,92,0.09);
  width: 100%;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1 1 220px;
  transition: box-shadow 0.21s;
}
.services .service-list li:hover {
  box-shadow: 0 8px 24px rgba(21,62,92,0.18);
}

/* ============= ABOUT / TEXTUAL SECTION ============= */
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}
.text-section a {
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 10px;
  transition: color 0.2s;
  text-decoration: underline;
}
.text-section a:hover { color: #fff; }

/* =========== TEAM LIST GRID (FLEX) =========== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: var(--color-card);
  padding: 22px 18px;
  border-radius: 10px;
  min-width: 225px;
  max-width: 340px;
  flex: 1 1 220px;
  color: var(--color-secondary);
  box-shadow: 0 3px 14px rgba(21,62,92,0.08);
  font-size: 1.02rem;
  margin-bottom: 14px;
  transition: box-shadow 0.21s, transform 0.21s;
}
.team-member:hover {
  box-shadow: 0 8px 28px rgba(21,62,92,0.20);
  transform: translateY(-2px) scale(1.01);
}

/* =============== TABLES (COMPARE, PRICING) =============== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: var(--color-card);
  border-radius: 10px;
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  color: var(--color-secondary);
  font-size: 1rem;
}
.compare-table thead th {
  background: var(--color-primary);
  color: var(--color-accent);
  font-weight: 700;
  border-bottom: 2px solid var(--color-accent);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tr td:first-child {
  font-weight: 700;
}

/* ================ BUTTON STYLES & CTA =============== */
.cta-btn {
  background: var(--color-accent);
  color: #191d25;
  font-family: var(--font-display);
  font-weight: 900;
  border: none;
  border-radius: 8px;
  font-size: 1.17rem;
  padding: 12px 32px;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 2px 13px rgba(209,176,107,0.07);
  letter-spacing: 0.02em;
  transition: background 0.23s, color 0.21s, box-shadow 0.2s, transform 0.17s;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #856615;
  color: #fff;
  box-shadow: 0 3px 22px rgba(209,176,107,0.30);
  transform: scale(1.025);
}

button, .button, .cookie-btn {
  background: var(--color-accent);
  color: #14181D;
  border: none;
  border-radius: 7px;
  padding: 10px 24px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(209,176,107,0.09);
  font-size: 1rem;
  margin-right: 8px;
  transition: background 0.16s, color 0.17s, box-shadow 0.16s, transform 0.14s;
}
button:hover, .cookie-btn:hover {
  background: #735821;
  color: #fff;
  box-shadow: 0 3px 13px rgba(209,176,107,0.22);
  transform: translateY(-2px);
}

/* ================== FOOTER ==================*/
footer {
  background: var(--color-primary);
  margin-top: 70px;
  padding-top: 30px;
  padding-bottom: 16px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  align-items: center;
}
.footer-links a {
  color: var(--color-accent);
  font-weight: 700;
  transition: color 0.2s;
  font-size: 1rem;
  margin-bottom: 8px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--color-secondary);
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer-contact a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }

.social-media {
  display: flex;
  gap: 15px;
  align-items: center;
}
.social-media img {
  width: 30px; height: 30px;
  filter: grayscale(65%) contrast(150%) drop-shadow(1px 1px 0 var(--color-metal));
  transition: filter 0.21s, transform 0.18s;
  cursor: pointer;
  opacity: 0.9;
}
.social-media img:hover {
  filter: grayscale(0%) brightness(1.2) contrast(200%);
  transform: scale(1.13) translateY(-2px);
}

.newsletter-signup {
  background: var(--color-card);
  border-radius: 10px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 370px;
  box-shadow: 0 3px 13px rgba(16,32,48,0.04);
}
.newsletter-signup h3 {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.newsletter-signup p {
  color: var(--color-secondary);
  font-size: 0.98rem;
}
.newsletter-signup a {
  color: var(--color-primary);
  font-weight: 700;
  background: var(--color-accent);
  border-radius: 7px;
  padding: 8px 21px;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
}
.newsletter-signup a:hover { background: #735821; color: #fff; }

/* ========= CUSTOM LAYOUTS: FLEET, MEMBERSHIP, EVENTS GRIDS ========== */
.fleet-overview .highlights, .membership-levels, .special-offers, .highlighted-experiences {
  background: var(--color-card);
  padding: 20px 16px;
  border-radius: 9px;
  margin-top: 14px;
}
.membership-levels h4, .highlighted-experiences h3, .special-offers h3 {
  color: var(--color-accent);
  font-size: 1.15rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.fleet-features .feature-grid,
.membership-benefits .benefits-grid,
.event-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
  width: 100%;
}
.fleet-features .feature-grid > div,
.membership-benefits .benefits-grid > div,
.event-types-grid > div {
  background: var(--color-card);
  padding: 28px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 9px rgba(21,62,92,0.08);
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.21s;
}
.fleet-features .feature-grid > div:hover,
.membership-benefits .benefits-grid > div:hover,
.event-types-grid > div:hover {
  box-shadow: 0 7px 22px rgba(21,62,92,0.17);
}

/* ============ CONTACT PAGE ============= */
.contact-details-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details-section .contact-info p {
  display: flex;
  align-items: center;
  color: var(--color-accent);
  font-weight: 600;
}
.contact-details-section .contact-info img {
  width: 23px; height: 23px; margin-right: 8px; filter: grayscale(74%) brightness(1.2);
}
.map-placeholder {
  background: var(--color-surface);
  border-radius: 8px;
  margin-top: 20px;
  padding: 26px;
  color: var(--color-secondary);
}
.direct-contact ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}
.direct-contact ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.direct-contact ul img {
  width: 23px; height: 23px;
  margin-right: 6px;
  filter: grayscale(100%) brightness(1.44) contrast(1.1);
}

/* ======== TESTIMONIALS ======== */
.testimonials, .testimonial-slider {
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(21,62,92,0.10);
  margin-bottom: 60px;
}
.testimonials .content-wrapper, .testimonial-slider .content-wrapper {
  gap: 26px;
  align-items: flex-start;
}
.testimonial-card p {
  color: #29364A;
  font-size: 1.13rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.testimonial-card span,
.testimonial-card div {
  color: #85713e;
  font-size: 0.97rem;
  font-weight: 700;
}
.testimonial-card div {
  font-size: 1.1rem;
  letter-spacing: 1.2px;
}

/* ================== LEGAL & COOKIE POLICY SECTIONS ============= */
.legal-content, .legal-gdpr, .legal-cookie-policy, .legal-tos {
  background: var(--color-surface);
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(21,62,92,0.07);
  margin-bottom: 60px;
  padding: 46px 24px;
}
.legal-content h1,
.legal-gdpr h1,
.legal-cookie-policy h1,
.legal-tos h1 {
  color: var(--color-accent);
  margin-bottom: 16px;
}
.legal-content h2, .legal-cookie-policy h2,
.legal-gdpr h2, .legal-tos h2 {
  color: var(--color-secondary);
  margin-top: 18px;
}
.legal-content ul, .legal-cookie-policy ul, .legal-gdpr ul, .legal-tos ul {
  list-style: disc inside;
}

/* ================ THANK YOU PAGE ================ */
.thank-you .next-steps {
  background: var(--color-card);
  padding: 18px 20px;
  border-radius: 11px;
  margin: 24px 0 18px 0;
  box-shadow: 0 2px 7px rgba(21,62,92,0.07);
}
.thank-you .next-steps ul {
  margin-left: 18px;
  margin-top: 7px;
  list-style: disc;
}

/* =================== COOKIE CONSENT BANNER =============== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-card);
  color: var(--color-secondary);
  border-top: 1px solid var(--color-metal);
  box-shadow: 0 -8px 32px rgba(21,62,92,0.24);
  padding: 22px 16px 19px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
  justify-content: space-between;
  z-index: 4800;
  font-size: 0.99rem;
  animation: cookieBannerSlideUp 0.6s cubic-bezier(0.66,0,.42,1);
}
@keyframes cookieBannerSlideUp { from { transform: translateY(120%);} to {transform: translateY(0);} }
.cookie-consent-banner .cookie-btn {
  min-width: 110px;
  margin-left: 6px;
  margin-bottom: 0;
}

/* ========== COOKIE PREFERENCES MODAL ========= */
.cookie-preferences-modal {
  position: fixed;
  top: 0; left:0; width: 100vw; height:100vh;
  background: rgba(23,30,38,0.91);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  animation: fadeIn 0.4s cubic-bezier(0.56, 0, 0.33, 1);
}
.cookie-preferences-modal .modal-content {
  background: var(--color-card);
  color: var(--color-secondary);
  border-radius: 14px;
  box-shadow: 0 10px 48px rgba(21,62,92,0.31);
  padding: 36px 28px 28px 36px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-preferences-modal .modal-close {
  position: absolute;
  right: 16px;
  top: 18px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 1.44rem;
  cursor: pointer;
  z-index: 5010;
}
.cookie-preferences-modal h2 {
  margin-bottom: 4px;
  font-weight: 800;
  color: var(--color-accent);
}
.cookie-preferences-modal label {
  font-size: 1rem;
  line-height: 1.3;
  margin-right: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.cookie-preferences-modal .toggle-switch {
  margin-right: 18px;
}

/* ============= TOGGLE SWITCHES for Cookie Modal =========== */
.toggle-switch {
  position: relative;
  width: 34px; height: 19px;
  display: inline-block;
}
.toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #48494e;
  border-radius: 19px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.13s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--color-accent);
}
.toggle-slider:before {
  content: "";
  position: absolute;
  height: 15px; width: 15px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.20s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(15px);
}
.toggle-slider {
  width: 34px; height: 19px;
  border-radius: 19px;
  display: block;
}

/* ============== RESPONSIVE (MOBILE-FIRST) =============== */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 992px) {
  .container { max-width: 95vw; }
  .content-grid, .features .feature-list, .services .service-list, .fleet-features .feature-grid, .membership-benefits .benefits-grid, .event-types-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .main-nav img { height: 34px; margin-right: 9px; }
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding: 36px 0 24px 0;
    margin-bottom: 36px;
  }
  .hero h1 { font-size: 1.6rem; }
  h2 { font-size: 1.19rem; }
  h1 { font-size: 1.5rem; }
  .card, .team-member, .services .service-list li, .fleet-features .feature-grid > div, .membership-benefits .benefits-grid > div {
    padding: 20px 12px;
    min-width: unset;
    max-width: unset;
  }
  .content-wrapper {
    padding: 0 0.5rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .testimonial-card {
    min-width: 180px;
    padding: 13px;
    font-size: 0.99rem;
  }
  .card-container, .features .feature-list, .fleet-overview .fleet-list, .icon-list {
    flex-direction: column;
    gap: 12px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .newsletter-signup { max-width: unset; }
}
@media (max-width: 520px) {
  .container {
    max-width: 99vw;
    padding: 0 4px;
  }
  .hero h1, h1 { font-size: 1.01rem; }
  h2 { font-size: 1rem; }
  .cookie-consent-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 4px 16px 7px; font-size: 0.89rem; }
  .cookie-consent-banner .cookie-btn { margin-right: 0; margin-bottom: 6px; }
  .cookie-preferences-modal .modal-content { padding: 18px 4px 16px 10px; }
}

/* ============== UTILITY & MICRO-INTERACTIONS =============== */
::-webkit-scrollbar { width: 10px; background: #20293a; }
::-webkit-scrollbar-thumb {
  background: #3b4351;
  border-radius: 7px;
  border: 2px solid #20293a;
}
::selection { background: var(--color-accent); color: #1A2433; }

/* ============== INDUSTRIAL MODERN METAL EFFECTS ============== */
.card, .team-member, .services .service-list li, .newsletter-signup, .legal-content, .legal-gdpr, .legal-cookie-policy, .legal-tos {
  border: 1px solid rgba(124,125,131,0.17); /* hint of metallic border */
  box-shadow: 0 3px 16px rgba(120,120,120,0.07);
}
.footer-links a, .social-media img {
  text-shadow: 0 2px 2px rgba(124,125,131,0.11);
}

/* ============== FOCUS STATES FOR ACCESSIBILITY =============== */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  box-shadow: 0 2px 12px #dac281;
  background: rgba(209,176,107,0.18);
  color: #191d25;
}

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