/*------------------------------------*
  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-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #22556B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #22556B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FCAF17;
  text-decoration: underline;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
ul, ol {
  list-style: none;
}

/*------------------------------------*
  TYPOGRAPHY
*------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22556B;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: 1.85rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #22556B;
}
strong { font-weight: bold; }

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,85,107,0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(34,85,107,.07);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 26px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(34,85,107,.06);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/*------------------------------------*
  HEADER & NAVIGATION
*------------------------------------*/
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E1E8EB;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 0;
}
header img {
  height: 38px;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 6px 2px 6px 2px;
  position: relative;
  color: #22556B;
  opacity: 0.82;
  transition: color 0.2s, opacity 0.18s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: #FCAF17;
  opacity: 1;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #FCAF17;
  color: #22556B;
  padding: 10px 28px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(252,175,23,0.08);
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.14s, color .17s, box-shadow 0.17s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #22556B;
  color: #fff;
  box-shadow: 0 6px 24px rgba(34,85,107,0.09);
}

/* Hamburger for mobile */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  margin-left: 16px;
  color: #22556B;
  border: 1px solid transparent;
  transition: box-shadow .16s, background 0.15s, border 0.16s;
  z-index: 27;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FCAF17;
  border: 1px solid #E1E8EB;
  color: #22556B;
  box-shadow: 0 2px 12px rgba(252,175,23,0.11);
}

/*------------------------------------*
  MOBILE MENU
*------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 12px 36px rgba(34,85,107,.09);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.77,.01,.37,1);
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  background: none;
  margin: 24px 24px 8px 0;
  color: #22556B;
  border-radius: 8px;
  transition: background 0.14s, color .19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FCAF17;
  color: #22556B;
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-left: 32px;
  padding-bottom: 40px;
}
nav.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #22556B;
  padding: 12px 0;
  border-radius: 7px;
  transition: background 0.21s, color 0.17s;
}
nav.mobile-nav a:hover, nav.mobile-nav a:focus {
  background: #E1E8EB;
  color: #FCAF17;
}

/*------------------------------------*
  HERO SECTION
*------------------------------------*/
.hero {
  margin-bottom: 60px;
  padding: 56px 0 32px 0;
  background: #f7fafb;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero .container {
  flex-direction: column;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero p {
  color: #22556B;
  opacity: 0.9;
  font-size: 1.13rem;
  margin-bottom: 24px;
}

/*------------------------------------*
  FEATURES, ABOUT, SERVICES, CARDS, ETC.
*------------------------------------*/
.features,
.about,
.services,
.contact {
  margin-bottom: 60px;
  padding: 40px 0;
}
.features ul,
.about ul,
.services ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 6px;
}
.features ul li,
.about ul li,
.services ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  background: transparent;
  padding: 0;
  color: #22556B;
}
.features ul li img, .about ul li img, .services ul li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.quick-links a {
  padding: 8px 16px;
  border-radius: 999px;
  background: #E1E8EB;
  color: #22556B;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
}
.quick-links a:hover, .quick-links a:focus {
  background: #FCAF17;
  color: #22556B;
}

/* Tip Cards */
.tip-cards,
.bike-service-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.tip-card, .bike-service-tips > div {
  background: #E1E8EB;
  color: #22556B;
  padding: 13px 18px 13px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34,85,107,0.07);
  font-size: .98rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.download-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #E1E8EB;
  padding: 18px 18px 22px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
}
.partner-services {
  background: #f7fafb;
  padding: 18px;
  border-radius: 10px;
  margin-top: 10px;
}

/*------------------------------------*
  TESTIMONIALS & REVIEWS
*------------------------------------*/
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: #FFF;
}
.testimonials h2 { margin-bottom: 20px; }
.testimonial-card {
  font-size: 1.04rem;
  border-left: 4px solid #FCAF17;
  background: #fff;
  color: #22556B;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  font-size: .97rem;
  font-style: italic;
  opacity: 0.87;
  margin-top: 6px;
}
.review-summary {
  margin-top: 22px;
  color: #22556B;
  background: #E1E8EB;
  padding: 16px 20px;
  border-radius: 9px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 6px rgba(34,85,107,0.09);
}

