/* Services Page Styles */

/* Service Hero Section */
.service-hero {
  height: 60vh;
  min-height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.wedding-hero {
  background-image: url('https://images.pexels.com/photos/169190/pexels-photo-169190.jpeg?cs=srgb&dl=pexels-asadphoto-169190.jpg&fm=jpg');
}

.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  padding: 0 var(--space-2);
  animation: fadeIn 1s ease;
}

.service-hero h2 {
  font-size: 4.8rem;
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero p {
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Service Intro */
.service-intro {
  padding: var(--space-7) 0 var(--space-5);
}

.service-intro-content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.service-intro-content p {
  font-size: 1.8rem;
  color: var(--color-neutral-700);
  margin-bottom: var(--space-2);
}

/* Service Features */
.service-features {
  padding: var(--space-5) 0;
  background-color: var(--color-neutral-100);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.feature-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-md);
}

.feature-image {
  height: 20rem;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.feature-content {
  padding: var(--space-3);
}

.feature-content h3 {
  margin-bottom: var(--space-1);
  color: var(--color-primary);
}

.feature-content p {
  color: var(--color-neutral-700);
  font-size: 1.5rem;
}

/* Wedding Themes */
.wedding-themes {
  padding: var(--space-7) 0;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.theme-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 36rem;
}

.theme-image {
  width: 100%;
  height: 100%;
}

.theme-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.theme-card:hover .theme-image img {
  transform: scale(1.05);
}

.theme-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-2);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: var(--color-white);
  transition: padding var(--transition-medium);
}

.theme-card:hover .theme-content {
  padding-bottom: var(--space-3);
}

.theme-content h3 {
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.theme-content p {
  font-size: 1.4rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Process Section */
.process {
  padding: var(--space-7) 0;
  background-color: var(--color-neutral-100);
}

.process-steps {
  max-width: 80rem;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: var(--space-4);
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 0.2rem;
  height: calc(100% - 2rem);
  background-color: var(--color-primary-light);
}

.step-number {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 2rem;
  margin-right: var(--space-3);
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h3 {
  margin-bottom: 0.8rem;
  color: var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-hero {
    height: 50vh;
    min-height: 35rem;
  }
  .service-hero h2 {
    font-size: 3.6rem;
  }
  .service-hero p {
    font-size: 1.8rem;
  }
  .service-intro-content p {
    font-size: 1.6rem;
  }
  .process-steps {
    padding: 0 0.5rem;
  }
  .process-step {
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2.2rem 1.2rem 1.6rem 1.2rem;
    margin-bottom: 2.4rem;
    position: relative;
  }
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% + 0.5rem);
    transform: translateX(-50%);
    width: 0.18rem;
    height: 2.2rem;
    background: var(--color-primary-light, #e0cfa5);
    z-index: 0;
  }
  .step-number {
    margin-bottom: 1.2rem;
    margin-right: 0;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.2rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  }
  .step-content {
    text-align: center;
    padding-top: 0.2rem;
  }
  .step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
  }
  .step-content p {
    font-size: 1.12rem;
    line-height: 1.6;
  }
  .themes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-hero h2 {
    font-size: 3rem;
  }
  .service-hero p {
    font-size: 1.6rem;
  }
  .feature-image {
    height: 18rem;
  }
  .process-step {
    padding: 1.6rem 0.6rem 1.2rem 0.6rem;
  }
  .step-number {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }
  .step-content h3 {
    font-size: 1.08rem;
  }
  .step-content p {
    font-size: 0.98rem;
  }
}


@media (max-width: 480px) {
  .service-hero h2 {
    font-size: 3rem;
  }
  
  .service-hero p {
    font-size: 1.6rem;
  }
  
  .feature-image {
    height: 18rem;
  }
}