
/* ========== CORE STYLES ========== */
.uee-projects-showcase {
  --primary: #8B5A2B;
  --primary-light: #A37245;
  --secondary: #FCFAF5;
  --tertiary: #EDF2F7;
  --text-dark: #2D3748;
  --text-medium: #4A5568;
  --text-light: #F7FAFC;
  --accent: #D69E2E;
  --shadow: rgba(139, 90, 43, 0.15);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* ========== BANNER STYLES ========== */
.uee-projects-banner {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  overflow: hidden;
}

.uee-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
}

.uee-banner-container {
  position: relative;
  z-index: 2;
}

.uee-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.uee-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(252,250,245,0.9);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.uee-desc {
  font-size: 1.1rem;
  color: rgba(252,250,245,0.85);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.uee-trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.uee-badge {
  display: flex;
  align-items: center;
  background: rgba(252,250,245,0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(252,250,245,0.2);
}

.uee-badge-icon {
  width: 20px;
  height: 20px;
  fill: var(--text-light);
  margin-right: 0.75rem;
}

.uee-badge span {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 400;
}

/* ========== FILTERS STYLES ========== */
.uee-filters-container {
  background: var(--secondary);
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.uee-project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.uee-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.uee-filter-btn:hover {
  background: rgba(139, 90, 43, 0.1);
}

.uee-filter-btn.active {
  background: var(--primary);
  color: white;
}

/* ========== PROJECT CARD STYLES ========== */
.uee-projects-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.uee-project-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: white;
}

.uee-project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 90, 43, 0.2);
}

.uee-project-header {
  padding: 1.75rem;
  color: white;
  position: relative;
}

.uee-project-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.3);
}

.uee-project-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: inherit;
}

.uee-project-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.uee-meta-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.9;
}

.uee-meta-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin-right: 0.5rem;
}

.uee-project-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.uee-project-section {
  margin-bottom: 1.5rem;
}

.uee-project-section:last-child {
  margin-bottom: 0;
}

.uee-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.uee-section-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-right: 0.5rem;
}

.uee-project-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.uee-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.uee-cta-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.uee-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.uee-cta-secondary:hover {
  background: rgba(139, 90, 43, 0.1);
}

.uee-cta-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-right: 0.5rem;
}

/* ========== CAPABILITIES STYLES ========== */
.uee-capabilities-section {
  padding: 4rem 0;
  background: var(--tertiary);
}

.uee-capabilities-card {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(139, 90, 43, 0.1);
  position: relative;
  overflow: hidden;
}

.uee-capabilities-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.uee-capabilities-icon {
  width: 60px;
  height: 60px;
  fill: var(--primary);
  margin-bottom: 1.5rem;
}

.uee-capabilities-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.uee-capabilities-text {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.uee-capabilities-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.uee-cta-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.uee-cta-outline:hover {
  background: rgba(139, 90, 43, 0.1);
}

.uee-cta-solid {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.uee-cta-solid:hover {
  background: var(--primary-light);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
  .uee-main-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .uee-projects-banner {
    padding: 80px 0;
  }
  
  .uee-main-title {
    font-size: 2.2rem;
  }
  
  .uee-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .uee-projects-banner {
    padding: 60px 0;
  }
  
  .uee-main-title {
    font-size: 2rem;
  }
  
  .uee-subtitle {
    font-size: 1.1rem;
  }
  
  .uee-desc {
    font-size: 1rem;
  }
  
  .uee-project-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .uee-capabilities-card {
    padding: 2rem;
  }
  
  .uee-capabilities-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .uee-main-title {
    font-size: 1.8rem;
  }
  
  .uee-badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .uee-project-col {
    margin-bottom: 2rem;
  }
  
  .uee-project-header,
  .uee-project-body {
    padding: 1.5rem;
  }
  
  .uee-capabilities-card {
    padding: 1.5rem;
  }
  
  .uee-capabilities-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .uee-cta-primary,
  .uee-cta-secondary,
  .uee-cta-outline,
  .uee-cta-solid {
    width: 100%;
    justify-content: center;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.uee-project-col {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.uee-project-col:nth-child(1) { animation-delay: 0.1s; }
.uee-project-col:nth-child(2) { animation-delay: 0.3s; }
.uee-project-col:nth-child(3) { animation-delay: 0.5s; }

/* ========== UEESHOP OVERRIDES ========== */
.uee-projects-showcase .container {
  padding-left: 15px;
  padding-right: 15px;
}

.uee-projects-showcase .row {
  margin-left: -15px;
  margin-right: -15px;
}

.uee-projects-showcase .col-lg-4,
.uee-projects-showcase .col-md-6 {
  padding-left: 15px;
  padding-right: 15px;
}
