/* Service Pages - Modern Design */

.service-page {
  min-height: calc(100vh - 230px);
  padding: 2rem 1rem;
  background: var(--color-white);
}

.service-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header Section */
.service-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-blue) 100%);
  border-radius: 20px;
  color: var(--color-white);
  box-shadow: 0 8px 30px rgba(23, 46, 69, 0.15);
}

.service-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.service-header__icon svg {
  color: var(--color-white);
}

.service-header__icon--success {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.25);
}

.service-header--success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-header__title {
  font-family: 'Gready', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: var(--color-white);
}

.service-header__subtitle {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Container */
.service-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(23, 46, 69, 0.08);
  border: 1px solid #e8eaed;
  margin-bottom: 2rem;
}

.service-card--highlight {
  background: linear-gradient(135deg, #fafbfc 0%, #f4f6f8 100%);
  border-color: var(--color-pink);
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-blue);
  margin: 0 0 1rem 0;
}

.service-card__text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.service-card__text--small {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.service-card__link {
  color: var(--color-pink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card__link:hover {
  color: var(--color-blue);
  text-decoration: underline;
}

/* Section Title */
.service-section__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-blue);
  text-align: center;
  margin: 0 0 2rem 0;
}

/* Features Grid */
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: #fafbfc;
  border-radius: 16px;
  border: 1px solid #e8eaed;
  transition: all 0.3s ease;
}

.service-feature:hover {
  border-color: var(--color-pink);
  box-shadow: 0 4px 12px rgba(206, 55, 88, 0.1);
  transform: translateY(-2px);
}

.service-feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-pink) 0%, #e85574 100%);
  border-radius: 12px;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.service-feature__icon svg {
  width: 24px;
  height: 24px;
}

.service-feature__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-blue);
  margin: 0 0 0.75rem 0;
}

.service-feature__description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Steps */
.service-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fafbfc;
  border-radius: 16px;
  border: 1px solid #e8eaed;
  transition: all 0.3s ease;
}

.service-step:hover {
  border-color: var(--color-pink);
  box-shadow: 0 4px 12px rgba(206, 55, 88, 0.1);
}

.service-step__number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a3a5a 100%);
  color: var(--color-white);
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(23, 46, 69, 0.2);
}

.service-step__content {
  flex: 1;
}

.service-step__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-blue);
  margin: 0 0 0.5rem 0;
}

.service-step__description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Gift Card Actions */
.gift-card-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .gift-card-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Checkout Summary */
.checkout-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #fafbfc;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.checkout-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8eaed;
}

.checkout-summary__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checkout-summary__item--total {
  padding-top: 1rem;
  border-top: 2px solid var(--color-blue);
  margin-top: 0.5rem;
}

.checkout-summary__label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.checkout-summary__value {
  font-size: 1rem;
  color: var(--color-blue);
  font-weight: 600;
}

.checkout-summary__price {
  font-size: 1.5rem;
  color: var(--color-blue);
  font-weight: 700;
}

/* Success Message */
.success-message {
  text-align: center;
}

.success-message__text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.success-message__text:last-child {
  margin-bottom: 0;
}

/* CTA Section */
.service-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Buttons */
.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a3a5a 100%);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(23, 46, 69, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  min-width: 250px;
}

.service-button svg {
  transition: transform 0.3s ease;
}

.service-button:hover {
  background: linear-gradient(135deg, var(--color-pink) 0%, #e85574 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(206, 55, 88, 0.4);
  color: var(--color-white);
}

.service-button:hover svg {
  transform: translateX(4px);
}

.service-button:active {
  transform: translateY(0) scale(0.98);
}

.service-button--primary {
  background: linear-gradient(135deg, var(--color-pink) 0%, #e85574 100%);
  box-shadow: 0 4px 16px rgba(206, 55, 88, 0.3);
}

.service-button--primary:hover {
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a3a5a 100%);
  box-shadow: 0 8px 24px rgba(23, 46, 69, 0.4);
}

.service-button--secondary {
  background: var(--color-white);
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
  box-shadow: 0 4px 16px rgba(23, 46, 69, 0.1);
}

.service-button--secondary:hover {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
  box-shadow: 0 8px 24px rgba(23, 46, 69, 0.3);
}

.service-button__price {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-page {
    padding: 1rem 0.5rem;
  }

  .service-header {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    border-radius: 16px;
  }

  .service-header__title {
    font-size: 1.75rem;
  }

  .service-header__subtitle {
    font-size: 1rem;
  }

  .service-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .service-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-step {
    padding: 1.25rem;
  }

  .service-button {
    width: 100%;
    min-width: auto;
  }

  .gift-card-actions {
    flex-direction: column;
  }

  .gift-card-actions .service-button {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .service-page {
    padding: 3rem 2rem;
  }
}
