/* ================================================================
   Flairstorm Ramoneurs - NATURE ORGANIC UI DESIGN SYSTEM
   Responsive, modern, accessible, flexbox ONLY (no grid/columns)
   Brand: Earthy, trustworthy, modern, organic, Belgian
   Author: Senior UI Designer & CSS Expert
   ================================================================ */

/* =======================
    0. RESET & BASELINE
   ======================= */

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F2F4F7;
  color: #233140;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: #37613a;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B48C44;
  outline: none;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
strong {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, 'Times New Roman', serif;
  color: #233140;
  margin-bottom: 18px;
  font-weight: 700;
}
h1 { font-size: 2.4rem; line-height: 1.1; margin-top: 0; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.35rem; line-height: 1.25; }
h4 { font-size: 1.125rem; }

/* =======================
    1. COLOR PALETTE
   ======================= */
:root {
  --color-primary: #233140;      /* blue-charcoal */
  --color-secondary: #B48C44;    /* golden earth */
  --color-accent: #F2F4F7;       /* foggy sky */
  --color-green: #37613a;        /* deep organic green */
  --color-sand: #f9f8f3;         /* sandy light bg */
  --color-shadow: rgba(58, 72, 44, 0.12);
  --color-border: #DDD8CB;
}

/* =========================
    2. BASE CONTAINER ALIGN
   ========================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-sand);
  border-radius: 32px;
  box-shadow: 0 4px 16px var(--color-shadow);
}

@media (max-width: 600px) {
  .section {
    margin-bottom: 32px;
    padding: 28px 8px;
    border-radius: 20px;
  }
  .content-wrapper {
    gap: 20px;
  }
}

/* ==============================  
    3. HEADER, NAV, LOGO, BUTTONS 
   ============================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(41,52,35,0.08);
  position: sticky;
  top: 0;
  z-index: 102;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: 18px;
  background: var(--color-sand);
  padding: 4px 8px;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.06rem;
  position: relative;
  padding: 4px 0;
}
.main-nav a:after {
  content: "";
  display: block;
  height: 2px;
  background: var(--color-green);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  transform: scaleX(1);
}
.btn-primary {
  background: var(--color-green);
  color: #fff;
  padding: 12px 26px;
  font-size: 1.08rem;
  border-radius: 22px 14px 20px 16px / 20px 18px 28px 15px; /* organic blob shape */
  font-weight: 700;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  margin-left: 10px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  box-shadow: 0 4px 24px var(--color-shadow);
}

/* ==========================
    4. MOBILE NAVIGATION
   ========================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  padding: 12px 16px;
  background: var(--color-green);
  color: #fff;
  border-radius: 16px;
  margin-left: auto;
  transition: background 0.2s;
  z-index: 130;
}
.mobile-menu-toggle:focus {
  outline: 3px solid var(--color-secondary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 999;
  --menu-slide: translateX(-105%);
  transform: var(--menu-slide);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  box-shadow: 2px 0 24px var(--color-shadow);
  padding: 38px 24px 18px 22px;
}
.mobile-menu.open {
  display: flex;
  --menu-slide: translateX(0);
  transform: var(--menu-slide);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin-bottom: 30px;
  background: var(--color-secondary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 14px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 8px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.15rem;
  padding: 12px 8px;
  border-radius: 10px;
  font-weight: 700;
  background: var(--color-sand);
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-green);
  color: #fff;
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 991px) {
  .mobile-menu {
    display: flex;
  }
}

/* ================================
    5. HERO & ORGANIC ELEMENTS
   ================================ */
.subheadline {
  font-size: 1.17rem;
  color: #37613a;
  margin-bottom: 8px;
  margin-top: 8px;
  font-weight: 500;
}

/* Organic shapes via section border-radius and uneven border radii for cards and buttons (see .section, .card, .btn-primary) */

/* =============================
    6. FLEX CARDS & SECTIONS
   ============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 25px 22px 34px 18px / 29px 18px 34px 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
  position: relative;
  padding: 28px 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;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 30px 20px 28px 22px;
  box-shadow: 0 3px 18px rgba(54,97,58,0.09);
  border: 1px solid var(--color-border);
  min-width: 260px;
  max-width: 370px;
  margin-bottom: 20px;
  transition: box-shadow 0.24s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(54,97,58,0.18);
  transform: translateY(-3px) scale(1.03);
}
.testimonial-card .stars {
  font-size: 1.25rem;
  color: #B48C44;
}
.testimonial-card p {
  color: #233140;
  font-size: 1.04rem;
  font-style: italic;
}
.testimonial-card footer {
  font-size: 0.95rem;
  color: #37613a;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Services Preview List - home section */
