/* ============================================================
   services.css — Services page styles
   ============================================================ */

/* ── PAGE HEADER BG ─────────────────────────────────────────── */
.page-header--services {
    background-image: linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.70)),
                      url('../images/Diker Contracting INC (17).jpg');
  }
  
  /* ── INTRO BLOCK ────────────────────────────────────────────── */
  .services-intro {
    max-width: 640px;
    margin: 0 auto 60px;
    text-align: center;
  }
  .services-intro .section-subtitle { margin: 0 auto; }
  
  /* ── SERVICES FULL GRID ─────────────────────────────────────── */
  .services-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .service-full-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
  }
  .service-full-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }
  .service-full-img {
    aspect-ratio: 16/9;
    overflow: hidden;
  }
  .service-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .service-full-card:hover .service-full-img img { transform: scale(1.05); }
  
  .service-full-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .service-full-body h3 {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
  }
  .service-full-body > p {
    color: var(--gray-mid);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
  }
  .service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--gray);
  }
  .service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
  
  /* ── PROCESS SECTION ────────────────────────────────────────── */
  .process-section { background: var(--bg-light); }
  .process-section .section-head-centered { margin-bottom: 50px; }
  
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .process-card {
    background: var(--white);
    border-radius: 10px;
    padding: 32px 20px;
    box-shadow: var(--shadow);
    text-align: center;
  }
  .process-num {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--black);
    margin: 0 auto 18px;
  }
  .process-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark);
  }
  .process-card p {
    font-size: 0.85rem;
    color: var(--gray-mid);
    line-height: 1.6;
  }
  
  /* ── BOTTOM CTA ─────────────────────────────────────────────── */
  .services-cta-section {
    background: var(--black);
    padding: 80px 0;
    text-align: center;
  }
  .services-cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
  }
  .services-cta-section h2 span { color: var(--gold); }
  .services-cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
  }
  .services-cta-section .btn-gold { font-size: 1rem; padding: 15px 36px; }
  
  /* ── RESPONSIVE ─────────────────────────────────────────────── */
  @media (max-width: 900px) {
    .services-full-grid { grid-template-columns: 1fr; }
    .process-grid        { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
  }