:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-blue: #5aa9f0;
  --primary-blue-light: #b4d5f7;
  --primary-blue-dark: #2a70a0;
  
  --primary-green: #79c71f;
  --primary-green-light: #95cf6b;
  --primary-green-dark: #44991b;
  
  --primary-orange: #ffac16;
  --primary-orange-light: #ffd184;
  --primary-orange-dark: #edab08;
  
  --primary-purple: #8d0cf6;
  --primary-purple-light: #b36eff;
  --primary-purple-dark: #8c16c6;
  
  --primary-red: #b80500;
  --primary-red-light: #d54043;
  --primary-red-dark: #8d0016;
  
  /* Neutral Colors */
  --text-dark: #263f51;
  --text-light: #ECF0F1;
  --bg-light: #FAFBFC;
  --bg-dark: #374660;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
  
  /* Conservative Font Sizes */
  --font-size-base: 17px;
  --font-size-small: 19px;
  --font-size-large: 18px;
  --font-size-h1: 2.25rem;
  --font-size-h2: 1.875rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --navbar-brand-size: 1.5rem;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* DISABLE ALL ANIMATIONS GLOBALLY */
*, *::before, *::after {
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
  transform: none !important;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 700;
  color: var(--primary-blue) !important;
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 3px 26px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-blue) !important;
}

/* Pulse Animation - DISABLED */
/* @keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
} DISABLED */

.pulse {
  /* animation: pulse 0.6s ease-in-out; DISABLED */
}

.services-price.pulse {
  /* animation: pulse 0.6s ease-in-out; DISABLED */
  background: var(--gradient-primary);
  color: white;
}

/* Loading Screen */
#loading-screen {
  background: var(--gradient-primary);
}

#loading-screen .spinner-border {
  color: white !important;
}

/* Nanobar Progress Bar */
.nanobar {
  width: 100%;
  height: 4px;
  z-index: 9999;
  top: 0;
}

.nanobar .bar {
  width: 0;
  height: 100%;
  transition: height .3s;
  background: var(--gradient-primary);
}

/* Back to Top Button */
#b5a1c6k-to-top {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

#c7bfd7k-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Enhanced Hover Effects */
.services-card:hover .services-price {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

/* FAQ Enhancements - DISABLED (using simple cards now) */
/*
.faq-card .btn-link.active {
  background: var(--gradient-primary);
  color: white !important;
}

.faq-card .btn-link:focus {
  box-shadow: none;
}
*/

/* Form Validation States */
.form-control.is-invalid {
  border-color: var(--primary-red);
  background-image: none;
}

.form-control.is-invalid:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(195, 6, 32, 0.25);
}

/* Notification Styles */
.alert.position-fixed {
  min-width: 300px;
  z-index: 9999;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../ECO_images/hero-building.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
  background-size: 1920px 1080px;
  background-position: center;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
  color: white;
}

.hero-shapes {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  opacity: 0.1;
  /* animation: float 6s ease-in-out infinite; DISABLED */
}

.hero-shapes:nth-child(2) {
  top: 20%;
  right: 10%;
  /* animation-delay: -2s; DISABLED */
  background: var(--gradient-accent);
}

.hero-shapes:nth-child(3) {
  bottom: 30%;
  left: 5%;
  /* animation-delay: -4s; DISABLED */
  width: 150px;
  height: 150px;
}

/* @keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
} DISABLED */

.hero-content img {
  width: 800px;
  height: 600px;
  max-width: 100%;
  object-fit: cover;
}

/* Services Section */
.services-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.services-card:hover {
  /* transform: translateY(-12px); DISABLED */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.services-card img {
  width: 100%;
  height: 200px;
  max-height: 200px;
  object-fit: cover;
}

.services-price {
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--primary-blue);
  background: var(--primary-blue-light);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: inline-block;
}

/* Testimonials Cards */
.testimonial-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin: 1rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-blue);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

/* FAQ Simple Cards - No JavaScript */
.faq-simple-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
  padding: 0;
}

.faq-question {
  background: var(--gradient-primary);
  color: white;
  padding: 1.2rem 1.5rem;
  margin: 0;
  display: flex;
  align-items: center;
}

.faq-question h5 {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-question i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  min-width: 20px;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-dark);
  background: white;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
}

/* Hover effect for FAQ cards */
.faq-simple-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Old FAQ Cards - DISABLED */
/*
.faq-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-card .card-header {
  background: var(--gradient-primary);
  border: none;
  padding: 0;
}

.faq-card .btn-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
}

.faq-card .card-body {
  padding: 1.5rem;
  color: var(--text-dark);
}
*/

/* Team Section */
.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  /* transform: translateY(-5px); DISABLED */
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--primary-blue-light);
}

/* Gallery Section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

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

.gallery-item:hover img {
  /* transform: scale(1.1); DISABLED */
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.form-control {
  border-radius: 10px;
  border: 2px solid #d1dde3;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(92, 134, 222, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  /* transform: translateY(-2px); DISABLED */
  background: var(--gradient-primary);
}

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

/* Breadcrumbs */
.breadcrumb-nav {
  background: var(--bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid #ffffff;
}

.breadcrumb-nav img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

/* Animation Classes - DISABLED */
.fade-in {
  opacity: 1 !important;
  transform: none !important;
  /* transition: opacity 0.6s ease, transform 0.6s ease; DISABLED */
}

.fade-in.active {
  opacity: 1 !important;
  transform: none !important;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Navbar Toggler Icon */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 62, 80, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 62, 80, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Ensure consistent image sizing across all sections */
img[src$=".webp"] {
  max-width: 100%;
  height: auto;
} 


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

.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;
    }
}
