/* ========================================================================
	Quiet Lotus – NATURE_ORGANIC STYLE – style.css
===========================================================================
	BRAND COLORS: 
	Primary: #305358 (teal deep green)
	Secondary: #8EC2B3 (muted soft green)
	Accent: #F7F5EF (light organic off-white)
	Organic accent: #82705C (muted earth brown)
	Organic secondary: #A3B97A (organic green)
===========================================================================*/
/* =========================
	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,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
  display: block;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; background: none; border: none; }
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body { 
  background: #F7F5EF; 
  font-family: 'Roboto', Arial, sans-serif; 
  color: #305358;
  font-size: 16px;
  line-height: 1.625;
}

/* =========================
	1. TYPOGRAPHY
==========================*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #305358;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.75rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.05rem; font-weight: 500; margin-bottom: 10px; }
p, ul, ol { margin-bottom: 18px; }
.subtitle { font-size: 1.15rem; font-family: 'Roboto', Arial, sans-serif; color: #44645f; font-weight: 400; }
strong { font-weight: 600; }

/* =========================
	2. LAYOUT/CONTAINERS
==========================*/
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section { 
  margin-bottom: 60px; 
  padding: 40px 20px; 
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 24px 0 rgba(48,83,88,0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 768px) {
  .section { padding: 28px 8px; margin-bottom: 36px; border-radius: 16px; }
}

/**********************
	NATURE ORGANIC ORGANIC SHAPES
**********************/
.section, .card, .testimonial-card, .feature-item, .service-card {
  border-radius: 32px 24px 44px 18px/28px 30px 24px 38px;
}

/**********************
	FLEXBOX PATTERN CLASSES
**********************/
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #fff; box-shadow: 0 1px 8px 0 rgba(48,83,88,0.07); border-radius: 28px; min-width: 260px; padding: 28px 22px; }
.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; background: #F7F5EF; padding: 20px 30px 22px 24px; border-radius: 32px;  box-shadow: 0 2px 16px -2px rgba(48,83,88,0.05); margin-bottom: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; background: #F7F5EF; border-radius: 32px; padding: 28px 20px; min-width: 200px; flex: 1 1 220px; box-shadow: 0 2px 16px -2px rgba(48,83,88,0.04); margin-bottom: 20px; transition: box-shadow 0.24s, transform 0.22s; }
.feature-item:hover { box-shadow: 0 5px 24px -2px rgba(48,83,88,0.13); transform: translateY(-4px) scale(1.027); }
@media (max-width: 768px) {
  .card-container, .content-grid, .feature-grid, .service-cards {
    flex-direction: column;
    gap: 20px;
  }
}

/**********************
	3. HEADER & NAVIGATION
**********************/
header {
  background: #F7F5EF;
  box-shadow: 0 0 16px 0 rgba(130,112,92,0.05);
  padding: 0;
  position: sticky;
  z-index: 20;
  top: 0;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 0;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 14px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 14px;
  color: #305358;
  border-radius: 18px;
  transition: background 0.17s, color 0.17s;
  font-weight: 500;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #8EC2B3;
}
.cta-button {
  background: #8EC2B3;
  color: #fff;
  border-radius: 22px 33px 22px 33px/24px 27px 24px 27px;
  padding: 10px 30px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .7px;
  box-shadow: 0 2px 16px 0 rgba(48, 83, 88, 0.13);
  transition: background 0.17s, color 0.17s, transform 0.13s;
  cursor: pointer;
  margin-left: 20px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #305358;
  color: #fff;
  transform: translateY(-2px) scale(1.036);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #305358;
  cursor: pointer;
  margin-left: 20px;
  line-height: inherit;
  z-index: 99;
}
@media (max-width: 1024px) {
  .main-nav { gap: 8px; }
  .cta-button { padding: 8px 20px; margin-left: 8px; font-size: 1rem; }
  .logo img { height: 38px; }
  header .container { min-height: 72px; }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-button {
    margin-left: 8px;
  }
}

/***************
 MOBILE MENU
***************/
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(48,83,88,0.92);
  backdrop-filter: blur(4px);
  z-index: 222;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.59, 0.19, 0.17, 1.03);
  width: 100vw;
  height: 100vh;
  padding: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 22px 30px 10px 0;
  cursor: pointer;
  z-index: 19;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 44px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #fff;
  padding: 12px 0 8px 0;
  border-radius: 13px;
  width: 100%;
  font-weight: 500;
  transition: color 0.16s, background 0.14s;
  min-width: 200px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #8EC2B3;
  background: rgba(247,245,239,0.11);
}
@media (min-width: 901px) {
  .mobile-menu { display: none!important; }
}

