/*
 * Agrology Theme - Page Styles
 * Products, Services, About, Contact pages
 */

/* ============================================
   PAGE HERO (Shared)
   ============================================ */
.agro-page-hero {
  position: relative;
  padding: 8rem 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.agro-page-hero .agro-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.agro-page-hero .agro-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 2, 19, 0.3) 0%,
    rgba(3, 2, 19, 0.5) 50%,
    rgba(3, 2, 19, 0.8) 100%
  );
  z-index: 1;
}

.agro-page-hero .agro-hero-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  z-index: 2;
}

.agro-page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.agro-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.agro-page-hero-content {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.agro-page-hero-label {
  font-family: var(--font-primary);
  color: #dab920;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.agro-page-hero-title {
  font-family: var(--font-primary);
  color: white;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .agro-page-hero-title {
    font-size: 56px;
  }
}

.agro-page-hero-divider {
  width: 13rem;
  height: 2px;
  background: linear-gradient(to right, #DDA933, #f0d046);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.agro-page-hero-desc {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  margin: 1.5rem auto 0;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.agro-filter-bar {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
  padding: 1.25rem 0;
  position: sticky;
  top: 80px;
  z-index: 40;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(218, 185, 32, 0.1);
}

.agro-filter-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .agro-filter-container {
    padding: 0 2.5rem;
  }
}

.agro-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.agro-filter-btn.active {
  background: linear-gradient(135deg, #DDA933, #DDA933);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(218, 185, 32, 0.3);
}

.agro-filter-btn:not(.active) {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.agro-filter-btn:not(.active):hover {
  border-color: rgba(218, 185, 32, 0.5);
  color: #ffffff;
  background: rgba(218, 185, 32, 0.06);
  transform: translateY(-1px);
}

.agro-products-page-grid {
  background: linear-gradient(180deg, #0d1117 0%, #151d28 40%, #1a2332 70%, #0d1117 100%);
  padding: 5rem 0;
  position: relative;
}

.agro-products-page-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(218, 185, 32, 0.03) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(154, 162, 45, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.agro-products-page-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .agro-products-page-container {
    padding: 0 2.5rem;
  }
}

.agro-products-page-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .agro-products-page-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .agro-products-page-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.agro-product-page-card {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(10px);
}

.agro-product-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(218, 185, 32, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.agro-product-page-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.agro-product-page-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.agro-product-page-card:hover .agro-product-page-card-image img {
  transform: scale(1.05);
}

.agro-product-page-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: white;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  font-family: Arial, sans-serif;
}

.agro-product-page-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.agro-product-page-card-tagline {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.agro-product-page-card-title {
  font-family: Arial, sans-serif;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 0.75rem;
}

.agro-product-page-card-desc {
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.625;
  margin-bottom: 1.25rem;
}

.agro-product-page-card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.agro-product-page-card-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.agro-product-page-card-spec-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.agro-product-page-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agro-product-page-card-price {
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.agro-product-page-card-btn {
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  transition: opacity 0.15s ease;
}

.agro-product-page-card-btn:hover {
  opacity: 0.9;
}

/* Why Buy Section */
.agro-why-section {
  background: linear-gradient(160deg, #1a1a2e 0%, #2d2d3a 30%, #1e2a1e 65%, #1a1a2e 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.agro-why-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(218, 185, 32, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.agro-why-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .agro-why-container {
    padding: 0 2.5rem;
  }
}

.agro-why-title {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.agro-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .agro-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.agro-why-item {
  text-align: center;
  padding: 0 1rem;
}

.agro-why-item-divider {
  width: 3.5rem;
  height: 2px;
  background: linear-gradient(135deg, #DDA933, #f0d040);
  margin: 0 auto 1.25rem;
}

.agro-why-item-title {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.agro-why-item-desc {
  font-family: Arial, sans-serif;
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.625;
}

/* ============================================
   SERVICES FILTER BAR
   ============================================ */
.agro-services-filter-bar {
  background: linear-gradient(135deg, #0a0f18 0%, #131b28 35%, #162030 65%, #0a0f18 100%);
  padding: 1.25rem 0;
  position: sticky;
  top: 70px;
  z-index: 40;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(218, 185, 32, 0.1);
}

.agro-services-filter-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .agro-services-filter-container {
    padding: 0 2.5rem;
    gap: 0.75rem;
  }
}

.agro-services-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.agro-services-filter-btn:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(218, 185, 32, 0.05);
}

.agro-services-filter-btn.active {
  background: linear-gradient(135deg, #DDA933, #f0d040);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(71, 61, 15, 0.3);
}

.agro-services-filter-btn:not(.active) {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #c0c0c0;
  backdrop-filter: blur(4px);
}

.agro-services-filter-btn:not(.active):hover {
  border-color: rgb(255, 255, 255);
  color: #DDA933;
  background: rgba(218, 185, 32, 0.08);
  box-shadow: 0 2px 12px rgba(218, 185, 32, 0.15);
  transform: translateY(-1px);
}

.agro-services-filter-btn:not(.active):active {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .agro-services-filter-bar {
    padding: 1rem 0;
  }

  .agro-services-filter-container {
    gap: 0.5rem;
  }

  .agro-services-filter-btn {
    padding: 0.45rem 1rem;
    font-size: 12.5px;
  }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.agro-service-block {
  padding: 4rem 0;
  background: linear-gradient(180deg, #111a21 0%, #162029 50%, #111a21 100%);
  position: relative;
}

.agro-service-block-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.agro-service-block-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* ===================== MOBILE FIX ===================== */

/* Force clean stacking on mobile - Image always on top */
@media (max-width: 1023px) {
  .agro-service-block-grid,
  .agro-service-block-grid-reversed {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  /* Reset any ordering on mobile */
  .agro-service-block-image,
  .agro-service-block-content {
    order: initial !important;
  }

  /* Ensure image appears first on mobile for all blocks */
  .agro-service-block-grid-reversed .agro-service-block-image {
    order: -1;
  }
}

/* ===================== DESKTOP ===================== */
@media (min-width: 1024px) {
  .agro-service-block-container {
    padding: 0 2.5rem;
    max-width: 1300px;
  }

  .agro-service-block-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .agro-service-block-grid-reversed .agro-service-block-image {
    order: 2;
  }

  .agro-service-block-grid-reversed .agro-service-block-content {
    order: 1;
  }
}

/* Image styling */
.agro-service-block-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.agro-service-block-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.agro-service-block-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.agro-service-block-image:hover .agro-service-block-img {
  transform: scale(1.05);
}

/* Content styling */
.agro-service-block-header {
  margin-bottom: 2rem;
}

.agro-service-block-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.agro-service-block-subtitle {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.45);
  font-size: 17px;
  font-style: italic;
}

.agro-service-block-body p {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.agro-service-block-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.agro-service-block-list li {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.agro-service-block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DDA933, #f0d040);
  box-shadow: 0 0 6px rgba(218, 185, 32, 0.3);
}
/* ============================================
   ABOUT PAGE
   ============================================ */
.agro-about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 1024px) {
  .agro-about-container {
    padding: 0 2.5rem;
  }
}
/* ============================================
   ABOUT PAGE BLOCKS
   ============================================ */

.agro-about-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0c1018 0%, #131b24 30%, #172230 55%, #0f1820 80%, #0c1018 100%);
  position: relative;
  overflow: hidden;
}

.agro-about-section::before,
.agro-about-section::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(218, 185, 32, 0.025) 0%, transparent 55%);
  pointer-events: none;
}

.agro-about-section::before {
  top: 15%;
  left: -10%;
}

.agro-about-section::after {
  bottom: 20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(154, 162, 45, 0.025) 0%, transparent 55%);
}

/* Main Block Container */
.agro-about-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 5rem;
  overflow: hidden;
}

.agro-about-block:last-child {
  margin-bottom: 0;
}

/* ===================== MOBILE FIX (Stronger) ===================== */
@media (max-width: 1023px) {
  .agro-about-block,
  .agro-about-block-reversed {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  /* Force clean stacking - Image ALWAYS on top on mobile */
  .agro-about-block-image {
    order: -1 !important;
  }

  .agro-about-block-content {
    order: initial !important;
  }
}

/* ===================== DESKTOP ===================== */
@media (min-width: 1024px) {
  .agro-about-block {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .agro-about-block-reversed .agro-about-block-image {
    order: 2;
  }
  
  .agro-about-block-reversed .agro-about-block-content {
    order: 1;
  }
}

/* Image Styling */
.agro-about-block-image {
  overflow: hidden;
  border-left: 4px solid #dab920;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.agro-about-block-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
}

.agro-about-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.agro-about-block-image:hover .agro-about-img {
  transform: scale(1.03);
}

/* Content */
.agro-about-block-label {
  display: inline-block;
  background: linear-gradient(to right, #DDA933, #f0d046);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  margin-bottom: 1.25rem;
}

.agro-about-block-content {
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.agro-about-block-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.agro-about-block-text {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Promise Section */
.agro-promise-section {
  background: linear-gradient(180deg, #171c20 0%, #181b1f 35%, #181b1f 65%, #171c20 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.agro-promise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(218, 185, 32, 0.2), transparent);
}

.agro-promise-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(218, 185, 32, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.agro-promise-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .agro-promise-container {
    padding: 0 2.5rem;
  }
}

.agro-promise-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #DDA933, #DDA933);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-primary);
  margin-bottom: 1rem;
}

.agro-promise-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.agro-promise-desc {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.agro-contact-section {
  background: linear-gradient(180deg, #0d1117 0%, #131c24 30%, #16222e 60%, #0d1117 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.agro-contact-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(218, 185, 32, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.agro-contact-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .agro-contact-grid-wrapper {
    grid-template-columns: 1fr 2fr;
    padding: 0 2.5rem;
  }
}

/* Contact Info Sidebar */
.agro-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.agro-contact-info-header h2 {
  font-family: Arial, sans-serif;
  color: #ffffff;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.agro-contact-info-divider {
  width: 3rem;
  height: 2px;
  background: linear-gradient(135deg, #DDA933, #f0d040);
  margin-bottom: 1.5rem;
}

.agro-contact-info-header p {
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.625;
}

.agro-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.agro-contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.agro-contact-icon {
  background: linear-gradient(135deg, #0f0f1a 0%, #141414 50%, #0f0f1a 100%);
  border: 1px solid rgba(218, 185, 32, 0.15);
  border-radius: 9999px;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
}

.agro-contact-icon:hover {
  box-shadow: 0 4px 15px rgba(218, 185, 32, 0.2);
  transform: translateY(-2px);
}

.agro-contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.agro-contact-label {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dab920;
  margin-bottom: 0.25rem;
}

.agro-contact-value {
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.625;
}

/* Office Hours */
.agro-contact-hours {
  background: linear-gradient(135deg, #0f0f1a 0%, #141414 50%, #0f0f1a 100%);
  padding: 2rem;
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(218, 185, 32, 0.1);
}

.agro-contact-hours h4 {
  font-family: var(--font-primary);
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.agro-contact-hours-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(135deg, #DDA933, #f0d040);
  display: block;
}

.agro-contact-hours-list {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agro-contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.agro-contact-hours-day {
  color: #b0b0b0;
}

.agro-contact-hours-time {
  color: white;
}

/* Contact Form */
.agro-contact-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .agro-contact-form-wrapper {
    padding: 3.5rem;
  }
}

.agro-contact-form-title {
  font-family: Arial, sans-serif;
  color: #ffffff;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.agro-contact-form-divider {
  width: 3rem;
  height: 2px;
  background: linear-gradient(135deg, #DDA933, #f0d040);
  margin-bottom: 2rem;
}

.agro-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.agro-contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .agro-contact-form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.agro-contact-form-group label {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}

.agro-contact-form-group input,
.agro-contact-form-group select,
.agro-contact-form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.875rem 1.25rem;
  font-family: var(--font-primary);
  font-size: 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
}

.agro-contact-form-group input::placeholder,
.agro-contact-form-group select::placeholder,
.agro-contact-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.agro-contact-form-group input:focus,
.agro-contact-form-group select:focus,
.agro-contact-form-group textarea:focus {
  outline: none;
  border-color: #dab920;
  box-shadow: 0 0 0 3px rgba(218, 185, 32, 0.1);
  background: rgba(255, 255, 255, 0.07);
}

.agro-contact-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23999999' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.agro-contact-form-group textarea {
  resize: none;
}

.agro-contact-submit-btn {
  align-self: flex-start;
  background: linear-gradient(135deg, #DDA933, #f0d040);
  color: white;
  padding: 0.9rem 3rem;
  border-radius: 9999px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(218, 185, 32, 0.25);
  position: relative;
  overflow: hidden;
}

.agro-contact-submit-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.6s ease;
}

.agro-contact-submit-btn:hover::before {
  left: 100%;
}

.agro-contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(218, 185, 32, 0.4);
}

/* Form Success */
.agro-contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1.5rem;
  padding: 4rem 0;
  text-align: center;
}

.agro-contact-success-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to right, #dab920, #9aa22d);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agro-contact-success h3 {
  font-family: Arial, sans-serif;
  color: #ffffff;
  font-size: 28px;
  text-transform: uppercase;
}

.agro-contact-success p {
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 400px;
}

.agro-contact-success-btn {
  display: inline-block;
  margin-top: 1rem;
  background: linear-gradient(to right, #dab920, #9aa22d);
  color: white;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  transition: opacity 0.15s ease;
  text-decoration: none;
}

.agro-contact-success-btn:hover {
  opacity: 0.9;
}

/* Map Section */
.agro-contact-map {
  height: 320px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.agro-contact-map::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: #1a1a1a;
  pointer-events: none;
}

.agro-contact-map::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(218, 185, 32, 0.2), transparent);
}

.agro-contact-map-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.agro-contact-map-label {
  font-family: var(--font-primary);
  color: #dab920;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.agro-contact-map-address {
  font-family: var(--font-primary);
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.agro-contact-map-coords {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

/* ============================================
   ARCHIVE PAGES (Shared)
   ============================================ */
.agro-archive-section {
  background: linear-gradient(180deg, #0d1117 0%, #141e28 35%, #182430 65%, #0d1117 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.agro-archive-section::before {
  content: '';
  position: absolute;
  top: 40%;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(154, 162, 45, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.agro-archive-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .agro-archive-container {
    padding: 0 2.5rem;
  }
}

.agro-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .agro-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .agro-archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.agro-archive-card {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(10px);
}

.agro-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(218, 185, 32, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.agro-archive-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.agro-archive-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.agro-archive-card:hover .agro-archive-img {
  transform: scale(1.05);
}

.agro-archive-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #dab920, #9aa22d);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-primary);
  border-radius: var(--radius-full);
}

.agro-archive-card-content {
  padding: 1.5rem;
}

.agro-archive-card-title {
  font-family: Arial, sans-serif;
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 0.75rem;
}

.agro-archive-card-excerpt {
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.agro-archive-card-price {
  font-family: Arial, sans-serif;
  color: #dab920;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.agro-archive-card-link {
  color: #dab920;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
}

.agro-archive-card-link:hover {
  text-decoration: underline;
}


/* Page Hero Backgrounds */
.agro-page-hero-products {
  background: linear-gradient(135deg, #0a0f18 0%, #121d2b 30%, #1a2510 55%, #0f1520 80%, #0a0f18 100%);
}

.agro-page-hero-services,
.agro-page-hero-about {
  height: 100vh;
  min-height: 600px;
  padding: 0;
  background: #0f0f1a;
}

.agro-page-hero-services .agro-hero-bg,
.agro-page-hero-about .agro-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.agro-page-hero-services .agro-hero-overlay,
.agro-page-hero-about .agro-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 2, 19, 0.25) 0%,
    rgba(3, 2, 19, 0.45) 50%,
    rgba(3, 2, 19, 0.75) 100%
  );
  z-index: 1;
}

.agro-page-hero-services .agro-hero-container,
.agro-page-hero-about .agro-hero-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .agro-page-hero-services,
  .agro-page-hero-about {
    height: 75vh;
    min-height: 400px;
  }
}

.agro-page-hero-contact {
  background: linear-gradient(160deg, #080d14 0%, #0d1a28 30%, #152030 55%, #0a1218 80%, #080d14 100%);
}

/* About Page Blocks */
.agro-about-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0c1018 0%, #131b24 30%, #172230 55%, #0f1820 80%, #0c1018 100%);
  position: relative;
  overflow: hidden;
}

.agro-about-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(218, 185, 32, 0.025) 0%, transparent 55%);
  pointer-events: none;
}

.agro-about-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(154, 162, 45, 0.025) 0%, transparent 55%);
  pointer-events: none;
}

.agro-about-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  overflow: hidden;
}

.agro-about-block:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .agro-about-block {
    grid-template-columns: repeat(2, 1fr);
  }
}

.agro-about-block-reversed .agro-about-block-image {
  order: 1;
}

@media (min-width: 1024px) {
  .agro-about-block-reversed .agro-about-block-image {
    order: 2;
  }
  
  .agro-about-block-reversed .agro-about-block-content {
    order: 1;
  }
}

.agro-about-block-image {
  overflow: hidden;
  border-left: 4px solid #dab920;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  min-width: 0;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.agro-about-block-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
}

.agro-about-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.agro-about-block-image:hover .agro-about-img {
  transform: scale(1.03);
}

.agro-about-block-label {
  display: inline-block;
  background: linear-gradient(to right, #DDA933, #f0d046);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  margin-bottom: 1.25rem;
}

.agro-about-block-content {
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.agro-about-block-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.agro-about-block-text {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.agro-about-block-body {
  margin-top: 0;
}

/* About Bullet Items */
.agro-about-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.agro-about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.agro-about-bullet-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  margin-top: 7px;
  box-shadow: 0 0 8px currentColor;
}

.agro-about-bullet-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}

.agro-about-bullet-text {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.agro-about-after-bullets {
  margin-top: 1.25rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

/* Promise Grid */
.agro-promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .agro-promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .agro-promise-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.agro-promise-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(10px);
}

.agro-promise-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(218, 185, 32, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.agro-promise-icon {
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right, #DDA933, #f0d046);
  border: 1px solid rgba(218, 185, 32, 0.15);
  transition: all 0.4s var(--ease-out);
}

.agro-promise-item:hover .agro-promise-icon {
  background: linear-gradient(135deg, rgba(218, 185, 32, 0.15), rgba(154, 162, 45, 0.15));
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(218, 185, 32, 0.15);
}

.agro-promise-item-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.agro-promise-item-text {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
}


/* Pagination */
.agro-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.agro-pagination a,
.agro-pagination span {
  padding: 0.5rem 1rem;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.agro-pagination a {
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.agro-pagination a:hover {
  border-color: #dab920;
  color: #dab920;
}

.agro-pagination .current {
  background: linear-gradient(135deg, #DDA933, #f0d040);
  color: white;
  border: none;
}

/* ============================================
   CTA SECTION (About page & shared)
   ============================================ */
.agro-cta {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a2a10 50%, #0f0f1a 100%);
}

.agro-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(218, 185, 32, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.agro-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(218, 185, 32, 0.2), transparent);
}

.agro-cta-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .agro-cta-container {
    padding: 0 2.5rem;
  }
}

.agro-cta-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .agro-cta-title {
    font-size: 44px;
  }
}

.agro-cta-text {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* ============================================
   CTA BANNER (Shared)
   ============================================ */
.agro-cta-banner {
  background: #1a1a1a;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.agro-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.agro-cta-banner-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .agro-cta-banner-container {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .agro-cta-banner-container {
    padding: 0 2.5rem;
  }
}

.agro-cta-banner-title {
  font-family: var(--font-primary);
  color: white;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.agro-cta-banner-desc {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.6;
}

.agro-cta-banner-btn {
  flex-shrink: 0;
  display: inline-block;
  background: transparent;
  color: white;
  padding: 0.85rem 2.5rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  text-decoration: none;
  box-shadow: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.agro-cta-banner-btn:hover {
  background-color: white;
  color: #1c1c1c;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.agro-cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.agro-cta-banner-btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
}

.agro-cta-banner-btn-outline:hover {
  background-color: white;
  color: #1c1c1c;
  border-color: white;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* ============================================
   SERVICES PAGE - NEW LAYOUT
   ============================================ */
.agro-services-intro {
  background: linear-gradient(180deg, #0d1117 0%, #141d26 50%, #111a21 100%);
  padding: 5rem 0 3rem;
}

.agro-services-intro-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.agro-services-intro-container p {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.agro-services-intro-container p:last-child {
  margin-bottom: 0;
}

/* Service Blocks */
.agro-service-block {
  background: linear-gradient(180deg, #111a21 0%, #162029 50%, #111a21 100%);
  padding: 4rem 0;
  position: relative;
}

.agro-service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 700px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(218, 185, 32, 0.12), transparent);
}

.agro-service-block-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .agro-service-block-container {
    padding: 0 2.5rem;
  }
}

.agro-service-block-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .agro-service-block-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 1300px;
  }
}

.agro-service-block-grid-reversed .agro-service-block-image {
  order: 1;
}

@media (min-width: 1024px) {
  .agro-service-block-grid-reversed .agro-service-block-image {
    order: 2;
  }

  .agro-service-block-grid-reversed .agro-service-block-content {
    order: 1;
  }
}

.agro-service-block-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.agro-service-block-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.agro-service-block-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.agro-service-block-image:hover .agro-service-block-img {
  transform: scale(1.05);
}

.agro-service-block-header {
  margin-bottom: 2rem;
}

.agro-service-block-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #DDA933, #f0d040);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-primary);
  margin-bottom: 1rem;
}

.agro-service-block-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.agro-service-block-subtitle {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.45);
  font-size: 17px;
  font-style: italic;
}

.agro-service-block-body p {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.agro-service-block-body p strong {
  color: rgba(255, 255, 255, 0.85);
}

.agro-service-block-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.agro-service-block-list li {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.agro-service-block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DDA933, #f0d040);
  box-shadow: 0 0 6px rgba(218, 185, 32, 0.3);
}

/* Sub-items within Crop Care */
.agro-service-sub-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .agro-service-sub-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.agro-service-sub-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s var(--ease-out);
  backdrop-filter: blur(10px);
}

.agro-service-sub-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(218, 185, 32, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.agro-service-sub-item h3 {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.agro-service-sub-item p {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.agro-service-sub-item p:last-child {
  margin-bottom: 0;
}

/* Why It Works */
.agro-services-why {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a2a10 50%, #0f0f1a 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.agro-services-why::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(218, 185, 32, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.agro-services-why-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.agro-services-why-title {
  font-family: var(--font-primary);
  color: white;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.agro-services-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.agro-services-why-list li {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.agro-services-why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DDA933, #f0d040);
  box-shadow: 0 0 8px rgba(218, 185, 32, 0.4);
}

.agro-services-why-note {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
}

/* Tagline */
.agro-services-tagline {
  background: linear-gradient(180deg, #0f171e 0%, #131c24 50%, #0d1117 100%);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.agro-services-tagline p {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ============================================ */
.agro-page-hero-legal {
  background: linear-gradient(160deg, #0a0f18 0%, #131b2e 35%, #1a1a2e 60%, #0a0f18 100%);
  min-height: 380px;
}

.agro-legal-section {
  background: linear-gradient(180deg, #0d1117 0%, #131b24 35%, #16222e 65%, #0d1117 100%);
  padding: 5rem 0 6rem;
  position: relative;
}

.agro-legal-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(218, 185, 32, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.agro-legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .agro-legal-container {
    padding: 0 2.5rem;
  }
}

.agro-legal-updated {
  font-family: var(--font-primary);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.agro-legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.agro-legal-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.agro-legal-heading {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid #dab920;
}

.agro-legal-block p {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.agro-legal-block p:last-child {
  margin-bottom: 0;
}

.agro-legal-block p strong {
  color: rgba(255, 255, 255, 0.85);
}

.agro-legal-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.agro-legal-list li {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
  padding-left: 1.75rem;
  position: relative;
}

.agro-legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DDA933, #f0d040);
  box-shadow: 0 0 6px rgba(218, 185, 32, 0.25);
}

.agro-legal-list li strong {
  color: rgba(255, 255, 255, 0.85);
}

.agro-legal-contact {
  margin-top: 1.25rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #1a1a2e, #2d2d3a);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(218, 185, 32, 0.1);
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
}

.agro-legal-contact strong {
  color: white;
  font-size: 16px;
}

.agro-legal-contact a {
  color: #dab920;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

.agro-legal-contact a:hover {
  color: #f0d040;
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  /* Page Hero */
  .agro-page-hero {
    padding: 6rem 0 4rem;
    min-height: 400px;
  }

  /* Services Blocks */
  .agro-service-block-container {
    max-width: 100%;
  }

  /* About Blocks */
  .agro-about-section {
    padding: 4rem 0;
  }

  .agro-about-block {
    margin-bottom: 3.5rem;
  }

  /* Contact */
  .agro-contact-section {
    padding: 4rem 0;
  }

  /* CTA Banner */
  .agro-cta-banner {
    padding: 3.5rem 0;
  }

  /* Services List */
  .agro-services-list-section {
    padding: 4rem 0;
  }

  .agro-services-list-container {
    gap: 4rem;
  }

  /* Services Intro */
  .agro-services-intro {
    padding: 3.5rem 0 2rem;
  }

  /* Service Blocks */
  .agro-service-block {
    padding: 3rem 0;
  }

  /* Promise Section */
  .agro-promise-section {
    padding: 4rem 0;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 767px)
   ============================================ */
@media (max-width: 767px) {
  /* Page Hero (shared) */
  .agro-page-hero {
    padding: 5rem 0 3rem;
    min-height: 320px;
  }

  .agro-page-hero-title {
    font-size: 32px;
  }

  .agro-page-hero-desc {
    font-size: 15px;
    max-width: 100%;
  }

  .agro-page-hero-label {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .agro-page-hero-content {
    padding: 0 1rem;
  }

  /* Products Page */
  .agro-products-page-grid {
    padding: 3rem 0;
  }

  .agro-products-page-container {
    padding: 0 1rem;
  }

  .agro-product-page-card-image {
    height: 200px;
  }

  .agro-product-page-card-content {
    padding: 1.25rem;
  }

  .agro-product-page-card-title {
    font-size: 20px;
  }

  .agro-product-page-card-desc {
    font-size: 13px;
  }

  .agro-product-page-card-specs {
    grid-template-columns: 1fr;
  }

  /* Filter Bars */
  .agro-filter-bar,
  .agro-services-filter-bar {
    top: 70px;
  }

  .agro-filter-container,
  .agro-services-filter-container {
    padding: 0 1rem;
  }

  /* Why Buy Section */
  .agro-why-section {
    padding: 3rem 0;
  }

  .agro-why-title {
    font-size: 26px;
    margin-bottom: 2rem;
  }

  .agro-why-item-title {
    font-size: 18px;
  }

  .agro-why-item-desc {
    font-size: 14px;
  }

  /* Services Page */
  .agro-services-list-section {
    padding: 3rem 0;
  }

  .agro-services-list-container {
    gap: 3rem;
    padding: 0 1rem;
  }

  .agro-service-item {
    gap: 2rem;
  }

  .agro-service-img {
    height: 260px;
  }

  .agro-service-item-title {
    font-size: 24px;
  }

  .agro-service-item-desc p {
    font-size: 14px;
  }

  .agro-service-item-features {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

  .agro-service-item-feature {
    font-size: 13px;
  }

  .agro-service-item-btn {
    padding: 0.75rem 2rem;
    font-size: 13px;
  }

  /* Service Blocks (new layout) */
  .agro-services-intro {
    padding: 3rem 0 1.5rem;
  }

  .agro-services-intro-container {
    padding: 0 1rem;
  }

  .agro-services-intro-container p {
    font-size: 15px;
  }

  .agro-service-block {
    padding: 2.5rem 0;
  }

  .agro-service-block-container {
    padding: 0 1rem;
  }

  .agro-service-block-grid {
    gap: 2rem;
  }

  .agro-service-block-img {
    height: 260px;
  }

  .agro-service-block-title {
    font-size: 26px;
  }

  .agro-service-block-subtitle {
    font-size: 15px;
  }

  .agro-service-block-body p {
    font-size: 14px;
  }

  .agro-service-block-list li {
    font-size: 14px;
  }

  /* About Page */
  .agro-about-section {
    padding: 3rem 0;
  }

  .agro-about-container {
    padding: 0 1rem;
  }

  .agro-about-block {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .agro-about-img {
    height: 260px;
  }

  .agro-about-block-title {
    font-size: 22px;
  }

  .agro-about-block-text {
    font-size: 14px;
  }

  .agro-about-bullet-title {
    font-size: 14px;
  }

  .agro-about-bullet-text {
    font-size: 13px;
  }

  /* Promise Section */
  .agro-promise-section {
    padding: 3.5rem 0;
  }

  .agro-promise-container {
    padding: 0 1rem;
  }

  .agro-promise-title {
    font-size: 26px;
  }

  .agro-promise-desc {
    font-size: 15px;
  }

  /* Contact Page */
  .agro-contact-section {
    padding: 3rem 0;
  }

  .agro-contact-grid-wrapper {
    padding: 0 1rem;
    gap: 2rem;
  }

  .agro-contact-info-header h2 {
    font-size: 24px;
  }

  .agro-contact-hours {
    padding: 1.5rem;
  }

  .agro-contact-form-wrapper {
    padding: 1.75rem;
  }

  .agro-contact-form-title {
    font-size: 24px;
  }

  .agro-contact-submit-btn {
    width: 100%;
    text-align: center;
  }

  /* Contact Map */
  .agro-contact-map {
    height: 250px;
  }

  .agro-contact-map-address {
    font-size: 20px;
  }

  /* CTA Banner */
  .agro-cta-banner {
    padding: 3rem 0;
  }

  .agro-cta-banner-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 0 1.25rem;
  }

  .agro-cta-banner-title {
    font-size: 24px;
  }

  .agro-cta-banner-desc {
    font-size: 14px;
  }

  .agro-cta-banner-buttons {
    justify-content: center;
  }

  .agro-cta-banner-btn {
    padding: 0.75rem 2rem;
    font-size: 13px;
  }

  /* CTA Section (shared) */
  .agro-cta {
    padding: 4rem 0;
  }

  .agro-cta-container {
    padding: 0 1.25rem;
  }

  .agro-cta-title {
    font-size: 28px;
  }

  .agro-cta-text {
    font-size: 15px;
    margin-bottom: 2rem;
  }

  /* Archive Pages */
  .agro-archive-section {
    padding: 3rem 0;
  }

  .agro-archive-container {
    padding: 0 1rem;
  }

  .agro-archive-card-image {
    height: 180px;
  }

  .agro-archive-card-title {
    font-size: 19px;
  }

  .agro-archive-card-excerpt {
    font-size: 13px;
  }

  /* Legal Pages */
  .agro-legal-section {
    padding: 3rem 0 4rem;
  }

  .agro-legal-container {
    padding: 0 1rem;
  }

  .agro-legal-heading {
    font-size: 19px;
  }

  .agro-legal-block p,
  .agro-legal-list li {
    font-size: 14px;
  }

  .agro-legal-contact {
    padding: 1.25rem 1.5rem;
    font-size: 14px;
  }

  .agro-legal-updated {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .agro-page-hero {
    padding: 4rem 0 2.5rem;
    min-height: 280px;
  }

  .agro-page-hero-title {
    font-size: 26px;
  }

  .agro-page-hero-desc {
    font-size: 14px;
  }

  .agro-service-block-title {
    font-size: 22px;
  }

  .agro-service-block-img,
  .agro-service-img {
    height: 220px;
  }

  .agro-about-img {
    height: 220px;
  }

  .agro-about-block-title {
    font-size: 20px;
  }

  .agro-promise-title {
    font-size: 22px;
  }

  .agro-contact-form-wrapper {
    padding: 1.25rem;
  }

  .agro-contact-form-title {
    font-size: 20px;
  }

  .agro-cta-banner-title {
    font-size: 20px;
  }

  .agro-why-title {
    font-size: 22px;
  }

  .agro-product-page-card-image {
    height: 170px;
  }

  .agro-product-page-card-title {
    font-size: 18px;
  }

  .agro-legal-heading {
    font-size: 17px;
    padding-left: 0.75rem;
  }

  .agro-legal-block p,
  .agro-legal-list li {
    font-size: 13px;
  }
}
