/* ------------------------------
   Verdure Drifter CSS Reset
------------------------------ */
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #F3E9DE;
  color: #243746;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
  position: relative;
}

img, svg {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #243746;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #6CB869;
  outline: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}


/* ------------------------------
   Brand Typography
------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #243746;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

strong {
  font-weight: 700;
}


/* ------------------------------
   Layout Structure
------------------------------ */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

main {
  min-height: 60vh;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Hero Section */
.hero {
  background: #243746;
  color: #F3E9DE;
  padding: 64px 0 48px 0;
  margin-bottom: 0;
}

.hero h1, .hero h2, .hero p {
  color: #F3E9DE;
}


/* Flexbox Patterns */
.card-container, .feature-grid, .service-cards, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
}

.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 {
  width: 100%;
  background: #F3E9DE;
  border-bottom: 3px solid #6CB869;
  box-shadow: 0 4px 20px 0 rgba(36,55,70,0.04);
  position: sticky;
  top: 0; left: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  height: 56px;
}
.logo img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.main-nav a {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  color: #243746;
  padding: 8px 5px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: #6CB869;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: width 0.25s cubic-bezier(0.4,0,0.2,1);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 90%;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e5f5e3;
  color: #6CB869;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6CB869;
  color: #243746;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  transition: background 0.18s, transform 0.15s, box-shadow 0.16s;
  box-shadow: 0 2px 6px 0 rgba(36,55,70,0.08);
  letter-spacing: 0.045em;
  margin-left: 14px;
  margin-right: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #243746;
  color: #F3E9DE;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px 0 rgba(36,55,70,0.18);
}

/* Hide burger on desktop, show on mobile */
.mobile-menu-toggle {
  font-size: 2rem;
  background: #F3E9DE;
  color: #243746;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 110;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #6CB869;
  color: #F3E9DE;
}

/* ------------------------------
   Mobile Menu (Overlay Style)
------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #243746;
  color: #F3E9DE;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 9999;
  opacity: 0.98;
  padding-top: 30px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  color: #6CB869;
  align-self: flex-end;
  margin-bottom: 16px;
  margin-right: 24px;
  border: none;
  padding: 3px 12px 3px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #385d44;
  color: #F3E9DE;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 38px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #F3E9DE;
  font-family: 'Oswald', Arial Narrow, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid #385d44;
  min-width: 170px;
  transition: color 0.18s, background 0.13s, padding-left 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #6CB869;
  background: #1c292e;
  padding-left: 12px;
}


/* ------------------------------
   Features & Services Sections
------------------------------ */
.features, .services, .about, .testimonials, .contact, .content-section {
  background: #F3E9DE;
  border-radius: 24px;
  box-shadow: 0 3px 16px 0 rgba(36,55,70,0.07);
  margin-bottom: 60px;
  padding: 40px 0;
}

.feature-grid, .service-cards {
  width: 100%;
  justify-content: flex-start;
  gap: 32px;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(36,55,70,0.07);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 310px;
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
}
.feature h3 {
  color: #243746;
  margin-bottom: 8px;
  font-size: 1.13rem;
  letter-spacing: 0.04em;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(36,55,70,0.09);
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 330px;
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.16s;
  border-left: 5px solid #6CB869;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(36,55,70,0.19);
  transform: translateY(-3px) scale(1.025) skew(-1deg, 0.5deg);
}
.service-card h3 {
  margin-bottom: 8px;
  color: #243746;
}
.service-card span {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: #6CB869;
  margin-top: 18px;
  font-size: 1.11rem;
}


/* ------------------------------
   Testimonial Cards
------------------------------ */
.testimonials {
  background: #e5f5e3;
}
.testimonial-card {
  background: #fff;
  color: #243746;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36,55,70,0.08);
  margin-bottom: 24px;
  padding: 22px 30px 18px 24px;
  align-items: flex-start;
  flex-direction: column;
  min-width: 200px;
  max-width: 470px;
  border-left: 6px solid #6CB869;
  font-size: 1.08rem;
}
.testimonial-card span {
  color: #6CB869;
  font-size: 0.96rem;
  font-family: 'Oswald', Arial Narrow, Arial, sans-serif;
  font-weight: 600;
  margin-top: 6px;
  display: inline-block;
  letter-spacing: 0.04em;
}

/* Ensure contrast throughout */
.testimonials h2, .testimonial-card p {
  color: #243746;
}


/* ------------------------------
   Contact & Map Section
------------------------------ */
.contact-details, .location-map {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 6px 0 rgba(36,55,70,0.07);
  padding: 18px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.location-map img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}


/* ------------------------------
   Footer
------------------------------ */
footer {
  background: #1c292e;
  color: #F3E9DE;
  padding: 38px 0 15px 0;
  border-radius: 20px 20px 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #F3E9DE;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  opacity: 0.85;
  transition: color 0.14s, opacity 0.14s;
}
.footer-links a:hover {
  color: #6CB869;
  opacity: 1;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: #F3E9DE;
}
.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 2px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: grayscale(10%) brightness(1.2);
  opacity: 0.93;
  transition: filter 0.13s, opacity 0.13s, transform 0.14s;
}
.footer-social a:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.08) rotate(-3deg);
}


