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

body {
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 80px;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

h1, h2, h3 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  margin-bottom: 1rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 2000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s;
}

.nav-links a.active {
  color: #4caf50;
}

.nav-links a:hover {
  color: #4caf50;
}

.cart-icon {
  background-color: #4caf50;
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  padding: 8px;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
}

.menu-overlay.show {
  display: block;
}

/* Cart Popup */
.cart-popup-container {
  position: fixed;
  right: 0;
  top: 84px;
  width: 100%;
  max-width: 400px;
  height: 70vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(53, 51, 51);
  background-color: rgb(238, 238, 238);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.cart-popup-container.show {
  transform: translateX(0%);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgb(177, 177, 177);
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 10px;
  background: white;
}

.cart-item .item-img-container img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.item-details-container {
  flex: 1;
  margin-left: 12px;
}

.item-details-container p {
  margin: 0 0 8px 0;
  font-size: 16px;
}

.update-quantity-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.update-quantity-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #4caf50;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.cart-footer {
  padding: 16px;
  border-top: 1px solid rgb(177, 177, 177);
  background: white;
}

.subtotal-container {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.checkout-btn {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
  background-color: #ffc107;
  color: #000;
  transition: background-color 0.3s;
}

.checkout-btn:hover {
  background-color: #e0a800;
}

.cart-note-container p {
  margin: 0;
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Hero Section */
.about-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.about-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content > p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4caf50;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* History Section */
.history {
  padding: 80px 0;
  background: white;
}

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

.history-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #555;
}

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

.milestone {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
}

.year {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4caf50;
  margin-bottom: 10px;
}

.milestone p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.history-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.history-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Mission & Values Section */
.mission-values {
  padding: 80px 0;
  background: #f8f9fa;
}

.mission {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.mission-content h2 {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 20px;
}

.mission-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.mission-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.mission-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.values h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 50px;
}

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

.value-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #111827;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.service-card {
  padding: 40px 30px;
  background: #f8f9fa;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background: white;
}

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

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #111827;
}

.service-card > p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  text-align: left;
  margin-top: 20px;
}

.service-features li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 20px;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

/* Team Section */
.team {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-members {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid #e8f5e8;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #111827;
}

.member-role {
  color: #4caf50;
  font-weight: 500;
  margin-bottom: 15px;
}

.member-bio {
  color: #666;
  line-height: 1.6;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: white;
}

.review-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.review-card {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #4caf50;
}

.review-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.review-author strong {
  color: #111827;
  margin-bottom: 5px;
}

.review-author span {
  color: #666;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8fff8;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #111827;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #4caf50;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 5px;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  color: #111827;
}

.contact-item p {
  color: #666;
  margin: 0;
}

.contact-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #111827;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4caf50;
}

.submit-btn {
  width: 100%;
  background: #4caf50;
  color: white;
  padding: 15px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #45a049;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content > p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

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

.cta-button {
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-button.primary {
  background: white;
  color: #4caf50;
}

.cta-button.primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: white;
  color: #4caf50;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: #4caf50;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  margin: 8px 0;
  color: #fff;
  display: block;
}

.footer-section a:hover {
  text-decoration: underline;
}

.send-email input[type="email"] {
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  border-radius: 4px;
}

.send-email button {
  padding: 10px 20px;
  background-color: #ffc107;
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.send-email button:hover {
  background-color: #e0a800;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.payment-icons img {
  width: 50px;
  height: auto;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive Design */
@media (min-width: 768px) {
  .about-hero .container {
    grid-template-columns: 1fr 1fr;
  }
  
  .history-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-members {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .review-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }

  .nav {
    padding: 10px 15px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 75%;
    max-width: 300px;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2001;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    transform: translateX(0%);
  }

  .nav-links a {
    font-size: 18px;
    padding: 8px 0;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .cart-popup-container {
    top: 70px;
    max-width: 100%;
    height: calc(100vh - 70px);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .mission-content h2,
  .values h2,
  .contact-info h2 {
    font-size: 1.8rem;
  }
}