.service-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-preview-list li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 22px 30px 18px 28px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 22px 16px 12px 20px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  border: 1px solid var(--color-accent);
}
.service-preview-list h3 {
  margin-bottom: 6px;
  font-size: 1.13rem;
  color: var(--color-green);
}
.service-preview-list .price {
  margin-top: 5px;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.12rem;
}

/* Features Grid - .feature-grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0 0 12px 0;
}
.feature-grid li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 27px 15px 31px 16px;
  padding: 20px 16px 18px 16px;
  box-shadow: 0 2px 10px var(--color-shadow);
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-width: 200px;
  border-left: 4px solid var(--color-green);
  font-size: 1.05rem;
}
.feature-grid img {
  width: 34px;
  height: 34px;
  margin-top: 2px;
}
.feature-grid strong {
  color: var(--color-green);
}

/* Services Grid (services.html) */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  width: 100%;
}
.service-card {
  flex: 1 1 265px;
  min-width: 220px;
  background: #fff;
  border-radius: 22px 32px 18px 33px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 28px 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--color-accent);
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.14s;
}
.service-card:hover {
  box-shadow: 0 8px 26px var(--color-shadow);
  transform: translateY(-3px) scale(1.02);
}
.service-card img {
  height: 40px;
  width: 40px;
  margin-bottom: 2px;
}
.service-card h2 {
  font-size: 1.2rem;
  color: var(--color-green);
  margin-bottom: 2px;
}
.service-card .price {
  color: var(--color-secondary);
  font-weight: 700;
  margin-top: 0px;
  font-size: 1.15rem;
}