/*------------------------------------*
  CARDS (GENERAL)
*------------------------------------*/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/*------------------------------------*
  FOOTER
*------------------------------------*/
footer {
  background: #fff;
  border-top: 1px solid #E1E8EB;
  padding: 44px 0 28px 0;
  color: #22556B;
  font-size: .97rem;
  margin-top: 64px;
}
footer .container {
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.footer-menu {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #22556B;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: .7;
  font-size: .94rem;
  position: relative;
  transition: color 0.18s, opacity 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #FCAF17;
  opacity: 1;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .98rem;
  color: #22556B;
  opacity: 0.87;
}
.social-media-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.social-media-links a img {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: opacity 0.13s, transform 0.14s;
}
.social-media-links a:hover img, .social-media-links a:focus img {
  opacity: 1;
  transform: scale(1.14) translateY(-2px);
}

/*------------------------------------*
  MISC / CONTENT BLOCKS
*------------------------------------*/
.address-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.map-embed {
  background: #E1E8EB;
  padding: 12px 20px;
  border-radius: 7px;
  color: #22556B;
  font-size: .97rem;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f7fafb;
  padding: 18px 20px;
  border-radius: 10px;
  color: #22556B;
  font-size: .98rem;
  margin-bottom: 10px;
}

/*------------------------------------*
  BUTTONS
*------------------------------------*/
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  outline: none;
  background: #E1E8EB;
  color: #22556B;
  padding: 10px 28px;
  border-radius: 999px;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
  cursor: pointer;
  margin-right: 12px;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #FCAF17;
  color: #22556B;
  box-shadow: 0 1px 12px rgba(252,175,23,0.13);
}

/*------------------------------------*
  RESPONSIVE DESIGN
*------------------------------------*/
@media (max-width: 1200px) {
  .container { max-width: 960px; }
}
@media (max-width: 990px) {
  .container { max-width: 85vw; }
  .footer-menu { gap: 16px; }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  header .container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
  }
  nav.main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, .features, .about, .services, .contact {
    padding: 26px 6px;
    margin-bottom: 46px;
  }
  .content-grid, .card-container, .tip-cards, .bike-service-tips, .testimonial-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .review-summary {
    font-size: .99rem;
    padding: 11px 14px;
  }
  .contact-info, .footer-menu, .social-media-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 520px) {
  html, body { font-size: 14px; }
  .hero h1 { font-size: 1.37rem; }
  h2 { font-size: 1.11rem; }
  .section { padding: 16px 4px; }
  .footer-menu a, .contact-info span { font-size: .9rem; }
  .card, .testimonial-card { padding: 16px 8px; }
}

/*------------------------------------*
  ANIMATIONS & INTERACTIONS
*------------------------------------*/
.cta-btn, .btn, button {
  transition: background .17s, color .14s, box-shadow 0.19s, transform 0.15s;
}
.cta-btn:active, .btn:active, button:active {
  transform: scale(.96);
}
.section, .testimonial-card, .card {
  transition: box-shadow 0.19s, background 0.16s, transform 0.16s;
}
.section:hover, .card:hover, .testimonial-card:hover {
  box-shadow: 0 7px 26px rgba(34,85,107,.08);
  transform: translateY(-2px);
}

/*------------------------------------*
  COOKIE CONSENT BANNER
*------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12000;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(34,85,107,.18);
  border-radius: 17px 17px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 32px;
  font-size: 1rem;
  transition: transform .45s cubic-bezier(.77,.01,.37,1);
  max-width: 820px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  color: #22556B;
  margin-right: 12px;
  flex: 1;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 8px 22px;
  margin-right: 0;
  background: #E1E8EB;
  color: #22556B;
  box-shadow: 0 1px 3px rgba(34,85,107,0.09);
  transition: background .16s, color .14s;
}
.cookie-btn.accept {
  background: #FCAF17;
  color: #22556B;
  font-weight: 600;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #22556B;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #22556B;
  color: #FCAF17;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 13000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,85,107,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-fade-in 0.16s;-webkit-animation: cookie-fade-in 0.16s;
}
@keyframes cookie-fade-in {
  from { opacity: 0 }
  to   { opacity: 1 }
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  padding: 32px 28px;
  max-width: 420px;
  min-width: 250px;
  box-shadow: 0 10px 34px rgba(34,85,107,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookie-modal-pop .21s cubic-bezier(.55,-0.18,.38,1.34);
}
@keyframes cookie-modal-pop {
  from { transform: scale(.79); opacity: 0 }
  80% { transform: scale(1.04); }
  to   { transform: scale(1); opacity: 1 }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .98rem;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 18px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E1E8EB;
  border-radius: 16px;
  transition: background 0.16s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #FCAF17;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  height: 14px; width: 14px;
  left: 3px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(34,85,107,.11);
  transition: transform 0.17s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(12px);
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 22px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.14rem;
  background: none;
  border: none;
  color: #22556B;
  opacity: 0.7;
  cursor: pointer;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  color: #FCAF17;
  opacity: 1;
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 14px 10px;
    font-size: .95rem;
    max-width: 98vw;
    gap: 8px;
  }
  .cookie-modal {
    padding: 16px 7px 18px 10px;
    width: 97vw;
    max-width: 96vw;
  }
}

/*------------------------------------*
  A11Y & SELECTION
*------------------------------------*/
::selection {
  background: #FCAF17;
  color: #22556B;
}

/*------------------------------------*
  END OF STYLE.CSS
*------------------------------------*/
