/* CSS Variables and Global Styles */
:root {
    --color-primary: #4CAF50;
    --color-secondary: #FDF6F0;
    --color-accent: #E07A5F;
    --color-brown: #8B5E3C;
    --color-dark: #2C6E49;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --radius-md: 8px;
    --transition-fast: 0.3s ease;
    --shadow-md: 0 2px 8px rgba(44, 110, 73, 0.125);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  font-size: 1rem;
  background: linear-gradient(135deg, #FDF6F0 0%, #F8F3ED 50%, #F3ECE7 100%);
  color: var(--color-dark);
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
header.header-shell {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(44, 110, 73, 0.08);
  padding: var(--space-md) 0;
  text-align: center;
  position: static;
  z-index: 100;
  transition: top var(--transition-fast), box-shadow var(--transition-fast);
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.brand-title {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}
.brand-title:hover {
  color: var(--color-dark);
  transform: scale(1.05);
}
.brand-title:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 4px;
}
.main-nav-bar {
  display: flex;
  gap: var(--space-md);
}
.main-nav-bar a {
  text-decoration: none;
  color: var(--color-dark);
  font-size: 1.13rem;
  padding: .65em 1.1em;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.25s, color 0.22s, box-shadow 0.2s;
  border-bottom: 2px solid transparent;
}
.main-nav-bar a.active,
.main-nav-bar a:hover {
  background: #e7f7ed;
  color: #388e3c;
  border-bottom: 2.7px solid #4caf50;
  box-shadow: 0 5px 11px rgba(76,175,80,0.07);
}
.burger-menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  margin-left: var(--space-md);
  transition: color var(--transition-fast);
}
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .main-nav-bar {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
    align-items: center;
  }
}
@media (max-width: 768px) {
  header.header-shell {
    position: sticky;
    top: 0;
    z-index: 1200;
  }
  .main-nav-bar.menu-open{
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 8px 22px rgba(44,110,73,0.16);
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1300;
    padding-bottom: 2em;
    padding-top: 0.5em;
    min-height: 330px;
  }
  body {
    padding-top: 0 !important;
  }
  header.header-shell {
    margin-top: 0 !important;
  }
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .main-nav-bar {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: var(--space-sm);
    align-items: stretch;
    margin-top: 0;
  }
  .main-nav-bar.menu-open {
    display: flex !important;
  }
  .burger-menu-btn {
    display: block;
  }
}
#name{
  height: 32px;
}
#email{
  height: 32px;
}
.care-ul {
  margin-left: 10px;
}
section.hero-section {
  padding: 3rem 0 2rem 0;
  min-height: 50vh;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(253, 246, 240, 0.9) 50%, rgba(243, 236, 231, 0.95) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-section-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}
.hero-section-inner img {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(44, 110, 73, 0.2);
  transition: transform 0.3s ease;
}
.hero-section-inner img:hover {
  transform: scale(1.02);
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-content p {
  font-size: 1.15rem;
  color: #4a5d52;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.c-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.c-link:hover {
  color: var(--color-accent);
}
.cta-btn {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #fff !important;
  font-size: 1rem;
  border: none;
  font-family: var(--font-primary);
  font-weight: 600;
  transition: background var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  text-decoration: none !important;
}
.cta-btn:hover {
  background: var(--color-accent);
  transform: scale(1.05);
}
@media (max-width: 500px) {
  .hero-section-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .cta-btn {
    width: 100%;
  }
}
/* Footer */
.site-footer {
  width: 100%;
  background: linear-gradient(135deg, #2C6E49 0%, #1e4d32 100%);
  color: #fff;
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
  margin-top: 4rem;
  box-shadow: 0 -2px 12px rgba(44, 110, 73, 0.15);
}
.footer-menu {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}
.footer-menu a {
  color: #fff;
  text-decoration: underline;
  font-size: 1rem;
  transition: color var(--transition-fast);
}
.footer-menu a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
.footer-copy {
  font-size: 0.875rem;
  margin-top: var(--space-sm);
}
/* Privacy Popup */
.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--color-dark);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  z-index: 2000;
  max-width: 400px;
  width: 90vw;
  display: none;
  flex-direction: column;
  gap: var(--space-md);
  font-size: 1rem;
}
.privacy-popup.show {
  display: flex;
}
.privacy-popup button {
  align-self: flex-end;
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 1rem;
  cursor: pointer;
  margin-top: var(--space-sm);
  box-shadow: var(--shadow-md);
}
.privacy-popup button:hover {
  background: var(--color-accent);
}
/* Contact Form */
.contact-section {
  padding: var(--space-lg) 0;
  background: var(--color-secondary);
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 246, 240, 0.95) 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(44, 110, 73, 0.12);
  padding: 2.5rem 2rem;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  transition: box-shadow var(--transition-fast);
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.contact-form h2 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form input[type="text"], 
.contact-form input[type="email"] {
  width: 100%;
  padding: 1em 1.2em;
  font-size: 1.05rem;
  margin-bottom: 1.5em;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  color: var(--color-dark);
}

