/* ===== CROP ADVISORY PAGE STYLES ===== */

/* Hero Section */
.gt-advisory-hero {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.95)), 
              url('/images/banner.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;
}

/* Badge */
.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: 3.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gt-gradient-text {
  background: linear-gradient(90deg, #16a34a, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gt-hero-description {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Buttons */
.gt-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.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);
}

/* Container & Layout */
.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;
}

/* 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;
}

.gt-section-green {
  background: linear-gradient(135deg, #16a34a, #10b981);
  padding: 5rem 0;
}

/* 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-bg-green {
  background: linear-gradient(135deg, #16a34a, #10b981);
}

/* Content Spacing */
.gt-content-space {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gt-text-lg {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.75;
}

/* Feature List */
.gt-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gt-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.gt-feature-check {
  width: 2.5rem;
  height: 2.5rem;
  background: #10b981;
  color: white;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gt-feature-item h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.gt-feature-item p {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Search and Filter */
.gt-search-filter {
  margin-bottom: 3rem;
}

.gt-search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.gt-search-box i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.gt-search-box input {
  width: 100%;
  padding: 1rem 1rem 1rem 3.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.gt-search-box input:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.gt-filter-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.gt-filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #16a34a;
  background: white;
  color: #16a34a;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gt-filter-btn:hover,
.gt-filter-btn.active {
  background: linear-gradient(135deg, #16a34a, #10b981);
  color: white;
  border-color: transparent;
}

/* Crop Grid */
.gt-crop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Crop Cards */
.gt-crop-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 168, 116, 0.1);
}

.gt-crop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 168, 116, 0.15);
}

.gt-crop-image {
  height: 200px;
  overflow: hidden;
}

.gt-crop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gt-crop-card:hover .gt-crop-image img {
  transform: scale(1.05);
}

.gt-crop-content {
  padding: 1.5rem;
}

.gt-crop-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.gt-crop-desc {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  min-height: 40px;
}

.gt-crop-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gt-crop-feature {
  background: #f0fdf4;
  color: #166534;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.gt-crop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #16a34a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.gt-crop-link:hover {
  color: #15803d;
}

.gt-crop-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.gt-crop-link:hover i {
  transform: translateX(4px);
}

/* App Features */
.gt-app-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.gt-app-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.gt-app-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #16a34a, #10b981);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.gt-app-feature h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.gt-app-feature p {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Download CTA */
.gt-download-cta {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 168, 116, 0.1);
  text-align: center;
}

.gt-download-cta h3 {
  font-size: 1.75rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.gt-download-cta > p {
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.gt-download-app {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #1f2937;
  color: white;
  border-radius: 1rem;
  padding: 1.25rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.gt-download-app:hover {
  background: #374151;
  transform: translateY(-3px);
}

.gt-download-icon {
  font-size: 2.5rem;
}

.gt-download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gt-download-small {
  font-size: 0.75rem;
  color: #9ca3af;
}

.gt-download-large {
  font-size: 1.25rem;
  font-weight: 700;
}

.gt-video-link {
  margin-top: 1.5rem;
}

.gt-video-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #16a34a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.gt-video-link a:hover {
  color: #15803d;
}

/* CTA Box */
.gt-cta-box {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid rgba(0, 168, 116, 0.2);
  text-align: center;
}

.gt-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.gt-section-green .gt-cta-box .gt-cta-title {
  color: #1f2937;
}

.gt-cta-text {
  font-size: 1.25rem;
  color: white;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.gt-section-green .gt-cta-box .gt-cta-text {
  color: #4b5563;
}

.gt-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Animations */
.gt-animate-fadeIn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.gt-animate-fadeIn.gt-delay-1 {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .gt-crop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .gt-grid-2-col {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gt-hero-title {
    font-size: 4.5rem;
  }
  
  .gt-main-title {
    font-size: 3rem;
  }
  
  .gt-crop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gt-crop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .gt-crop-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Print Styles */
@media print {
  .gt-advisory-hero {
    background: white !important;
    color: black !important;
  }
  
  .gt-gradient-text {
    color: #16a34a !important;
    background: none !important;
    -webkit-text-fill-color: #16a34a !important;
  }
  
  .gt-btn-primary,
  .gt-btn-secondary {
    border: 1px solid #000 !important;
    color: #000 !important;
    background: none !important;
  }
}