/* YoAgro Enhanced Homepage Styles with Logo and Footer */
/* Override WordPress theme styles */
.site-main, .content-area, .site-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

.entry-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide WordPress theme elements */
.site-header, .main-navigation, .site-footer {
    display: none !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Premium YoAgro Design Variables */
:root {
  --yoagro-primary: #16a34a;
  --yoagro-primary-dark: #15803d;
  --yoagro-primary-light: #22c55e;
  --yoagro-secondary: #0ea5e9;
  --yoagro-accent: #f59e0b;
  --yoagro-dark: #0f172a;
  --yoagro-gray: #64748b;
  --yoagro-light: #f8fafc;
  --yoagro-white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #15803d 100%);
  --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --border-radius-xl: 1rem;
  --border-radius-2xl: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  line-height: 1.6;
  color: var(--yoagro-dark);
  background: var(--yoagro-white);
}
/* Navigation with Logo */
.yoagro-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(22, 163, 74, 0.1);
  height: 90px;
  transition: all 0.3s ease;
}

.yoagro-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.yoagro-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.yoagro-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--yoagro-dark);
}

.yoagro-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.yoagro-logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yoagro-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.yoagro-nav-link {
  text-decoration: none;
  color: var(--yoagro-gray);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
}

.yoagro-nav-link:hover,
.yoagro-nav-link.active {
  color: var(--yoagro-primary);
}

.yoagro-nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.yoagro-nav-link:hover::after,
.yoagro-nav-link.active::after {
  width: 100%;
}

.yoagro-nav-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.yoagro-nav-cta:hover {
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
}

.yoagro-nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.yoagro-nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--yoagro-dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.yoagro-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.yoagro-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.yoagro-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
/* Hero Section */
.yoagro-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  color: white;
  margin-top: 80px;
  overflow: hidden;
}

.yoagro-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-13.807-11.193-25-25-25s-25 11.193-25 25 11.193 25 25 25 25-11.193 25-25zm0 0c0 13.807 11.193 25 25 25s25-11.193 25-25-11.193-25-25-25-25 11.193-25 25z'/%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.yoagro-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.yoagro-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out 0.2s both;
}

.yoagro-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--yoagro-primary);
  border-radius: 50%;
}

.yoagro-hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 1s ease-out 0.4s both;
}

.yoagro-hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  animation: slideInUp 1s ease-out 0.6s both;
}

.yoagro-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: slideInUp 1s ease-out 0.8s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.yoagro-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.yoagro-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.yoagro-btn:hover::before {
  left: 100%;
}

.yoagro-btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.yoagro-btn-primary:hover {
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.yoagro-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.yoagro-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.yoagro-btn-outline {
  background: transparent;
  color: var(--yoagro-primary);
  border: 2px solid var(--yoagro-primary);
}

.yoagro-btn-outline:hover {
  background: var(--yoagro-primary);
  color: white;
  text-decoration: none;
}

.yoagro-btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}
/* About Section */
.yoagro-about {
  padding: 8rem 0;
  background: var(--yoagro-light);
}

.yoagro-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.yoagro-about-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--yoagro-gray);
  margin-bottom: 3rem;
}

.yoagro-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.yoagro-stat {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  border: 1px solid rgba(22, 163, 74, 0.1);
  transition: all 0.3s ease;
}

.yoagro-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.yoagro-stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--yoagro-primary);
  margin-bottom: 0.5rem;
}

.yoagro-stat-label {
  font-size: 0.875rem;
  color: var(--yoagro-gray);
  font-weight: 500;
}

.yoagro-about-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.yoagro-about-visual {
  position: relative;
}

.yoagro-about-image {
  width: 100%;
  height: 500px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-2xl);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

.yoagro-about-image::before {
  content: "🌾";
  font-size: 8rem;
  opacity: 0.3;
}

.yoagro-about-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--yoagro-dark);
}

.yoagro-award-icon {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yoagro-accent);
}

.yoagro-about-badge strong {
  font-size: 0.875rem;
  font-weight: 600;
}

.yoagro-about-badge small {
  font-size: 0.75rem;
  color: var(--yoagro-gray);
  display: block;
}

