/*-------------------------------------------------
  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;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
  line-height: 1.6;
  background: #FFF;
  color: #183B6B;
  -webkit-font-smoothing: antialiased;
  font-family: 'Roboto', Arial, sans-serif;
}
a { color: #183B6B; text-decoration: none; transition: color 0.2s;}
a:focus, a:hover { color: #26A65B; outline: none;}
img { max-width: 100%; display: block; }
ul, ol { padding-left: 24px; }
button, input, textarea, select { font-family: inherit; font-size: 100%; }

/*-------------------------------------------------
  BRAND FONTS
---------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  color: #183B6B;
  margin-bottom: 20px;
}
h1 { font-size: 2.75rem; margin-bottom: 24px;}
h2 { font-size: 2rem; margin-bottom: 20px;}
h3 { font-size: 1.25rem; margin-bottom: 16px;}
h4, h5, h6 { font-size: 1rem; margin-bottom: 12px;}
p, ul, ol { color: #243C6E; font-size: 1.06rem; margin-bottom: 12px; }
ul, ol { margin-bottom: 24px;}
strong, b { font-weight: 700;}

/*-------------------------------------------------
  LAYOUT & CONTAINER
---------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 1024px) {
  .container { max-width: 97vw; padding: 0 14px; }
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .section { padding: 26px 8px; margin-bottom: 40px;}
  .text-section { padding: 0; }
}

/*-------------------------------------------------
  FLEX PATTERNS
---------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  box-shadow: 0 2px 16px rgba(24, 59, 107, 0.07);
  border-radius: 18px;
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(38,166,91,0.11);
  transform: translateY(-2px) scale(1.015);
}

.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;
}
@media (max-width: 768px) {
  .content-grid { flex-direction: column; gap: 18px; }
  .text-image-section { flex-direction: column; gap: 18px; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4F4F6;
  border-radius: 16px;
  padding: 22px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(38,166,91,0.055);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  box-shadow: 0 3px 18px rgba(24,59,107,0.09);
  border-radius: 18px;
  margin-bottom: 20px;
  font-size: 1.06rem;
  color: #183B6B;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #183B6B;
  text-align: center;
}
.testimonial-card footer {
  font-size: 0.98em;
  color: #26A65B;
  font-weight: 500;
}

/*-------------------------------------------------
  HEADER & NAVIGATION
---------------------------------------------------*/
header {
  width: 100%;
  background: #FFF;
  border-bottom: 1px solid #EDF0F8;
  box-shadow: 0 1px 12px rgba(24,59,107,0.035);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img[alt$='Royal Wander Sport'] {
  height: 46px;
  width: auto;
  margin-right: 10px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
  font-weight: 500;
  color: #183B6B;
  text-transform: uppercase;
  padding: 7px 2px;
  position: relative;
  transition: color 0.19s;
}
header nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #26A65B;
  border-radius: 1px;
  transition: width 0.18s;
  margin: 0 auto 0;
}
header nav a:hover::after, header nav a:focus::after {
  width: 60%;
}
header nav a:hover, header nav a:focus {
  color: #26A65B;
}
header .cta.primary {
  margin-left: auto;
  margin-right: 12px;
  padding: 11px 28px;
  background: #26A65B;
  color: #fff;
  border: none;
  border-radius: 28px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(38,166,91,0.15);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}
header .cta.primary:hover, header .cta.primary:focus {
  background: #183B6B;
  color: #fff;
  box-shadow: 0 4px 20px rgba(24,59,107,0.10);
  transform: translateY(-2px) scale(1.025);
}

/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #183B6B;
  margin-left: 8px;
  cursor: pointer;
  z-index: 1201;
  line-height: 1;
  padding: 0 6px;
  transition: color 0.18s, background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #26A65B;
  outline: none;
  background: #F4F4F6;
  border-radius: 8px;
}

@media (max-width: 1100px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
  header .cta.primary {
    display: none;
  }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 6px 34px rgba(24,59,107,0.10);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 34px 16px 22px 28px;
  transform: translateX(-110%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.67,.16,.36,1), opacity 0.28s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.25rem;
  background: none;
  border: none;
  color: #183B6B;
  padding: 8px 8px 10px 8px;
  cursor: pointer;
  margin-bottom: 6px;
  transition: color 0.16s, background 0.18s;
  border-radius: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #26A65B;
  background: #F4F4F6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 12px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  color: #183B6B;
  padding: 10px 3px;
  width: 100%;
  border-radius: 7px;
  transition: color 0.18s, background 0.14s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #26A65B;
  background: #F4F4F6;
}
@media (max-width: 700px) {
  .mobile-menu { padding-left: 10px; }
}

/*-------------------------------------------------
  BUTTONS, CTAS
---------------------------------------------------*/
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #26A65B;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 29px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 2px 11px rgba(38,166,91,0.15);
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.16s;
  text-align: center;
  text-transform: uppercase;
  min-height: 46px;
  user-select: none;
  margin-top: 10px;
  gap: 7px;
}
.cta.primary:focus, .cta.primary:hover {
  background: #183B6B;
  color: #fff;
  box-shadow: 0 7px 20px rgba(24,59,107,0.12);
  transform: translateY(-2px) scale(1.025);
}

/* Inline links */
a.cta {
  text-decoration: none;
}

