/* ============================================
   PLANTA VERDE - ELEGANT CLASSIC DESIGN
   CSS Reset & Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #fafaf8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY - ELEGANT CLASSIC
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Palatino', 'Book Antiqua', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 16px;
}

h1 {
  font-size: 42px;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 14px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #3a3a3a;
}

a {
  color: #2D5F3F;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #7CAF5E;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 8px;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e5df;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

header img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Palatino', serif;
  font-size: 15px;
  color: #2D5F3F;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: #7CAF5E;
  border-bottom-color: #7CAF5E;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background-color: #2D5F3F;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #7CAF5E;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2D5F3F;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #7CAF5E;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-family: 'Palatino', serif;
  font-size: 18px;
  color: #2D5F3F;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #e8e5df;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #7CAF5E;
  padding-left: 8px;
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #F4E8D8 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e8e5df;
}

.hero h1 {
  font-size: 48px;
  color: #2D5F3F;
  margin-bottom: 24px;
  text-align: center;
}

.hero p {
  font-size: 18px;
  color: #3a3a3a;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.breadcrumb {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
  text-align: center;
}

.breadcrumb a {
  color: #2D5F3F;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ============================================
   BUTTONS - ELEGANT CLASSIC STYLE
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Palatino', serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: #2D5F3F;
  color: #ffffff;
  border-color: #2D5F3F;
}

.btn-primary:hover {
  background-color: #7CAF5E;
  border-color: #7CAF5E;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2D5F3F;
  border-color: #2D5F3F;
}

.btn-secondary:hover {
  background-color: #2D5F3F;
  color: #ffffff;
}

.btn-link {
  background-color: transparent;
  color: #2D5F3F;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid #2D5F3F;
  border-radius: 0;
}

.btn-link:hover {
  color: #7CAF5E;
  border-bottom-color: #7CAF5E;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* ============================================
   SECTIONS & CARDS
   ============================================ */

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

.value-proposition,
.featured-plants,
.services-overview,
.testimonials,
.contact-cta,
.plant-catalog,
.guarantee,
.consultation-cta,
.delivery-info,
.services-detailed,
.service-benefits,
.workshop-value,
.upcoming-workshops,
.whats-included,
.story,
.mission-vision,
.approach,
.achievements,
.location,
.contact-methods,
.contact-form-section,
.consultation-booking,
.location-map,
.opening-hours,
.faq,
.legal-content,
.cookie-settings,
.confirmation-message,
.next-steps,
.suggested-actions,
.contact-info-summary {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-grid,
.plant-grid,
.services-grid,
.testimonial-grid,
.guarantee-grid,
.benefits-grid,
.approach-grid,
.contact-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.value-card,
.plant-card,
.service-card,
.testimonial-card,
.guarantee-item,
.benefit-card,
.approach-card,
.contact-card,
.action-card,
.service-item,
.workshop-item {
  background-color: #ffffff;
  border: 1px solid #e8e5df;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.value-card:hover,
.plant-card:hover,
.service-card:hover,
.benefit-card:hover,
.approach-card:hover,
.contact-card:hover,
.action-card:hover {
  box-shadow: 0 8px 24px rgba(45, 95, 63, 0.12);
  transform: translateY(-4px);
  border-color: #7CAF5E;
}

.service-item,
.workshop-item {
  flex: 1 1 100%;
  border-left: 4px solid #2D5F3F;
}

.testimonial-card {
  background-color: #F4E8D8;
  flex: 1 1 calc(50% - 12px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 16px;
  color: #2c2c2c;
  line-height: 1.6;
  margin-bottom: 12px;
}

.testimonial-card span {
  font-family: 'Palatino', serif;
  font-weight: 600;
  color: #2D5F3F;
  font-size: 14px;
}

.price {
  display: block;
  font-family: 'Palatino', serif;
  font-size: 24px;
  font-weight: 600;
  color: #2D5F3F;
  margin: 16px 0;
}

.trust-badge {
  text-align: center;
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   TEXT-IMAGE SECTIONS
   ============================================ */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}

/* ============================================
   SPECIFIC SECTIONS
   ============================================ */

.contact-cta {
  background: linear-gradient(135deg, #2D5F3F 0%, #7CAF5E 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
}

.contact-cta h2,
.contact-cta p {
  color: #ffffff;
}

.filter-section {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 32px;
  border: 1px solid #e8e5df;
}

.filter-section p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 12px;
}

.mission,
.vision,
.values {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 32px;
  border: 1px solid #e8e5df;
}

.values ul {
  list-style: disc;
  padding-left: 24px;
}

.values li {
  color: #3a3a3a;
}

.achievements ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-around;
  list-style: none;
}

.achievements li {
  background-color: #F4E8D8;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 200px;
  font-weight: 600;
  color: #2D5F3F;
}

.opening-hours table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.opening-hours td {
  padding: 16px;
  border-bottom: 1px solid #e8e5df;
}

.opening-hours tr:last-child td {
  border-bottom: none;
}

.opening-hours td:first-child {
  font-weight: 600;
  color: #2D5F3F;
}

.faq-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #e8e5df;
}

.faq-item h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
}

