/* =====================================================================
   FAINT PARKLAND GEAR – Minimalist Responsive CSS, Flexbox-Only Layouts
   Brand Colors: primary #184D5F, accent #DB6600, secondary #F2F2F2, white #FFFFFF
   Fonts: 'Montserrat' (display), 'Roboto' (body)
   Style: Clean, modern, energetic, minimalist
   ===================================================================== */

/* ========== 1. 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  background: #FFFFFF;
  color: #184D5F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
  transition: background 0.2s;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #184D5F;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button, input, select, textarea {
  font: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  color: inherit;
}
button {
  cursor: pointer;
}
*:focus {
  outline: 2px solid #DB6600; /* Brand accent for focus visibility */
  outline-offset: 2px;
}

/* ========== 2. Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #184D5F;
  line-height: 1.2;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #184D5F;
  margin-bottom: 12px;
}
p.subheadline {
  font-size: 1.25rem;
  color: #184D5F;
  margin-bottom: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
strong, b {
  font-weight: 700;
  color: #184D5F;
}
blockquote {
  font-style: italic;
  border-left: 3px solid #DB6600;
  color: #184D5F;
  padding-left: 18px;
  margin: 24px 0 16px 0;
  background: #F2F2F2;
}

/* ========== 3. Containers, Sections, Layouts ========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Special spacing patterns (as requested) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(24,77,95, 0.06);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
  padding: 32px 24px;
}
.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 {
  background: #F2F2F2;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(24,77,95,0.06);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex: 1 1 350px;
  min-width: 260px;
  color: #184D5F;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Features sections grid */
.features {
  display: flex;
  flex-direction: column;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
  justify-content: space-between;
}
.feature-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(24,77,95,0.06);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 330px;
  padding: 28px 20px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s;
}
.feature-grid li img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  box-shadow: 0 2px 28px rgba(24,77,95,0.14);
}

