/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2d5a27;
  --secondary-color: #8b9a46;
  --accent-color: #d4a574;
  --dark-color: #1a1a1a;
  --light-color: #f5f5f0;
  --white: #ffffff;
  --gradient-olive: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: slideInDown 0.6s ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background: #22c35e;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .whatsapp-button {
    padding: 10px 15px;
    font-size: 0.85rem;
    top: 15px;
    right: 15px;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }
}

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

.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 100px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--light-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(212, 165, 116, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 154, 70, 0.1) 0%,
      transparent 50%
    );
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--primary-color);
  padding: 20px;
}

.hero-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  letter-spacing: 0.05em;
  text-shadow: none;
}

.hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--secondary-color);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .description {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
  background: #c4956a;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(45, 90, 39, 0.3);
  border-radius: 15px;
  position: relative;
}

.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

/* Animation Classes */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--light-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image {
  position: relative;
}

.image-placeholder {
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  display: block;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Products Section */
.products {
  padding: 100px 0;
  background: var(--white);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-image .image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 90, 39, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.view-more {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 25px;
  border: 2px solid var(--white);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.view-more:hover {
  background: var(--white);
  color: var(--primary-color);
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.product-brief {
  color: #777;
  font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background: var(--gradient-olive);
  color: var(--white);
}

.benefits .section-title {
  color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.benefit-card {
  text-align: center;
  padding: 40px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* Footer */
footer {
  padding: 40px 0;
  background: var(--dark-color);
  color: var(--white);
  text-align: center;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

footer p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

.modal-content {
  background: var(--white);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

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

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  z-index: 10;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  color: var(--dark-color);
  background: rgba(0, 0, 0, 0.05);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-image {
  height: 100%;
  min-height: 400px;
}

.modal-image .image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px 0 0 20px;
  min-height: 400px;
}

.modal-text {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.modal-description {
  color: #555;
  line-height: 2;
  font-size: 1rem;
}

.modal-description p {
  margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-image .image-placeholder {
    height: 300px;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 250px;
  }

  .modal-image .image-placeholder {
    border-radius: 20px 20px 0 0;
    min-height: 250px;
  }

  .modal-text {
    padding: 30px;
  }
}

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

  .about-text h2,
  .section-title,
  .contact h2 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0;
  }

  .cta-button {
    padding: 15px 35px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .about,
  .products,
  .benefits,
  .contact {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .product-image {
    height: 220px;
  }
}
/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--light-color);
}

.faq .section-title {
  margin-bottom: 50px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(139, 154, 70, 0.2);
}

.faq-item.active {
  border-color: var(--secondary-color);
  background: linear-gradient(to bottom, #ffffff, #f9f9f4);
}

.faq-question {
  padding: 25px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}

.faq-question h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  padding-right: 25px;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: var(--secondary-color);
}

.faq-icon {
  width: 28px;
  height: 28px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(45, 90, 39, 0.05);
  border-radius: 50%;
}

.faq-item.active .faq-icon {
  background: var(--secondary-color);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background-color: var(--white);
}

.faq-icon::before {
  width: 2px;
  height: 12px;
  left: 13px;
  top: 8px;
}

.faq-icon::after {
  width: 12px;
  height: 2px;
  left: 8px;
  top: 13px;
}

.faq-item.active .faq-icon {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 0 35px 30px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.9;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  padding-top: 20px;
}

.faq-answer-content ul {
  margin-top: 10px;
  list-style-type: none;
  padding-left: 0;
}

.faq-answer-content li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.faq-answer-content li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Existing Responsive Design updates */
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }
  .faq-question h3 {
    font-size: 1rem;
  }
}
