/* Services Page Styles */

.services-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 100px;
    min-height: 60vh;
}

/* Intro Section */
.services-intro {
    margin-bottom: 100px;
    max-width: 800px;
    animation: fadeIn 0.8s ease-out;
}

.services-heading {
    font-family: 'Gotham', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 3rem; /* Desktop */
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.services-subheading {
    font-family: 'Gotham', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    gap: 40px;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-title {
    font-family: 'Gotham', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1; /* Pushes 'includes' to bottom if desired, or keeps layout uniform */
}

.service-includes {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 700px) {
    .services-main {
        padding: 40px 20px 60px;
    }

    .services-intro {
        margin-bottom: 60px;
    }

    .services-heading {
        font-size: 2.2rem;
    }

    .services-subheading {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Stacked on mobile */
        gap: 24px;
    }

    .service-card {
        padding: 30px;
    }
}


