:root {
  /* Primary Color Palette for Environmental Impact Consulting */
  --primary-forest: #2b4926;
  --primary-forest-light: #3b6b35;
  --primary-forest-dark: #172f18;
  
  --primary-ocean: #336c89;
  --primary-ocean-light: #4d8993;
  --primary-ocean-dark: #2b5867;
  
  --primary-earth: #8b7b5f;
  --primary-earth-light: #bb9675;
  --primary-earth-dark: #574739;
  
  --primary-sage: #92a187;
  --primary-sage-light: #92a08b;
  --primary-sage-dark: #476041;
  
  --primary-teal: #659992;
  --primary-teal-light: #7ca7b0;
  --primary-teal-dark: #356862;
  
  /* Additional System Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #5c6974;
  --dark-gray: #282c34;
  --black: #000000;
  
  /* Conservative Font Sizes */
  --fs-small: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  
  /* Shadows and Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* Custom 5-Column Grid for Team, Process, Timeline */
.col-5-item {
  flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 1199.98px) {
  .col-5-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 767.98px) {
  .col-5-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  .col-5-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography - Conservative Sizes */
h1 { font-size: var(--fs-3xl); font-weight: 600; }
h2 { font-size: var(--fs-2xl); font-weight: 600; }
h3 { font-size: var(--fs-xl); font-weight: 600; }
h4 { font-size: var(--fs-lg); font-weight: 600; }
h5 { font-size: var(--fs-base); font-weight: 600; }
h6 { font-size: var(--fs-small); font-weight: 600; }

p { margin-bottom: 1rem; font-size: var(--fs-base); }

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-ocean));
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.navbar.scrolled {
  background: rgba(45, 91, 40, 0.95);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: var(--fs-xl) !important;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition-base);
  font-size: var(--fs-base);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage-light) !important;
  transform: translateY(-1px);
}

.navbar-toggler {
  border: none;
  color: var(--white);
}

/* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 9999;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-forest-light), var(--primary-ocean-light));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../WOT_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: var(--fs-4xl);
  font-weight: 700;
  margin-bottom: 1.67rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: var(--fs-xl);
  font-weight: 400;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--fs-lg);
  margin-bottom: 2rem;
  opacity: 0.85;
}

/* Decorative Shapes */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: var(--fs-3xl);
  color: var(--primary-forest);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

.section-subtitle {
  font-size: var(--fs-xl);
  color: var(--primary-ocean);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

.section-desc {
  font-size: var(--fs-lg);
  color: var(--medium-gray);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background-color: var(--light-gray);
}

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-card i {
  font-size: 2.54rem;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--primary-sage-light), var(--primary-teal-light));
  color: var(--white);
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-gray);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-forest), var(--primary-ocean));
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-price {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.25rem 0;
  font-size: var(--fs-small);
}

.service-features li:before {
  content: 'âœ“';
  color: var(--primary-forest);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-gray);
}

.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  text-align: center;
  position: relative;
  height: 100%;
}

.price-card.featured {
  border: 3px solid var(--primary-forest);
  transform: scale(1.05);
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-forest);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--fs-small);
  font-weight: 600;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--primary-earth-light), var(--primary-sage-light));
  color: var(--white);
}

.team-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-gray);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: var(--transition-base);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-forest);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--white);
}

.review-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-ocean);
  line-height: 1;
}

.review-author {
  font-weight: 600;
  color: var(--primary-forest);
  margin-top: 1rem;
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--primary-teal-light), var(--primary-ocean-light));
  color: var(--white);
}

.process-step {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition-base);
  height: 100%;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.2);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--primary-ocean);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-lg);
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-gray);
}

.faq-card {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  background: var(--primary-forest);
  color: var(--white);
  padding: 1rem 1.5rem;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-base);
}

.faq-question:hover {
  background: var(--primary-forest-light);
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  margin: 0;
  display: none;
}

.faq-card.active .faq-answer {
  display: block;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-ocean));
  color: var(--white);
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-gray);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: var(--fs-base);
  transition: var(--transition-base);
}

.form-control:focus {
  border-color: var(--primary-forest);
  box-shadow: 0 0 0 0.2rem rgba(50, 89, 57, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-ocean));
  border: none;
  padding: 0.75rem 2rem;
  font-size: var(--fs-base);
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--primary-sage-light);
  text-decoration: none;
  transition: var(--transition-base);
}

.footer a:hover {
  color: var(--white);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-base);
}

/* Blog */
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* Breadcrumbs */
.breadcrumb-container {
  background-color: var(--light-gray);
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-ocean));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-ocean));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-teal));
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
  .hero-title { font-size: var(--fs-3xl); }
  .section-title { font-size: var(--fs-2xl); }
  .section { padding: 3rem 0; }
  .price-card.featured { 
    transform: none;
    margin-top: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .breadcrumb-container {
    margin-top: 70px;
  }
}

@media (max-width: 576px) {
  .hero-title { font-size: var(--fs-2xl); }
  .section-title { font-size: var(--fs-xl); }
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section { min-height: 80vh; }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
