/* Sustainable Textile Recycling Service - Main CSS */

/* Color Palette Variables */
:root {
  --primary-green: #2d5a27;
  --primary-green-light: #4a7c59;
  --primary-green-dark: #1a3d1a;
  
  --accent-sage: #87a96b;
  --accent-sage-light: #a4c085;
  --accent-sage-dark: #6d8a4f;
  
  --neutral-cream: #f5f5dc;
  --neutral-cream-light: #fafaf2;
  --neutral-cream-dark: #e8e8c4;
  
  --earth-brown: #8b4513;
  --earth-brown-light: #a0522d;
  --earth-brown-dark: #654321;
  
  --ocean-teal: #008b8b;
  --ocean-teal-light: #20b2aa;
  --ocean-teal-dark: #006666;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-green-dark);
  background-color: var(--neutral-cream-light);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green) !important;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-green);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-green-light);
}

p {
  font-size: 1rem;
  color: var(--primary-green-dark);
}

/* Header */
#header {
  background-color: var(--neutral-cream);
  box-shadow: 0 2px 4px rgba(45, 90, 39, 0.1);
}

.navbar {
  padding: 1rem 0;
}

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

.navbar-nav .nav-link:hover {
  color: var(--accent-sage);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--neutral-cream) 0%, var(--neutral-cream-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--accent-sage);
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(50%, -50%);
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: var(--ocean-teal);
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(-50%, 50%);
}

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

/* About Section */
#about {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(45, 90, 39, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent-sage);
  height: 100%;
}

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

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

/* Services Section */
#services {
  padding: 5rem 0;
  background-color: white;
}

.service-card {
  background: var(--neutral-cream-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--accent-sage);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(45, 90, 39, 0.1);
}

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

.service-price {
  background: var(--primary-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  margin-top: auto;
}

/* Features Section */
#features {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent-sage-light) 0%, var(--accent-sage) 100%);
  color: white;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--neutral-cream-light);
}

/* Price Plan Section */
#priceplan {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(45, 90, 39, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(45, 90, 39, 0.2);
}

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

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-cream);
}

/* Team Section */
#team {
  padding: 5rem 0;
  background-color: white;
}

.team-card {
  background: var(--neutral-cream-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(45, 90, 39, 0.15);
}

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

/* Reviews Section */
#reviews {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--ocean-teal-light) 0%, var(--ocean-teal) 100%);
  color: white;
}

.review-card {
  background: white;
  color: var(--primary-green-dark);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Case Studies Section */
#casestudy {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.case-study-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(45, 90, 39, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(45, 90, 39, 0.2);
}

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

.case-study-content {
  padding: 2rem;
}

/* Process Section */
#process {
  padding: 5rem 0;
  background-color: white;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

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

/* Timeline Section */
#timeline {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--earth-brown-light) 0%, var(--earth-brown) 100%);
  color: white;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--neutral-cream);
}

/* Career Section */
#career {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(45, 90, 39, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.career-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(45, 90, 39, 0.15);
}

/* Core Info Section */
#coreinfo {
  padding: 5rem 0;
  background-color: white;
}

.info-card {
  background: var(--neutral-cream-light);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  border-top: 3px solid var(--accent-sage);
}

.info-icon {
  color: var(--accent-sage);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Contact Section */
#contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: white;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  background: white;
  box-shadow: 0 0 0 3px rgba(135, 169, 107, 0.3);
}

.btn-primary {
  background-color: var(--accent-sage);
  border-color: var(--accent-sage);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent-sage-dark);
  border-color: var(--accent-sage-dark);
  transform: translateY(-2px);
}

/* Blog Section */
#blog {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(45, 90, 39, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(45, 90, 39, 0.2);
}

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

.blog-content {
  padding: 2rem;
}

/* FAQ Section */
#faq {
  padding: 5rem 0;
  background-color: white;
}

.faq-card {
  background: var(--neutral-cream-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-sage);
}

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

.faq-answer {
  color: var(--primary-green-dark);
  line-height: 1.6;
}

/* Gallery Section */
#gallery {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

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

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(45, 90, 39, 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-dark);
  color: var(--neutral-cream-light);
  padding: 3rem 0 1rem;
}

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

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

.footer-section a:hover {
  color: var(--accent-sage-light);
}

.footer-bottom {
  border-top: 1px solid var(--primary-green);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-content {
    text-align: center;
    padding-top: 175px;
}
  
  .pricing-card.featured {
    transform: none;
  }
  
  .process-step::after {
    display: none;
  }
} 


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
