/* Main CSS for B2B Eco-Supplies Store Template */

:root {
  /* Primary Color Palette - Eco-friendly pastels with high contrast */
  --eco-green: #2d5a27;
  --eco-light-green: #7fb069;
  --eco-sage: #a4b494;
  --eco-cream: #f4f1de;
  --eco-earth: #8b5a3c;
  
  /* Light and dark shades */
  --eco-green-light: #4a7c59;
  --eco-green-dark: #1a3d1a;
  --eco-cream-light: #faf8f1;
  --eco-cream-dark: #e8e3c8;
  --eco-earth-light: #a67c5a;
  --eco-earth-dark: #6b4529;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
}

/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--eco-green-dark);
  background-color: var(--eco-cream-light);
    overflow-x: hidden;
}

/* Conservative typography */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--eco-green);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--eco-green);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--eco-green);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  color: var(--eco-green-dark);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--eco-green-dark);
  margin-bottom: 0.625rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--eco-green-dark);
}

/* Header styles */
#header {
  background-color: var(--eco-cream);
  border-bottom: 2px solid var(--eco-sage);
  padding: 0.75rem 0;
}

.navbar {
  padding: 0.5rem 0;
}

.navbar-nav .nav-link {
  color: var(--eco-green);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--eco-light-green);
}

/* Hero section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--eco-cream) 0%, var(--eco-cream-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  z-index: 2;
    padding-top: 100px;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--eco-sage);
  border-radius: 50%;
  opacity: 0.1;
  top: 10%;
  right: 15%;
  z-index: 1;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: var(--eco-light-green);
  border-radius: 50%;
  top: -20px;
  left: -20px;
  opacity: 0.3;
}

/* Button styles */
.btn-eco-primary {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-eco-primary:hover {
  background-color: var(--eco-green-dark);
  border-color: var(--eco-green-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-eco-secondary {
  background-color: var(--eco-sage);
  border-color: var(--eco-sage);
  color: var(--eco-green-dark);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-eco-secondary:hover {
  background-color: var(--eco-light-green);
  border-color: var(--eco-light-green);
  color: white;
  transform: translateY(-2px);
}

/* Section spacing */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* About section */
#about {
  background-color: white;
}

.feature-card {
  background-color: var(--eco-cream);
  border: 1px solid var(--eco-sage);
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(45, 90, 39, 0.15);
}

.feature-icon {
  font-size: 3rem;
  color: var(--eco-light-green);
  margin-bottom: 1rem;
}

/* Services section */
#services {
  background-color: var(--eco-cream-light);
}

.service-card {
  background-color: white;
  border: 2px solid var(--eco-sage);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--eco-light-green);
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(45, 90, 39, 0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eco-green);
  margin-top: 1rem;
}

/* Features section */
#features {
  background-color: white;
}

/* Price Plan section */
#priceplan {
  background-color: var(--eco-cream);
}

.price-card {
  background-color: white;
  border: 2px solid var(--eco-sage);
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.price-card:hover {
  border-color: var(--eco-light-green);
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(45, 90, 39, 0.2);
}

.price-card.featured {
  border-color: var(--eco-green);
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eco-green);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--eco-cream);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team section */
#team {
  background-color: white;
}

.team-card {
  background-color: var(--eco-cream);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--eco-sage);
}

/* Reviews section */
#reviews {
  background-color: var(--eco-cream-light);
}

.review-card {
  background-color: white;
  border-left: 4px solid var(--eco-light-green);
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  margin-bottom: 2rem;
}

.review-author {
  font-weight: 600;
  color: var(--eco-green);
  margin-top: 1rem;
}

/* Case Studies section */
#casestudy {
  background-color: white;
}

.case-card {
  background-color: var(--eco-cream);
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

/* Process section */
#process {
  background-color: var(--eco-cream-light);
}

.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: var(--eco-green);
  color: white;
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Timeline section */
#timeline {
  background-color: white;
}

.timeline-item {
  padding: 1.5rem;
  background-color: var(--eco-cream);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--eco-light-green);
}

/* Career section */
#career {
  background-color: var(--eco-cream-light);
}

.career-card {
  background-color: white;
  border: 1px solid var(--eco-sage);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-3px);
}

/* Core Info section */
#coreinfo {
  background-color: white;
}

.info-card {
  background-color: var(--eco-cream);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--eco-light-green);
  margin-bottom: 1rem;
}

/* Contact section */
#contacts {
  background-color: var(--eco-cream);
}

.contact-form {
  background-color: white;
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(45, 90, 39, 0.1);
}

.form-control {
  border: 2px solid var(--eco-sage);
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--eco-light-green);
  box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
}

.contact-info {
  background-color: var(--eco-green);
  color: white;
  border-radius: 0.75rem;
  padding: 2.5rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--eco-sage);
}

/* Blog section */
#blog {
  background-color: white;
}

.blog-card {
  background-color: var(--eco-cream);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-content {
  padding: 2rem;
}

.blog-link {
  color: var(--eco-green);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--eco-light-green);
  text-decoration: underline;
}

/* FAQ section */
#faq {
  background-color: var(--eco-cream-light);
}

.faq-card {
  background-color: white;
  border: 1px solid var(--eco-sage);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--eco-green);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--eco-green-dark);
  margin: 0;
}

/* Gallery section */
#gallery {
  background-color: white;
  padding: 4rem 0;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
#footer {
  background-color: #0f2410;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section p {
  color: #e8e8e8;
  line-height: 1.8;
}

.footer-title {
  color: #b8d1a3;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-link:hover {
  color: #b8d1a3;
  background-color: rgba(184, 209, 163, 0.1);
  padding-left: 0.5rem;
  border-radius: 0.25rem;
}

.footer-bottom {
  border-top: 2px solid #2d5a27;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-bottom small {
  color: #aaaaaa;
  font-size: 0.875rem;
}

/* Breadcrumb */
.breadcrumb {
  background-color: var(--eco-cream);
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Image placeholder styles */
.img-placeholder {
  background-color: var(--eco-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eco-green-dark);
  font-weight: 500;
  text-align: center;
  border-radius: 0.375rem;
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