.legal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e8e5df;
  line-height: 1.8;
}

.legal-content h2 {
  color: #2D5F3F;
  margin-top: 32px;
  margin-bottom: 16px;
  border-bottom: 2px solid #F4E8D8;
  padding-bottom: 8px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #3a3a3a;
}

.form-info {
  background-color: #F4E8D8;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  margin-top: 24px;
}

.message-box {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #7CAF5E;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #2D5F3F;
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 80px;
  border-top: 4px solid #7CAF5E;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-info {
  flex: 1 1 300px;
}

.footer-info img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-info p {
  color: #e8e5df;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 200px;
}

.footer-nav a {
  color: #e8e5df;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #F4E8D8;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #e8e5df;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 232, 216, 0.2);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #2D5F3F;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  font-size: 14px;
  color: #3a3a3a;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  border-radius: 4px;
  font-family: 'Palatino', serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: #2D5F3F;
  color: #ffffff;
  border-color: #2D5F3F;
}

.cookie-accept:hover {
  background-color: #7CAF5E;
  border-color: #7CAF5E;
}

.cookie-reject {
  background-color: transparent;
  color: #2D5F3F;
  border-color: #2D5F3F;
}

.cookie-reject:hover {
  background-color: #2D5F3F;
  color: #ffffff;
}

.cookie-settings {
  background-color: #F4E8D8;
  color: #2D5F3F;
  border-color: #F4E8D8;
}

.cookie-settings:hover {
  background-color: #e8d5c0;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cookie-modal h2 {
  color: #2D5F3F;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #fafaf8;
  border-radius: 4px;
  border: 1px solid #e8e5df;
}

.cookie-category h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .value-card,
  .plant-card,
  .service-card,
  .testimonial-card,
  .guarantee-item,
  .benefit-card,
  .approach-card,
  .contact-card,
  .action-card {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
  
  .section {
    padding: 32px 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .value-card,
  .plant-card,
  .service-card,
  .service-item,
  .workshop-item {
    padding: 24px;
  }
  
  .legal-content {
    padding: 24px;
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

.value-card,
.plant-card,
.service-card,
.benefit-card {
  animation: fadeIn 0.6s ease forwards;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ============================================
   ELEGANT CLASSIC SPECIFIC STYLES
   ============================================ */

.section h2 {
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: #7CAF5E;
}

.plant-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #2D5F3F;
  border-radius: 8px 0 0 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.plant-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

/* Elegant dividers */
.section + .section {
  border-top: 1px solid #e8e5df;
  padding-top: 60px;
}

/* Refined shadows */
button:focus,
a:focus,
input:focus {
  outline: 2px solid #7CAF5E;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-buttons {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}