/* ===== AGRITECH COMPANY PAGE STYLES ===== */
/* Modern design matching GrowTech website structure */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  color: #1f2937;
}

/* ===== HERO SECTION WITH BACKGROUND IMAGE ===== */
.gt-agritech-hero {
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
  min-height: 550px;
  display: flex;
  align-items: center;
}

.gt-hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/Farm-land.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.gt-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.88) 100%);
  z-index: 1;
}

.gt-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.gt-blob-1 {
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(16, 185, 129, 0.08));
  border-radius: 50%;
  filter: blur(4rem);
}

.gt-blob-2 {
  position: absolute;
  bottom: -6rem;
  right: -6rem;
  width: 28rem;
  height: 28rem;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(16, 185, 129, 0.06));
  border-radius: 50%;
  filter: blur(4rem);
}

.gt-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.gt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(22, 163, 74, 0.1);
  backdrop-filter: blur(4px);
  color: #166534;
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid rgba(22, 163, 74, 0.2);
  margin-top: 20px;
}

.gt-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .gt-hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .gt-hero-title {
    font-size: 4rem;
  }
}

.gt-gradient-text {
  background: linear-gradient(135deg, #16a34a, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gt-hero-description {
  font-size: 1.125rem;
  color: #374151;
  max-width: 48rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .gt-hero-description {
    font-size: 1.25rem;
  }
}

/* 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.25);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.gt-btn-primary:hover {
  background: linear-gradient(135deg, #15803d, #0d966b);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(22, 163, 74, 0.35);
}

.gt-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  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;
  cursor: pointer;
  font-size: 1rem;
}

.gt-btn-secondary:hover {
  background: #f0fdf4;
  transform: translateY(-3px);
  border-color: #15803d;
  color: #15803d;
}

/* Container & Layout */
.gt-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gt-container-narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gt-text-center {
  text-align: center;
}

/* Section Styles */
.gt-section-white {
  background: 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: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .gt-section-header {
    justify-content: center;
    text-align: center;
  }
}

.gt-icon-large {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gt-bg-green {
  background: linear-gradient(135deg, #16a34a, #10b981);
}

.gt-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

@media (min-width: 768px) {
  .gt-section-title {
    font-size: 2rem;
  }
}

.gt-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .gt-main-title {
    font-size: 2.5rem;
  }
}

.gt-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

/* Content */
.gt-content-space {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gt-text-lg {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
}

.gt-internal-link {
  color: #16a34a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.gt-internal-link:hover {
  color: #15803d;
  text-decoration: underline;
}

.gt-highlight-box {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border-left: 4px solid #16a34a;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gt-highlight-box i {
  font-size: 2rem;
  color: #16a34a;
}

.gt-highlight-box p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

/* Solutions Grid */
.gt-solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gt-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gt-solutions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gt-solution-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.gt-solution-card:hover {
  transform: translateY(-5px);
  border-color: #16a34a;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.1);
}

.gt-solution-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #16a34a, #10b981);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.gt-solution-icon i {
  font-size: 1.75rem;
  color: white;
}

.gt-solution-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.gt-solution-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Services List */
.gt-services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 768px) {
  .gt-services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gt-service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.gt-service-item:hover {
  background: #f0fdf4;
  border-color: #16a34a;
  transform: translateX(5px);
}

.gt-service-item i {
  color: #16a34a;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.gt-service-item span {
  color: #374151;
  font-weight: 500;
}

/* Specialties Grid */
.gt-specialties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gt-specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gt-specialties-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gt-specialty-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.gt-specialty-card:hover {
  transform: translateY(-5px);
  border-color: #16a34a;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.1);
}

.gt-specialty-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.gt-specialty-icon i {
  font-size: 1.5rem;
  color: #16a34a;
}

.gt-specialty-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.gt-specialty-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Vision Box */
.gt-vision-box {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(22, 163, 74, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gt-vision-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #16a34a, #10b981);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.gt-vision-icon i {
  font-size: 2rem;
  color: white;
}

.gt-vision-text {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.gt-vision-highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: #16a34a;
  margin-top: 1rem;
}

.gt-vision-quote {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  color: #6b7280;
}

.gt-vision-quote i {
  color: #16a34a;
  font-size: 1.25rem;
}

/* Stats Grid */
.gt-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gt-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gt-stat-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.gt-stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.gt-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .gt-stat-number {
    font-size: 2rem;
  }
}

.gt-stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .gt-stat-label {
    font-size: 0.875rem;
  }
}

/* CTA Box */
.gt-cta-box {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(22, 163, 74, 0.2);
  transition: all 0.3s ease;
}

.gt-cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gt-cta-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #16a34a, #10b981);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.gt-cta-icon i {
  font-size: 2rem;
  color: white;
}

.gt-cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .gt-cta-title {
    font-size: 1.75rem;
  }
}

.gt-cta-text {
  font-size: 1rem;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.gt-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gt-cta-note {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gt-section-white,
  .gt-section-gray,
  .gt-section-green-light,
  .gt-section-green {
    padding: 3rem 0;
  }
  
  .gt-cta-box {
    padding: 1.5rem;
  }
  
  .gt-highlight-box {
    flex-direction: column;
    text-align: center;
  }
  
  .gt-hero-title {
    font-size: 2rem;
  }
  
  .gt-vision-box {
    padding: 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gt-solution-card,
.gt-specialty-card,
.gt-service-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.gt-solution-card:nth-child(1) { animation-delay: 0.1s; }
.gt-solution-card:nth-child(2) { animation-delay: 0.15s; }
.gt-solution-card:nth-child(3) { animation-delay: 0.2s; }
.gt-solution-card:nth-child(4) { animation-delay: 0.25s; }
.gt-solution-card:nth-child(5) { animation-delay: 0.3s; }
.gt-solution-card:nth-child(6) { animation-delay: 0.35s; }
.gt-solution-card:nth-child(7) { animation-delay: 0.4s; }
.gt-solution-card:nth-child(8) { animation-delay: 0.45s; }

/* Print Styles */
@media print {
  .gt-agritech-hero {
    background: white !important;
    color: black !important;
  }
  
  .gt-hero-bg-image,
  .gt-hero-overlay {
    display: none;
  }
  
  .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;
  }
}