/* ═══════════════════════════════════════════════════
   MCH Enterprises — GALLERY, PROCESS, TESTIMONIALS & CTA
   File: css/gallery-process.css
════════════════════════════════════════════════════ */

/* ══════════════ GALLERY ══════════════ */
#gallery {
  background: var(--bg);
}

.gallery-grid {
  columns: 4 240px;
  gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(13, 71, 161, 0.75));
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.gallery-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  backdrop-filter: blur(4px);
}

/* ══════════════ PROCESS ══════════════ */
#process {
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 60%, #1E88E5 100%);
  position: relative;
  overflow: hidden;
}

#process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

#process .section-title        { color: #fff; }
#process .section-title span   { color: var(--accent-light); }
#process .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}
#process .section-subtitle     { color: rgba(255, 255, 255, 0.75); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.process-step {
  text-align: center;
  color: #fff;
}

.step-circle {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 28px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  color: #fff;
}

.process-step:hover .step-circle {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
  border-color: var(--accent-light);
}

.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.process-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ══════════════ TESTIMONIALS ══════════════ */
#testimonials {
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.testi-quote {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  color: var(--border);
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-stars {
  color: #FFB300;
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testi-info .name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testi-info .location {
  font-size: 12px;
  color: var(--text-muted);
}

/* ══════════════ CTA BANNER ══════════════ */
#cta-banner {
  background: linear-gradient(135deg, #FF6F00, #FFB300);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3C/svg%3E") center / 60px 60px;
  pointer-events: none;
}

#cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

#cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  position: relative;
}

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