/* ===== ABOUT US PAGE STYLES ===== */
.gt-about-page {
  font-family: 'Inter', sans-serif;
}

/* Utility Classes */
.gt-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.gt-container-narrow {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.gt-text-center {
  text-align: center;
}

.gt-grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.gt-items-center {
  align-items: center;
}

.gt-content-space {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Animation Classes */
.gt-animate-fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gt-animate-fadeIn.visible {
  opacity: 1;
  transform: translateY(0);
}

.gt-delay-1 { transition-delay: 0.2s; }
.gt-delay-2 { transition-delay: 0.4s; }
.gt-delay-3 { transition-delay: 0.6s; }

/* Gradient Text */
.gt-gradient-text {
  background: linear-gradient(90deg, #16a34a, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Styles */
.gt-section-white {
  background-color: white;
  padding: 5rem 0;
}

.gt-section-gray {
  background: linear-gradient(to bottom, #f9fafb, white);
  padding: 5rem 0;
}

.gt-section-green-light {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  padding: 5rem 0;
}

/* Hero Section */
.gt-hero-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.95)), 
                url('/images/Farm-land.jpg') center/cover;
}

.gt-hero-bg {
  position: absolute;
  inset: 0;
}

.gt-blob-1 {
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(187, 247, 208, 0.3);
  border-radius: 50%;
  filter: blur(3rem);
}

.gt-blob-2 {
  position: absolute;
  bottom: -6rem;
  right: -6rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(134, 239, 172, 0.3);
  border-radius: 50%;
  filter: blur(3rem);
}

.gt-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

.gt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #dcfce7;
  color: #166534;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.gt-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gt-hero-description {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.gt-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Buttons */
.gt-btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #16a34a, #10b981);
  color: white;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}

.gt-btn-primary:hover {
  background: linear-gradient(135deg, #15803d, #0d966b);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(22, 163, 74, 0.3);
}

.gt-btn-secondary {
  display: inline-flex;
  align-items: center;
  border: 2px solid #16a34a;
  color: #16a34a;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gt-btn-secondary:hover {
  background-color: #f0fdf4;
  transform: translateY(-3px);
}

/* Section Headers */
.gt-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.gt-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
}

.gt-main-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.gt-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* Icons */
.gt-icon-large {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gt-icon-medium {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gt-bg-green {
  background: linear-gradient(135deg, #16a34a, #10b981);
}

/* Text Styles */
.gt-text-lg {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.75;
}

/* Cards */
.gt-highlight-card {
  background: linear-gradient(135deg, rgba(220, 252, 231, 0.5), rgba(240, 253, 244, 0.8));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.gt-card-title {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.gt-card-text {
  color: #374151;
}

.gt-feature-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 168, 116, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.gt-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 168, 116, 0.15);
}

.gt-feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.gt-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.gt-feature-text {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* Check List */
.gt-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gt-check-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: #4b5563;
}

.gt-check-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

/* Info Cards */
.gt-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gt-info-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.gt-info-title {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.gt-info-text {
  color: #4b5563;
}

/* Image Styles */
.gt-image-wrapper {
  position: relative;
}

.gt-image-frame {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 1.5rem;
  padding: 0.25rem;
}

.gt-image {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Benefit Cards */
.gt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.gt-benefit-card {
  background: white;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
}

.gt-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.gt-benefit-card[data-color="green"]:hover {
  border-color: #10b981;
}

.gt-benefit-card[data-color="blue"]:hover {
  border-color: #3b82f6;
}

.gt-benefit-card[data-color="yellow"]:hover {
  border-color: #f59e0b;
}

.gt-benefit-card[data-color="purple"]:hover {
  border-color: #8b5cf6;
}

.gt-benefit-card[data-color="emerald"]:hover {
  border-color: #10b981;
}

.gt-benefit-card[data-color="red"]:hover {
  border-color: #ef4444;
}

.gt-benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.25rem;
}

.gt-benefit-card[data-color="green"] .gt-benefit-icon {
  background: linear-gradient(135deg, #16a34a, #10b981);
}

.gt-benefit-card[data-color="blue"] .gt-benefit-icon {
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
}

.gt-benefit-card[data-color="yellow"] .gt-benefit-icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.gt-benefit-card[data-color="purple"] .gt-benefit-icon {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.gt-benefit-card[data-color="emerald"] .gt-benefit-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.gt-benefit-card[data-color="red"] .gt-benefit-icon {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.gt-benefit-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.gt-benefit-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.gt-benefit-text {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Product Cards */
.gt-products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.gt-product-card {
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.gt-product-card[data-color="green"] {
  background: linear-gradient(135deg, rgba(220, 252, 231, 0.5), rgba(240, 253, 244, 0.8));
  border-color: rgba(34, 197, 94, 0.2);
}

.gt-product-card[data-color="blue"] {
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.5), rgba(239, 246, 255, 0.8));
  border-color: rgba(59, 130, 246, 0.2);
}

.gt-product-card[data-color="purple"] {
  background: linear-gradient(135deg, rgba(237, 233, 254, 0.5), rgba(245, 243, 255, 0.8));
  border-color: rgba(139, 92, 246, 0.2);
}

.gt-product-card[data-color="amber"] {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.5), rgba(255, 251, 235, 0.8));
  border-color: rgba(245, 158, 11, 0.2);
}

.gt-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gt-product-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

.gt-product-card[data-color="green"] .gt-product-icon {
  background: linear-gradient(135deg, #16a34a, #10b981);
}

.gt-product-card[data-color="blue"] .gt-product-icon {
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
}

.gt-product-card[data-color="purple"] .gt-product-icon {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.gt-product-card[data-color="amber"] .gt-product-icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.gt-product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.gt-product-text {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.gt-product-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.gt-product-card[data-color="green"] .gt-product-link {
  color: #16a34a;
}

.gt-product-card[data-color="blue"] .gt-product-link {
  color: #3b82f6;
}

.gt-product-card[data-color="purple"] .gt-product-link {
  color: #8b5cf6;
}

.gt-product-card[data-color="amber"] .gt-product-link {
  color: #f59e0b;
}

.gt-product-link:hover {
  gap: 0.5rem;
}

/* Stats Section */
.gt-stats-section {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
  padding: 5rem 0;
}

.gt-stats-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  text-align: center;
}

.gt-stat-item {
  color: white;
}

.gt-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.gt-stat-label {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.9;
}

/* CTA Section */
.gt-cta-box {
  background: linear-gradient(135deg, rgba(220, 252, 231, 0.5), rgba(240, 253, 244, 0.8));
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid rgba(0, 168, 116, 0.2);
  text-align: center;
}

.gt-cta-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.gt-cta-text {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.gt-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .gt-grid-2-col {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gt-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gt-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gt-hero-title {
    font-size: 3.75rem;
  }
  
  .gt-main-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .gt-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gt-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gt-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .gt-hero-title {
    font-size: 4.5rem;
  }
}

/* Print Styles */
@media print {
  .gt-about-page {
    background: white !important;
    color: black !important;
  }
  
  .gt-gradient-text {
    color: #16a34a !important;
    background: none !important;
    -webkit-text-fill-color: #16a34a !important;
  }
  
  .gt-stats-section {
    background: #16a34a !important;
    -webkit-print-color-adjust: exact;
  }
  
  .gt-btn-primary,
  .gt-btn-secondary {
    border: 1px solid #000 !important;
    color: #000 !important;
    background: none !important;
  }
}