/* ============================================
   Paws & Pathways — Main Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
    --color-bg: #F8F4EE;
    --color-bg-alt: #EDE7DE;
    --color-bg-dark: #2B2520;
    --color-primary: #C96B4F;
    --color-primary-light: #D8997A;
    --color-primary-dark: #A8533A;
    --color-accent: #6B8F71;
    --color-accent-light: #A8C4AD;
    --color-accent-dark: #4F7355;
    --color-text: #333333;
    --color-text-light: #6B6560;
    --color-text-lighter: #9E9890;
    --color-white: #FFFFFF;
    --color-border: #DDD6CC;
    --color-card-bg: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1em; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Section Tags --- */
.section-tag {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-tag {
    margin-bottom: 12px;
}

.section-header p {
    max-width: 560px;
    margin: 12px auto 0;
    color: var(--color-text-light);
    font-size: 1.05rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(248, 244, 238, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--color-border);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    position: relative;
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-cta {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
}

.nav-cta:hover {
    background: var(--color-primary-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #C96B4F 0%, #B85A40 50%, #A8503A 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(191, 107, 69, 0.1);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-text h1 {
    margin-bottom: 20px;
    color: var(--color-text);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-bg-alt);
}

.hero-placeholder-img,
.about-placeholder-img,
.shelter-placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-alt), var(--color-border));
    color: var(--color-text-lighter);
}

.hero-placeholder-img span,
.about-placeholder-img span {
    font-size: 4rem;
    margin-bottom: 8px;
}

.hero-placeholder-img small,
.about-placeholder-img small {
    font-size: 0.85rem;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    background: var(--color-bg);
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.trust-icon {
    font-size: 1.25rem;
}

/* ============================================
   About
   ============================================ */
.about {
    padding: 80px 0;
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image-frame {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-placeholder-img span {
    font-size: 3.5rem;
}

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-text-light);
    font-size: 1.02rem;
}

.about-content em {
    color: var(--color-primary);
    font-style: italic;
}

.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ============================================
   Services
   ============================================ */
.services {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--color-accent-light);
    background: linear-gradient(to bottom, #F9F5EE, var(--color-card-bg));
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.service-card h3 {
    margin-bottom: 8px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.service-price {
    font-weight: 600;
    color: var(--color-accent-dark);
    font-size: 0.9rem;
}

/* ============================================
   Shelter Dogs
   ============================================ */
.shelter-dogs {
    padding: 80px 0;
    background: var(--color-bg);
}

.shelter-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
}

.shelter-scroll::-webkit-scrollbar {
    height: 6px;
}

.shelter-scroll::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
    border-radius: 3px;
}

.shelter-scroll::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

.shelter-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

.shelter-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.shelter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.shelter-placeholder-img {
    aspect-ratio: 4/3;
    font-size: 3rem;
}

.shelter-info {
    padding: 24px;
}

.shelter-info h3 {
    margin-bottom: 4px;
}

.shelter-breed {
    font-size: 0.85rem;
    color: var(--color-text-lighter);
    display: block;
    margin-bottom: 8px;
}

.shelter-info p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.shelter-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
}

.shelter-link:hover {
    color: var(--color-primary-dark);
}

.shelter-cta {
    text-align: center;
    padding: 32px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.shelter-cta p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #F0A500;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
}

/* ============================================
   Contact
   ============================================ */
