/* About Page - Minimal & Responsive */

:root{
  --about-green: #1f7a3a;
  --about-green-dark: #113820;
  --about-cream: #ebcaa6;
  /* --about-cream-dark: #e8e1ce; */
  --about-ink: #133220;
  --about-ink-light: #2b3a31;
  --about-ink-muted: #5c6a61;
  --about-white: #ffffff;
  --about-shadow: 0 4px 16px rgba(19,50,32,0.12);
  --about-shadow-lg: 0 8px 32px rgba(19,50,32,0.16);
}

*{
  box-sizing: border-box;
}

body, html{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.about-main{
  margin: 0;
  padding: 0;
  width: 100%;
}

.about-container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pd-header{
  background: var(--about-green-dark)!important;
}
/* Hero */
.about-hero{
  position: relative;
  background: var(--about-cream);
  padding: clamp(60px, 10vw, 100px) 20px;
  text-align: center;
}

.about-hero-overlay{
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 30% 50%, rgba(244,238,223,0.4), transparent); */
  pointer-events: none;
}

.about-hero-content{
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-badge{
  display: inline-block;
  background: var(--about-green);
  color:white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid var(--about-green-dark);
}

.about-hero-title{
  font-family: 'Merriweather', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--about-green-dark);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.about-hero-sub{
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--about-green-dark);
  margin: 0;
  line-height: 1.6;
}

/* Main Content Section */
.about-content-section{
  padding: clamp(50px, 8vw, 80px) 0;
  background: var(--about-white);
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.about-image-wrap{
  position: relative;
}

.about-main-image{
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--about-shadow-lg);
  display: block;
}

.about-image-badge{
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: var(--about-shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--about-ink);
}

.about-image-badge i{
  color: var(--about-green);
  font-size: 1.2rem;
}

.about-section-title{
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  color: var(--about-ink);
  margin: 0 0 20px 0;
}

.about-section-title.center{
  text-align: center;
}

.about-section-subtitle{
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--about-ink-muted);
  margin: 0 0 40px 0;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-text p{
  font-size: 1rem;
  line-height: 1.7;
  color: var(--about-ink-light);
  margin: 0 0 18px 0;
}

.about-highlights{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.highlight-item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--about-ink-light);
  font-weight: 500;
}

.highlight-item i{
  color: var(--about-green);
  font-size: 1.1rem;
}

/* Features Section */
.about-features-section{
  padding: clamp(50px, 8vw, 80px) 0;
  background: var(--about-cream);
}

.features-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card{
  background: var(--about-white);
  padding: 28px;
  border-radius: 14px;
  box-shadow: var(--about-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--about-shadow-lg);
}

.feature-icon{
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--about-green), var(--about-green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i{
  font-size: 2rem;
  color: #fff;
}

.feature-card h3{
  font-size: 1.15rem;
  color: var(--about-ink);
  margin: 0 0 10px 0;
  font-weight: 600;
}

.feature-card p{
  font-size: 0.95rem;
  color: var(--about-ink-muted);
  margin: 0;
  line-height: 1.6;
}

/* Stats Section */
.about-stats-section{
  padding: clamp(50px, 8vw, 80px) 0;
  background: linear-gradient(135deg, var(--about-green), var(--about-green-dark));
}

.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card{
  text-align: center;
  color: #fff;
}

.stat-icon{
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.stat-number{
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.stat-label{
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Products Section */
.about-products-section{
  padding: clamp(50px, 8vw, 80px) 0;
  background: var(--about-white);
}

.products-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-item{
  background: var(--about-cream);
  padding: 28px;
  border-radius: 14px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-item:hover{
  border-color: var(--about-green);
  transform: translateY(-4px);
}

.product-item i{
  font-size: 2.5rem;
  color: var(--about-green);
  margin-bottom: 16px;
  display: block;
}

.product-item h3{
  font-size: 1.1rem;
  color: var(--about-ink);
  margin: 0 0 8px 0;
  font-weight: 600;
}

.product-item p{
  font-size: 0.9rem;
  color: var(--about-ink-muted);
  margin: 0;
}

/* CTA Section */
.about-cta-section{
  padding: clamp(50px, 8vw, 80px) 0;
  background: var(--about-cream);
}

.cta-box{
  background: linear-gradient(135deg, var(--about-green), var(--about-green-dark));
  padding: clamp(40px, 6vw, 60px);
  border-radius: 14px;
  text-align: center;
  color: #fff;
  box-shadow: var(--about-shadow-lg);
}

.cta-box h2{
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0 0 16px 0;
}

.cta-box p{
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin: 0 0 28px 0;
  opacity: 0.95;
}

.cta-buttons{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-primary{
  background: #fff;
  color: var(--about-green);
}

.btn-cta-primary:hover{
  background: var(--about-cream);
  transform: translateY(-2px);
}

.btn-cta-secondary{
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}

.btn-cta-secondary:hover{
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 992px){
  .about-grid{
    grid-template-columns: 1fr;
  }

  .features-grid,
  .products-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .about-container{
    padding: 0 16px;
  }

  .about-hero{
    padding: 50px 16px;
  }

  .features-grid,
  .products-grid{
    grid-template-columns: 1fr;
  }

  .stats-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-buttons{
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cta-primary,
  .btn-cta-secondary{
    width: 100%;
    justify-content: center;
  }
}

/* Footer Styling */
.pd-footer{
  background: #1b2722;
  color: rgba(255,255,255,0.8);
  padding: 32px 20px;
  margin: 0;
  width: 100%;
}

.pd-footer-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 0;
}

.footer-brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo{ 
  height: 36px; 
  width: auto; 
}

.footer-tagline{
  font-size: 0.9rem;
  color: #d4a574;
  margin: 0;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

.footer-links{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a{
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-links a:hover{ 
  color: #d4a574; 
}

.footer-copy{
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 8px 0 0 0;
  word-break: break-word;
}

/* Footer Responsive */
@media (max-width: 640px){
  .pd-footer{
    padding: 24px 16px;
  }
  
  .footer-links{
    gap: 16px;
  }
}


/* Header/Navbar Styling */
.pd-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #1f7a3a, #17642f);
  box-shadow: 0 4px 16px rgba(19,50,32,0.12);
  margin: 0;
  padding: 0;
  width: 100%;
}

.pd-header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.pd-container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.pd-brand-logo{
  height: 42px;
  width: auto;
  display: block;
}

.pd-breadcrumbs{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pd-crumb{
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd-crumb:hover{
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.pd-crumb-current{
  color: #f4eedf;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd-separator{
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* Header Responsive */
@media (max-width: 768px){
  .pd-header-inner{
    min-height: 60px;
    padding: 0 16px;
  }
  
  .pd-brand-logo{
    height: 36px;
  }
  
  .pd-breadcrumbs{
    flex-basis: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px){
  .pd-header-inner{
    padding: 0 12px;
  }
}
