/* 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;
    }

    .decision-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .decision-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Austin Pros Style Service Cards */
.austin-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.austin-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.austin-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.austin-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.austin-icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.austin-service-card h3 {
    color: #111;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Subtle underline below heading like the reference */
.austin-service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}

.austin-service-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.austin-service-link {
    color: #cc6633;
    /* Rust/Orange link color from reference */
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s ease;
}

.austin-service-link:hover {
    text-decoration-color: #cc6633;
}