/* ====== Services Section (Dark Cards) ====== */
.services {
    background-color: #fdfdfd;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.services h1,
.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #555;
}

/* ====== Services Grid ====== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ====== Individual Service Card ====== */
.service-card {
    background-color: #2a2a2a;
    /* slightly lighter than before */
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-card i,
.service-card img {
    font-size: 3rem;
    color: #FFD700;
    /* gold accent */
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.service-card p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.service-card a.service-btn {
    display: inline-block;
    padding: 10px 22px;
    background-color: #FFD700;
    /* gold button */
    color: #2a2a2a;
    /* dark text for contrast */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-card a.service-btn:hover {
    background-color: #e6c200;
    /* darker gold on hover */
    transform: translateY(-2px);
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
    .services-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {

    .services h1,
    .services h2 {
        font-size: 2.4rem;
    }

    .service-card {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {

    .services h1,
    .services h2 {
        font-size: 2rem;
    }

    .service-card i,
    .service-card img {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
}

/* ====== Services Hero Section ====== */
.services-hero {
    background-color: #1a1a1a;
    /* dark background for contrast */
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFD700;
    /* gold accent for heading */
}

.services-hero .services-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ddd;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .services-hero h1 {
        font-size: 2.6rem;
    }

    .services-hero .services-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.3rem;
    }

    .services-hero .services-intro {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero .services-intro {
        font-size: 0.95rem;
    }
}