/* ========== 4. Headers & Navigation ========== */
header {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid #ECECEC;
  box-shadow: none;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 18px;
}
header img {
  height: 38px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #184D5F;
  padding: 7px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
nav a:hover,
nav a:focus {
  background: #F2F2F2;
  color: #DB6600;
}
.cta-button {
  background: #DB6600;
  color: #fff;
  border-radius: 30px;
  padding: 11px 28px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 12px rgba(24,77,95, 0.08);
  letter-spacing: 0.03em;
  margin-left: 12px;
  display: inline-block;
  transition: background 0.18s, box-shadow 0.18s;
}
.cta-button:hover,
.cta-button:focus {
  background: #FF8B3D;
  box-shadow: 0 4px 16px rgba(219,102,0,0.10);
  color: #fff;
}

/* ========== 5. Main Content Sections ========== */
.hero {
  background: #F2F2F2;
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: center;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.our-services .service-list,
.service-list .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.our-services .service-list li,
.service-list .service-grid li {
  background: #fff;
  border-radius: 14px;
  padding: 24px 18px 18px;
  box-shadow: 0 2px 14px rgba(24,77,95,0.06);
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 220px;
  transition: box-shadow 0.18s;
}
.our-services .service-list li:hover,
.service-list .service-grid li:hover {
  box-shadow: 0 2px 23px rgba(24,77,95,0.13);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.text-section ul {
  margin-left: 0px;
  gap: 8px;
}
.text-section ul li {
  margin-left: 18px;
  margin-bottom: 8px;
  position: relative;
}
.text-section ul li::before {
  content: '\2022';
  color: #DB6600;
  display: inline-block;
  margin-right: 10px;
  font-weight: 700;
  font-size: 1.15em;
}
.brand-style {
  font-size: 1.13rem;
  font-style: italic;
  color: #DB6600;
  margin: 10px 0 0 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefits-breakdown,
.bundle-offers,
.customization-options,
.quality-assurance,
.price-list,
.service-highlights,
.next-steps {
  background: #F2F2F2;
  border-radius: 12px;
  padding: 16px 22px 14px;
  margin: 16px 0 10px 0;
  font-size: 1rem;
}
.benefits-breakdown ul,
.customization-options ul,
.bundle-offers ul,
.quality-assurance ul,
.price-list ul,
.service-highlights ul,
.next-steps ul {
  margin-left: 0;
}

.differentiators-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 12px 0;
}
.differentiators-list li {
  background: #F2F2F2;
  color: #184D5F;
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 0.96rem;
}

/* ========== 6. Testimonials & Reviews ========== */
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonials .testimonial-card {
  background: #F2F2F2;
  color: #184D5F;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(24,77,95,0.08);
  padding: 22px 26px;
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.14s;
}
.testimonials .testimonial-card p {
  font-size: 1.08rem;
  color: #184D5F;
  margin-bottom: 4px;
}
.testimonials .testimonial-card span {
  font-size: 0.95rem;
  color: #6B8798;
  font-style: italic;
  display: block;
}
.rating-summary, .average-rating {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(24,77,95,0.06);
  padding: 13px 20px 13px;
  margin-top: 26px;
  font-size: 1.04rem;
  color: #184D5F;
  display: inline-block;
}
.rating-summary span, .average-rating span {
  color: #DB6600;
  font-weight: 700;
  font-size: 1.1em;
}

/* Additional review structures */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.review-submission-form {
  margin-top: 26px;
  padding: 18px 20px;
  background: #F2F2F2;
  border-radius: 12px;
  font-size: 1rem;
  color: #184D5F;
}

/* Trust Icons Section in Reviews */
.trust-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
  align-items: center;
}
.trust-icons li {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 10px;
  padding: 9px 15px;
  font-size: 1rem;
  color: #184D5F;
  box-shadow: 0 2px 8px rgba(24,77,95,0.03);
}
.trust-icons img {
  width: 22px;
  height: 22px;
}

/* ========== 7. Footer Styles ========== */
footer {
  background: #F2F2F2;
  color: #184D5F;
  padding: 0;
  border-top: 1px solid #ECECEC;
}
footer .container {
  padding-top: 32px;
  padding-bottom: 22px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
}
footer .footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer .footer-menu a {
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #184D5F;
  opacity: 0.71;
  transition: color 0.15s, opacity 0.13s;
  padding: 6px 2px;
}
footer .footer-menu a:hover,
footer .footer-menu a:focus {
  color: #DB6600;
  opacity: 1;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #184D5F;
}
.brand-info img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-links img {
  width: 24px;
  height: 24px;
  opacity: 0.88;
  transition: opacity 0.17s;
}
.social-links img:hover,
.social-links img:focus {
  opacity: 1;
}

/* ========== 8. Mobile Navigation Styles ========== */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 991px) {
  header .container nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: #fff;
    font-size: 2rem;
    border: none;
    position: fixed;
    right: 20px;
    top: 19px;
    z-index: 210;
    color: #184D5F;
    padding: 7px 15px 7px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(24,77,95,0.08);
    transition: background 0.13s, color 0.13s, box-shadow 0.13s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: #F2F2F2;
    color: #DB6600;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 0 6px 48px rgba(24,77,95,0.14);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: #F2F2F2;
  color: #184D5F;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  align-self: flex-end;
  margin-top: 24px;
  margin-right: 18px;
  padding: 7px 14px;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #DB6600;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin: 42px 0 0 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  color: #184D5F;
  padding: 10px 0;
  border-radius: 6px;
  width: 100%;
  transition: color 0.13s, background 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2F2F2;
  color: #DB6600;
}
/* Mobile: hide non-burger nav, show burger */
@media (max-width: 991px) {
  header .container nav {display: none;}
  .mobile-menu {display: flex;}
}

/* ========== 9. Cookie Consent Banner & Modal ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF;
  color: #184D5F;
  border-top: 2px solid #DB6600;
  box-shadow: 0 -2px 24px rgba(24,77,95,0.08);
  z-index: 4000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px 18px 22px;
  gap: 22px;
  font-size: 1rem;
  animation: fadein 0.48s cubic-bezier(0,.6,.5,1.25);
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  flex: 1 1 220px;
  min-width: 160px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  border-radius: 24px;
  padding: 7px 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #DB6600;
  color: #fff;
  border: none;
  margin-left: 0;
  box-shadow: 0 2px 6px rgba(24,77,95,0.04);
  transition: background 0.17s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FF8B3D;
}
.cookie-btn--secondary {
  background: #F2F2F2;
  color: #184D5F;
  border: 1.5px solid #DB6600;
}
.cookie-btn--secondary:hover, .cookie-btn--secondary:focus {
  background: #DB6600;
  color: #fff;
}
/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(24,77,95,0.10);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 32px rgba(24,77,95,0.19);
  max-width: 380px;
  width: 94vw;
  padding: 34px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal__close {
  background: #F2F2F2;
  color: #184D5F;
  font-size: 1.5rem;
  border: none;
  border-radius: 8px;
  align-self: flex-end;
  padding: 4px 13px 4px 13px;
  margin-bottom: -14px;
  margin-right: -10px;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  background: #DB6600;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F2F2F2;
  border-radius: 10px;
  padding: 11px 14px 11px 12px;
}
.cookie-category label {
  font-size: 1rem;
  flex: 1 1 100px;
  color: #184D5F;
}
.cookie-switch {
  width: 36px;
  height: 20px;
  background: #E1E6E9;
  border-radius: 12px;
  position: relative;
  transition: background 0.17s;
}
.cookie-switch input[type='checkbox'] {
  display: none;
}
.cookie-switch-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(24,77,95,0.08);
  transition: left 0.15s, background 0.17s;
}
.cookie-switch input[type='checkbox']:checked + .cookie-switch-slider {
  left: 18px;
  background: #DB6600;
}
.cookie-category--essential {
  opacity: 0.7;
}
.cookie-category--essential label:after {
  content: '(required)';
  font-size: 0.97rem;
  color: #DB6600;
  margin-left: 6px;
}

/* ========== 10. Miscellaneous, Utility, Animations ========== */
.map-placeholder {
  border: 2px dashed #E1E6E9;
  border-radius: 13px;
  background: #F2F2F2;
  height: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 15px;
}

.thank-you .next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.continue-journey .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
}

