/* ========================================
   Tzuzoo Rescue - Adoption Process Page Styles
   ======================================== */

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.back-nav {
    text-align: left;
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s;
}

.back-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateX(-3px);
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    margin-bottom: 40px;
}

.intro {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-green);
}

.intro h2 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.important-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.important-note h3 {
    color: #856404;
    margin-bottom: 10px;
}

.important-note p {
    color: #856404;
    font-weight: 500;
}

.step {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(126, 211, 33, 0.15);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step-number {
    background: var(--primary-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-title {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

.step-content p {
    margin-bottom: 15px;
}

.step-content strong {
    color: var(--primary-purple);
}

.highlight {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-green);
}

.warning {
    background: #ffebee;
    border: 2px solid #ef5350;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.warning h4 {
    color: #c62828;
    margin-bottom: 10px;
}

.warning p {
    color: #c62828;
    font-weight: 500;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .content {
        padding: 20px;
    }

    .step {
        padding: 20px;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