.contact-form textarea {
  width: 100%;
  min-height: 140px;
  padding: 1em 1.2em;
  font-size: 1.05rem;
  margin-bottom: 1.5em;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  resize: vertical;
  line-height: 1.6;
  font-family: var(--font-primary);
  color: var(--color-dark);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
  outline: none;
  background: #fff;
  transform: translateY(-1px);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5em;
  margin-top: 0;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.contact-form label[for="consent"] {
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  color: #5a6d5f;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
}

.contact-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 0.75em;
  margin-top: 0.15em;
  cursor: pointer;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.contact-form button[type=submit] {
  width: 100%;
  margin-top: 0.5em;
  padding: 1.1em 2em;
  font-size: 1.1rem;
}

.contact-form button[type=submit]:hover {
  transform: translateY(-2px);
}
/* Google Maps Embed */
.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-md);
}
/* Utility classes */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-center {
  text-align: center;
}
.rounded {
  border-radius: var(--radius-md);
}
.shadowed {
  box-shadow: var(--shadow-md);
}
/* Layout update: Carded, centered responsive section container */
.section {
  padding: var(--space-lg) 0;
  background: var(--color-secondary);
}
.section-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(44, 110, 73, 0.1);
  border-radius: 16px;
  padding: var(--space-lg) var(--space-md);
  margin: 0 auto var(--space-lg) auto;
  max-width: 1200px;
  width: 95%;
  border: 1px solid rgba(76, 175, 80, 0.08);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.section-card:hover {
  box-shadow: 0 6px 28px rgba(44, 110, 73, 0.15);
  transform: translateY(-2px);
}
/* Policy pages and content formatting */
.policy-page {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  padding: 3rem 2.5rem;
}

@media (max-width: 768px) {
  .policy-page {
    padding: 2rem 1.5rem;
  }
}

.section-card {
  line-height: 1.8;
}

.section-card h1 {
  font-family: var(--font-secondary);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 3px solid rgba(76, 175, 80, 0.2);
}

@media (max-width: 768px) {
  .section-card h1 {
    font-size: 2rem;
  }
}

.section-card h2 {
  font-family: var(--font-secondary);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 2.8rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem 0;
  border-bottom: 2px solid rgba(76, 175, 80, 0.2);
  line-height: 1.4;
  position: relative;
}

.section-card h2:first-of-type {
  margin-top: 1.8rem;
}

.section-card h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.section-card p {
  margin-bottom: 1.2em;
  color: #4a5d52;
  line-height: 1.8;
  font-size: 1.05rem;
}

