/* Sustainable Office Supplies Wholesaler - Main Styles */
/* Color Palette: Eco-friendly pastels with high contrast */
:root {
  /* Primary eco-friendly colors */
  --primary-green: #2d5530;
  --secondary-green: #52a55a;
  --accent-blue: #4a90a4;
  --warm-beige: #f5f3e8;
  --earth-brown: #8b5a3c;
  
  /* Light and dark shades */
  --light-green: #e8f5e8;
  --dark-green: #1a3d1c;
  --light-blue: #e6f3f7;
  --dark-blue: #2c5f70;
  --off-white: #fafafa;
  --charcoal: #2d2d2d;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --line-height-base: 1.6;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--charcoal);
  background-color: var(--off-white);
}

/* Conservative typography - avoid large sizes */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-green);
  margin-bottom: 0.625rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--charcoal);
}

/* Header Styles */
.navbar {
  background-color: var(--off-white);
  box-shadow: 0 2px 4px rgba(45, 85, 48, 0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-green);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-green);
}

/* Hero Section - Full height */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--warm-beige) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: var(--light-blue);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

/* About Section */
.about-section {
  background-color: var(--off-white);
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(45, 85, 48, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(45, 85, 48, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  font-size: 1.5rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(180deg, var(--warm-beige) 0%, var(--light-green) 100%);
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 12px rgba(45, 85, 48, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.price-tag {
  background: var(--secondary-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background-color: var(--off-white);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--light-blue);
}

.price-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 6px 12px rgba(74, 144, 164, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

.price-card.featured {
  border: 3px solid var(--accent-blue);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background-color: var(--off-white);
}

.team-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(45, 85, 48, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--light-green);
}

/* Reviews Section - Static Bootstrap Cards Only */
.reviews-section {
  background: var(--warm-beige);
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(45, 85, 48, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.review-author {
  font-weight: 600;
  color: var(--primary-green);
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--off-white);
}

.casestudy-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 6px 12px rgba(45, 85, 48, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

/* Process Section */
.process-section {
  background: linear-gradient(180deg, var(--light-green) 0%, var(--warm-beige) 100%);
}

.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(45, 85, 48, 0.1);
  height: 100%;
  margin-bottom: 2rem;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--secondary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--off-white);
}

.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(45, 85, 48, 0.1);
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary-green);
}

/* Career Section */
.career-section {
  background: var(--light-blue);
}

.career-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(74, 144, 164, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

.job-role {
  background: var(--accent-blue);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--font-size-small);
  display: inline-block;
  margin-top: 1rem;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--off-white);
}

.coreinfo-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(45, 85, 48, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
  background: var(--warm-beige);
}

.contact-form {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 6px 12px rgba(45, 85, 48, 0.1);
}

.form-control {
  border: 2px solid var(--light-green);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--secondary-green);
  box-shadow: 0 0 0 0.2rem rgba(82, 165, 90, 0.25);
}

.btn-primary {
  background-color: var(--secondary-green);
  border-color: var(--secondary-green);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
}

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

.contact-info {
  background: var(--light-green);
  border-radius: 12px;
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--off-white);
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(45, 85, 48, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-link {
  color: var(--secondary-green);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

/* FAQ Section - Static Cards Only */
.faq-section {
  background: var(--light-green);
}

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(45, 85, 48, 0.1);
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--charcoal);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--off-white);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(45, 85, 48, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--primary-green);
  color: var(--off-white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-green);
  margin-bottom: 1.5rem;
}

.footer p, .footer a {
  color: var(--off-white);
  text-decoration: none;
}

.footer a:hover {
  color: var(--light-green);
}

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

/* Breadcrumbs */
.breadcrumb-container {
  background: var(--light-green);
  padding: 1rem 0;
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
}

/* Utility Classes */
.text-eco {
  color: var(--primary-green);
}

.bg-eco {
  background-color: var(--light-green);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--light-green) 50%, transparent 100%);
  margin: 3rem 0;
}

/* 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;
  }
}


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