/* ------------------------------
   Cookie Consent Banner & Modal
------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #243746;
  color: #F3E9DE;
  box-shadow: 0 -2px 18px 0 rgba(36,55,70,0.13);
  z-index: 12000;
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.05rem;
  border-radius: 20px 20px 0 0;
  animation: slideup-fadein 0.5s;
}
@keyframes slideup-fadein {
  0% { opacity: 0; transform: translateY(64px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #F3E9DE;
  margin-right: 30px;
  flex: 1 1 200px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  background: #6CB869;
  color: #243746;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  padding: 10px 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 3px;
  transition: background 0.12s, color 0.12s, box-shadow 0.14s;
}
.cookie-btn:last-child {
  background: #F3E9DE;
  color: #243746;
  border: 1.5px solid #6CB869;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #243746;
  color: #F3E9DE;
  box-shadow: 0 2px 8px rgba(36,55,70,0.19);
}
.cookie-btn:last-child:hover, .cookie-btn:last-child:focus {
  background: #6CB869;
  color: #F3E9DE;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36,55,70,0.79);
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalbg-in 0.3s;
}
@keyframes modalbg-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  color: #243746;
  min-width: 320px;
  max-width: 96vw;
  box-shadow: 0 10px 38px rgba(36,55,70,0.23);
  padding: 40px 34px 34px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalscale 0.24s cubic-bezier(0.66,0,0.34,1);
}
@keyframes modalscale {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 700;
  font-size: 1rem;
  margin-right: 8px;
  color: #243746;
}
.cookie-category input[type="checkbox"] {
  accent-color: #6CB869;
  width: 22px;
  height: 22px;
  margin-right: 4px;
}
.cookie-modal button {
  margin-top: 18px;
  align-self: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 20px;
  background: none;
  color: #6CB869;
  border: none;
  font-size: 2rem;
  z-index: 2;
  transition: color .15s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #243746;
}


/* ------------------------------
   Miscellaneous Elements
------------------------------ */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: #c9d8cb;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: #F3E9DE;
}

hr {
  border: none;
  border-top: 2px solid #6CB869;
  margin: 32px 0;
}

/* Cards auxiliary styling */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 7px rgba(36,55,70,0.06);
  padding: 22px 18px;
  flex: 1;
}


/* ------------------------
   Spacing for All Sections
------------------------- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Custom Spacing classes */
.mb-12 { margin-bottom: 12px; }
.mb-18 { margin-bottom: 18px; }
.mb-24 { margin-bottom: 24px; }

/* Utility flex */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-30 { gap: 30px; }

/* --------------------------------------
   Geometric/Structured UI Accents
----------------------------------------- */
/* Card accent triangles / parallelogram visuals */
.feature::before, .service-card::before {
  content: '';
  display: block;
  position: absolute;
  right: 18px; top: 18px;
  width: 28px; height: 28px;
  background: #e5f5e3;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 33% 100%, 0 54%);
  z-index: 0;
  opacity: 0.36;
}

/* Example of more angular/hard-edged fonts & lines */
h1, h2, h3, h4, h5, h6, .main-nav a, .btn-primary {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
}

/* -----------------------------------------
   Responsive (Mobile-first)
------------------------------------------ */
@media (max-width: 1100px) {
  .container { max-width: 960px; }
  .feature-grid, .service-cards, .card-grid {
    gap: 20px;
  }
  .feature, .service-card {
    min-width: 170px;
    max-width: 96%;
  }
  .footer-brand img {
    height: 30px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 760px; }
  .main-nav { gap: 12px; }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
    min-height: 60px;
    padding: 0 6px;
  }
  .main-nav {
    display: none !important;
  }
  .btn-primary {
    padding: 10px 19px;
    font-size: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .service-cards, .card-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .service-card {
    max-width: 100%;
    width: 100%;
  }
  .footer-links nav {
    gap: 7px;
  }
  .footer-social {
    gap: 9px;
  }
  .footer-brand {
    font-size: 0.96rem;
  }
  .content-wrapper {
    gap: 17px;
  }
  .testimonial-card {
    padding: 18px 12px 14px 12px;
    min-width: 130px;
    max-width: 100%;
  }
  section, .section {
    padding: 28px 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .contact-details, .location-map {
    padding: 10px 10px;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 24px 7vw 24px 7vw;
  }
}
@media (max-width: 510px) {
  html {
    font-size: 14px;
  }
  .btn-primary {
    padding: 9px 11px;
    font-size: 0.92rem;
    min-width: 70px;
  }
  .cookie-banner {
    padding: 16px 6px 12px 6px;
    font-size: 0.98rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner .cookie-btns {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
  }
}


/* -------------------------------------
   Print-friendly (optional)
-------------------------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body, html { background: #fff !important; color: #000 !important; }
  * { box-shadow: none !important; }
}