/* Service Benefits/Inclusions */
.service-benefits,
.service-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 0 0;
}
.service-benefits li,
.service-inclusions li {
  background: var(--color-accent);
  color: var(--color-green);
  border-radius: 16px;
  padding: 9px 16px;
  font-weight: 600;
  font-size: 0.96rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border-radius: 22px 17px 30px 21px;
  box-shadow: 0 1px 7px var(--color-shadow);
  border-left: 4px solid var(--color-green);
  padding: 19px 16px 17px 22px;
  margin-bottom: 20px;
}
.faq-item h2 {
  margin-bottom: 6px;
  font-size: 1.12rem;
  color: var(--color-primary);
}
.faq-item p {
  font-size: 1.02rem;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.values-list li {
  background: #fff;
  border-radius: 24px 16px 28px 17px;
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 15px 17px;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.values-list img {
  height: 26px;
  width: 26px;
}
.guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.guarantees span {
  background: var(--color-accent);
  border-radius: 14px;
  padding: 7px 15px;
  color: var(--color-green);
  font-size: 0.99rem;
  font-weight: 600;
}

.address-block, .hours-block, .email-block {
  background: var(--color-accent);
  border-radius: 18px;
  padding: 10px 14px;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-size: 1.01rem;
  box-shadow: 0 1px 7px var(--color-shadow);
}
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}

.map-embed {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 22px 16px 22px 14px;
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 16px 18px;
  margin-bottom: 16px;
}
.map-caption {
  margin-left: 6px;
  color: var(--color-green);
  font-weight: 600;
  font-size: 0.97rem;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 10px var(--color-shadow);
  border-radius: 24px 28px 22px 25px;
  overflow: hidden;
}
.pricing-table th {
  text-align: left;
  background: var(--color-green);
  color: #fff;
  font-size: 1.12rem;
  padding: 14px 16px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pricing-table td {
  padding: 13px 16px;
  color: var(--color-primary);
  font-weight: 500;
  background: #fff;
  border-top: 1px solid var(--color-accent);
  font-size: 1.05rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.certification-mention {
  margin-top: 18px;
  padding: 13px 16px;
  background: var(--color-accent);
  border-left: 4px solid var(--color-secondary);
  border-radius: 16px;
  color: #233140;
  font-size: 1.03rem;
}

/* CTA BANNER (e.g. last section) */
.section .btn-primary {
  margin-top: 7px;
}

/* ============================
    7. FOOTER STYLES
   ============================ */
footer {
  background: #233140;
  color: #fff;
  margin-top: 80px;
  border-radius: 36px 0 0 0 / 38px 0 0 0;
  box-shadow: 0 -2px 18px var(--color-shadow);
  padding: 48px 0 0px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}
.footer-menu a {
  color: var(--color-accent);
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-secondary);
}
.quick-contact {
  font-size: 0.97rem;
  color: #ebeeef;
  line-height: 1.65;
  margin-top: 6px;
}
.footer-logo-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.footer-logo-social img {
  height: 38px;
  width: auto;
}
.social-icons {
  display: flex;
  gap: 9px;
}
.social-icons img {
  width: 26px;
  height: 26px;
  transition: filter 0.2s, transform 0.17s;
  filter: grayscale(50%) brightness(1.4);
}
.social-icons img:hover {
  filter: none;
  transform: scale(1.1) rotate(-8deg);
}
.copyright {
  width: 100%;
  text-align: center;
  margin: 20px 0 0 0;
  color: #cfc8b3;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-logo-social {
    align-items: flex-start;
  }
}

/* ============================
    8. RESPONSIVE DESIGN
   ============================ */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-grid, .card-container, .feature-grid, .service-preview-list, .service-grid, .service-benefits, .service-inclusions {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  h1 { font-size: 1.40rem; }
  h2 { font-size: 1.17rem; }
  .logo img { height: 36px; }
  .footer-logo-social img { height: 28px; }
}

/* ============================
     9. COOKIE CONSENT BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe6;
  color: #233140;
  box-shadow: 0 -3px 24px rgba(54,97,58,0.16);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  padding: 18px 6vw 18px 22px;
  z-index: 1200;
  border-radius: 22px 22px 0 0;
  font-size: 1rem;
  transition: transform 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-message {
  flex: 1 1 auto;
  color: #233140;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner .cookie-btn {
  padding: 9px 18px;
  border-radius: 19px;
  background: var(--color-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-btn.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn.settings {
  background: #e4e6d6;
  color: var(--color-green);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 14px 7vw;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 11px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,54,36,0.55);
  z-index: 1250;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #233140;
  border-radius: 28px;
  padding: 32px 22px;
  min-width: 310px;
  max-width: 98vw;
  box-shadow: 0 7px 44px rgba(36,54,41,0.17);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: zoomFadeIn 0.28s cubic-bezier(.76,-0.1,.35,1.3);
}
@keyframes zoomFadeIn {
  from { opacity: 0; transform: scale(0.84);} to { opacity: 1; transform: scale(1);} 
}
.cookie-modal h3 {
  color: var(--color-green);
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-green);
  width: 18px;
  height: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 12px;
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
}
.cookie-category.always-on label {
  color: #c9ac6f;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 20px 7px;
    border-radius: 20px;
  }
}

/* ========================
    10. MICRO-INTERACTIONS
   ======================== */
input, select, textarea {
  font-family: inherit;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--color-accent);
  padding: 9px 13px;
  margin-bottom: 14px;
  font-size: 1rem;
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-green);
  outline: none;
  background: #f6fdf7;
}
::-webkit-input-placeholder { color: #76878c; opacity: 1; }
::-moz-placeholder { color: #76878c; opacity: 1; }
:-ms-input-placeholder { color: #76878c; opacity: 1; }
::placeholder { color: #76878c; opacity: 1; }

/* ============================
    11. SPACING/PATTERNS/MISC
   ============================ */
main {
  min-height: 600px;
  width: 100%;
  padding: 0 0 32px 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: var(--color-sand);
  box-shadow: 0 4px 16px var(--color-shadow);
}

@media (max-width: 600px) {
  section {
    margin-bottom: 32px;
    padding: 20px 5px;
    border-radius: 16px;
  }
}

/* Prevent card/section overlapping, keep min 20px margin between all cards */
.card, .service-card, .testimonial-card, .faq-item, .values-list li {
  margin-bottom: 20px;
}

.card-container, .content-grid, .feature-grid, .service-grid, .testimonials, .service-preview-list, .service-benefits, .service-inclusions, .values-list {
  gap: 20px;
}

/* ============================
    12. UTILITY CLASSES
   ============================ */
.d-none { display: none !important; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.bold { font-weight: bold; }

/* ============================
    13. PRINT SANITY (Optional)
   ============================ */
@media print {
  header, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #222; }
}

/* ============================
    14. ACCESSIBILITY ENHANCE
   ============================ */
:focus-visible {
  outline: 3px dashed var(--color-secondary);
  outline-offset: 3px;
}

/* ============================
    15. CUSTOM SCROLLBAR (modern browsers)
   ============================ */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-green) var(--color-accent);
}
::-webkit-scrollbar {
  width: 7px;
  background: var(--color-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--color-green);
  border-radius: 7px;
}
/* ============================
    END: Flairstorm Nature Organic CSS
   ============================ */