/* Common Section Styles */
.yoagro-section-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
}

.yoagro-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.yoagro-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(22, 163, 74, 0.1);
  color: var(--yoagro-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yoagro-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--yoagro-dark) 0%, var(--yoagro-gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yoagro-section-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--yoagro-gray);
  max-width: 800px;
  margin: 0 auto;
}
/* Services Section */
.yoagro-what-we-do {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--yoagro-white) 0%, var(--yoagro-light) 100%);
}

.yoagro-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.yoagro-service-card {
  background: var(--yoagro-white);
  border-radius: var(--border-radius-2xl);
  padding: 3rem 2rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  border: 1px solid rgba(22, 163, 74, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.yoagro-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.yoagro-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yoagro-primary);
}

.yoagro-service-card:hover::before {
  transform: scaleX(1);
}

.yoagro-service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.yoagro-service-card:hover .yoagro-service-icon {
  transform: scale(1.1) rotate(5deg);
}

.yoagro-service-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--yoagro-dark);
}

.yoagro-service-description {
  color: var(--yoagro-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Features Section */
.yoagro-features {
  padding: 8rem 0;
  background: white;
}

.yoagro-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.yoagro-feature-card {
  background: white;
  border-radius: var(--border-radius-2xl);
  padding: 2.5rem 2rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  border: 1px solid rgba(22, 163, 74, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.yoagro-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.yoagro-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  border-color: var(--yoagro-primary);
}

.yoagro-feature-card:hover::before {
  transform: scaleX(1);
}

.yoagro-feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 800;
  color: var(--yoagro-primary);
}

.yoagro-feature-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--yoagro-dark);
  margin-bottom: 1rem;
}

