/* SERVICE PAGE SPECIFIC STYLES */

/* Hero Section */
.services-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(212, 175, 95, 0.1), transparent);
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 95, 0.15), transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.services-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-content h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin-top: 16px;
  margin-bottom: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-hero-content p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* Service Section */
.service-section {
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Service Card */
.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 95, 0.05), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 20px 60px rgba(212, 175, 95, 0.2);
  transform: translateY(-8px);
}

@media (min-width: 1024px) {
  .service-card {
    grid-template-columns: 1fr 1fr;
  }
}

/* Service Card Left */
.service-card-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-card);
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 30px rgba(212, 175, 95, 0.3);
  animation: pulseGlow 3s ease-in-out infinite;
}

.icon-xl {
  width: 36px;
  height: 36px;
}

.icon-xs {
  width: 14px;
  height: 14px;
}

.service-content h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--gold-bright);
}

.service-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Service Includes */
.service-includes {
  margin-top: 20px;
}

.includes-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dim);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg);
}

/* Service Price */
.service-price-section {
  margin-top: 28px;
  padding: 20px;
  background: rgba(212, 175, 95, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.price-label {
  font-size: 12px;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--gold-bright);
  font-weight: 600;
}

.price-unit {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
}

/* Service Benefits */
.service-benefits {
  margin-top: 24px;
}

.benefit-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dim);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* Service Button */
.service-btn {
  margin-top: 32px;
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
}

/* Service Card Right - Image Comparison */
.service-card-right {
  position: relative;
}

.image-comparison {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.comparison-image {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.comparison-image:hover {
  transform: scale(1.05);
  border-color: var(--border-strong);
  box-shadow: 0 10px 40px rgba(212, 175, 95, 0.3);
}

.comparison-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.image-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 22, 18, 0.9);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.divider-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-card);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 95, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

/* Experience Section */
.experience-section {
  padding: 80px 24px 120px;
}

.experience-card {
  position: relative;
  padding: 80px 60px;
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 22, 18, 0.95), rgba(26, 22, 18, 0.7));
  z-index: 1;
}

.experience-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.experience-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.experience-content h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.experience-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.experience-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(212, 175, 95, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 95, 0.6);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal Animation Override */
.service-card[data-reveal] {
  animation: fadeInUp 0.8s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-hero {
    padding: 100px 0 60px;
  }

  .service-card {
    padding: 32px 24px;
    gap: 32px;
  }

  .service-content h2 {
    font-size: 28px;
  }

  .service-price {
    font-size: 36px;
  }

  .includes-list,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .image-comparison {
    flex-direction: column;
  }

  .comparison-divider {
    transform: rotate(90deg);
  }

  .comparison-image img {
    height: 220px;
  }

  .experience-card {
    padding: 60px 32px;
  }

  .experience-buttons {
    flex-direction: column;
  }

  .experience-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 80px 0 60px;
  }

  .service-section {
    padding: 60px 16px;
    gap: 48px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .icon-xl {
    width: 28px;
    height: 28px;
  }

  .service-content h2 {
    font-size: 24px;
  }

  .service-desc {
    font-size: 14px;
  }

  .service-price {
    font-size: 32px;
  }

  .comparison-image img {
    height: 180px;
  }

  .experience-card {
    padding: 40px 24px;
  }

  .experience-content h2 {
    font-size: 28px;
  }
}

/* Hover Effects for Interactive Elements */
.includes-list li,
.benefit-list li {
  transition: all 0.3s ease;
  padding: 4px;
  border-radius: 6px;
}

.includes-list li:hover,
.benefit-list li:hover {
  background: rgba(212, 175, 95, 0.08);
  transform: translateX(4px);
}

/* Loading Animation for Images */
.comparison-image img {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
