/* @import fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --agriva-yellow: #F0C420;
  --agriva-green: #1B261D;
  --agriva-text-muted: #647065;
  --agriva-bg-cream: #F8F7F2;
  --agriva-white: #FFFFFF;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.seo-page-content {
  font-family: var(--font-body);
  color: var(--agriva-text-muted);
  background-color: var(--agriva-white);
  line-height: 1.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.bg-cream {
  background-color: var(--agriva-bg-cream);
}

/* Hero */
.agriva-hero {
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
}

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

.hero-tag {
  background: var(--agriva-yellow);
  color: var(--agriva-green);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-block;
}

.agriva-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
}

.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--agriva-white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Intro Overlap */
.intro-overlap {
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

.floating-card {
  background: var(--agriva-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card-accent-bar {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 6px;
  height: 40px;
  background: var(--agriva-yellow);
  border-radius: 0 4px 4px 0;
}

.lead-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--agriva-green);
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Headings */
 .seo-page-content h2{
  font-family: var(--font-heading);
  color: var(--agriva-green);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.sub-title {
  display: block;
  color: var(--agriva-yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 14px;
}

.text-center {
  text-align: center;
}

/* Cards Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.agriva-card {
  background: var(--agriva-bg-cream);
  padding: 40px;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
  border-bottom: 4px solid transparent;
}

.agriva-card:hover {
  transform: translateY(-10px);
  background: var(--agriva-white);
  box-shadow: var(--shadow);
  border-color: var(--agriva-yellow);
}

.card-tags {
  margin-bottom: 20px;
}

.pill {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 5px;
  background: white;
}

.agriva-card h3 {
  color: var(--agriva-green);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 15px;
}

/* Table */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.agriva-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.agriva-table th {
  background: var(--agriva-green);
  color: white;
  padding: 20px;
  text-align: left;
  font-family: var(--font-heading);
}

.agriva-table td {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

/* Horizontal Cards */
.horizontal-card-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.horizontal-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-image-placeholder {
  background-size: cover;
  background-position: center;
  min-height: 250px;
}

.card-body {
  padding: 40px;
  position: relative;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--agriva-green);
  font-family: var(--font-heading);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Overlay Section */
.bg-image-overlay {
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0;
  position: relative;
}

.glass-content-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 60px;
  border-radius: var(--radius-lg);
  max-width: 600px;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .horizontal-card {
    grid-template-columns: 1fr;
  }
  .section-padding {
    padding: 60px 0;
  }
  .agriva-hero h1 {
    font-size: 2.5rem;
  }
  .floating-card {
    padding: 30px;
  }
}