.services {
    background: #1d1c1c;
    padding: 100px 8%;
}

.services-content h1 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.services-content h1 span {
    color: #f4a000;
    display: block;
}

.services-label {
    color: #f4a000;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.services-content p {
    color: #999898;
    line-height: 1.7;
    margin-bottom: 25px;
    display: block;
    font-size: 18px;
}

.services-top {
    text-align: center;
}

.services-section {
    background: #111;
    color: #fff;
    padding: 100px 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .section-eyebrow {
    color: #f5b400;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
  }
  
  .section-title {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
  }
  
  .section-title span {
    color: #f5b400;
  }
  
  .section-description {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #aaa;
    line-height: 1.6;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  
  .service-card {
    background: #1a1a1a;
    border-radius: 14px;
    padding: 32px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px #f5a300;
  }
  
  .service-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: #f5b400;
  }
  
  .service-card h3 {
    color: white;
    font-family: 'impact';
    font-size: 25px;
    margin-bottom: 10px;
  }
  
  .service-card p {
    color: #aaa;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  
  .service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .service-card ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: #ddd;
    font-size: 14px;
  }
  
  .service-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f5b400;
    font-size: 20px;
    line-height: 1;
  }
  
/* button  */

.services-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
  }
  
  .cta-button {
    background: #f5b400;
    color: #111;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background: #ffc72c;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(245, 180, 0, 0.35);
  }
    /* RESPONSIVE */
/* Small devices: stack cards vertically */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr; /* one column */
    gap: 20px; /* optional: reduce gap for mobile */
  }

  .hero-content {
    padding: 0 30px;
    text-align: center;
  }
  .hero h1 {
      font-size: 28px;
      line-height: 1.6;   /* adds vertical breathing space */
      letter-spacing: 0.5px;
  }
  .hero p {
      font-size: 14px;
      line-height: 2;     /* easier to read on mobile */
  }

  .services-cta {
    margin-top: 40px;
  }
}
