/* === CSS RESET & BASE === */
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 {
  line-height: 1.5;
  background: #F5F6FA;
  color: #1a2533;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: #234064;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #38d6fa;
  outline: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #234064;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  color: #5EB5E6;
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
strong {
  color: #234064;
  font-weight: 700;
}

/* === CONTAINERS & LAYOUTS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Utility 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  border-bottom: 3px solid #5EB5E6;
  box-shadow: 0 2px 6px rgba(35, 64, 100, 0.07);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 80px;
  gap: 0;
}
.logo {
  display: flex;
  align-items: center;
  padding: 4px 0;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #234064;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 8px 4px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a.active {
  background: #5EB5E6;
  color: #fff;
}
.cta-button {
  display: flex;
  align-items: center;
  background: #234064;
  color: #fff;
  border: none;
  border-radius: 56px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 12px 32px;
  margin-left: 24px;
  cursor: pointer;
  box-shadow: 0 4px 24px 0 rgba(35, 64, 100, 0.10);
  transition: background 0.22s, transform 0.17s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #5EB5E6;
  color: #234064;
  transform: translateY(-2px) scale(1.05);
}

/* --- Mobile Nav --- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #234064;
  cursor: pointer;
  margin-left: 18px;
  z-index: 102;
  transition: color 0.2s;
  outline: none;
}
.mobile-menu-toggle:focus {
  color: #5EB5E6;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #234064;
  color: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.87,-0.41,.19,1.44);
  padding-top: 32px;
  opacity: 0.97;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 0 24px 18px 0;
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #5EB5E6;
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  margin-top: 12px;
}
nav.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  letter-spacing: 0.02em;
  transition: background 0.19s, color 0.19s, padding-left 0.18s;
}
nav.mobile-nav a:last-child {
  border-bottom: none;
}
nav.mobile-nav a:hover, nav.mobile-nav a:focus {
  background: #5EB5E6;
  color: #234064;
  padding-left: 44px;
}

/* === HERO === */
.hero {
  background: #5EB5E6;
  color: #fff;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 56px 0 46px 0;
  margin-bottom: 40px;
  border-bottom: 4px solid #234064;
  box-shadow: 0 8px 32px rgba(94,181,230, .13);
  position: relative;
}
.hero .container, .hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero h1 {
  color: #fff;
  text-shadow: 1px 2px 4px rgba(35,64,100,.09);
  font-size: 2.7rem;
}
.hero .subheadline {
  color: #fff;
  font-size: 1.17rem;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(35,64,100,.10);
}
.hero .cta-button {
  margin-left: 0;
  margin-top: 28px;
  background: #fff;
  color: #234064;
  box-shadow: 0 2px 14px 0 rgba(35, 64, 100, 0.10);
}
.hero .cta-button:hover {
  background: #234064;
  color: #fff;
  transform: scale(1.06);
}

/* === FEATURES === */
.features {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 16px 0 rgba(35, 64, 100, 0.07);
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 24px;
}
.feature {
  background: #F5F6FA;
  border-radius: 16px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 270px;
  padding: 28px 24px 22px 24px;
  box-shadow: 0 2px 12px 0 rgba(35, 64, 100, 0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 2px rgba(94,181,230, 0.10));
}
.feature h3 {
  font-size: 1.12rem;
  color: #234064;
}
.feature p {
  font-size: 1rem;
  color: #1a2533;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}
.feature:hover, .feature:focus-visible {
  box-shadow: 0 8px 32px 0 rgba(94,181,230, .24);
  transform: translateY(-5px) scale(1.04);
}

/* === ABOUT, VALUES, HISTORY, TEAM === */
.about-preview, .about, .values, .team, .service-preview,
.service-list, .services, .service-categories, .jobs, .why-work-here,
.clients, .case-studies, .advantages, .fleet, .fleet-capabilities, .career-development, .info {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 18px 0 rgba(35,64,100,.07);
  margin-bottom: 60px;
}
.content-wrapper > h2:not(:first-child) {
  margin-top: 30px;
}
.history-timeline ul li, .about-preview ul li, .values ul li, .team ul li,
.fleet-list li, .fleet ul li, .fleet-capabilities ul li, .career-development ul li,
.service-list .service-item, .job-list li, .why-work-here ul li, .industry-list li,
.case-study-list .case-study, .info ul li {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #25406d;
  padding-left: 18px;
  position: relative;
}
.history-timeline ul li:before, .about-preview ul li:before, .values ul li:before, .team ul li:before, .fleet-list li:before,
.fleet ul li:before, .career-development ul li:before, .why-work-here ul li:before, .info ul li:before, .industry-list li:before {
  content: "• ";
  color: #5EB5E6;
  position: absolute;
  left: 0;
  font-weight: 900;
  font-size: 1.2em;
}
.certifications ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.certifications img {
  width: 28px;
  height: 28px;
}

/* === SERVICES, SERVICE-PREVIEW === */
.service-list, .service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: space-between;
}
.service-item, .service-block {
  background: #F5F6FA;
  border-radius: 16px;
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 275px;
  padding: 30px 22px 20px 22px;
  box-shadow: 0 2px 12px 0 rgba(94,181,230, .10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.service-item img, .service-block img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  filter: drop-shadow(0 1px 3px rgba(94,181,230, .08));
}
.service-item h3, .service-block h3 {
  color: #234064;
  font-size: 1.08rem;
}
.service-item:hover, .service-block:hover, .service-item:focus-visible, .service-block:focus-visible {
  box-shadow: 0 6px 32px 0 rgba(94,181,230, .16);
  transform: translateY(-5px) scale(1.04);
}
.link {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #234064;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.17s;
  margin-top: 18px;
}
.link:hover {
  color: #5EB5E6;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #234064;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px 0 rgba(35,64,100,.18);
  padding: 48px 0;
  margin-bottom: 60px;
  position: relative;
}
.testimonials h2 {
  color: #fff;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}
.testimonial-card {
  background: #fff;
  color: #234064;
  border-radius: 18px;
  padding: 32px 26px 26px 26px;
  min-width: 220px;
  flex: 1 1 280px;
  box-shadow: 0 2px 8px 0 rgba(94,181,230, .08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.16s;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #234064;
}
.testimonial-card span {
  font-size: 1rem;
  color: #5EB5E6;
  font-weight: 700;
  margin-top: 10px;
}
.testimonial-card:hover, .testimonial-card:focus-visible {
  box-shadow: 0 8px 32px 0 rgba(94,181,230, .23);
  transform: translateY(-3px) scale(1.03);
}

/* === CTA SECTION === */
.cta {
  background: #5EB5E6;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 16px 0 rgba(94,181,230, .19);
  margin-bottom: 60px;
  padding: 48px 0;
  position: relative;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 16px;
}
.cta p {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 22px;
}
.cta .cta-button {
  background: #fff;
  color: #234064;
  margin-top: 14px;
}
.cta .cta-button:hover {
  background: #234064;
  color: #fff;
}

/* === FOOTER === */
footer {
  background: #234064;
  color: #fff;
  padding: 46px 0 26px 0;
  border-top: 3px solid #5EB5E6;
  box-shadow: 0 -4px 22px 0 rgba(35, 64, 100, 0.07);
  position: relative;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #5EB5E6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
  text-decoration: underline;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-info {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
footer address {
  font-style: normal;
  color: #BEE6F8;
}

/* === POLICY PAGE === */
.policy {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 22px 0 rgba(35,64,100,.11);
  margin-bottom: 64px;
  padding: 40px 20px 40px 20px;
}
.policy h1 {
  font-size: 2.1rem;
  margin-bottom: 24px;
}
.policy h2 {
  margin-top: 30px;
  color: #5EB5E6;
  font-size: 1.15rem;
}
.policy ul li {
  margin-bottom: 12px;
  padding-left: 18px;
  color: #234064;
  position: relative;
}
.policy ul li:before {
  content: "• ";
  color: #5EB5E6;
  position: absolute;
  left: 0;
  font-weight: 900;
  font-size: 1.2em;
}

/* === THANK-YOU PAGE === */
.thank-you {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 16px 0 rgba(35,64,100,.11);
  margin-bottom: 64px;
  padding: 44px 20px 38px 20px;
  text-align: center;
}
.thank-you h1 {
  color: #5EB5E6;
  font-size: 2.3rem;
  margin-bottom: 20px;
}
.thank-you-message {
  font-size: 1.18rem;
  font-weight: 600;
  color: #234064;
  margin-bottom: 24px;
}

/* === Buttons & Links === */
button, .cta-button, .link {
  cursor: pointer;
}
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
button:focus, .cta-button:focus, .link:focus {
  outline: 2px solid #5EB5E6;
  outline-offset: 3px;
}

/* === Animations === */
.cta-button, .feature, .service-item, .service-block, .testimonial-card,
.policy, .thank-you, .about-preview, .about, .values, .team, .service-preview, .jobs, .why-work-here, .clients, .case-studies, .advantages, .fleet, .fleet-capabilities, .career-development, .info {
  transition: box-shadow 0.21s, transform 0.20s, background 0.2s, color 0.2s;
}

/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #234064;
  z-index: 2000;
  box-shadow: 0 -2px 28px 0 rgba(35,64,100,0.11);
  padding: 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  border-top: 4px solid #5EB5E6;
  animation: fadeinbanner 0.7s cubic-bezier(.31,1.69,.78,.88);
}
@keyframes fadeinbanner {
  0% { opacity: 0; transform: translateY(60px); }
  80% { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner-message {
  flex: 1;
  min-width: 0;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  border: none;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 10px 26px;
  font-size: 1rem;
  margin-left: 0;
  background: #5EB5E6;
  color: #fff;
  box-shadow: 0 2px 9px 0 rgba(94,181,230, .11);
  transition: background 0.19s, color 0.19s, transform 0.16s;
  outline: none;
}
.cookie-banner .cookie-btn.reject {
  background: #234064;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  border: 2px solid #5EB5E6;
  color: #234064;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #234064;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #5EB5E6;
  color: #fff;
}

/* === Cookie Modal === */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,64,100, 0.83);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-content {
  background: #fff;
  color: #234064;
  border-radius: 18px;
  box-shadow: 0 8px 48px 0 rgba(35,64,100,.19);
  width: 90vw;
  max-width: 440px;
  padding: 35px 30px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  animation: modalpopup 0.34s cubic-bezier(.09,1.18,.63,.98);
}
@keyframes modalpopup {
  from { opacity: 0; transform: scale(.68); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  background: transparent;
  border: none;
  color: #234064;
  font-size: 1.5rem;
  align-self: flex-end;
  margin-bottom: 10px;
  cursor: pointer;
  outline: none;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #5EB5E6;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1rem;
}
.cookie-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  background: #eaf7ff;
  border-radius: 14px;
  transition: background 0.18s;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid #5EB5E6;
  margin-left: 8px;
}
.cookie-toggle.checked {
  background: #5EB5E6;
  border-color: #234064;
}
.cookie-toggle .ball {
  content: '';
  display: block;
  position: absolute;
  width: 23px; height: 23px;
  left: 1px; top: 1px;
  background: #234064;
  border-radius: 50%;
  transition: left 0.17s, background 0.16s;
}
.cookie-toggle.checked .ball {
  left: 22px;
  background: #fff;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.6;
  pointer-events: none;
  background: #eee;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  padding: 10px 18px;
  font-size: 1rem;
}

/* === CONTACT DETAILS / MAP === */
.contact-details p, .location-map {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #234064;
  font-size: 1.13rem;
}
.location-map img {
  width: 58px;
  height: 58px;
}

/* === CASE STUDY === */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study {
  background: #F5F6FA;
  border-radius: 16px;
  flex: 1 1 280px;
  min-width: 210px;
  max-width: 350px;
  padding: 24px 18px 16px 18px;
  box-shadow: 0 1px 10px 0 rgba(94,181,230, .07);
  margin-bottom: 20px;
}
.case-study h3 {
  color: #234064;
  font-size: 1.08rem;
  margin-bottom: 5px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1110px) {
  .feature-grid, .service-list, .service-categories, .card-container, .case-study-list, .testimonial-slider {
    gap: 20px;
  }
  .feature, .service-item, .service-block, .case-study {
    min-width: 170px;
    max-width: 48vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .service-categories, .testimonial-slider, .case-study-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service-item, .service-block, .case-study {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 890px) {
  nav.main-nav {
    gap: 12px;
  }
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    padding: 0 8px;
    height: 56px;
    gap: 0;
  }
  .logo img {
    height: 32px;
    width: auto;
    min-height: 24px;
  }
  nav.main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 32px 0 25px 0;
    min-height: 140px;
    margin-bottom: 13px;
  }
  .section, .policy, .thank-you, .about-preview, .about, .values, .team, .service-preview, .services, .service-categories, .jobs, .why-work-here, .clients, .case-studies, .advantages, .fleet, .fleet-capabilities, .career-development, .info {
    padding: 22px 6px 22px 6px;
    margin-bottom: 33px;
    border-radius: 12px;
  }
  .testimonial-slider, .case-study-list {
    flex-direction: column;
    gap: 8px;
  }
  .testimonial-card {
    min-width: 0;
    padding: 17px 10px 16px 10px;
    font-size: 0.98rem;
  }
  .testimonials, .cta {
    padding: 18px 0 18px 0;
    border-radius: 14px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
    margin-bottom: 7px;
  }
  .footer-info {
    font-size: 0.92rem;
    gap: 0;
  }
  .container {
    padding: 0 6px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .feature-grid, .service-list, .service-categories, .card-container {
    flex-direction: column;
    gap: 11px;
  }
}
@media (max-width: 490px) {
  html, body {
    font-size: 14px;
  }
  .mobile-menu {
    padding-top: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 13px 4px 16px 7px;
    font-size: 0.99rem;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 7px;
    align-items: stretch;
  }
}

/* === VIBRANT ENERGETIC ACCENTS === */
.cta-button, .feature:hover, .feature:focus-visible, .service-item:hover, .service-block:hover, .service-item:focus-visible, .service-block:focus-visible, .testimonial-card:hover, .testimonial-card:focus-visible {
  box-shadow: 0 6px 32px 0 rgba(38,214,248, 0.21), 0 1.5px 8px 0 rgba(94,181,230, .04);
}
/* Elevate main accent on hover for buttons and cards */
.cta-button:active,
.cookie-banner .cookie-btn:active,
.cookie-modal-actions .cookie-btn:active {
  transform: scale(.97);
}
/* High contrast text in testimonial and review sections */
.testimonials,
.testimonial-card {
  color: #234064;
  background: #fff;
}
.testimonials h2,
.testimonial-slider .testimonial-card p,
.testimonial-slider .testimonial-card span {
  color: #234064;
}

/* === Utility Classes === */
.hide { display: none !important; }

/* === END === */
