/* Eco-Toilet Rentals - Main Styles */
:root {
  /* Color Palette - 5 primary colors with light/dark shades */
  --primary-green: #4a7c59;
  --primary-green-light: #6b9b7a;
  --primary-green-dark: #3a5c49;
  
  --primary-blue: #5a8db8;
  --primary-blue-light: #7ba6c8;
  --primary-blue-dark: #4a7298;
  
  --primary-earth: #8b6f47;
  --primary-earth-light: #a08b67;
  --primary-earth-dark: #6b5537;
  
  --primary-sage: #9caa8e;
  --primary-sage-light: #b2c0a4;
  --primary-sage-dark: #7c8a6e;
  
  --primary-cream: #f5f2e8;
  --primary-cream-light: #f8f6ed;
  --primary-cream-dark: #ebe7dc;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
}

/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
    overflow-x: hidden;
}

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

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

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

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

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

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

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

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: var(--primary-green-light);
  opacity: 0.1;
  transform: rotate(45deg);
  border-radius: 50%;
}

/* Section spacing */
section {
  padding: 4rem 0;
}

/* About section */
#about {
  background-color: var(--primary-cream);
}

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

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

/* Services section */
#services {
  background-color: white;
}

.service-card {
  background: var(--primary-cream);
  border: 2px solid var(--primary-sage);
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

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

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Features section */
#features {
  background-color: var(--primary-sage-light);
}

/* Price Plan section */
#priceplan {
  background-color: white;
}

.price-card {
  background: var(--primary-cream);
  border: 2px solid var(--primary-blue);
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

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

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

/* Team section */
#team {
  background-color: var(--primary-cream);
}

.team-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-sage);
  margin-bottom: 1rem;
}

/* Reviews section */
#reviews {
  background-color: white;
}

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

/* Case Studies section */
#casestudy {
  background-color: var(--primary-sage-light);
}

.case-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
}

/* Process section */
#process {
  background-color: white;
}

.process-step {
  background: var(--primary-cream);
  border: 2px solid var(--primary-sage);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
}

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

/* FAQ section */
#faq {
  background-color: var(--primary-cream);
}

.faq-card {
  background: white;
  border: 1px solid var(--primary-sage);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

/* Gallery section */
#gallery {
  background-color: white;
}

.gallery-item {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Contact section */
#contact {
  background-color: var(--primary-sage-light);
}

.contact-form {
  background: white;
  border-radius: 0.75rem;
  padding: 2.5rem;
}

.form-control {
  border: 2px solid var(--primary-sage);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}

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

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

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

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

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

#footer a {
  color: var(--primary-sage-light);
  text-decoration: none;
}

#footer a:hover {
  color: var(--primary-cream);
}

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

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

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

/* Custom grid for 5-column layout */
.col-lg-2-4 {
  flex: 0 0 auto;
  width: 20%;
}

@media (max-width: 991.98px) {
  .col-lg-2-4 {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .col-lg-2-4 {
    width: 100%;
  }
}

/* Timeline specific styles */
.timeline-year {
  font-size: 1.2rem;
}

/* Navbar scroll effect */
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Back to top button */
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

#back-to-top:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
}

/* Mobile optimizations */
@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .col-lg-2-4 {
    width: 100%;
    margin-bottom: 1rem;
  }
} 

.hero-content {
    padding-top: 200px;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

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

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