.yoagro-feature-card p {
  color: var(--yoagro-gray);
  line-height: 1.7;
}
/* Platform Section */
.yoagro-platform-section {
  padding: 8rem 0;
  background: var(--yoagro-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.yoagro-platform-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.yoagro-platform-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.yoagro-platform-badge {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.yoagro-platform-title {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yoagro-platform-description {
  color: rgba(255, 255, 255, 0.8);
}

.yoagro-platform-frame {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-2xl);
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  position: relative;
  z-index: 2;
}

.yoagro-platform-iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: var(--border-radius-xl);
}

.yoagro-platform-cta {
  margin-top: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Testimonials Section */
.yoagro-testimonials {
  padding: 8rem 0;
  background: var(--gradient-hero);
  color: white;
  position: relative;
  overflow: hidden;
}

.yoagro-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.yoagro-testimonials-badge {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.yoagro-testimonials-title {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yoagro-testimonials-description {
  color: rgba(255, 255, 255, 0.8);
}

.yoagro-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.yoagro-testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-2xl);
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.yoagro-testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.yoagro-testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.yoagro-testimonial-quote::before {
  content: """;
  font-size: 4rem;
  color: var(--yoagro-primary-light);
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: serif;
}

.yoagro-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.yoagro-testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.yoagro-testimonial-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.yoagro-testimonial-title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
/* CTA Section */
.yoagro-cta-section {
  padding: 6rem 0;
  background: var(--yoagro-light);
  text-align: center;
}

.yoagro-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.yoagro-cta-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--yoagro-dark);
  margin-bottom: 1.5rem;
}

.yoagro-cta-description {
  font-size: 1.25rem;
  color: var(--yoagro-gray);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.yoagro-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.yoagro-footer {
  background: var(--yoagro-dark);
  color: white;
}

.yoagro-footer-main {
  padding: 4rem 0 2rem;
}

.yoagro-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.yoagro-footer-brand {
  max-width: 350px;
}

.yoagro-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.yoagro-footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.yoagro-footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.yoagro-footer-social {
  display: flex;
  gap: 1rem;
}

.yoagro-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.yoagro-social-link:hover {
  background: var(--yoagro-primary);
  transform: translateY(-2px);
  color: white;
}

.yoagro-footer-links h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.yoagro-footer-links ul {
  list-style: none;
}

.yoagro-footer-links li {
  margin-bottom: 0.75rem;
}

.yoagro-footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.yoagro-footer-links a:hover {
  color: var(--yoagro-primary-light);
}

.yoagro-footer-contact h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.yoagro-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.yoagro-contact-icon {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yoagro-primary-light);
  min-width: 40px;
}

.yoagro-footer-btn {
  margin-top: 1rem;
}

.yoagro-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.yoagro-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.yoagro-footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.yoagro-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.yoagro-footer-bottom-links a:hover {
  color: var(--yoagro-primary-light);
}
/* Mobile Navigation */
@media (max-width: 768px) {
  .yoagro-nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
  }
  
  .yoagro-nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .yoagro-nav-toggle {
    display: flex;
  }
  
  .yoagro-nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .yoagro-hero {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .yoagro-hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .yoagro-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .yoagro-what-we-do,
  .yoagro-platform-section,
  .yoagro-about,
  .yoagro-features,
  .yoagro-testimonials {
    padding: 4rem 0;
  }
  
  .yoagro-services-grid,
  .yoagro-features-grid,
  .yoagro-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .yoagro-service-card,
  .yoagro-feature-card {
    padding: 2rem 1.5rem;
  }
  
  .yoagro-section-container {
    padding: 0 1rem;
  }
  
  .yoagro-about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .yoagro-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .yoagro-about-cta {
    justify-content: center;
  }
  
  .yoagro-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .yoagro-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .yoagro-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Premium Animations */
@media (prefers-reduced-motion: no-preference) {
  .yoagro-service-card,
  .yoagro-feature-card,
  .yoagro-testimonial-card,
  .yoagro-stat {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .yoagro-service-card:nth-child(1),
  .yoagro-feature-card:nth-child(1),
  .yoagro-stat:nth-child(1) { animation-delay: 0.1s; }
  .yoagro-service-card:nth-child(2),
  .yoagro-feature-card:nth-child(2),
  .yoagro-stat:nth-child(2) { animation-delay: 0.2s; }
  .yoagro-service-card:nth-child(3),
  .yoagro-feature-card:nth-child(3),
  .yoagro-stat:nth-child(3) { animation-delay: 0.3s; }
  .yoagro-service-card:nth-child(4),
  .yoagro-feature-card:nth-child(4),
  .yoagro-stat:nth-child(4) { animation-delay: 0.4s; }
  .yoagro-service-card:nth-child(5),
  .yoagro-feature-card:nth-child(5) { animation-delay: 0.5s; }
  .yoagro-service-card:nth-child(6),
  .yoagro-feature-card:nth-child(6) { animation-delay: 0.6s; }
  
  .yoagro-testimonial-card:nth-child(1) { animation-delay: 0.2s; }
  .yoagro-testimonial-card:nth-child(2) { animation-delay: 0.4s; }
  .yoagro-testimonial-card:nth-child(3) { animation-delay: 0.6s; }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── Hero Slider ── */
.yoagro-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 90px;
}

.yoagro-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.yoagro-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yoagro-slide.active {
  opacity: 1;
}

.yoagro-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(15,23,42,0.45) 100%);
}

.yoagro-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.yoagro-slide-content .yoagro-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.yoagro-slide-content .yoagro-hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yoagro-slide-content .yoagro-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.yoagro-slide-content .yoagro-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slider buttons */
.yoagro-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.yoagro-slider-btn:hover {
  background: var(--yoagro-primary);
  border-color: var(--yoagro-primary);
}

.yoagro-slider-prev { left: 1.5rem; }
.yoagro-slider-next { right: 1.5rem; }

/* Dots */
.yoagro-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.yoagro-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.yoagro-dot.active {
  background: var(--yoagro-primary);
  transform: scale(1.3);
}

/* Logo — image only, no text */
.yoagro-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.yoagro-logo-img {
  height: 70px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  border-radius: 0;
}

.yoagro-logo .yoagro-logo-text,
.yoagro-logo span.yoagro-logo-text {
  display: none !important;
}

@media (max-width: 768px) {
  .yoagro-hero-slider {
    height: 85vh;
  }
  .yoagro-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}
