/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-zvr7nsce75] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-zvr7nsce75] {
    flex: 1;
}

.top-header[b-zvr7nsce75] {
    background-image: linear-gradient(90deg, rgb(5, 39, 103) 0%, #3a0647 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#blazor-error-ui[b-zvr7nsce75] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-zvr7nsce75] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar[b-nb4kc56u4t] {
    padding: 0;
}

.navbar-container[b-nb4kc56u4t] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
}

.navbar-brand[b-nb4kc56u4t] {
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.navbar-brand:hover[b-nb4kc56u4t] {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile toggle button */
.navbar-toggler[b-nb4kc56u4t] {
    display: none;
}

.navbar-toggler-label[b-nb4kc56u4t] {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: transparent;
}

.toggler-icon[b-nb4kc56u4t] {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    position: relative;
}

.toggler-icon[b-nb4kc56u4t]::before,
.toggler-icon[b-nb4kc56u4t]::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: white;
    left: 0;
}

.toggler-icon[b-nb4kc56u4t]::before {
    top: -7px;
}

.toggler-icon[b-nb4kc56u4t]::after {
    top: 7px;
}

/* Navigation menu */
.nav-menu[b-nb4kc56u4t] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 2rem;
}

.nav-links[b-nb4kc56u4t] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-auth[b-nb4kc56u4t] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link[b-nb4kc56u4t],
[b-nb4kc56u4t] a.nav-link {
    color: white !important;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-link:hover[b-nb4kc56u4t],
.nav-link.active[b-nb4kc56u4t],
[b-nb4kc56u4t] a.nav-link:hover,
[b-nb4kc56u4t] a.nav-link.active {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.15);
}

.user-greeting[b-nb4kc56u4t] {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem;
    white-space: nowrap;
}

