/* ==================================================================================
   GARDENAURA - PROFESSIONAL LANDSCAPING WEBSITE STYLES
   Complete CSS with 100% Content Coverage
   Color Palette: Dark Green #1f5c3b, Light Green #6dbf73, White #ffffff
   ================================================================================== */

/* ========== RESET AND BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ========== HEADER STYLES - DARK GREEN WITH WHITE TEXT ========== */
header {
  background-color: #1f5c3b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========== LOGO STYLES ========== */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6dbf73 0%, #4a9f52 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(109, 191, 115, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ========== NAVIGATION MENU ========== */
.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6dbf73;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

/* ========== MOBILE MENU BUTTON ========== */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background-color: #1f5c3b;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu .nav-link,
.mobile-menu .btn-primary {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
}

.mobile-menu .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mobile-menu .btn-primary {
  margin-top: 0.5rem;
  background-color: #6dbf73;
  text-align: center;
  border-radius: 0.375rem;
}

/* ========== BUTTON STYLES ========== */
.btn-primary {
  background-color: #6dbf73;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 6px rgba(109, 191, 115, 0.3);
}

.btn-primary:hover {
  background-color: #5aad64;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 191, 115, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #1f5c3b;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #1f5c3b;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #1f5c3b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 92, 59, 0.3);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-link {
  color: #1f5c3b;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.btn-link:hover {
  color: #6dbf73;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 92, 59, 0.85) 0%, rgba(31, 92, 59, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }
}

.hero p,
.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero p,
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========== SECTION STYLES ========== */
section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

.bg-white {
  background-color: #ffffff;
}

.bg-light {
  background-color: #f9fafb;
}

.bg-dark-green {
  background: linear-gradient(135deg, #1f5c3b 0%, #2a7a4f 100%);
  color: white;
}

.text-center {
  text-align: center;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #1f5c3b;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
}

p {
  margin-bottom: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* ========== CARDS ========== */
.card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(31, 92, 59, 0.15);
  border-color: #6dbf73;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  color: #1f5c3b;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  padding: 0 1.5rem;
  padding-top: 1.5rem;
}

.card p {
  color: #6b7280;
  line-height: 1.7;
  padding: 0 1.5rem;
  padding-bottom: 1.5rem;
}

/* ========== SERVICE GRID ========== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(31, 92, 59, 0.15);
  border-color: #6dbf73;
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card h3 {
  color: #1f5c3b;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  padding: 1.5rem 1.5rem 0;
}

.service-card p {
  color: #6b7280;
  line-height: 1.7;
  padding: 0 1.5rem;
  flex-grow: 1;
}

.service-card .btn-link {
  padding: 0 1.5rem 1.5rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6dbf73 0%, #4a9f52 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(109, 191, 115, 0.3);
}

/* ========== FEATURE GRID ========== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card,
.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.feature-card:hover,
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(31, 92, 59, 0.12);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6dbf73 0%, #4a9f52 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(109, 191, 115, 0.3);
}

.feature-card h3,
.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1f5c3b;
}

.feature-card p,
.feature-item p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== CONTACT INFO ========== */
.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info svg {
  flex-shrink: 0;
  color: #6dbf73;
  margin-top: 0.125rem;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #6dbf73;
}

/* ========== FORM STYLES ========== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #6dbf73;
  box-shadow: 0 0 0 3px rgba(109, 191, 115, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: auto;
}

.form-checkbox label {
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
}

/* ========== FOOTER STYLES ========== */
footer {
  background: linear-gradient(135deg, #1a3a2e 0%, #1f5c3b 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-section {
  padding: 0;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #6dbf73;
}

.footer-section .contact-info svg {
  color: #6dbf73;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ========== LEGAL CONTENT PAGES ========== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1f5c3b;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: #1f5c3b;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  color: #1f5c3b;
}

.legal-content p {
  margin-bottom: 1rem;
  color: #4b5563;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  margin-left: 1.5rem;
  color: #4b5563;
  line-height: 1.8;
}

.legal-content ul li,
.legal-content ol li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #1f5c3b;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #6dbf73;
}

.note-box {
  background-color: #f0f9ff;
  border-left: 4px solid #6dbf73;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.note-box p {
  margin: 0;
  color: #374151;
}

.cookie-table {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  border: 1px solid #e5e7eb;
}

.cookie-table h3 {
  margin-top: 0;
  color: #1f5c3b;
}

.cookie-table p {
  margin-bottom: 0.75rem;
}

.cookie-table p:last-child {
  margin-bottom: 0;
}

/* ========== COOKIE CONSENT BANNER ========== */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1f5c3b 0%, #2a7a4f 100%);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

#cookie-consent-banner.show {
  display: block;
}

.cookie-banner-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner-content a {
  color: #6dbf73;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner-buttons button {
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

#accept-cookies {
  background-color: #6dbf73;
  color: white;
}

#accept-cookies:hover {
  background-color: #5aad64;
}

