/* Page background image */
body {
    background: url('/images/petgrooming-backdrop.png') no-repeat center center fixed;
    background-size: cover;
}

.text-white {
    color: #fff;
}

.hero-text-shadow {
    text-shadow: 0 4px 14px rgba(0,0,0,0.75);
}

/* ===== Glass panels ===== */
.pet-opaque-section {
    position: relative;
    max-width: 1250px;
    margin: 0 auto 4.5rem auto; /* space between panels */
    padding: 0;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    /* NOTE: do NOT use overflow:hidden; */
}

/* inner padding */
.pet-section-card {
    padding: 2rem 2.5rem;
}

/* lighten the middle panel so the background shows through */
.pet-features-section {
    background: rgba(0, 0, 0, 0.30);
}

/* right-side white card */
.pet-hero-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #111827;
}

/* pills */
.pet-pill {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.6rem 0.9rem;
    font-weight: 600;
}

/* checklist */
.pet-checklist {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .pet-checklist li {
        position: relative;
        padding-left: 1.6rem;
        margin-bottom: 0.65rem;
    }

        .pet-checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0.05rem;
            font-weight: 800;
            color: #2563eb;
        }

/* feature cards (slightly transparent to show background) */
.pet-info-card {
    background: rgba(255, 255, 255, 0.84);
    border-radius: 1.25rem;
    padding: 1.35rem;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    border: 1px solid rgba(17, 24, 39, 0.05);
    color: #111827;
    height: auto;
}

/* ghost secondary button */
.btn-ghost-light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(2px);
}

    .btn-ghost-light:hover {
        background: rgba(255, 255, 255, 0.22);
        color: #ffffff;
        text-decoration: none;
    }

/* responsive */
@media (max-width: 991px) {
    .pet-opaque-section {
        margin: 0 auto 3rem auto;
        border-radius: 14px;
    }

    .pet-section-card {
        padding: 1.5rem 1.5rem;
    }
}
