﻿/* ── Services Grid (Akhawen Style) ── */
.services-section { background: var(--cream); }

.services-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pricing-icon,
.extra-svc-icon {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", var(--font), sans-serif;
  line-height: 1;
}

.svc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  min-height: 360px;
  display: block;
  box-shadow: var(--shadow);
  transition: 0.4s var(--ease);
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.svc-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(160deg, #faf8f4 0%, #f0ebe3 100%);
}

.svc-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
  opacity: 0.92;
}

.svc-visual-inner {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--maroon), var(--maroon-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.25);
  position: relative;
}

.svc-visual-inner::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(var(--gold-rgb), 0.35);
  animation: svc-spin 20s linear infinite;
}

.svc-visual-inner.g2 {
  border-radius: var(--radius);
  aspect-ratio: auto;
  height: 200px;
  max-width: 240px;
  background: linear-gradient(145deg, #f5edd8, #e8dcc0);
  font-size: 4rem;
}

.svc-visual-inner.g2::before { border-radius: var(--radius); }

@keyframes svc-spin {
  to { transform: rotate(360deg); }
}

.svc-pill {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--maroon);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 2;
  transition: 0.3s;
}

.svc-card:hover .svc-pill {
  background: var(--maroon);
  color: white;
}

.svc-pill-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.svc-card:hover .svc-pill-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* Legacy service-card (services page) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px 70px;
  transition: 0.4s var(--ease);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.service-visual {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin-bottom: 24px;
  box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.2);
  position: relative;
}

.service-visual::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(var(--gold-rgb), 0.4);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--maroon);
  text-align: center;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.7;
}

.service-pill {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--maroon);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  white-space: nowrap;
}

/* ── Pricing (services page) ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: 0.3s;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--maroon);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--maroon);
  background: linear-gradient(180deg, rgba(107,26,42,0.03), white);
}

.pricing-card.featured::before {
  content: 'الأكثر طلباً';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--maroon);
  color: white;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.pricing-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--maroon);
  margin: 20px 0;
}

.pricing-price small { font-size: 0.95rem; color: var(--muted); font-family: var(--font); }

.pricing-list {
  text-align: start;
  margin: 24px 0;
}

.pricing-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-list li::before {
  content: '✓';
  color: var(--maroon);
  font-weight: 700;
}

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.process-item .step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--maroon);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 auto 16px;
}

.process-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--maroon);
  margin-bottom: 8px;
}

.process-item p { font-size: 0.85rem; color: var(--muted); }

/* ── Extra Services Grid ── */
.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.extra-svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: 0.35s var(--ease);
}

.extra-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.extra-svc-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.extra-svc-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--maroon);
  margin-bottom: 8px;
}

.extra-svc-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: 0.3s;
}

.faq-card:hover {
  border-color: var(--maroon);
  box-shadow: var(--shadow);
}

.faq-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--maroon);
  margin-bottom: 10px;
}

.faq-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── CTA Banner ── */
.cta-section {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: 'WP';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: white;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 1.05rem;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
