/* ===== SERVICES PAGE ===== */
.page-hero {
  min-height: 320px; padding-top: 72px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 55%, #415a77 100%);
  display: flex; align-items: center; position: relative;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 3rem 0; }
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white);
  margin-bottom: 0.75rem; font-weight: 600;
}
.page-hero-content h1 em { color: var(--gold); font-style: normal; }
.page-hero-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 500px; }

/* Services grid */
.services-overview { background: var(--light); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.service-card {
  background: var(--white); border-radius: 16px;
  padding: 2rem; border: 1px solid var(--border);
  transition: var(--transition); display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  background: rgba(230,57,70,0.08); color: var(--accent);
}
.service-card h3 {
  font-family: 'DM Sans', sans-serif; font-size: 1.1rem;
  font-weight: 700; margin-bottom: 0.6rem;
}
.service-card > p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.2rem; }
.service-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; flex: 1; }
.service-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; color: var(--gray);
}
.service-list li i { color: #22c55e; font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }
.service-btn { text-align: center; justify-content: center; margin-top: auto; }

/* Gallery */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem; margin-top: 3rem;
}
.gallery-item {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--light-gray);
  transition: var(--transition);
}
.gallery-item.large {
  grid-column: span 2; aspect-ratio: 16/9;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  color: rgba(26,26,46,0.2); font-size: 2.5rem; text-align: center; padding: 1rem;
  border: 2px dashed rgba(26,26,46,0.1); border-radius: 12px;
}
.gallery-placeholder p { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600; }
.gallery-placeholder small { font-size: 0.72rem; opacity: 0.7; }
.gallery-note {
  margin-top: 1.5rem; font-size: 0.82rem; color: var(--gray);
  background: var(--light); padding: 1rem 1.5rem; border-radius: 10px;
  border-left: 3px solid var(--gold); display: flex; align-items: flex-start; gap: 0.5rem;
}
.gallery-note i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.gallery-note code { background: rgba(0,0,0,0.06); padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.78rem; }

/* Process */
.process-section { background: var(--light); }
.process-steps {
  display: flex; align-items: center; gap: 0;
  margin-top: 3.5rem; flex-wrap: wrap;
}
.process-step {
  flex: 1; min-width: 180px; background: var(--white);
  border-radius: 16px; padding: 2rem 1.5rem;
  border: 1px solid var(--border); text-align: center;
  transition: var(--transition);
}
.process-step:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--accent);
  opacity: 0.25; line-height: 1; margin-bottom: 0.75rem;
}
.step-content h3 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }
.process-arrow {
  color: var(--gray); font-size: 1.2rem; padding: 0 0.75rem; flex-shrink: 0;
}

/* Warranty table */
.warranty-section { background: var(--white); }
.warranty-table-wrap {
  overflow-x: auto; margin-top: 3rem;
  border-radius: 16px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.warranty-table { width: 100%; border-collapse: collapse; }
.warranty-table th {
  background: var(--primary); color: rgba(255,255,255,0.85);
  padding: 1rem 1.25rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
  text-align: left;
}
.warranty-table td {
  padding: 0.9rem 1.25rem; font-size: 0.85rem;
  border-bottom: 1px solid var(--border); color: var(--gray);
}
.warranty-table tr:last-child td { border-bottom: none; }
.warranty-table tr:hover td { background: var(--light); }
.warranty-table td.highlight { color: #22c55e; font-weight: 700; }
.warranty-table td strong { color: var(--primary); font-weight: 600; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--accent) 0%, #b0202e 100%); padding: 4rem 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 0.5rem; }
.cta-content p { color: rgba(255,255,255,0.8); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-actions .btn-secondary { border-color: rgba(255,255,255,0.5); color: var(--white); }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  .cta-inner { flex-direction: column; text-align: center; }
}
