/* ==========================================================================
   Luxora Blinds - Custom Solutions Page Styles
   ========================================================================== */

/* -------------------------------------------------------------------------
   Custom Hero
   ------------------------------------------------------------------------- */

.custom-hero {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-4xl);
  background-color: var(--color-ivory);
  text-align: center;
}

.custom-hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
}

.custom-hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-grey);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  line-height: var(--lh-relaxed);
}

/* -------------------------------------------------------------------------
   Process Section
   ------------------------------------------------------------------------- */

.process-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  background-color: var(--color-white);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-teal) 100%);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.process-step__number {
  width: 80px;
  height: 80px;
  background-color: var(--color-white);
  border: 3px solid var(--color-gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading-alt);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-normal);
}

.process-step:hover .process-step__number {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.1);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.process-step__text {
  font-size: var(--fs-small);
  color: var(--color-grey);
  max-width: 180px;
}

/* -------------------------------------------------------------------------
   Solutions Grid
   ------------------------------------------------------------------------- */

.solutions-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  background-color: var(--color-ivory);
}

.solution-card {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  margin-bottom: var(--space-4xl);
}

.solution-card:last-child {
  margin-bottom: 0;
}

.solution-card:nth-child(even) {
  flex-direction: row-reverse;
}

.solution-card__image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.solution-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.solution-card__content {
  flex: 1;
}

.solution-card__label {
  font-family: var(--font-ui);
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  margin-bottom: var(--space-sm);
}

.solution-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
}

.solution-card__text {
  font-size: var(--fs-body);
  color: var(--color-grey);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.solution-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
}

.solution-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-body);
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.solution-card__features li i {
  color: var(--color-teal);
  font-size: 18px;
}

/* -------------------------------------------------------------------------
   Featured Projects
   ------------------------------------------------------------------------- */

.projects-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  background-color: var(--color-white);
}

.project-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.project-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.project-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.project-card:hover .project-card__image img {
  transform: scale(1.08);
}

.project-card__body {
  padding: var(--space-lg);
}

.project-card__type {
  font-family: var(--font-ui);
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--space-xs);
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.project-card__location {
  font-size: var(--fs-small);
  color: var(--color-grey);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.project-card__location i {
  font-size: 14px;
}

/* -------------------------------------------------------------------------
   CTA Section
   ------------------------------------------------------------------------- */

.custom-cta {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  background: linear-gradient(135deg, var(--color-teal) 0%, #163b38 100%);
  text-align: center;
}

.custom-cta__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.custom-cta__text {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.custom-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* -------------------------------------------------------------------------
   Responsive Styles
   ------------------------------------------------------------------------- */

@media (max-width: 991px) {
  .process-timeline {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .process-timeline::before {
    top: 40px;
    left: 40px;
    right: auto;
    width: 2px;
    height: calc(100% - 80px);
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: var(--space-lg);
  }

  .process-step__number {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .process-step__text {
    max-width: none;
  }

  .solution-card {
    flex-direction: column !important;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .custom-hero {
    padding-top: var(--space-4xl);
  }

  .custom-hero__title {
    font-size: var(--fs-h1);
  }

  .process-step__number {
    width: 60px;
    height: 60px;
    font-size: var(--fs-h4);
  }

  .solution-card__title {
    font-size: var(--fs-h3);
  }

  .custom-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .custom-cta__actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .custom-hero__title {
    font-size: var(--fs-h2);
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step__number {
    width: 50px;
    height: 50px;
    font-size: var(--fs-body);
  }
}