/***************
	4. HERO SECTION
***************/
.hero {
  background: linear-gradient(90deg, #F7F5EF 70%, #A3B97A 120%);
  padding-top: 48px; padding-bottom: 48px;
}
.hero .container {
  flex-direction: column; align-items: flex-start;
}
.hero h1 { color: #305358; text-shadow: 0 4px 32px rgba(48, 83, 88, 0.08); }
.hero .subtitle {
  margin-bottom: 16px;
  color: #569370;
}
.hero .cta-button {
  background: #305358;
  color: #fff;
  margin-top: 14px;
}
.hero .cta-button:hover, .hero .cta-button:focus {
  background: #8EC2B3;
  color: #305358;
}

/************
 FEATURE GRIDS
*************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 20px;
  row-gap: 24px;
}
.feature-item img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 8px #A3B97A22);
}
@media (max-width: 950px) {
  .feature-grid {
    gap: 16px;
    row-gap: 16px;
  }
  .feature-item { min-width: 145px; }
}
@media (max-width: 600px) {
  .feature-item { padding: 18px 12px; border-radius: 20px; }
}

/**********************
 SERVICE CARDS
***********************/
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 18px 0 rgba(130,112,92,0.08);
  padding: 28px 18px 18px 22px;
  min-width: 220px; flex: 1 1 260px; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 9px;
  border-left: 8px solid #A3B97A;
  transition: box-shadow 0.24s, border-color 0.22s, transform 0.18s;
}
.service-card:hover {
  box-shadow: 0 10px 36px -4px rgba(48,83,88,0.15);
  border-left: 8px solid #8EC2B3;
  transform: translateY(-3px) scale(1.025);
}
.service-card h2 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: #305358;
}
.service-card .service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #A3B97A;
  font-weight: 600;
  margin-top: 12px;
}

/*************************
	PRICING TABLE
*************************/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #F7F5EF;
  border-radius: 18px;
  margin-bottom: 28px;
  box-shadow: 0 4px 12px 0 rgba(48,83,88,0.04);
}
.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 18px 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #305358;
  border-bottom: 1px solid #E9E7E2;
}
.pricing-table th {
  background: #8EC2B3;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-notes {
  font-size: 0.97rem;
  color: #82705C;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td { padding: 10px 6px; font-size: 0.92rem; }
}