.section-card .date {
  color: #888;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.section-card ul,
.section-card ol {
  padding-left: 2em;
  margin-bottom: 1.5em;
  color: #4a5d52;
  line-height: 1.8;
}

.section-card ul li,
.section-card ol li {
  margin-bottom: 0.9em;
  padding-left: 3em;
  position: relative;
  transition: transform 0.2s ease;
}

.section-card ul li:hover,
.section-card ol li:hover {
  transform: translateX(4px);
}

.section-card ul li::marker {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.1em;
}

.section-card ul li strong {
  color: var(--color-dark);
  font-weight: 600;
}

.section-card a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.section-card a:hover {
  color: var(--color-accent);
}

/* FAQ styling (dl, dt, dd) */
.section-card dl {
  margin: 2em 0;
  padding: 0;
}

.section-card dt {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  padding: 0.8em 1.2em;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(76, 175, 80, 0.03) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  line-height: 1.4;
}

.section-card dt:first-of-type {
  margin-top: 0;
}

.section-card dd {
  margin: 0 0 1.5em 0;
  padding: 0.8em 1.2em 0.8em 2.5em;
  color: #5a6d5f;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border-left: 2px solid rgba(76, 175, 80, 0.2);
}

/* Seasonal tips and care mistakes styling */
.section-card > h2.section-title {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid rgba(76, 175, 80, 0.2);
}

.section-card > h2.section-title + ul {
  margin-top: 1.5em;
}

/* Improved list styling for guides */
.care-ul {
  list-style: none;
  padding-left: 0;
}

.care-ul li {
  padding: 1em 1.5em;
  margin-bottom: 0.8em;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(253, 246, 240, 0.7) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44, 110, 73, 0.08);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 2.5em;
}

.care-ul li::before {
  content: "🌿";
  position: absolute;
  left: 0.7em;
  font-size: 1.2em;
}

.care-ul li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(44, 110, 73, 0.12);
  border-left-color: var(--color-accent);
}

.care-ul li strong {
  color: var(--color-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3em;
}
/* Ensure grid-cards & cards don't lose spacing */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: var(--space-lg) 0;
}
@media (max-width: 768px) {
  .grid-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.section-title {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}
.section-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--space-md);
  color: #5a6d5f;
  line-height: 1.5;
}
.card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2em 1.5em;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(44, 110, 73, 0.12);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(76, 175, 80, 0.1);
  backdrop-filter: blur(4px);
}
.card:hover {
  box-shadow: 0 6px 24px rgba(44, 110, 73, 0.18);
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(76, 175, 80, 0.2);
}
.section-title {
  font-size: 2.2rem;
  font-family: var(--font-secondary);
  font-weight: 700;
  color: #2C6E49;
  letter-spacing: 0.03em;
  margin-bottom: 1.5em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.2em;
  }
}
.cta-btn, .contact-form button[type=submit] {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  font-size: 1.1rem;
  padding: 0.95em 2em;
  border-radius: 12px;
  font-family: var(--font-primary);
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.25);
  letter-spacing: 0.02em;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  cursor: pointer;
}
.cta-btn:hover, .contact-form button[type=submit]:hover {
  background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}
.cta-btn:active, .contact-form button[type=submit]:active {
  transform: translateY(0);
}
.cta-btn.cta-alt {
  background: linear-gradient(135deg, #E07A5F 0%, #D2694A 100%);
  box-shadow: 0 4px 14px rgba(224, 122, 95, 0.25);
}
.cta-btn.cta-alt:hover {
  background: linear-gradient(135deg, #D2694A 0%, #C55A3A 100%);
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.35);
}
/* General form inputs (for newsletter and other forms) */
input[type="text"], 
input[type="email"], 
textarea {
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  padding: 1em 1.2em;
  background: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.2em;
  color: var(--color-dark);
  width: 100%;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(44, 110, 73, 0.08);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
  outline: none;
  transform: translateY(-1px);
}

textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

label {
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
  display: block;
}
::placeholder {
  color: #bbb;
  font-size: 1.02em;
  opacity: 1;
}
@media (max-width: 400px) {
  html { font-size: 13px; }
}
main {
  min-height: calc(100vh - 145px);
}
.newsletter-form {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1em;
  margin: 0 0 0.5em 0;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 1em 1.3em;
  font-size: 1.05rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(44, 110, 73, 0.08);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.newsletter-form button.cta-btn {
  margin-right: 0;
  font-size: 1.05rem;
  border-radius: 12px;
  padding: 1em 2.2em;
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.25);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7em;
  }
  .newsletter-form input[type="email"],
  .newsletter-form button.cta-btn {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}
