/* Sustainable Office Supplies Wholesaler Template - Main CSS */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  /* Primary Colors */
  --primary-green: #5ebc11;
  --primary-blue: #4acdfe;  
  --primary-purple: #8e60b2;
  --primary-orange: #fbb229;
  --primary-coral: #ff775f;
  
  /* Light Shades */
  --light-green: #f4ffef;
  --light-blue: #d8f5ff;
  --light-purple: #dbc9e8;
  --light-orange: #fceee2;
  --light-coral: #f4f1f1;
  
  /* Dark Shades */
  --dark-green: #3d8b12;
  --dark-blue: #3a96cb;
  --dark-purple: #744383;
  --dark-orange: #b5670e;
  --dark-coral: #f65557;
  
  /* Neutral Colors */
  --text-dark: #223540;
  --text-light: #78898b;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --border-gray: #dce2e8;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Sections Spacing */
section {
  padding: 60px 0;
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light-green), var(--light-blue));
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  color: var(--text-dark);
  font-weight: 700;
    padding-top: 150px;
}

.hero-subtitle {
  color: var(--primary-green);
  font-weight: 500;
}

.hero-desc {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  background: var(--primary-green);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  background: var(--primary-blue);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.service-image {
  height: 200px;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-green);
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 1.25rem;
}

.service-features {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

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

.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-orange);
}

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

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-gray);
  transition: transform 0.3s ease;
}

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

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--light-blue);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-blue);
}

/* Reviews Section */
.reviews-section {
  background: var(--light-gray);
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--primary-green);
  height: 100%;
}

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

.review-author {
  font-weight: 600;
  color: var(--text-dark);
}

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

.case-card {
  background: var(--light-green);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* Process Section */
.process-section {
  background: var(--light-gray);
}

.process-step {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  height: 100%;
}

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

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

.timeline-item {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-blue);
}

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

.career-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-gray);
  height: 100%;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-purple);
}

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

.coreinfo-card {
  background: var(--light-purple);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

/* Blog Section */
.blog-section {
  background: var(--light-gray);
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.blog-image {
  height: 200px;
  background: var(--light-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-coral);
  font-size: 2rem;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-orange);
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

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

/* Gallery Section */
.gallery-section {
  background: var(--light-gray);
  padding: 60px 0;
}

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

.gallery-item {
  height: 200px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 2rem;
  transition: transform 0.3s ease;
}

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

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

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

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

.contact-info h4 {
  color: var(--white);
}

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

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(126, 189, 46, 0.25);
}

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

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

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

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

/* Header */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-green);
}

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

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

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

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

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #395172;
  padding-top: 1rem;
  margin-top: 2rem;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--light-gray);
  padding: 2rem 0;
}

.breadcrumb-image {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

/* Utility Classes */
.text-primary-green { color: var(--primary-green); }
.text-primary-blue { color: var(--primary-blue); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-coral { color: var(--primary-coral); }

.bg-primary-green { background-color: var(--primary-green); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-blue { background-color: var(--light-blue); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-orange { background-color: var(--light-orange); }
.bg-light-coral { background-color: var(--light-coral); } 


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