/* dog-blood.css - Dog Blood Page Specific Styles */
/* Import global styles first in your HTML */

/* Dog Blood Page Color Variables - Scoped to avoid conflicts */
:root {
    --blood-olive: #2C7A7B;
    --blood-teal: #2f8f83;
    --blood-forest: #0f3d2e;
    --blood-dark: #1f2937;
    --blood-beige: #f1e8d2;
    --blood-rust: #a9471c;
    --blood-bg-page: linear-gradient(180deg, #f8faf7 0%, #ffffff 100%);
}

/* HERO SECTION - MATCHING DOG-SKIN STRUCTURE */
.dog-blood-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: var(--blood-bg-page);
    margin-top: 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid { 
    display: grid; 
    gap: 3rem; 
    align-items: center; 
    grid-template-columns: 1fr;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 3rem;
    }
}

/* Left column - copy */
.hero-copy { 
    max-width: 720px;
    margin-top: 0;
}

/* Blood-specific badge styles */
.blood-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    border-radius: 6px; 
    padding: 0.125rem 0.5rem; 
    font-size: 0.75rem; 
    font-weight: 600; 
}

.blood-badge-intro { 
    background: var(--blood-olive); 
    color: #fff; 
    border: 1px solid transparent; 
    margin-bottom: 1.5rem; 
}

.blood-badge-small { 
    background: var(--blood-olive); 
    color: #fff; 
    border: 1px solid transparent; 
    margin-top: 1rem; 
}

/* Blood-specific icons */
.icon-blood {
    width: 16px;
    height: 16px;
}

.icon-blood-large {
    width: 64px;
    height: 64px;
    color: var(--blood-rust);
}

/* hero title & lead */
.hero-title {
    font-size: 2.25rem;
    line-height: 1.03;
    font-weight: 800;
    color: var(--blood-forest);
    margin-bottom: 1.25rem;
    margin-top: 0;
}

@media (min-width: 768px) {
    .hero-title { 
        font-size: 3.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title { 
        font-size: 1.75rem; 
        line-height: 1.2;
    }
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--blood-dark);
    margin-bottom: 2rem;
    line-height: 1.65;
}

/* CTA group */
.cta-group { 
    display: flex; 
    flex-direction: column; 
    gap: 0.75rem; 
}

@media (min-width: 640px) { 
    .cta-group { 
        flex-direction: row; 
    } 
}

/* Dog Blood specific buttons */
.dog-blood-hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.6rem 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dog-blood-hero .btn svg { 
    margin-left: 0.4rem; 
}

.dog-blood-hero .btn-primary {
    background: var(--blood-olive);
    color: #fff;
}

.dog-blood-hero .btn-primary:hover { 
    opacity: 0.94;
    transform: translateY(-2px);
}

.dog-blood-hero .btn-outline {
    background: transparent;
    border: 1px solid var(--blood-teal);
    color: var(--blood-teal);
}

.dog-blood-hero .btn-outline:hover {
    background: var(--blood-teal);
    color: #fff;
    transform: translateY(-2px);
}

/* Right column panel - MATCHING DOG-SKIN STRUCTURE */
.hero-panel { 
    display: flex; 
    justify-content: center;
    margin-top: 0;
}

.panel-outer {
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    padding: 2rem;
    background: linear-gradient(135deg, var(--blood-teal) 0%, var(--blood-olive) 100%);
    box-shadow: 0 20px 40px rgba(14, 16, 18, 0.12);
}

.panel-inner {
    background: #fff;
    padding: 1.5rem;
    border-radius: 18px;
    text-align: center;
}

.panel-circle {
    width: 128px; 
    height: 128px; 
    margin: 0 auto 1rem; 
    border-radius: 50%;
    background: var(--blood-beige);
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.panel-title { 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: var(--blood-forest); 
    margin-bottom: 0.5rem; 
}

.panel-sub { 
    color: var(--blood-dark); 
}

/* fade-in-up animation */
.fade-in-up { 
    animation: bloodFadeInUp 0.6s ease both; 
}

@keyframes bloodFadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive fixes */
@media (max-width: 480px) {
    .panel-outer { 
        padding: 1.25rem; 
    }
    
    .dog-blood-hero {
        padding-top: 7rem;
        min-height: auto;
    }
    
    .hero-lead {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .dog-blood-hero {
        padding-top: 6rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .dog-blood-hero .btn {
        width: 100%;
        justify-content: center;
    }
}

/* -------------------------
 Dog Blood Stats Section
 ------------------------- */

.dog-blood-stats-section {
    padding: 4rem 0;
    background: var(--color-gray-50);
}

.stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .stats-grid { 
        grid-template-columns: repeat(4, 1fr); 
    }
}

.stat-item { }

.stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-value.rust { color: var(--blood-rust); }
.stat-value.teal { color: var(--blood-teal); }
.stat-value.olive { color: var(--blood-olive); }
.stat-value.forest { color: var(--blood-forest); }

.stat-text {
    color: var(--blood-dark);
    font-size: 1rem;
    line-height: 1.5;
}

/* -------------------------
 Dog Blood Issues Section
 ------------------------- */

.dog-blood-issues {
    padding: 5rem 0;
}

.dog-blood-issues .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dog-blood-issues .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blood-forest);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .dog-blood-issues .section-header h2 { 
        font-size: 3rem; 
    }
}