/*-------------------------------------------------
  MAIN CONTENT PATTERNS
---------------------------------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  section { margin-bottom: 36px; padding: 22px 6px; }
}

ul li, ol li {
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 1rem;
}
ul li img {
  vertical-align: middle;
  height: 26px;
  margin-right: 8px;
}

blockquote {
  border-left: 3px solid #26A65B;
  padding-left: 18px;
  margin: 0 0 8px 0;
  color: #183B6B;
  background: #F4F4F6;
  border-radius: 10px;
}

hr {
  border: none;
  border-top: 1px solid #EDF0F8;
  margin: 24px 0;
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .cta, .cta.primary { font-size: 0.97rem; padding: 10px 22px; }
  .container { padding: 0 8px; }
}

/*-------------------------------------------------
  FOOTER
---------------------------------------------------*/
footer {
  background: #F4F4F6;
  border-top: 1px solid #EDF0F8;
  color: #183B6B;
  font-size: 1rem;
  padding-top: 40px;
  padding-bottom: 16px;
  margin-top: 40px;
}
footer .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}
footer nav a {
  color: #183B6B;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0.86;
  padding: 6px 2px;
  border-radius: 6px;
  transition: background 0.17s, color 0.18s, opacity 0.13s;
}
footer nav a:focus, footer nav a:hover {
  color: #26A65B;
  background: #EAF7EF;
  opacity: 1;
}
footer .footer-contact {
  font-size: 0.98rem;
  color: #243C6E;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 330px;
}
footer .footer-bottom {
  width: 100%;
  margin-top: 22px;
  text-align: left;
  font-size: 0.98rem;
  color: #A4ADBD;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  footer nav { margin-bottom: 16px; }
}
@media (max-width: 480px) {
  footer { font-size: 0.93rem; }
}

/*-------------------------------------------------
  COOKIE BANNER & COOKIE MODAL
---------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1700;
  background: #FFF;
  border-top: 1px solid #EDF0F8;
  box-shadow: 0 -4px 32px rgba(24,59,107,0.09);
  padding: 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  color: #243C6E;
  min-height: 60px;
  animation: cookieSlideIn 0.6s;
}
@keyframes cookieSlideIn {
  0% { opacity: 0; transform: translateY(100%); }
  100%{ opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  border: none;
  border-radius: 19px;
  padding: 9px 22px;
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 2px;
  cursor: pointer;
  background: #F4F4F6;
  color: #183B6B;
  box-shadow: 0 1px 5px rgba(38,166,91,0.05);
  transition: background 0.18s, color 0.17s, transform 0.16s;
}
.cookie-banner button.accept {
  background: #26A65B;
  color: #fff;
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: #183B6B;
  color: #fff;
}
.cookie-banner button.settings {
  background: #183B6B;
  color: #fff;
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: #26A65B;
  color: #fff;
}
.cookie-banner button.reject {
  background: #F4F4F6;
  color: #243C6E;
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #E9E9F2;
  color: #183B6B;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-actions {
    gap: 6px;
    flex-wrap: wrap;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1800;
  background: rgba(24,59,107,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-content {
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 12px 52px rgba(24,59,107,0.12);
  padding: 46px 32px 28px 32px;
  min-width: 340px;
  max-width: 96vw;
  min-height: 180px;
  color: #183B6B;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.cookie-modal .cookie-modal-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-modal h2 {
  margin: 0;
  font-size: 1.4rem;
  color: #183B6B;
}
.cookie-modal .cookie-modal-close {
  font-size: 1.85rem;
  background: none;
  border: none;
  color: #183B6B;
  cursor: pointer;
  border-radius: 7px;
  padding: 8px 11px 8px 8px;
  transition: color 0.17s, background 0.14s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #26A65B;
  background: #F4F4F6;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 7px 0;
  font-size: 1rem;
}
.cookie-modal .cookie-switch {
  appearance: none;
  outline: none;
  width: 34px;
  height: 20px;
  background: #E7E7EA;
  border-radius: 13px;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-modal .cookie-switch:checked {
  background: #26A65B;
}
.cookie-modal .cookie-switch::before {
  content: '';
  display: block;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 2.5px;
  transition: left 0.18s;
  box-shadow: 0 1px 4px rgba(24,59,107,0.11);
}
.cookie-modal .cookie-switch:checked::before {
  left: 16px;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: #183B6B;
  margin-right: 4px;
}
.cookie-modal .cookie-category .cookie-desc {
  font-size: 0.95em;
  color: #A4ADBD;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
  gap: 14px;
  display: flex;
  flex-direction: row;
  margin-top: 14px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 11px 24px;
  border: none;
  border-radius: 21px;
  background: #26A65B;
  color: #fff;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-modal .cookie-modal-actions button.secondary {
  background: #E8E8F2;
  color: #183B6B;
}
.cookie-modal .cookie-modal-actions button.secondary:hover,
.cookie-modal .cookie-modal-actions button.secondary:focus {
  background: #183B6B;
  color: #fff;
}
.cookie-modal .cookie-modal-actions button.accept:hover, .cookie-modal .cookie-modal-actions button.accept:focus {
  background: #183B6B;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal .cookie-modal-content {
    padding: 18px 7vw 20px 7vw;
    min-width: unset; max-width: 99vw;
  }
}

/*-------------------------------------------------
  MICRO-ANIMATIONS & TRANSITIONS
---------------------------------------------------*/
section, .card, .feature-item, .testimonial-card, .cta, .cta.primary, .cookie-banner, .cookie-modal .cookie-modal-content {
  transition: box-shadow 0.19s, transform 0.19s, background 0.18s, color 0.17s;
}

/*-------------------------------------------------
  ACCESSIBILITY
---------------------------------------------------*/
:focus { outline: 2px dashed #26A65B; }

::-webkit-input-placeholder { color: #A4ADBD; }
::-moz-placeholder { color: #A4ADBD; }
:-ms-input-placeholder { color: #A4ADBD; }
::placeholder { color: #A4ADBD; }

/*-------------------------------------------------
  PRINT
---------------------------------------------------*/
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #111; }
}
