/* 6 Seeds Design System - CSS Reset & Base Styles */

/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .seeds-btn-primary,
  .seeds-btn-secondary,
  .seeds-card-shadow,
  .seeds-image-container img {
    transition: none !important;
    transform: none !important;
  }
}

/* Announcement Banner */
.seeds-announcement-banner {
  background: #363166;         /* fallback */
  background: var(--seeds-dark); /* Use the same blue as footer */
  color: white;
  position: relative;
  z-index: 1000;
}

.seeds-announcement-cta:hover {
  background-color: #e67e22 !important; /* Darker orange on hover */
}

/* Mobile responsive for announcement banner */
@media (max-width: 768px) {
  .seeds-announcement-banner .seeds-container {
    flex-direction: column !important;
    gap: 0.75rem !important;
    text-align: center;
  }
  
  .seeds-announcement-banner span:last-of-type {
    font-size: 0.85rem !important;
  }
}

/* Utility Classes */
.seeds-shadow {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hover State Utilities */
.seeds-hover-dark-blue:hover {
  background: #363166;         /* fallback */
  background: var(--seeds-dark);
  color: white;
}

.seeds-hover-orange:hover {
  background: #ffab40;         /* fallback */
  background: var(--seeds-orange);
  color: white;
}

.seeds-hover-lift:hover {
  transform: translateY(-2px);
}

/* CSS Custom Properties */
:root {
  --seeds-dark: #363166;         /* Primary text, headers (approved dark blue) */
  --seeds-light: #717b9f;        /* Secondary text, body copy (approved light blue) */
  --seeds-orange: #ffab40;       /* Accent, CTAs, hover states (approved orange) */
  --seeds-beige: #eee6dc;        /* Background, sections (approved beige) */
  --seeds-footer-text: #eee6dc;  /* Footer text for readability on dark background */
}

/* Navigation System */
.seeds-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.seeds-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.seeds-nav-item {
  position: relative;
}

.seeds-nav-link {
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;             /* 16px */
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.seeds-nav-link:hover {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

.seeds-nav-link.seeds-nav-active {
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  font-weight: 700;
}

.seeds-nav-link.seeds-nav-active::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ffab40;   /* fallback */
  background-color: var(--seeds-orange);
}

/* Dropdown Menu */
.seeds-dropdown {
  position: relative;
}

.seeds-dropdown-toggle::after {
  content: '▼';
  font-size: 0.75rem;
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  transition: transform 0.3s ease, color 0.3s ease;
}

.seeds-dropdown-toggle:hover::after {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

.seeds-dropdown.seeds-dropdown-open .seeds-dropdown-toggle::after {
  transform: rotate(180deg);
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

.seeds-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.seeds-dropdown:hover .seeds-dropdown-menu,
.seeds-dropdown.seeds-dropdown-open .seeds-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.seeds-dropdown:hover .seeds-dropdown-toggle::after {
  transform: rotate(180deg);
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

.seeds-dropdown-item {
  padding: 0.75rem 1.25rem;
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  text-decoration: none;
  display: block;
  font-weight: 500;
  font-size: 0.875rem;         /* 14px */
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.seeds-dropdown-item:hover {
  background-color: #eee6dc;   /* fallback */
  background-color: var(--seeds-beige);
  border-left-color: #ffab40;  /* fallback */
  border-left-color: var(--seeds-orange);
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
}

.seeds-dropdown-item.seeds-nav-active {
  background-color: #eee6dc;   /* fallback */
  background-color: var(--seeds-beige);
  border-left-color: #ffab40;  /* fallback */
  border-left-color: var(--seeds-orange);
  font-weight: 600;
}

/* Mobile Navigation - Hamburger Menu */
.seeds-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  gap: 0.25rem;
}

.seeds-hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #363166;   /* fallback */
  background-color: var(--seeds-dark);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.seeds-hamburger.seeds-hamburger-open .seeds-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.seeds-hamburger.seeds-hamburger-open .seeds-hamburger-line:nth-child(2) {
  opacity: 0;
}

.seeds-hamburger.seeds-hamburger-open .seeds-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.seeds-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 999;
  margin-top: 1rem;
  padding: 1rem 0;
}

.seeds-mobile-menu.seeds-mobile-menu-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.seeds-mobile-nav-item {
  padding: 0.75rem 1.5rem;
}

.seeds-mobile-nav-link {
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;             /* 16px */
  display: block;
  transition: color 0.3s ease;
}

.seeds-mobile-nav-link:hover,
.seeds-mobile-nav-link.seeds-nav-active {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

.seeds-mobile-dropdown-title {
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  font-weight: 700;
  font-size: 1rem;             /* 16px */
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.seeds-mobile-dropdown-items {
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.seeds-mobile-dropdown-item {
  padding: 0.5rem 0;
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  text-decoration: none;
  font-size: 0.875rem;         /* 14px */
  display: block;
  transition: color 0.3s ease;
}

.seeds-mobile-dropdown-item:hover,
.seeds-mobile-dropdown-item.seeds-nav-active {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

/* Navigation Responsive Design */
@media (max-width: 768px) {
  .seeds-hamburger {
    display: flex;
  }
  
  .seeds-nav-list {
    display: none;
  }
}

/* Services Page Styles */
.seeds-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

.seeds-service-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(113, 123, 159, 0.1);
}

.seeds-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.seeds-service-content {
  padding: 1.5rem;
}

.seeds-service-cta {
  margin-top: 1rem;
}

.seeds-cta-section {
  background: #eee6dc;           /* fallback */
  background: var(--seeds-beige);
  padding: 3rem 0;               /* Consistent with section spacing */
  margin-top: 2rem;              /* Reduced from 3rem to match system */
}

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

/* Contact Page Styling */
.seeds-contact-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.seeds-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.seeds-input {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  transition: border-color 0.3s ease;
}

.seeds-input:focus {
  outline: none;
  border-color: var(--seeds-orange) !important;
  box-shadow: 0 0 0 3px rgba(255, 171, 64, 0.1);
}

.seeds-map-container {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Video Embeds */
.seeds-videos-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.seeds-video-embed {
  width: 100%;
}

@media (max-width: 768px) {
  .seeds-videos-container {
    gap: 1.5rem;
  }
}

/* Services List Styling */
.seeds-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #eee6dc;           /* fallback */
  background: var(--seeds-beige);
  border-radius: 0.75rem;
}

.seeds-service-item {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 0;
}

/* Services Grid Responsive Design */
@media (max-width: 768px) {
  .seeds-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .seeds-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .seeds-services-list {
    grid-template-columns: 1fr;
  }
}

/* Typography System */
.seeds-h1-hero {
  font-size: 3.5rem;           /* 56px */
  font-weight: 800;
  line-height: 1.3;            /* Increased from 1.1 for better readability */
  margin-bottom: 1.5rem;
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
}

.seeds-h1 {
  font-size: 3rem;             /* 48px */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
}

.seeds-h2 {
  font-size: 2.25rem;          /* 36px */
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
}

.seeds-h3 {
  font-size: 1.5rem;           /* 24px */
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
}

.seeds-text-intro-panel {
  font-size: 1.375rem;         /* 22px - for intro/summary sections */
  color: #4d4d4d;              /* softer dark grey for readability */
  line-height: 1.75;
  white-space: pre-line;       /* Preserves line breaks from \n */
}

.seeds-text-primary {
  font-size: 1.125rem;         /* 18px - main body text */
  color: #4d4d4d;              /* softer dark grey for readability */
  line-height: 1.5;
}

.seeds-text-secondary {
  font-size: 1rem;             /* 16px */
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  line-height: 1.5;
}

.seeds-text-small {
  font-size: 0.875rem;         /* 14px */
  color: #363166;              /* fallback - dark blue for readability */
  color: var(--seeds-dark);
  line-height: 1.4;
}

/* Button System */
.seeds-btn-primary {
  background-color: #ffab40;   /* fallback */
  background-color: var(--seeds-orange);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 171, 64, 0.3);
  display: inline-block;
  cursor: pointer;
  border: none;
}

.seeds-btn-primary:focus {
  outline: 2px solid #ffab40;  /* fallback */
  outline: 2px solid var(--seeds-orange);
  outline-offset: 2px;
}

.seeds-btn-secondary {
  background: white;
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
  border: 2px solid #ffab40;   /* fallback */
  border: 2px solid var(--seeds-orange);
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.seeds-btn-secondary:focus {
  outline: 2px solid #ffab40;  /* fallback */
  outline: 2px solid var(--seeds-orange);
  outline-offset: 2px;
}

/* Layout & Component System */
.seeds-header {
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 50;
  height: 5rem;                /* 80px total height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

/* Fix mobile menu positioning by ensuring header container is positioned */
.seeds-header .seeds-container {
  position: relative;
}

.seeds-logo {
  height: 3.5rem;              /* 56px height */
}

.seeds-footer {
  background: #363166;         /* fallback */
  background: var(--seeds-dark);
  color: white;
  padding: 3rem 0 2rem 0;
}

.seeds-footer-text {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  margin: 0;
}

/* Section Shadows */
.seeds-section-shadow {
  box-shadow: 0 4px 6px rgba(45, 52, 54, 0.1);
}

.seeds-card-shadow {
  box-shadow: 0 4px 6px rgba(45, 52, 54, 0.07), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.seeds-card-shadow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 52, 54, 0.15);
}

/* Page Sections - Systematic Spacing */
.seeds-hero {
  background-color: #eee6dc;   /* fallback - using approved beige */
  background-color: var(--seeds-beige);
  padding: 6rem 0 2rem 0;     /* Generous top space, reduced bottom space */
}

.seeds-hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .seeds-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.seeds-client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.seeds-client-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(45, 52, 54, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.seeds-client-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(45, 52, 54, 0.15);
}

/* Mobile-specific client grid layout */
@media (max-width: 768px) {
  .seeds-client-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .seeds-client-card {
    padding: 1rem;
    min-height: 80px;
  }
}

.seeds-newsletter-section {
  background-color: #eee6dc;   /* fallback - beige background */
  background-color: var(--seeds-beige);
  padding: 2rem 0 1.5rem 0;    /* Even less bottom padding */
}

.seeds-newsletter-embed {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.seeds-fix-fuel-section {
  background: #eee6dc;         /* fallback */
  background: var(--seeds-beige);
  padding: 4rem 0;
}

.seeds-fix-fuel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.seeds-fix-fuel-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(45, 52, 54, 0.1);
}

@media (max-width: 768px) {
  .seeds-fix-fuel-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Image Guidelines */
.seeds-image-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 52, 54, 0.15);
}

.seeds-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.seeds-image-container:hover img {
  transform: scale(1.02);
}

/* Image Tooltip */
.seeds-image-tooltip {
  position: relative;
}

.seeds-tooltip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #363166;     /* dark blue background */
  color: #eee6dc;                /* beige text color */
  padding: 1rem;
  font-size: 0.875rem;           /* 14px */
  line-height: 1.4;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  pointer-events: none;
}

.seeds-image-tooltip:hover .seeds-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* CSS Utility Classes */
.seeds-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.seeds-section {
  padding: 3rem 0;           /* Reduced from 4rem for better spacing */
}

.seeds-section-sm {
  padding: 2rem 0;
}

/* Systematic spacing for adjacent sections */
.seeds-hero + .seeds-section {
  padding-top: 1rem;         /* First section after hero gets less top padding */
}

.seeds-section + .seeds-section {
  padding-top: 2rem;         /* Subsequent sections get moderate top padding */
}

.seeds-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

@media (max-width: 768px) {
  .seeds-grid-2,
  .seeds-grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Spacing Utilities */
.seeds-mb-sm { margin-bottom: 0.5rem; }
.seeds-mb-md { margin-bottom: 1rem; }
.seeds-mb-lg { margin-bottom: 1.5rem; }
.seeds-mb-xl { margin-bottom: 2rem; }

.seeds-mt-sm { margin-top: 0.5rem; }
.seeds-mt-md { margin-top: 1rem; }
.seeds-mt-lg { margin-top: 1.5rem; }
.seeds-mt-xl { margin-top: 2rem; }

/* Interactive Links */
a:hover {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

/* Footer Styles */
.seeds-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.seeds-footer-section {
  display: flex;
  flex-direction: column;
}

.seeds-footer-heading {
  font-size: 1.125rem;         /* 18px */
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.seeds-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.seeds-footer-link {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  text-decoration: none;
  font-size: 0.875rem;         /* 14px */
  line-height: 1.4;
  transition: color 0.3s ease;
}

.seeds-footer-link:hover {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

.seeds-footer-contact {
  margin-top: 0;
}

.seeds-footer-address {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  font-size: 0.875rem;         /* 14px */
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
  white-space: pre-line;       /* Preserves line breaks */
}

.seeds-footer-location {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  font-size: 0.875rem;         /* 14px */
  line-height: 1.4;
  font-style: italic;
  margin-top: 1rem;
}

.seeds-footer-company {
  grid-column: span 1;
}

.seeds-footer-description {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  font-size: 0.875rem;         /* 14px */
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  white-space: pre-line;       /* Preserves line breaks */
}

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

.seeds-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;               /* 40px */
  height: 2.5rem;              /* 40px */
  background-color: rgba(255, 171, 64, 0.1);
  border-radius: 0.5rem;
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
  text-decoration: none;
  transition: all 0.3s ease;
}

.seeds-footer-social-link:hover {
  background-color: #ffab40;   /* fallback */
  background-color: var(--seeds-orange);
  color: white;
  transform: translateY(-2px);
}

.seeds-footer-social-link i {
  font-size: 1.125rem;         /* 18px */
}

.seeds-footer-bottom {
  border-top: 1px solid rgba(238, 230, 220, 0.2);
  padding-top: 2rem;
}

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

.seeds-footer-copyright {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  font-size: 0.875rem;         /* 14px */
  margin: 0;
}

.seeds-footer-legal-links {
  display: flex;
  gap: 2rem;
}

.seeds-footer-legal-link {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  text-decoration: none;
  font-size: 0.875rem;         /* 14px */
  transition: color 0.3s ease;
}

.seeds-footer-legal-link:hover {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
  .seeds-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .seeds-footer-company {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .seeds-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .seeds-footer-company {
    grid-column: span 1;
  }
  
  .seeds-footer-legal {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .seeds-footer-legal-links {
    justify-content: center;
  }
}

/* Data and Expertise Grid Layouts */
.seeds-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.seeds-expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .seeds-data-grid,
  .seeds-expertise-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Testimonials Styles */
.seeds-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.seeds-testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(54, 49, 102, 0.08);
}

.seeds-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
}

.seeds-testimonial-quote-icon {
  margin-bottom: 1rem;
}

.seeds-testimonial-headline {
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  font-size: 1.125rem;         /* 18px */
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 1rem 0;
}

.seeds-testimonial-quote {
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  font-size: 1rem;             /* 16px */
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  border-left: 3px solid #ffab40;
  border-left: 3px solid var(--seeds-orange);
  padding-left: 1rem;
  quotes: none;                /* Remove default quote marks */
}

/* Remove any default quotes from blockquote elements */
.seeds-testimonial-quote::before,
.seeds-testimonial-quote::after {
  content: "";
  content: none;
}

.seeds-testimonial-author {
  border-top: 1px solid rgba(54, 49, 102, 0.1);
  padding-top: 1rem;
}

.seeds-testimonial-author-name {
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  font-size: 0.9375rem;        /* 15px */
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.seeds-testimonial-author-title {
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  font-size: 0.875rem;         /* 14px */
  line-height: 1.4;
}

@media (max-width: 768px) {
  .seeds-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .seeds-testimonial-card {
    padding: 1.5rem;
  }
}

/* ===== DISTRIBUTOR DIRECTORY STYLES ===== */

/* Directory Controls */
.seeds-directory-controls {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.seeds-directory-search {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.seeds-directory-search .seeds-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.seeds-directory-search .seeds-input:focus {
  outline: none;
  border-color: var(--seeds-orange);
  box-shadow: 0 0 0 2px rgba(255, 171, 64, 0.2);
}

.seeds-directory-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.seeds-select {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
}

.seeds-select:focus {
  outline: none;
  border-color: var(--seeds-orange);
  box-shadow: 0 0 0 2px rgba(255, 171, 64, 0.2);
}

/* Results Info */
.seeds-directory-info {
  margin-bottom: 1rem;
}

.seeds-text-secondary {
  color: var(--seeds-light);
  font-size: 0.875rem;
}

/* Directory Table */
.seeds-directory-table-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

.seeds-directory-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.seeds-directory-table th,
.seeds-directory-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.seeds-directory-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: var(--seeds-dark);
  position: sticky;
  top: 0;
  z-index: 10;
}

.seeds-directory-table th.sortable {
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.seeds-directory-table th.sortable:hover {
  background: #e9ecef;
}

.seeds-directory-table th.sortable i {
  margin-left: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.seeds-directory-table th.sortable:hover i {
  opacity: 1;
}

.seeds-directory-table th.sort-asc i,
.seeds-directory-table th.sort-desc i {
  opacity: 1;
  color: var(--seeds-orange);
}

.seeds-directory-table tbody tr:hover {
  background: #f8f9fa;
}

.seeds-distributor-name {
  min-width: 200px;
}

.seeds-distributor-name strong {
  color: var(--seeds-dark);
}

.seeds-distributor-description {
  max-width: 300px;
  line-height: 1.4;
  color: var(--seeds-light);
}

.seeds-distributor-categories {
  min-width: 200px;
}

.seeds-category-tag {
  display: inline-block;
  background: #e3f2fd;
  color: #1976d2;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  margin: 0.125rem;
  white-space: nowrap;
}

.seeds-distributor-country {
  min-width: 100px;
  font-weight: 500;
}

.seeds-distributor-states {
  min-width: 150px;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
}

/* Pagination */
.seeds-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.seeds-pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--seeds-orange);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.seeds-pagination-btn:hover {
  background: #ff9800;
  transform: translateY(-1px);
}

.seeds-pagination-info {
  font-weight: 500;
  color: var(--seeds-dark);
}



/* Breadcrumb */
.seeds-breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.seeds-breadcrumb-link {
  color: var(--seeds-orange);
  text-decoration: none;
}

.seeds-breadcrumb-link:hover {
  text-decoration: underline;
}

.seeds-breadcrumb-separator {
  margin: 0 0.5rem;
  color: var(--seeds-light);
}

.seeds-breadcrumb-current {
  color: var(--seeds-dark);
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .seeds-directory-search {
    flex-direction: column;
  }
  
  .seeds-directory-filters {
    flex-direction: column;
  }
  
  .seeds-select {
    width: 100%;
  }
  
  .seeds-directory-table-container {
    overflow-x: auto;
  }
  
  .seeds-directory-table {
    min-width: 800px;
  }
  
  .seeds-directory-table th,
  .seeds-directory-table td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
  .seeds-distributor-description {
    max-width: 250px;
    font-size: 0.75rem;
  }
  
  .seeds-category-tag {
    font-size: 0.7rem;
    margin: 0.1rem;
  }
  
  .seeds-pagination {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .seeds-pagination-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .seeds-directory-controls {
    padding: 1rem;
  }
  
  .seeds-directory-table th,
  .seeds-directory-table td {
    padding: 0.375rem;
    font-size: 0.75rem;
  }
  
  .seeds-distributor-name {
    min-width: 150px;
  }
  
  .seeds-distributor-description {
    max-width: 200px;
  }
}

/* Internal Link Styling - Subtle and Reading-Friendly */
.seeds-internal-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--seeds-orange);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: all 0.2s ease;
}

.seeds-internal-link:hover {
  color: var(--seeds-orange);
  text-decoration-thickness: 2px;
}

/* Content area internal links - even more subtle */
.seeds-text-primary .seeds-internal-link,
.seeds-text-intro-panel .seeds-internal-link {
  color: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--seeds-light);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.seeds-text-primary .seeds-internal-link:hover,
.seeds-text-intro-panel .seeds-internal-link:hover {
  color: var(--seeds-dark);
  text-decoration-color: var(--seeds-orange);
  font-weight: 600;
}

/* Consumer Dashboard - Responsive Grid */
@media (max-width: 768px) {
  .seeds-dashboard-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}