/* =================================================================
   Adoption Page Specific Styles for PetHut Bengaluru 
   ================================================================= */

/* --- General Section Styling --- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-family: var(--font-heading, 'Baloo 2', cursive);
    font-size: 2.5rem;
    color: var(--text-dark, #2c3e50);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light, #7f8c8d);
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Adoption Hero Section (Glassmorphism) --- */
.adoption-hero {
    background-color: #2a9d8f;
    background-size: cover;
    background-position: center 30%;
    padding: 3rem 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100vw;
    /* min-height: 70vh; */
}

.adoption-hero .hero-content {
    background: rgba(248, 249, 250, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    padding: 3rem;
    max-width: 750px;
    width: 100%;
    color: var(--text-dark, #2c3e50);
    text-align: center;
}

.adoption-hero .hero-title {
    font-size: 3.5rem;
    font-family: var(--font-heading, 'Baloo 2', cursive);
}

.adoption-hero .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
    opacity: 0.8;
}

.adoption-hero .btn.primary {
    color: white;
    background-color: var(--secondary-accent, #e76f51);
    border-color: var(--secondary-accent, #e76f51);
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
}

.adoption-hero .btn.primary:hover {
    background-color: #d95f43;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- Adoption Process Section --- */
.adoption-process-section {
    padding: 5rem 0;
    background-color: #fdfdff; /* A very light, almost white background */
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    padding-top: 4rem; /* More padding at top for the number */
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(42, 157, 143, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 280px;
    border: 1px solid #e9ecef;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(42, 157, 143, 0.12);
}

/* The line element */
.step-card::before {
    content: '';
    position: absolute;
    top: 40px; /* Position it vertically */
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--primary-brand, #2a9d8f);
}

.step-number {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%); /* Center on the line */
    background-color: var(--primary-brand, #2a9d8f);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading, 'Baloo 2', cursive);
    font-size: 1.5rem;
    border: 4px solid white;
    z-index: 1;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-brand, #2a9d8f);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.step-card h3 {
    font-family: var(--font-heading, 'Baloo 2', cursive);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark, #2c3e50);
}

.step-card p {
    color: var(--text-light, #7f8c8d);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Adoption Info Section --- */
.adoption-info-section {
    padding: 5rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--card-bg, white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    border-left: 5px solid var(--secondary-accent, #e76f51);
}

.info-card h3 {
    font-family: var(--font-heading, 'Baloo 2', cursive);
    font-size: 1.6rem;
    color: var(--text-dark, #2c3e50);
    margin-bottom: 1.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light, #7f8c8d);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.info-card ul li:last-child {
    margin-bottom: 0;
}

.info-card ul li i {
    color: var(--primary-brand, #2a9d8f);
    margin-top: 5px;
}



.btn.large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: var(--secondary-accent, #e76f51);
    border-color: var(--secondary-accent, #e76f51);
    transition: all 0.3s ease;
}

.btn.large:hover {
    background-color: #d95f43;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .adoption-hero,
    .hero-title h2 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .adoption-hero {
        padding: 4rem 1.5rem;
    }

    .adoption-hero .hero-title,
    .cta-section h2 {
        font-size: 2rem;
    }

    .adoption-process-section,
    .adoption-info-section {
        padding: 4rem 0;
    }

    .step-card h3,
    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}
