/* Services Page Updates */

/* Hero Full Height */
.hero-full-height {
    min-height: 100vh;
    padding-top: var(--header-height);
    /* Ensure content doesn't hide behind fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Grid Updates */
.services-extended {
    padding-top: 6rem;
    padding-bottom: 6rem;
    min-height: 80vh;
    /* Visual filling */
    display: flex;
    /* Centers grid if content is short */
    flex-direction: column;
    justify-content: center;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 1.5rem;
    /* Ensure button area */
}

.service-card .card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card .card-content p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-service {
    display: block;
    text-align: center;
    margin-top: auto;
    width: 100%;
}

.btn-emergency {
    background-color: #ef4444;
    /* Distinct Red */
    border-color: #ef4444;
    color: white;
}

.btn-emergency:hover {
    background-color: transparent;
    color: #ef4444;
}

/* Decision Section */
.decision-section {
    background-color: var(--color-bg-dark);
    /* Keep it dark */
    color: white;
    padding: 8rem 0;
}

.decision-content {
    max-width: 800px;
    margin: 0 auto;
}

.decision-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.decision-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-text-gray);
}

.decision-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    border-color: white;
    background: white;
    color: var(--color-bg-dark);
}

.availability-text {
    color: var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .hero-full-height {
        padding-top: 140px;
        /* More space on mobile */
    }

    .services-extended {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}