/* ========== 11. Spacing & White Space Rules ========== */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
main > section:last-child,
.section:last-child { margin-bottom: 0; }

/* Consistent card spacing between siblings */
.card + .card, .testimonial-card + .testimonial-card,
.feature-grid li + li, .service-list li + li {
  margin-left: 0;
}

/* ========== 12. Responsive Design (Mobile-first) ========== */
/* General mobile defaults: stacked column flex, reduced padding, responsive font sizes */
@media (max-width: 991px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 44px;
  }
  .feature-grid,
  .card-container,
  .testimonial-slider,
  .testimonial-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .features, .about, .our-services, .hero {
    padding: 0;
  }
  .continue-journey .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .brand-info span {
    font-size: 0.97rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero { padding-top: 24px; padding-bottom: 24px; }
  .card, .feature-grid li, .testimonial-card {
    padding: 18px 10px 18px 10px;
  }
  .cookie-banner { flex-direction: column; gap: 12px; padding: 16px 8px; }
  .cookie-modal__content { padding: 20px 8px; }
  .mobile-nav a { font-size: 1.05rem; }
}

/* ========== 13. Form Inputs (future-proofing for contact/review) ========== */
input[type="text"],
input[type="email"],
textarea {
  background: #F2F2F2;
  border: 1.5px solid #E1E6E9;
  border-radius: 7px;
  padding: 9px 14px;
  margin-bottom: 18px;
  transition: border 0.19s, background 0.16s;
  width: 100%;
  color: #184D5F;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #DB6600;
  background: #fff;
}

/* ========== 14. Transitions & Micro-Interactions ========== */
.card, .feature-grid li, .testimonial-card, .our-services .service-list li, .service-list .service-grid li, .cta-button {
  transition: box-shadow 0.18s, background 0.17s, color 0.17s;
}

/* ========== 15. Accessibility Utility Classes (for clarity) ========== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; border: 0;
  clip: rect(0 0 0 0); overflow: hidden;
  white-space: nowrap;
}

/***************************
   CRITICAL: NO GRID USAGE!
****************************/
/* All layouts above use flexbox only as required by the spec */