.contact {
    padding: 80px 0;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-tag {
    margin-bottom: 12px;
}

.contact-info h2 {
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 0.88rem;
    color: var(--color-text-light);
}

.rover-badge {
    padding: 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.rover-badge p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.rover-link {
    font-weight: 600;
    color: var(--color-primary);
}

.rover-link:hover {
    color: var(--color-primary-dark);
}

/* --- Form --- */
.contact-form-wrapper {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(191, 107, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237A6655' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: var(--color-white);
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 12px;
    max-width: 280px;
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shelter-scroll,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-frame {
        max-width: 400px;
        margin: 0 auto;
        aspect-ratio: 4/3;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-frame {
        max-width: 400px;
    }

    .about-badge {
        right: 20px;
    }

    .services-grid,
    .shelter-scroll,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-image-frame {
        aspect-ratio: 4/5;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .service-card,
    .testimonial-card {
        padding: 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .enrichment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .enrichment-item {
        padding: 16px;
    }

    .shelter-card {
        flex: 0 0 260px;
    }
}

/* --- Testimonial Carousel --- */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.4s ease;
}

.testimonials-track .testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 8px;
    touch-action: pan-y;
}

@media (min-width: 769px) {
    .testimonials-track .testimonial-card {
        flex: 0 0 50%;
        padding: 0 12px;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.carousel-dot {
    width: 32px;
    height: 6px;
    border-radius: 3px;
    border: none;
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-primary);
    width: 48px;
}

@media (min-width: 769px) {
    .carousel-dots { display: none; }
}

/* --- Sticky Mobile CTA --- */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 12px 16px;
        background: var(--color-bg);
        border-top: 1px solid var(--color-border);
        box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
        display: block;
    }

    body {
        padding-bottom: 72px;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none;
    }
}


/* ============================================
   Color Accent Overrides
   ============================================ */

/* Hero — terracotta background, white text */
.hero-text h1 { color: #FFFFFF; text-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.hero-text p { color: rgba(255, 255, 255, 0.9); }
.hero-tag { background: rgba(255, 255, 255, 0.2); color: #FFFFFF; }
.hero-text .btn-secondary { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.5); }
.hero-text .btn-secondary:hover { border-color: #FFFFFF; color: #FFFFFF; }
.hero-wave svg path { fill: var(--color-bg); }
.hero-placeholder-img { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }

/* Navbar — transparent on hero, white on scroll */
.navbar:not(.scrolled) .logo-text { color: #FFFFFF; }
.navbar:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, 0.85); }
.navbar:not(.scrolled) .nav-links a:hover { color: #FFFFFF; }
.navbar:not(.scrolled) .nav-cta { background: #FFFFFF !important; color: var(--color-primary) !important; }
.navbar.scrolled .logo-text { color: var(--color-text); }

/* Headings — terracotta */
h1, h2, h3 { color: var(--color-primary-dark); }
.hero-text h1 { color: #FFFFFF; }

/* Section tags and badges */
.section-tag { background: rgba(201, 107, 79, 0.1); color: var(--color-primary); }
.service-badge { background: var(--color-accent); color: #fff; }
.service-price { color: var(--color-accent-dark); font-weight: 700; }
.about-badge { background: var(--color-accent); }
.trust-bar { border-top: 3px solid var(--color-accent-light); }
.testimonial-stars { color: var(--color-primary); }
.rover-badge { background: rgba(201, 107, 79, 0.06); border: 1px solid var(--color-primary-light); }
.contact-icon { background: rgba(107, 143, 113, 0.1); }
.shelter-cta { background: rgba(107, 143, 113, 0.06); border: 1px solid var(--color-accent-light); }
.shelter-cta .btn-primary { background: var(--color-accent); border-color: var(--color-accent); }
.shelter-cta .btn-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); }
.service-card.featured { border: 2px solid var(--color-accent); background: linear-gradient(to bottom, rgba(107,143,113,0.04), var(--color-card-bg)); }
.footer { background: #2B2520; }

/* --- Real Images --- */
.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shelter-placeholder-img {
    position: relative;
}

.shelter-placeholder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Service Pricing Rows --- */
.service-pricing {
    margin-top: 12px;
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 0.88rem;
    color: var(--color-text-light);
}

.price-row span:last-child {
    font-weight: 600;
    color: var(--color-accent-dark);
}

.price-row span:first-child {
    color: var(--color-text-light);
}

/* --- Discounts Bar --- */
.discounts-bar {
    margin-top: 48px;
    padding: 32px 0;
    background: rgba(107, 143, 113, 0.06);
    border: 1px solid var(--color-accent-light);
    border-radius: var(--radius-md);
}

.discounts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.discount-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.discount-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.discount-item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.discount-item p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .discounts-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Enrichment Section
   ============================================ */
.enrichment {
    padding: 80px 0;
    background: var(--color-bg);
}

.enrichment-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 0;
}

.enrichment-toggle .section-header {
    margin-bottom: 0;
}

.toggle-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
    display: inline-block;
}

.enrichment-toggle.open .toggle-arrow {
    transform: rotate(180deg);
}

.enrichment-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.enrichment-collapse.open {
    max-height: 800px;
}

.enrichment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.enrichment-item {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.enrichment-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.enrichment-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 10px;
}

.enrichment-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.enrichment-item p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

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

@media (max-width: 480px) {
    .enrichment-grid {
        grid-template-columns: 1fr;
    }
}

.services-toggle {
    display: block;
    margin: 24px auto 0;
    background: none;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    cursor: pointer;
    transition: var(--transition);
}

.services-toggle:hover {
    border-color: var(--color-primary);
    background: rgba(201, 107, 79, 0.05);
}

.services-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.services-collapse.open {
    max-height: 800px;
}

/* --- Price Toggle Dropdown --- */
.price-toggle {
    width: 100%;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--color-primary);
    cursor: pointer;
    margin-top: 8px;
    transition: var(--transition);
}

.price-toggle:hover {
    background: rgba(201, 107, 79, 0.05);
    border-color: var(--color-primary-light);
}

.price-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.price-extra.open {
    max-height: 200px;
    padding-top: 8px;
}

/* --- Adopted Tag --- */
.adopted {
    color: var(--color-accent-dark);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Resources Section */
.resources {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.resource-card {
    display: block;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.resource-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.resource-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-text);
}

.resource-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.resource-source {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 500;
}