#decline-cookies {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

#decline-cookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ========== IMAGE GRID ========== */
.image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

@media (min-width: 640px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.image-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, #1f5c3b 0%, #2a7a4f 100%);
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.cta-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.5rem;
  }
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
  .cta-section p {
    font-size: 1.25rem;
  }
}

/* ========== PRICING CARDS ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(31, 92, 59, 0.2);
  border-color: #6dbf73;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f5c3b;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f5c3b;
  margin-bottom: 0.5rem;
}

.pricing-card .price-period {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 2rem;
  display: block;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: #4b5563;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #1f5c3b;
  font-style: normal;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr 1fr;
  }
}

.about-section img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
  margin-bottom: 1.5rem;
  color: #1f5c3b;
}

.about-content p {
  margin-bottom: 1.25rem;
  color: #4b5563;
  line-height: 1.8;
}

/* ========== BLOG STYLES ========== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(31, 92, 59, 0.15);
  border-color: #6dbf73;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background-color: #6dbf73;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.blog-card h3 {
  color: #1f5c3b;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.blog-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-meta {
  font-size: 0.875rem;
  color: #9ca3af;
}

.back-to-blog {
  display: inline-block;
  color: #1f5c3b;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-to-blog:hover {
  color: #6dbf73;
}

.article-header {
  margin-bottom: 3rem;
}

.article-meta {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.featured-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin: 2rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  color: #4b5563;
  line-height: 1.8;
}

.article-cta {
  background: linear-gradient(135deg, #1f5c3b 0%, #2a7a4f 100%);
  color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  margin: 3rem 0;
  text-align: center;
}

.article-cta h3 {
  color: white;
  margin-bottom: 1rem;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
}

/* ========== UTILITY CLASSES ========== */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.hidden { display: none; }

/* ========== RESPONSIVE UTILITIES ========== */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ========== SMOOTH SCROLLING ========== */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ========== ACCESSIBILITY ========== */
:focus-visible {
  outline: 2px solid #6dbf73;
  outline-offset: 2px;
}

/* ========== PRINT STYLES ========== */
@media print {
  header,
  footer,
  .mobile-menu,
  .cookie-consent-banner,
  .cta-section {
    display: none;
  }
  
  body {
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ========== FLOATING CTA BUTTON ========== */
.floating-cta-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: linear-gradient(135deg, #6dbf73 0%, #4a9f52 100%);
  color: white;
  padding: 1rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(109, 191, 115, 0.5);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2s infinite;
}

.floating-cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(109, 191, 115, 0.6);
  background: linear-gradient(135deg, #5aad64 0%, #3d8a45 100%);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(109, 191, 115, 0.5);
  }
  50% {
    box-shadow: 0 8px 32px rgba(109, 191, 115, 0.7);
  }
}

@media (max-width: 640px) {
  .floating-cta-btn {
    bottom: 20px;
    right: 20px;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ========== POPUP MODAL & FORM ========== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup-modal {
  background: white;
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-header {
  background: linear-gradient(135deg, #1f5c3b 0%, #2a7a4f 100%);
  color: white;
  padding: 2rem;
  border-radius: 1rem 1rem 0 0;
  position: relative;
}

.popup-header h2 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.popup-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
}

.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.popup-body {
  padding: 2rem;
}

.popup-form .form-group {
  margin-bottom: 1.25rem;
}

.popup-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.popup-form input,
.popup-form textarea,
.popup-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: white;
  font-family: inherit;
}

.popup-form input:focus,
.popup-form textarea:focus,
.popup-form select:focus {
  outline: none;
  border-color: #6dbf73;
  box-shadow: 0 0 0 4px rgba(109, 191, 115, 0.1);
}

.popup-form textarea {
  resize: vertical;
  min-height: 100px;
}

.popup-form .btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #6dbf73 0%, #4a9f52 100%);
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(109, 191, 115, 0.3);
}

.popup-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 191, 115, 0.4);
  background: linear-gradient(135deg, #5aad64 0%, #3d8a45 100%);
}

.popup-form .btn-submit:active {
  transform: translateY(0);
}

.form-privacy-note {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-privacy-note a {
  color: #6dbf73;
  text-decoration: underline;
}

.form-privacy-note a:hover {
  color: #1f5c3b;
}

/* Success Message */
.popup-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.popup-success.active {
  display: block;
}

.popup-success .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6dbf73 0%, #4a9f52 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  color: white;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.popup-success h3 {
  color: #1f5c3b;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.popup-success p {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Responsive Popup */
@media (max-width: 640px) {
  .popup-modal {
    max-height: 95vh;
    border-radius: 1rem 1rem 0 0;
    margin-top: auto;
  }
  
  .popup-header {
    padding: 1.5rem;
  }
  
  .popup-header h2 {
    font-size: 1.5rem;
  }
  
  .popup-body {
    padding: 1.5rem;
  }
  
  .popup-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }
}