.btn-link[b-nb4kc56u4t] {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.btn-link:hover[b-nb4kc56u4t] {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

/* Auth button styles */
.btn-outline[b-nb4kc56u4t],
[b-nb4kc56u4t] a.btn-outline {
    border: 1px solid white !important;
    background-color: transparent !important;
    color: white !important;
    border-radius: 4px;
}

.btn-outline:hover[b-nb4kc56u4t],
[b-nb4kc56u4t] a.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.btn-solid[b-nb4kc56u4t],
[b-nb4kc56u4t] a.btn-solid {
    background-color: white !important;
    color: #3a0647 !important;
    border: 1px solid white !important;
    border-radius: 4px;
    font-weight: 500;
}

.btn-solid:hover[b-nb4kc56u4t],
[b-nb4kc56u4t] a.btn-solid:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #1a202c !important;
}

/* Mobile styles */
@media (max-width: 768px) {
    .navbar-toggler-label[b-nb4kc56u4t] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu[b-nb4kc56u4t] {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-toggler:checked ~ .nav-menu[b-nb4kc56u4t] {
        display: flex;
    }

    .nav-links[b-nb4kc56u4t],
    .nav-auth[b-nb4kc56u4t] {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-link[b-nb4kc56u4t] {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 0;
    }

    .nav-auth[b-nb4kc56u4t] {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .user-greeting[b-nb4kc56u4t] {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .btn-link[b-nb4kc56u4t] {
        width: 100%;
        padding: 0.75rem 1rem;
        text-align: left;
        border-radius: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.landing-page[b-n18jqkupvx] {
    min-height: 100vh;
    min-width: 100vw;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section[b-n18jqkupvx] {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 30%, #4c1d95 70%, #581c87 100%);
    width: 100vw;
    min-height: 100vh;
    margin-left: calc(-50vw + 50%);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-container[b-n18jqkupvx] {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content[b-n18jqkupvx] {
    z-index: 1;
}

.hero-title[b-n18jqkupvx] {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-highlight[b-n18jqkupvx] {
    color: #60a5fa;
}

.hero-description[b-n18jqkupvx] {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-buttons[b-n18jqkupvx] {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary[b-n18jqkupvx] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background-color: white;
    color: #2563eb;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-hero-primary:hover[b-n18jqkupvx] {
    background-color: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary[b-n18jqkupvx] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover[b-n18jqkupvx] {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-icon[b-n18jqkupvx] {
    font-size: 1.1rem;
}

.hero-social-proof[b-n18jqkupvx] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-stats[b-n18jqkupvx] {
    display: flex;
    gap: 3rem;
}

.hero-stat[b-n18jqkupvx] {
    display: flex;
    flex-direction: column;
}

.hero-stat-number[b-n18jqkupvx] {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.hero-stat-label[b-n18jqkupvx] {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Cards */
.hero-cards[b-n18jqkupvx] {
    position: relative;
    height: 400px;
    z-index: 1;
}

.pet-card[b-n18jqkupvx] {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 250px;
}

.pet-card.lost-card[b-n18jqkupvx] {
    top: 20px;
    left: 0;
    animation: floatCard-b-n18jqkupvx 3s ease-in-out infinite;
}

.pet-card.found-card[b-n18jqkupvx] {
    top: 160px;
    left: 20px;
    animation: floatCard-b-n18jqkupvx 3s ease-in-out infinite 0.5s;
}

.pet-emoji[b-n18jqkupvx] {
    font-size: 2rem;
}

.pet-card-content[b-n18jqkupvx] {
    display: flex;
    flex-direction: column;
}

.pet-card-content strong[b-n18jqkupvx] {
    color: white;
    font-size: 1rem;
}

.pet-card-content span[b-n18jqkupvx] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.status-card[b-n18jqkupvx] {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    min-width: 160px;
}

.status-card.match-card[b-n18jqkupvx] {
    top: 50px;
    right: 0;
    animation: floatCard-b-n18jqkupvx 3s ease-in-out infinite 0.25s;
}

.status-card.reunited-card[b-n18jqkupvx] {
    top: 200px;
    right: 20px;
    animation: floatCard-b-n18jqkupvx 3s ease-in-out infinite 0.75s;
}

.status-emoji[b-n18jqkupvx] {
    font-size: 1.5rem;
}

.status-card-content[b-n18jqkupvx] {
    display: flex;
    flex-direction: column;
}

.status-card-content strong[b-n18jqkupvx] {
    color: white;
    font-size: 0.9rem;
}

.status-card-content span[b-n18jqkupvx] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

@keyframes floatCard-b-n18jqkupvx {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* How It Works Section */
.how-it-works-section[b-n18jqkupvx] {
    width: 100vw;
    min-height: 100vh;
    margin-left: calc(-50vw + 50%);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    box-sizing: border-box;
}

.how-it-works-container[b-n18jqkupvx] {
    max-width: 1400px;
    width: 100%;
    text-align: center;
    padding: 4rem 0;
}

.how-it-works-title[b-n18jqkupvx] {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.how-it-works-subtitle[b-n18jqkupvx] {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.how-it-works-cards[b-n18jqkupvx] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.how-it-works-card[b-n18jqkupvx] {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.how-it-works-card:hover[b-n18jqkupvx] {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.card-icon[b-n18jqkupvx] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon[b-n18jqkupvx]  .rzi {
    font-size: 1.75rem !important;
}

.card-icon-blue[b-n18jqkupvx] {
    background: #eff6ff;
}

.card-icon-blue[b-n18jqkupvx]  .rzi {
    color: #3b82f6 !important;
}

.card-icon-green[b-n18jqkupvx] {
    background: #f0fdf4;
}

.card-icon-green[b-n18jqkupvx]  .rzi {
    color: #22c55e !important;
}

.card-icon-purple[b-n18jqkupvx] {
    background: #faf5ff;
}

.card-icon-purple[b-n18jqkupvx]  .rzi {
    color: #8b5cf6 !important;
}

.card-icon-orange[b-n18jqkupvx] {
    background: #fff7ed;
}

.card-icon-orange[b-n18jqkupvx]  .rzi {
    color: #f97316 !important;
}

.card-title[b-n18jqkupvx] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.card-description[b-n18jqkupvx] {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-badge[b-n18jqkupvx] {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid;
}

.card-badge-blue[b-n18jqkupvx] {
    color: #3b82f6;
    border-color: #bfdbfe;
    background: #eff6ff;
}

.card-badge-green[b-n18jqkupvx] {
    color: #22c55e;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.card-badge-purple[b-n18jqkupvx] {
    color: #8b5cf6;
    border-color: #ddd6fe;
    background: #faf5ff;
}

.card-badge-orange[b-n18jqkupvx] {
    color: #f97316;
    border-color: #fed7aa;
    background: #fff7ed;
}

/* Three Simple Steps Section */
.simple-steps-section[b-n18jqkupvx] {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 5rem 2rem;
    background: #f8fafc;
    box-sizing: border-box;
}

.simple-steps-container[b-n18jqkupvx] {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.simple-steps-title[b-n18jqkupvx] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.simple-steps-subtitle[b-n18jqkupvx] {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.simple-steps-cards[b-n18jqkupvx] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.simple-step-card[b-n18jqkupvx] {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simple-step-card:hover[b-n18jqkupvx] {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.step-emoji[b-n18jqkupvx] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-number[b-n18jqkupvx] {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-connector[b-n18jqkupvx] {
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 1.5rem;
    height: 2px;
    background: #3b82f6;
    transform: translateY(-50%);
}

.simple-step-card:last-child .step-connector[b-n18jqkupvx] {
    display: none;
}

.step-title[b-n18jqkupvx] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.step-description[b-n18jqkupvx] {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.section-title[b-n18jqkupvx] {
    font-weight: 700 !important;
    color: #2d3748 !important;
    margin-bottom: 0.5rem !important;
}

.section-subtitle[b-n18jqkupvx] {
    color: #6c757d !important;
    max-width: 500px;
}

/* Success Stories (within Testimonials) */
.success-stories-content[b-n18jqkupvx] {
    padding: 3rem;
}

.success-stories-title[b-n18jqkupvx] {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.success-stories-subtitle[b-n18jqkupvx] {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-stories-list[b-n18jqkupvx] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.success-story-item[b-n18jqkupvx] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.story-emoji[b-n18jqkupvx] {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.story-content[b-n18jqkupvx] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.story-content strong[b-n18jqkupvx] {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
}

.story-content span[b-n18jqkupvx] {
    font-size: 0.9rem;
    color: #64748b;
}

.success-stories-stats[b-n18jqkupvx] {
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 30%, #8b5cf6 70%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-card[b-n18jqkupvx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.stats-heart[b-n18jqkupvx] {
    font-size: 3.5rem;
    animation: heartbeat-b-n18jqkupvx 1.5s ease-in-out infinite;
}

@keyframes heartbeat-b-n18jqkupvx {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.stats-number[b-n18jqkupvx] {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stats-subtext[b-n18jqkupvx] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Features Section */
.features-section[b-n18jqkupvx] {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.feature-card[b-n18jqkupvx] {
    padding: 1.5rem !important;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover[b-n18jqkupvx] {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Integrated Veterinary Care Section */
.vet-care-section[b-n18jqkupvx] {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #f0f4ff 0%, #f8fafc 100%);
    box-sizing: border-box;
}

.vet-care-container[b-n18jqkupvx] {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.vet-care-icon[b-n18jqkupvx] {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vet-care-icon[b-n18jqkupvx]  .rzi {
    font-size: 2rem !important;
    color: #4f46e5 !important;
}

.vet-care-title[b-n18jqkupvx] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.vet-care-subtitle[b-n18jqkupvx] {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.vet-care-cards[b-n18jqkupvx] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.vet-care-card[b-n18jqkupvx] {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vet-care-card:hover[b-n18jqkupvx] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.vet-card-icon[b-n18jqkupvx] {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #f0f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vet-card-icon[b-n18jqkupvx]  .rzi {
    font-size: 1.5rem !important;
    color: #4f46e5 !important;
}

.vet-card-content h3[b-n18jqkupvx] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.vet-card-content p[b-n18jqkupvx] {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.vet-care-cta[b-n18jqkupvx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-vet-care[b-n18jqkupvx] {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-vet-care:hover[b-n18jqkupvx] {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.vet-care-note[b-n18jqkupvx] {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Live Sightings Map Section */
.live-map-section[b-n18jqkupvx] {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 5rem 2rem;
    background: #f8fafc;
    box-sizing: border-box;
}

.live-map-container[b-n18jqkupvx] {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.live-map-title[b-n18jqkupvx] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.live-map-subtitle[b-n18jqkupvx] {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.live-map-content[b-n18jqkupvx] {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 0;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-panel[b-n18jqkupvx] {
    background: linear-gradient(135deg, #e0e7ff 0%, #f0e6fa 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.usa-map-container[b-n18jqkupvx] {
    width: 100%;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.map-wrapper[b-n18jqkupvx] {
    position: relative;
    width: 100%;
}

.usa-map-img[b-n18jqkupvx] {
    width: 100%;
    height: auto;
    filter: hue-rotate(200deg) saturate(0.3) brightness(1.1);
    opacity: 0.9;
}

.map-dots-overlay[b-n18jqkupvx] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-dot[b-n18jqkupvx] {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.map-dot:hover[b-n18jqkupvx] {
    transform: translate(-50%, -50%) scale(1.4);
    z-index: 10;
}

.dot-lost[b-n18jqkupvx] {
    background: #ef4444;
    animation: pulse-dot-b-n18jqkupvx 2s infinite;
}

.dot-found[b-n18jqkupvx] {
    background: #22c55e;
    animation: pulse-dot-b-n18jqkupvx 2s infinite 0.5s;
}

.dot-matched[b-n18jqkupvx] {
    background: #3b82f6;
    width: 16px;
    height: 16px;
    animation: pulse-dot-b-n18jqkupvx 2s infinite 1s;
}

@keyframes pulse-dot-b-n18jqkupvx {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    50% { 
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
    }
}

.map-legend[b-n18jqkupvx] {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.legend-item[b-n18jqkupvx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
}

.legend-dot[b-n18jqkupvx] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-lost[b-n18jqkupvx] {
    background: #ef4444;
}

.legend-found[b-n18jqkupvx] {
    background: #22c55e;
}

.legend-matched[b-n18jqkupvx] {
    background: #3b82f6;
}

/* Activity Panel */
.activity-panel[b-n18jqkupvx] {
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.activity-title[b-n18jqkupvx] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.activity-feed[b-n18jqkupvx] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    max-height: 320px;
}

.activity-item[b-n18jqkupvx] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border-left: 3px solid;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activity-item:hover[b-n18jqkupvx] {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.activity-lost[b-n18jqkupvx] {
    border-left-color: #ef4444;
}

.activity-found[b-n18jqkupvx] {
    border-left-color: #22c55e;
}

.activity-matched[b-n18jqkupvx] {
    border-left-color: #3b82f6;
}

.activity-img[b-n18jqkupvx] {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.activity-info[b-n18jqkupvx] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.activity-info strong[b-n18jqkupvx] {
    font-size: 0.9rem;
    color: #1a202c;
}

.activity-location[b-n18jqkupvx] {
    font-size: 0.8rem;
    color: #64748b;
}

.activity-time[b-n18jqkupvx] {
    font-size: 0.75rem;
    color: #94a3b8;
}

.activity-badge[b-n18jqkupvx] {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-weight: 500;
}

.badge-active[b-n18jqkupvx] {
    background: #f1f5f9;
    color: #64748b;
}

.badge-matched[b-n18jqkupvx] {
    background: #dbeafe;
    color: #2563eb;
}

.activity-buttons[b-n18jqkupvx] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-report-found[b-n18jqkupvx] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-report-found:hover[b-n18jqkupvx] {
    background: #2563eb;
}

.btn-report-found[b-n18jqkupvx]  .rzi {
    font-size: 1rem !important;
}

.btn-search-lost[b-n18jqkupvx] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-search-lost:hover[b-n18jqkupvx] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-search-lost[b-n18jqkupvx]  .rzi {
    font-size: 1rem !important;
}

/* Pricing Section */
.pricing-section[b-n18jqkupvx] {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 5rem 2rem;
    background: #f8fafc;
    box-sizing: border-box;
}

.pricing-container-wrapper[b-n18jqkupvx] {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.pricing-title[b-n18jqkupvx] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.pricing-subtitle[b-n18jqkupvx] {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Toggle Switch */
.pricing-toggle[b-n18jqkupvx] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label[b-n18jqkupvx] {
    font-size: 0.95rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.toggle-label.active[b-n18jqkupvx] {
    color: #1a202c;
    font-weight: 600;
}

.toggle-switch[b-n18jqkupvx] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input[b-n18jqkupvx] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider[b-n18jqkupvx] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider[b-n18jqkupvx]:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch input:checked + .toggle-slider[b-n18jqkupvx] {
    background-color: #3b82f6;
}

.toggle-switch input:checked + .toggle-slider[b-n18jqkupvx]:before {
    transform: translateX(24px);
}

/* Pricing Cards */
.pricing-cards[b-n18jqkupvx] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card[b-n18jqkupvx] {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover[b-n18jqkupvx] {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card-free[b-n18jqkupvx] {
    border-color: #22c55e;
}

.pricing-card-popular[b-n18jqkupvx] {
    border-color: #3b82f6;
    border-width: 2px;
}

.plan-badge[b-n18jqkupvx] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.plan-badge-free[b-n18jqkupvx] {
    background: #22c55e;
    color: white;
}

.plan-badge-popular[b-n18jqkupvx] {
    background: #3b82f6;
    color: white;
}

.plan-icon[b-n18jqkupvx] {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.plan-name[b-n18jqkupvx] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.plan-tagline[b-n18jqkupvx] {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.plan-price[b-n18jqkupvx] {
    margin-bottom: 1.5rem;
}

.price-amount[b-n18jqkupvx] {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
}

.price-highlight[b-n18jqkupvx] {
    color: #3b82f6;
}

.price-period[b-n18jqkupvx] {
    font-size: 0.9rem;
    color: #64748b;
}

/* Features List */
.pricing-features-list[b-n18jqkupvx] {
    flex: 1;
    text-align: left;
    margin-bottom: 1.5rem;
}

.feature-item[b-n18jqkupvx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: #475569;
}

.feature-item[b-n18jqkupvx]  .rzi {
    font-size: 1rem !important;
    color: #64748b !important;
}

.feature-green[b-n18jqkupvx]  .rzi {
    color: #22c55e !important;
}

/* Plan Buttons */
.btn-plan[b-n18jqkupvx] {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    margin-top: auto;
}

.btn-plan-free[b-n18jqkupvx] {
    background: #22c55e;
    color: white;
}

.btn-plan-free:hover[b-n18jqkupvx] {
    background: #16a34a;
}

.btn-plan-dark[b-n18jqkupvx] {
    background: #1e293b;
    color: white;
}

.btn-plan-dark:hover[b-n18jqkupvx] {
    background: #0f172a;
}

.btn-plan-primary[b-n18jqkupvx] {
    background: #3b82f6;
    color: white;
}

.btn-plan-primary:hover[b-n18jqkupvx] {
    background: #2563eb;
}

.pricing-footer[b-n18jqkupvx] {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-section[b-n18jqkupvx] {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 2rem;
    background: #f8fafc;
    box-sizing: border-box;
}

.success-stories-container[b-n18jqkupvx] {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.happy-reunions-container[b-n18jqkupvx] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonial-card[b-n18jqkupvx] {
    padding: 2rem !important;
    height: 100%;
    border-left: 4px solid var(--rz-primary) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white !important;
}

.testimonial-card:hover[b-n18jqkupvx] {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section[b-n18jqkupvx] {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.cta-card[b-n18jqkupvx] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: 4rem 2rem !important;
        max-width: 800px;
        margin: 0 auto;
        border-radius: 1rem !important;
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    }

    /* Footer */
    .landing-footer[b-n18jqkupvx] {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background: #1e293b;
        color: white;
        padding: 0;
        box-sizing: border-box;
    }

    .footer-container[b-n18jqkupvx] {
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 2rem 0;
    }

    .footer-content[b-n18jqkupvx] {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 3rem;
        padding-bottom: 3rem;
    }

    /* Brand Column */
    .footer-brand[b-n18jqkupvx] {
        max-width: 280px;
    }

    .footer-logo[b-n18jqkupvx] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .logo-icon[b-n18jqkupvx] {
        font-size: 1.5rem;
    }

    .logo-text[b-n18jqkupvx] {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
    }

    .footer-description[b-n18jqkupvx] {
        font-size: 0.875rem;
        color: #94a3b8;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .footer-social[b-n18jqkupvx] {
        display: flex;
        gap: 0.75rem;
    }

    .social-icon[b-n18jqkupvx] {
        width: 36px;
        height: 36px;
        background: #334155;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .social-icon:hover[b-n18jqkupvx] {
        background: #475569;
        color: white;
    }

    .social-icon[b-n18jqkupvx]  .rzi {
        font-size: 1.1rem !important;
    }

    /* Footer Columns */
    .footer-column[b-n18jqkupvx] {
    
    }

    .footer-heading[b-n18jqkupvx] {
        font-size: 0.95rem;
        font-weight: 600;
        color: white;
        margin-bottom: 1.25rem;
    }

    .footer-links[b-n18jqkupvx] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li[b-n18jqkupvx] {
        margin-bottom: 0.75rem;
    }

    .footer-links a[b-n18jqkupvx] {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.875rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.2s ease;
    }

    .footer-links a:hover[b-n18jqkupvx] {
        color: white;
    }

    .footer-links[b-n18jqkupvx]  .rzi {
        font-size: 1rem !important;
        color: #64748b !important;
    }

    /* Footer Bottom */
    .footer-bottom[b-n18jqkupvx] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 0;
        border-top: 1px solid #334155;
    }

    .footer-copyright[b-n18jqkupvx] {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }

    .footer-stats[b-n18jqkupvx] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: #94a3b8;
    }

    .stats-dot[b-n18jqkupvx] {
        width: 8px;
        height: 8px;
        background: #22c55e;
        border-radius: 50%;
        animation: pulse-green-dot-b-n18jqkupvx 2s infinite;
    }

    @keyframes pulse-green-dot-b-n18jqkupvx {
        0%, 100% {
            opacity: 1;
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
        }
        50% {
            opacity: 0.8;
            box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
        }
    }

    /* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-container[b-n18jqkupvx] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title[b-n18jqkupvx] {
        font-size: 2.75rem;
    }

    .hero-description[b-n18jqkupvx] {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons[b-n18jqkupvx] {
        justify-content: center;
    }

    .hero-stats[b-n18jqkupvx] {
        justify-content: center;
    }

    .hero-cards[b-n18jqkupvx] {
        display: none;
    }

    .how-it-works-cards[b-n18jqkupvx] {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-it-works-title[b-n18jqkupvx] {
        font-size: 2.5rem;
    }

    .live-map-content[b-n18jqkupvx] {
        grid-template-columns: 1fr;
    }

    .map-panel[b-n18jqkupvx] {
        min-height: 350px;
    }

    .activity-feed[b-n18jqkupvx] {
        max-height: 250px;
    }

    .live-map-title[b-n18jqkupvx] {
        font-size: 2rem;
    }

    .success-stories-container[b-n18jqkupvx] {
        grid-template-columns: 1fr;
    }

    .success-stories-stats[b-n18jqkupvx] {
        min-height: 250px;
    }

    .pricing-cards[b-n18jqkupvx] {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-title[b-n18jqkupvx] {
        font-size: 2rem;
    }

    .vet-care-cards[b-n18jqkupvx] {
            grid-template-columns: 1fr;
        }

        .vet-care-title[b-n18jqkupvx] {
            font-size: 2rem;
        }

        .simple-steps-cards[b-n18jqkupvx] {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }

        .step-connector[b-n18jqkupvx] {
            display: none;
        }

        .simple-steps-title[b-n18jqkupvx] {
                font-size: 2rem;
            }

        .footer-content[b-n18jqkupvx] {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-brand[b-n18jqkupvx] {
            grid-column: span 2;
            max-width: 100%;
            text-align: center;
        }

        .footer-logo[b-n18jqkupvx] {
            justify-content: center;
        }

        .footer-social[b-n18jqkupvx] {
            justify-content: center;
        }
        }

        @media (max-width: 768px) {
        .hero-section[b-n18jqkupvx] {
            padding: 2rem 1rem;
            min-height: 100vh;
        }

    .hero-title[b-n18jqkupvx] {
        font-size: 2rem;
    }

    .hero-title-highlight[b-n18jqkupvx] {
        display: block;
    }

    .hero-description[b-n18jqkupvx] {
        font-size: 1rem;
    }

    .hero-buttons[b-n18jqkupvx] {
        flex-direction: column;
        width: 100%;
    }

    .success-stories-content[b-n18jqkupvx] {
        padding: 2rem;
    }

    .success-stories-title[b-n18jqkupvx] {
        font-size: 1.75rem;
    }

    .pricing-cards[b-n18jqkupvx] {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-title[b-n18jqkupvx] {
        font-size: 1.75rem;
    }

    .pricing-subtitle[b-n18jqkupvx] {
        font-size: 1rem;
    }

    .how-it-works-section[b-n18jqkupvx] {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .how-it-works-cards[b-n18jqkupvx] {
        grid-template-columns: 1fr;
    }

    .how-it-works-title[b-n18jqkupvx] {
        font-size: 2rem;
    }

    .how-it-works-subtitle[b-n18jqkupvx] {
        font-size: 1rem;
    }

    .btn-hero-primary[b-n18jqkupvx],
    .btn-hero-secondary[b-n18jqkupvx] {
        width: 100%;
        justify-content: center;
    }

    .hero-stats[b-n18jqkupvx] {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .how-it-works-section[b-n18jqkupvx],
    .features-section[b-n18jqkupvx],
    .testimonials-section[b-n18jqkupvx],
    .cta-section[b-n18jqkupvx] {
        padding: 2rem 1rem;
    }

    .live-map-section[b-n18jqkupvx] {
        padding: 3rem 1rem;
    }

    .live-map-title[b-n18jqkupvx] {
        font-size: 1.75rem;
    }

    .live-map-subtitle[b-n18jqkupvx] {
        font-size: 1rem;
    }

    .map-legend[b-n18jqkupvx] {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .vet-care-section[b-n18jqkupvx] {
        padding: 3rem 1rem;
    }

    .vet-care-title[b-n18jqkupvx] {
        font-size: 1.75rem;
    }

    .vet-care-subtitle[b-n18jqkupvx] {
        font-size: 1rem;
    }

    .vet-care-card[b-n18jqkupvx] {
        flex-direction: column;
        text-align: center;
    }

    .vet-card-icon[b-n18jqkupvx] {
        margin: 0 auto;
    }

    .vet-card-content[b-n18jqkupvx] {
            text-align: center;
        }

        .cta-card[b-n18jqkupvx] {
            padding: 2rem 1rem !important;
        }

        .step-card[b-n18jqkupvx],
        .feature-card[b-n18jqkupvx],
        .testimonial-card[b-n18jqkupvx] {
            margin-bottom: 1rem;
        }

        .footer-content[b-n18jqkupvx] {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-brand[b-n18jqkupvx] {
            grid-column: span 1;
        }

        .footer-column[b-n18jqkupvx] {
            text-align: center;
        }

        .footer-links a[b-n18jqkupvx] {
            justify-content: center;
        }

        .footer-bottom[b-n18jqkupvx] {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }

        .footer-container[b-n18jqkupvx] {
            padding: 3rem 1rem 0;
        }
    }

    /* Animation for cards */
@keyframes fadeInUp-b-n18jqkupvx {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card[b-n18jqkupvx],
.step-card[b-n18jqkupvx],
.feature-card[b-n18jqkupvx],
.testimonial-card[b-n18jqkupvx] {
    animation: fadeInUp-b-n18jqkupvx 0.6s ease-out;
}

/* Button enhancements */
.hero-section .rz-button-lg[b-n18jqkupvx] {
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-section .rz-button-lg:hover[b-n18jqkupvx] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-section .rz-button-lg[b-n18jqkupvx] {
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    border-radius: 0.5rem !important;
}
/* /Components/Pages/ImageAnalysis.razor.rz.scp.css */
.pet-finder-container[b-1vgnjlnqfh] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-1vgnjlnqfh] {
    margin-bottom: 2rem;
}

.page-header .rz-text-h2[b-1vgnjlnqfh] {
    color: #2d3748 !important;
    font-weight: 700 !important;
}

.page-subtitle[b-1vgnjlnqfh] {
    color: #6c757d !important;
    max-width: 600px;
}

/* Upload Card */
.upload-card[b-1vgnjlnqfh] {
    padding: 1.5rem !important;
    height: 100%;
    border: 2px solid #e2e8f0 !important;
    transition: border-color 0.3s ease;
}

.upload-card:hover[b-1vgnjlnqfh] {
    border-color: var(--rz-primary) !important;
}

.upload-area[b-1vgnjlnqfh] {
    margin-bottom: 1rem;
}

.upload-hint[b-1vgnjlnqfh] {
    color: #6c757d !important;
    margin-top: 0.5rem;
}

/* Image Preview */
.image-preview-container[b-1vgnjlnqfh] {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    border: 2px dashed #dee2e6;
}

.image-preview[b-1vgnjlnqfh] {
    max-width: 100%;
    max-height: 300px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.placeholder-preview[b-1vgnjlnqfh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    border: 2px dashed #dee2e6;
    min-height: 200px;
}

/* Prompt Input */
.prompt-input[b-1vgnjlnqfh] {
    width: 100%;
}

.prompt-input textarea[b-1vgnjlnqfh] {
    border-radius: 0.5rem !important;
}

/* Analyze Button */
.analyze-button[b-1vgnjlnqfh] {
    width: 100%;
    padding: 1rem !important;
    font-size: 1.1rem !important;
    border-radius: 0.5rem !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.analyze-button:hover:not(:disabled)[b-1vgnjlnqfh] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.analyze-button:disabled[b-1vgnjlnqfh] {
    opacity: 0.6;
}

/* Results Card */
.results-card[b-1vgnjlnqfh] {
    padding: 1.5rem !important;
    height: auto;
    border: 2px solid #e2e8f0 !important;
}

.confidence-card[b-1vgnjlnqfh] {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%) !important;
    padding: 1rem !important;
    border: none !important;
}

.analysis-content-card[b-1vgnjlnqfh] {
    background: #f8f9fa !important;
    padding: 1rem !important;
    border: none !important;
}

.analysis-text[b-1vgnjlnqfh] {
    line-height: 1.7;
    color: #2d3748;
    white-space: pre-wrap;
}

.meta-info[b-1vgnjlnqfh] {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    opacity: 0.8;
}

/* No Results Placeholder */
.no-results-placeholder[b-1vgnjlnqfh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

/* Tips Card */
.tips-card[b-1vgnjlnqfh] {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    padding: 1rem !important;
    border: none !important;
}

.tips-list[b-1vgnjlnqfh] {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
    color: #92400e;
}

.tips-list li[b-1vgnjlnqfh] {
    margin-bottom: 0.25rem;
}

/* Responsive */
@media (max-width: 992px) {
    .pet-finder-container[b-1vgnjlnqfh] {
        padding: 1rem;
    }

    .upload-card[b-1vgnjlnqfh],
    .results-card[b-1vgnjlnqfh] {
        margin-bottom: 1rem;
    }
}

/* Animation */
@keyframes fadeIn-b-1vgnjlnqfh {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confidence-card[b-1vgnjlnqfh],
.analysis-content-card[b-1vgnjlnqfh] {
    animation: fadeIn-b-1vgnjlnqfh 0.5s ease-out;
}
