/* ==========================================================================
   PAGE-SPECIFIC STYLES (PROJECTS & INSTALLATIONS MATCHING REFERENCE DESIGN)
   ========================================================================== */

.projects-hero-light {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  padding: 3.5rem 0 3rem 0;
}

.projects-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .projects-hero-grid { grid-template-columns: 1fr; }
}

.projects-headline-light {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 900;
  color: #0F294A;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.projects-subtext-light {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-visual-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 41, 74, 0.06);
  position: relative;
}

.hero-shop-popover-box {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.popover-shop-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F294A;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all var(--transition-fast);
}

.popover-shop-chip:hover {
  border-color: #0F294A;
  transform: translateY(-2px);
}

/* Category Filter Bar */
.projects-filter-bar {
  padding: 1.5rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 3rem;
}

.projects-filter-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.project-filter-chip {
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #334155;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.project-filter-chip:hover,
.project-filter-chip.active {
  background: #0F294A !important;
  color: #FFFFFF !important;
  border-color: #0F294A !important;
  box-shadow: 0 4px 12px rgba(15, 41, 74, 0.2);
}

/* Featured Project Section */
.featured-project-section {
  padding: 1rem 0 4rem 0;
}

.featured-project-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 41, 74, 0.05);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  padding: 2rem;
}

@media (max-width: 992px) {
  .featured-project-card { grid-template-columns: 1fr; }
}

.featured-project-img-box {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.featured-project-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.06));
}

.featured-project-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-badge-tag {
  display: inline-block;
  background: #0F294A;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.featured-project-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #0F294A;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.featured-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.featured-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
}

.featured-info-item strong {
  color: #0F294A;
}

.featured-stats-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid #E2E8F0;
}

.stat-bubble-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F294A;
}

.stat-bubble-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Recent Projects Grid Section */
.recent-projects-section {
  padding: 4rem 0;
  background: #FFFFFF;
}

.recent-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 992px) {
  .recent-projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .recent-projects-grid { grid-template-columns: 1fr; }
}

.project-item-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 41, 74, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.project-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(15, 41, 74, 0.08);
  border-color: #0F294A;
}

.project-item-thumb {
  height: 220px;
  background: #F8FAFC;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-bottom: 1px solid #E2E8F0;
}

.project-item-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.06));
}

.project-item-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0F294A;
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 5;
}

.project-item-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-item-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0F294A;
  margin-bottom: 0.4rem;
}

.project-item-desc {
  font-size: 0.85rem;
  color: #64748B;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.project-item-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #475569;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.btn-project-view {
  background: #F1F5F9;
  color: #0F294A;
  border: 1px solid #CBD5E1;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  transition: all var(--transition-fast);
}

.btn-project-view:hover {
  background: #0F294A;
  color: #FFFFFF;
  border-color: #0F294A;
}

/* Our Project Process */
.project-process-section {
  padding: 4.5rem 0;
  background: #F8FAFC;
}

.process-steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

@media (max-width: 992px) {
  .process-steps-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .process-steps-row { grid-template-columns: 1fr; }
}

.process-step-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(15, 41, 74, 0.03);
}

.process-icon-bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0F294A;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  position: relative;
}

.process-icon-svg {
  font-size: 1.25rem;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: -2px;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F294A;
  margin-bottom: 0.4rem;
}

.process-step-desc {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.4;
}

/* Project Gallery Slider */
.project-gallery-section {
  padding: 4.5rem 0;
  background: #FFFFFF;
}

.project-gallery-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .project-gallery-row { grid-template-columns: repeat(3, 1fr); }
}

.project-gallery-thumb {
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  transition: all var(--transition-fast);
}

.project-gallery-thumb:hover {
  transform: scale(1.03);
  border-color: #0F294A;
  box-shadow: 0 8px 20px rgba(15, 41, 74, 0.12);
}

.project-gallery-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.slider-pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dot-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
}

.dot-item.active {
  background: #0F294A;
  width: 10px;
  height: 10px;
}

/* CTA Banner (Have a Project in Mind?) */
.project-cta-banner {
  background: #0F294A;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  box-shadow: 0 15px 35px rgba(15, 41, 74, 0.2);
}

@media (max-width: 992px) {
  .project-cta-banner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.project-cta-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.project-cta-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.project-cta-sub {
  font-size: 0.95rem;
  opacity: 0.85;
}

.project-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