/***********************
 TESTIMONIALS/REVIEWS
***********************/
.testimonial-card {
  background: #fff;
  color: #305358;
  border-left: 6px solid #A3B97A;
  font-size: 1.09rem;
  box-shadow: 0 2px 14px 0 rgba(130,112,92,.10);
  margin-bottom: 22px;
  border-radius: 32px;
  max-width: 700px;
  line-height: 1.7;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  transition: box-shadow 0.22s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(48,83,88,0.18);
  transform: scale(1.03) translateY(-4px);
}
.testimonial-card p {
  margin-bottom: 8px;
  color: #44645f;
}
.testimonial-card span {
  font-size: .97rem;
  color: #305358;
  font-weight: 600;
  font-style: italic;
  margin-left: 20px;
}
/*******************
 CONTACT/INFO BLOCKS
********************/
.contact-details p, .contact-info-brief p {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
  font-size: 1.04rem;
}
.social-links { display: flex; flex-direction: row; gap: 20px; margin-top: 10px; }
.social-links a img { width: 32px; height: 32px; border-radius: 50%; box-shadow: 0 0 12px #A3B97A15; transition: box-shadow 0.15s; }
.social-links a:hover img { box-shadow: 0 2px 24px #A3B97A33; }

/***********************
	FAQ ACCORDION & HELP
***********************/
.faq-accordion { display: flex; flex-direction: column; gap: 24px; margin-bottom: 20px; }
.faq-item {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 9px 0 rgba(48,83,88,0.09);
  padding: 18px 20px;
  transition: box-shadow 0.16s, background 0.18s;
}
.faq-item h2 {
  margin-bottom: 10px;
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #305358;
}
.faq-item p {
  color: #557977;
  font-size: 1rem;
}
.help-message p {
  background: #A3B97A;
  color: #fff;
  border-radius: 18px;
  padding: 8px 24px;
  font-size: 1.06rem;
  margin-bottom: 0;
  display: inline-block;
}
@media (max-width: 700px) {
  .faq-item { padding: 13px 10px; }
}

/***********************
 FOOTER
***********************/
footer {
  background: #305358;
  color: #F7F5EF;
  padding: 38px 0 22px 0;
  margin-top: 38px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  position: relative;
}
.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex; flex-direction: row; gap: 18px; margin-bottom: 10px;
}
.footer-nav a {
  color: #F7F5EF;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: .97rem;
  opacity: .95;
  transition: color 0.18s, opacity 0.18s;
  border-radius: 10px;
  padding: 4px 10px;
}
.footer-nav a:hover, .footer-nav a:focus { color: #A3B97A; opacity: 1; background: #fff1; }
.footer-contact p { color: #F7F5EF; font-size: 0.96rem; margin-bottom: 5px; line-height: 1.6; }
.copyright { color: #D1D7D5; opacity: .88; font-size: .93rem; margin-top: 14px; }
@media (max-width: 900px) {
  footer .container {
    flex-direction: column; gap: 24px; align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer { padding: 24px 0 10px 0; }
  .footer-logo img { height: 34px; margin-bottom: 7px; }
}

/**********************
	4. ICON LIST/IMAGES
***********************/
.icon-list { display: flex; flex-direction: row; align-items: center; gap: 22px; margin-top: 13px; }
.icon-list img { width: 38px; height: 38px; border-radius: 14px; background: #F7F5EF; padding: 4px; box-shadow: 0 2px 9px 0 rgba(163,185,122,0.07); }

/**********************
	5. BUTTONS & INTERACTIONS
***********************/
button, .cta-button, .mobile-menu-close, .mobile-menu-toggle {
  outline: none;
  transition: background 0.16s, color 0.13s, box-shadow 0.17s, transform 0.11s;
}
button:focus-visible, .cta-button:focus-visible, .mobile-menu-close:focus-visible {
  box-shadow: 0 0 0 3px #8EC2B3aa;
  outline: none;
}
/* Universal transitions for interactive elements */
a, button { transition: color 0.13s, background 0.13s, box-shadow 0.19s, transform 0.11s; }

/********************
 COOKIE CONSENT BANNER
*********************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: #fff;
  border-top: 3px solid #A3B97A;
  box-shadow: 0 -2px 20px 0 #30535811;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  padding: 24px 18px;
  gap: 32px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #305358;
  animation: fadeInUpCookie 0.65s ease;
}
@keyframes fadeInUpCookie {
  from { opacity: 0; transform: translateY(64px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  flex: 2 1 320px;
  margin: 0 14px 0 0;
}
.cookie-banner .cookie-btn {
  background: #A3B97A;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 11px 22px;
  margin-left: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 4px 0 #A3B97A32;
}
.cookie-banner .cookie-btn.secondary {
  background: #305358;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #8EC2B3;
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  filter: brightness(1.08) contrast(1.1);
  transform: scale(1.045);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 7px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-btn { width: 100%; margin: 7px 0 0 0; }
  .cookie-banner p { margin: 0; }
}
/**********************
 COOKIE SETTINGS MODAL
**********************/
.cookie-modal-overlay {
  position: fixed;
  z-index: 1400;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(48,83,88,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieOverlay 0.37s cubic-bezier(.6,0,.45,1.1);
}
@keyframes fadeInCookieOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 6px 36px 0 rgba(48,83,88,0.19);
  padding: 40px 33px 28px 33px;
  max-width: 430px;
  width: 95vw;
  color: #305358;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex; flex-direction: column;
  gap: 16px;
  animation: modalIn .45s cubic-bezier(.5,.4,.33,1.25);
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.89) translateY(80px); }
  to { opacity: 1; transform: scale(1) translateY(0);}
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.24rem;
  color: #305358;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  margin-bottom: 16px;
  display: flex; flex-direction: row; justify-content: space-between; align-items: center;
  font-size: 1.03rem;
}
.cookie-modal .cookie-toggle {
  width: 44px; height: 24px; display: inline-flex; align-items: center; background: #efefef; border-radius: 12px; cursor: pointer; position: relative;
}
.cookie-modal .cookie-toggle input { display: none; }
.cookie-modal .cookie-toggle span {
  width: 20px; height: 20px; background: #A3B97A; border-radius: 50%; display: block; position: absolute; left: 2px; top: 2px; transition: left 0.17s, background 0.13s;
}
.cookie-modal .cookie-toggle input:checked + span {
  background: #305358; left: 22px;
}
.cookie-modal .cookie-category strong {
  color: #44645f;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-desc {
  color: #82705C;
  margin-left: 0; margin-top: 2px; font-size: 0.97rem;
}
.cookie-modal .cookie-modal-btns {
  display: flex; flex-direction: row; gap: 12px; margin-top: 12px;
}
.cookie-modal .cookie-btn {
  padding: 9px 21px;
  font-size: 1rem;
}
.cookie-modal .cookie-btn:last-child { background: #305358; color: #fff; }
.cookie-modal .close-x {
  position: absolute; top: 12px; right: 18px; background: none; border: none; color: #305358; font-size: 1.61rem; cursor: pointer;
}
@media (max-width: 500px) {
  .cookie-modal { padding: 19px 8px 18px 12px; max-width: 98vw; }
}

/**********************
	GENERAL MEDIA QUERIES
***********************/
@media (max-width: 768px) {
  .container { max-width: 100vw; padding-inline: 7px; }
  .content-wrapper { gap: 0; }
  .hero { padding-top: 22px; padding-bottom: 14px; }
  .hero h1 { font-size: 1.25rem; }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 0.96rem; }
  .feature-item, .card, .testimonial-card, .service-card { border-radius: 15px; padding: 15px 8px; }
}
@media (max-width: 520px) {
  .main-nav a, .footer-nav a { font-size: 0.97rem; }
  .cta-button, .cookie-btn { font-size: 0.90rem; padding: 8px 13px; }
  .service-card, .testimonial-card, .feature-item { font-size: .97rem; }
  .footer-logo img { height: 28px; }
}

/*******************
	ACCESSIBLE FOCUS
*******************/
a:focus-visible, button:focus-visible, .cta-button:focus-visible {
  outline: 3px solid #A3B97A;
  outline-offset: 2px;
}

/*******************
	MISC/UTILITY
*******************/
.text-section { margin-bottom: 24px; }
ul { padding-left: 16px; }
ul li { position: relative; margin-bottom: 8px; padding-left: 0.5em; }
ul li::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #8EC2B3; margin-right: 8px; position: relative; top: -2px; left: -7px; }
strong { color: #305358; }
/* Subtle organic border for cards where desired */
.card, .service-card, .testimonial-card {
  border: 1px solid #E8E5DA;
}

/*****************
	ANIMATIONS
******************/
.section, .card, .feature-item, .testimonial-card, .service-card {
  transition: box-shadow 0.19s, transform 0.16s, border-color 0.21s;
}
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 28px 0 #8EC2B322;
  border-color: #A3B97A;
}

/*****************
 DISTINCTIVE NATURE DECORATIVE EFFECTS
******************/
.section {
  /* Optional light pattern, may apply decorative SVG as background image if desired. */
  background-image: none;
}

/*******************
 ORGANIC SCROLLBAR (for desktop)
*******************/
@media (pointer: fine) {
  ::-webkit-scrollbar { width: 12px; background: #F7F5EF; }
  ::-webkit-scrollbar-thumb { background: #A3B97A; border-radius: 12px; }
  ::-webkit-scrollbar-thumb:hover { background: #8EC2B3; }
}

/* END STYLE =================================================================== */