.dog-blood-issues .section-header p {
    font-size: 1.25rem;
    color: var(--blood-dark);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* grid */
.issues-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .issues-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (min-width: 1024px) {
    .issues-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
}

/* card */
.issue-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.issue-card:hover { 
    transform: translateY(-6px); 
}

.issue-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.issue-card h3 {
    color: var(--blood-forest);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 1.5rem;
}

.issue-card p {
    color: var(--blood-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 1.5rem;
}

/* icon colors */
.icon { 
    width: 2rem; 
    height: 2rem; 
}

.icon.olive { color: var(--blood-olive); }
.icon.rust { color: var(--blood-rust); }
.icon.teal { color: var(--blood-teal); }

/* badge styles */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}

.badge.high { background: var(--blood-olive); }
.badge.severe { background: var(--blood-rust); }
.badge.moderate { background: var(--blood-teal); }

/* solution box - NOW INSIDE ISSUES SECTION */
.solution-box {
    margin-top: 4rem;
    background: var(--blood-rust);
    color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.solution-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solution-box p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #fff;
}

/* -------------------------
 Dog Blood Ingredients Section
 ------------------------- */

.dog-blood-ingredients {
    padding: 5rem 0;
    background: var(--color-gray-50);
}

.dog-blood-ingredients .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dog-blood-ingredients .section-header .section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--blood-olive);
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.dog-blood-ingredients .section-header .section-badge .icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.dog-blood-ingredients .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blood-forest);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .dog-blood-ingredients .section-header h2 { 
        font-size: 3rem; 
    }
}

.dog-blood-ingredients .section-header p {
    font-size: 1.25rem;
    color: var(--blood-dark);
    max-width: 48rem;
    margin: 0 auto;
}

/* grid */
.ingredients-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .ingredients-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* card */
.ingredient-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.ingredient-card:hover { 
    transform: translateY(-6px); 
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.ingredient-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blood-forest);
    margin: 0 1.5rem;
}

.ingredient-card .subtitle {
    margin: 0 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.subtitle.teal { color: var(--blood-teal); }

.card-body { 
    padding: 0 1.5rem; 
}

.card-body p { 
    margin-bottom: 1rem; 
    color: var(--blood-dark); 
    line-height: 1.6; 
}

/* highlights */
.highlight {
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.highlight.beige { background: var(--blood-beige); }
.highlight.white { background: #fff; }
.teal-border { border-left: 4px solid var(--blood-teal); }

.highlight h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blood-forest);
    margin-bottom: 0.5rem;
}

.highlight p { 
    font-size: 0.85rem; 
}

/* check info */
.card-check {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-check.teal { color: var(--blood-teal); }

/* endorsement box - NOW INSIDE INGREDIENTS SECTION */
.endorsement-box {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--blood-dark), var(--blood-forest));
    color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.endorsement-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.endorsement-box p { 
    margin-bottom: 1rem; 
    color: rgba(255, 255, 255, 0.9);
}

.endorsement-box .author { 
    font-size: 0.9rem; 
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

.endorsement-box .btn.rust {
    background: var(--blood-rust);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.endorsement-box .btn.rust:hover {
    background: #8b372c;
}

/* Dog Blood Protection Section */
.dog-blood-protection-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1c3d32, #162b26);
    color: #fff;
    text-align: center;
}

.dog-blood-protection-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blood-rust);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.dog-blood-protection-section .section-badge .icon {
    width: 20px;
    height: 20px;
}

.dog-blood-protection-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.dog-blood-protection-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Formula List */
.formula-box {
    background: rgba(169, 68, 54, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.dog-blood-protection-section .formula-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
}

.formula-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dog-blood-protection-section .formula-grid p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.dog-blood-protection-section .btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dog-blood-protection-section .btn.rust {
    background: var(--blood-rust);
    color: #fff;
    border: none;
}

.dog-blood-protection-section .btn.rust:hover {
    background: #8b372c;
}

.dog-blood-protection-section .btn.outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.dog-blood-protection-section .btn.outline:hover {
    background: #fff;
    color: #1c3d32;
}

.dog-blood-protection-section .disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .dog-blood-hero {
        padding-top: 5rem;
    }
    
    .dog-blood-protection-section,
    .dog-blood-ingredients,
    .dog-blood-issues {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .formula-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-outer {
        padding: 1rem;
    }
    
    .panel-circle {
        width: 100px;
        height: 100px;
    }
    
    .icon-blood-large {
        width: 48px;
        height: 48px;
    }
}