/* ============================================
   GLASREPARATUR PAGE STYLES
   ============================================ */

/* Service Hero with Urgent Theme */
.service-hero {
  position: relative;
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-20);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 0;
}

.service-hero__grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .service-hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-hero__content {
  max-width: 560px;
}

.service-hero__label {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--color-urgent);
  color: white;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.service-hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
  color: white;
}

.service-hero__text {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
}

.service-hero__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

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

.service-hero__feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.service-hero__feature i {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Emergency CTA */
.emergency-cta {
  background: var(--color-urgent);
  color: white;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  text-align: center;
  margin-top: var(--space-8);
  box-shadow: var(--shadow-2xl);
}

.emergency-cta__phone {
  font-size: var(--text-3xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
  color: white;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.emergency-cta__phone:hover {
  opacity: 0.9;
}

.emergency-cta__phone i {
  width: 32px;
  height: 32px;
}

.emergency-cta__meta {
  font-size: var(--text-sm);
  opacity: 0.9;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  padding: var(--space-6);
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-base);
}

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

.benefit-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-3);
  display: grid;
  place-items: center;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
}

.benefit-card__icon i {
  width: 32px;
  height: 32px;
}

.benefit-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.benefit-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Services List */
.services-list {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-item__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.service-item__icon i {
  width: 24px;
  height: 24px;
}

.service-item__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.service-item__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.cta-banner * {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  color: white;
}

.cta-banner__text {
  font-size: var(--text-lg);
  opacity: 0.95;
  margin-bottom: var(--space-6);
  max-width: 600px;
  margin-inline: auto;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .service-hero__title {
    font-size: var(--text-3xl);
  }

  .service-hero__text {
    font-size: var(--text-base);
  }

  .emergency-cta__phone {
    font-size: var(--text-2xl);
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: var(--space-10);
  }

  .cta-banner__title {
    font-size: var(--text-2xl);
  }

  .cta-banner__text {
    font-size: var(--text-base);
  }
}