/* Services Hero */
.services-hero {
  background: linear-gradient(180deg, #1a1a1a, #201E1E);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 5% 150px;
  margin-top: 70px;
}

.hero-content h1 {
    color: #FFBC00;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-content p {
    color: #d0d0d0;
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.gold-line {
    width: 120px;
    height: 4px;
    background: #FFBC00;
    margin: 2rem auto 0;
    border-radius: 2px;
}

/* Services Grid */
.services-section {
    padding: 100px 5%;
    background: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.service-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.35s ease;
    border: 1px solid rgba(255,188,0,0.08);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: #FFBC00;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFBC00;
    line-height: 1;
}

.service-card h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Trebuchet MS', sans-serif;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    color: #666;
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.6rem;
}

.service-card ul li::before {
    content: "•";
    color: #FFBC00;
    position: absolute;
    left: 0;
    font-size: 1.4rem;
    line-height: 1;
}

/* Highlight card for "And More" */
.service-card.highlight {
    background: linear-gradient(135deg, #1a1a1a 0%, #201E1E 100%);
    color: white;
}

.service-card.highlight h3,
.service-card.highlight p {
    color: white;
}

.service-card.highlight .service-icon {
    color: #FFBC00;
}

/* CTA */
.services-cta {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 100px 5%;
}

.cta-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #FFBC00;
}

.cta-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #ccc;
}

.btn-primary,
.btn-contact {
    display: inline-block;
    background: #FFBC00;
    color: #1a1a1a;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,188,0,0.35);
}

/* Mobile adjustments */
@media (max-width: 900px) {
    .services-hero {
        min-height: 50vh;
        padding: 100px 5% 60px;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .services-section {
        padding: 60px 5%;
    }
}