/* ===================================
   PURELY ADOPTIONS - HOMEPAGE STYLES
   =================================== */

/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    /* Primary Colors */
    --primary-red: #ef3c38;
    --primary-red-dark: #c0392b;
    --accent-orange: #f47621;
    --accent-yellow: #ffd13a;
    --navy-dark: #222d56;
    /* Aliases: older pages referenced pink/purple; map them to brand colours */
    --primary-pink: #ef3c38;
    --primary-purple: #c0392b;
    
    /* Background Colors */
    --light-bg: #fff8f0;
    --light-green-bg: #F0F8F0;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --very-light-gray: #FAFAFA;
    
    /* Text Colors */
    --text-dark: #222d56;
    --text-secondary: #666666;
    --text-meta: #999999;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, #ef3c38 0%, #c0392b 100%);
    --gradient-main-hover: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    --gradient-warm: linear-gradient(135deg, #f47621 0%, #ffd13a 100%);
    --gradient-warm-hover: linear-gradient(135deg, #d4651a 0%, #e6b800 100%);
    --gradient-accent: linear-gradient(135deg, #ef3c38 0%, #f47621 100%);
    
    /* Fonts */
    --font-heading: 'Hind Vadodara', sans-serif;
    --font-body: 'Numans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 70px;
    --container-max-width: 1280px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Keep anchor targets clear of the fixed header when jumping to a section */
:target,
section[id],
[id^="our-"],
[id^="what-"],
#team,
#upcoming-events,
#latest-news,
#adoption-form {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

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

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    /* Fluid heading: scales smoothly from ~32px (mobile) to ~46px (desktop) */
    font-size: clamp(2rem, 1.4rem + 2.4vw, 2.875rem);
    color: var(--navy-dark);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-family: var(--font-body);
    /* Fluid subtitle: ~16px to ~19px */
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1875rem);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 56px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 768px) {
    /* font-size now handled fluidly by clamp() above */
    .section-subtitle {
        margin-bottom: 44px;
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex; /* Changed from inline-block to inline-flex */
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    transition: var(--transition-smooth);
    border-radius: 25px;
    cursor: pointer;
    border: none;
}

/* Primary Donate Button */
.btn-donate {
    background: var(--gradient-main);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 25px;
}

.btn-donate:hover {
    background: var(--gradient-main-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.btn-donate .btn-text-short {
    display: none;
}

/* Primary Button (Purple Gradient) */
.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    font-size: 18px;
    padding: 18px 44px;
    height: 56px;
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-main-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* White solid button (for use on coloured/gradient banners) */
.btn-white {
    background: var(--white);
    color: var(--primary-red);
    font-size: 18px;
    font-weight: 700;
    padding: 18px 44px;
    height: 56px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

/* White outline button (secondary action on coloured banners) */
.btn-secondary-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 42px;
    height: 56px;
}

.btn-secondary-white:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* Secondary Button (Outline/Glass) */
.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 18px;
    padding: 18px 44px;
    height: 56px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Purple Gradient Button */
.btn-purple {
    background: var(--gradient-main);
    color: var(--white);
    font-weight: 700;
    font-size: 17px;
    padding: 16px 40px;
    height: 54px;
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.25);
}

.btn-purple:hover {
    background: var(--gradient-main-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.35);
}

/* Pink Gradient Button */
.btn-pink {
    background: var(--gradient-accent);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
}

.btn-pink:hover {
    background: linear-gradient(135deg, #C2185B 0%, #E91E63 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Orange Gradient Button */
.btn-orange {
    background: var(--gradient-warm);
    color: var(--white);
    font-weight: 700;
    font-size: 17px;
    padding: 16px 40px;
    height: 54px;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.25);
}

.btn-orange:hover {
    background: var(--gradient-warm-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.35);
}

/* Outline Orange Button */
.btn-outline-orange {
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 17px;
    padding: 14px 36px;
    height: 52px;
}

.btn-outline-orange:hover {
    background: var(--gradient-warm);
    color: var(--white);
    border-color: transparent;
}

/* Outline Pink Button */
.btn-outline-pink {
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 20px;
}

.btn-outline-pink:hover {
    background: var(--gradient-main);
    color: var(--white);
    border-color: transparent;
}

/* Outline Navy Button */
.btn-outline-navy {
    background: transparent;
    border: 2px solid var(--navy-dark);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 40px;
    height: 52px;
}

.btn-outline-navy:hover {
    background: var(--navy-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 31, 54, 0.2);
}

/* Adopt Button (in animal cards) */
.btn-adopt {
    background: var(--gradient-main);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 22px;
    width: 100%;
}

.btn-adopt:hover {
    background: var(--gradient-main-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Mobile Button Adjustments */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 400px;
        font-size: 18px;
        padding: 16px 40px;
        height: 52px;
    }
    
    .btn-hero {
    display: inline-flex; /* Changed */
    align-items: center;
    justify-content: center;
    }
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 80px;
}

.header.scrolled {
    height: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.header.scrolled .header-logo img {
    height: 38px;
}

.header-logo-svg {
    height: 50px !important;
    width: auto !important;
}

.header.scrolled .header-logo-svg {
    height: 38px !important;
}

/* Navigation */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 40px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    position: relative;
}

.header.scrolled .nav-item a {
    font-size: 15px;
}

.nav-item a:hover {
    color: var(--primary-red);
}

.nav-item.active > a {
    color: var(--primary-red);
    font-weight: 600;
}

.nav-item.active > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-red);
}

/* Dropdown Icon */
.dropdown-icon {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    border: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 15px;
    color: var(--text-dark);
    border: none;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-red);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
}

.header.scrolled .btn-donate {
    padding: 10px 22px;
    font-size: 14px;
}

.header.scrolled .btn-donate .btn-text-full {
    display: none;
}

.header.scrolled .btn-donate .btn-text-short {
    display: inline;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .header-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header {
        height: 60px;
    }
    
    .header-logo img {
        height: 40px;
    }
    
    .header-container {
        padding: 0 20px;
    }
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    display: block; /* Added to ensure visibility */
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.mobile-menu-close {
    font-size: 40px;
    color: var(--navy-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 1;
}

.mobile-donate-btn {
    width: 100%;
    margin-bottom: 20px;
    height: 50px;
    font-size: 16px;
}

.mobile-nav {
    border-top: 1px solid #E0E0E0;
    padding-top: 20px;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid #F0F0F0;
}

.mobile-nav > ul > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    color: var(--text-dark);
}

.mobile-arrow {
    color: var(--text-meta);
    transition: transform 0.3s ease;
}

.mobile-has-submenu.active .mobile-arrow {
    transform: rotate(90deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.mobile-has-submenu.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li {
    border-bottom: 1px solid #F5F5F5;
}

.mobile-submenu a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
}

.mobile-menu-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}

.mobile-contact {
    margin-bottom: 20px;
}

.mobile-contact p {
    margin-bottom: 12px;
}

.mobile-contact a {
    color: var(--primary-red);
    font-weight: 600;
}

.mobile-social {
    display: flex;
    gap: 16px;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.mobile-social a:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    margin-top: 80px;
    position: relative;
}

/* Campaign Banner */
.campaign-banner {
    position: relative;
    background: var(--gradient-warm);
    height: 60px;
    overflow: hidden;
}

.campaign-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.campaign-slide.active {
    opacity: 1;
    z-index: 1;
}

.campaign-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.campaign-icon {
    font-size: 32px;
}

.campaign-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.3; /* Added for better text wrapping */
}

.campaign-cta {
    background: var(--white);
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.campaign-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.campaign-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.campaign-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease;
}

.campaign-dots .dot.active {
    background: var(--white);
}

/* Hero Main */
.hero-main {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-img-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center; /* Added */
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-hero {
    display: inline-flex; /* Changed */
    align-items: center;
    justify-content: center;
}

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

/* Mobile Hero */
@media (max-width: 768px) {
    .hero {
        margin-top: 60px;
    }
    
    /* Campaign banner: keep single row, smaller text */
    .campaign-banner {
        height: 48px;
    }
    
    .campaign-slide {
        flex-direction: row;
        padding: 0 16px;
        gap: 12px;
    }
    
    .campaign-content {
        gap: 6px;
    }
    
    .campaign-text {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .campaign-cta {
        font-size: 11px;
        padding: 6px 14px;
        white-space: nowrap;
    }

    .hero-main {
        height: 600px;
    }
    
    .hero-img-desktop {
        display: none;
    }
    
    .hero-img-mobile {
        display: block;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 16px;
    }
}

/* ===================================
   MISSION SECTION
   =================================== */
.mission {
    background: var(--light-bg);
    padding: 90px 0;
}

.mission-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.mission-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .mission {
        padding: 60px 0;
    }
    
    .mission-text {
        font-size: 17px;
    }
}

/* ===================================
   MEET OUR RESCUES SECTION
   =================================== */
.rescues {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.rescues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.animal-card {
    background: var(--white);
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.animal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.animal-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.favorite-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 2;
}

.favorite-btn:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.favorite-btn.active svg {
    fill: var(--primary-red);
}

.animal-info {
    padding: 24px;
}

.animal-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 22px;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.animal-meta {
    font-size: 15px;
    color: var(--text-meta);
    margin-bottom: 14px;
}

.animal-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

@media (max-width: 1024px) {
    /* rescues cards reflow fluidly via auto-fit */
}

@media (max-width: 768px) {
    .rescues {
        padding: var(--section-padding-mobile) 0;
    }
    
    .rescues-grid {
        gap: 28px;
    }
    
    .animal-name {
        font-size: 20px;
    }
}

/* ===================================
   HOW YOU CAN HELP SECTION
   =================================== */
.help {
    background: var(--light-gray);
    padding: var(--section-padding) 0;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.help-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 44px 32px;
    text-align: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.help-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-icon-donate {
    color: var(--primary-red-dark);
}

.help-icon-adopt {
    color: var(--primary-red);
}

.help-icon-foster {
    color: var(--accent-yellow);
}

.help-icon-volunteer {
    color: var(--accent-orange);
}

.help-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    color: var(--navy-dark);
    margin-bottom: 18px;
}

.help-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
    flex: 1;
    max-width: 260px;
}

.help-card .btn {
    width: 100%;
    max-width: 220px;
    margin-top: auto;
}

@media (max-width: 1024px) {
    /* step cards reflow fluidly via auto-fit */
}

@media (max-width: 768px) {
    .help {
        padding: var(--section-padding-mobile) 0;
    }
    
    .help-grid {
        gap: 24px;
    }
    
    .help-title {
        font-size: 24px;
    }
    .campaign-text {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .btn-hero {
        width: 100%;
        display: flex; /* Ensure flex on mobile */
        align-items: center;
        justify-content: center;
    }
}

/* ===================================
   HAPPY TAILS SECTION
   =================================== */
.happy-tails {
    background: var(--light-bg);
    padding: var(--section-padding) 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.story-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

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

.story-content {
    padding: 28px;
    position: relative;
}

.story-quote {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 85px;
    position: relative;
    padding-left: 24px;
}

.story-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 48px;
    color: var(--primary-red);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.story-author {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.story-date {
    font-size: 14px;
    color: var(--text-meta);
    margin-bottom: 24px;
}

.story-content .btn {
    width: 100%;
}

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

@media (max-width: 768px) {
    .happy-tails {
        padding: var(--section-padding-mobile) 0;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   EVENTS SECTION
   =================================== */
.events {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.event-card {
    background: var(--white);
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.event-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
}

.event-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.event-content {
    padding: 28px;
}

.event-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--navy-dark);
    line-height: 1.3;
    margin-bottom: 18px;
}

.event-details {
    margin-bottom: 18px;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.event-icon {
    font-size: 18px;
    color: var(--accent-orange);
}

.event-description {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 24px;
}

.event-content .btn {
    width: 100%;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.2);
}

@media (max-width: 768px) {
    .events {
        padding: var(--section-padding-mobile) 0;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-image {
        height: 220px;
    }
    
    .event-title {
        font-size: 22px;
    }
}

/* ===================================
   ABOUT PREVIEW SECTION
   =================================== */
.about-preview {
    background: var(--light-green-bg);
    padding: 90px 0;
    text-align: center;
}

.about-text {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 36px;
}

@media (max-width: 768px) {
    .about-preview {
        padding: 70px 0;
    }
    
    .about-text {
        font-size: 17px;
    }
}

/* ===================================
   PARTNERS SECTION
   =================================== */
.partners {
    background: var(--very-light-gray);
    padding: var(--section-padding) 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.partner-logo:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.partner-placeholder {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover .partner-placeholder {
    opacity: 1;
}

/* When actual logos are added, use this: */
.partner-logo img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-cta-text {
    text-align: center;
    margin-top: 44px;
    font-size: 16px;
    color: var(--text-secondary);
}

.partners-cta-text a {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: underline;
}

.partners-cta-text a:hover {
    color: var(--primary-red-dark);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .partners {
        padding: var(--section-padding-mobile) 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #2c2c2c;
    color: var(--white);
    padding: 70px 0 30px;
}

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

/* Footer Brand Column */
.footer-logo {
    width: 170px;
    margin-bottom: 22px;
}

.footer-mission {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    max-width: 300px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary-red);
    border-color: transparent;
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-col .footer-heading:not(:first-child) {
    margin-top: 28px;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 2.2;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 4px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.contact-icon {
    font-size: 18px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.footer-contact a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.footer-address {
    align-items: flex-start;
}

.footer-address span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 28px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-mission {
        max-width: 100%;
    }
}

/* ===================================
   SCROLL TO TOP BUTTON (Optional)
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gradient-main-hover);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

/* ===================================
   ACCESSIBILITY
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .header,
    .mobile-menu,
    .campaign-banner,
    .footer-social,
    .scroll-top,
    .favorite-btn {
        display: none !important;
    }
    
    .hero-main {
        height: auto;
    }
    
    * {
        box-shadow: none !important;
    }
}
/* ===================================
   IMPACT STAT SECTION
   =================================== */
.impact-stat {
    background: var(--gradient-main);
    color: var(--white);
    text-align: center;
    padding: 80px 40px;
}

.impact-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.impact-number {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
}

.impact-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* ===================================
   ABOUT PREVIEW CARDS
   =================================== */
.about-preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0 32px;
}

.about-preview-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.about-preview-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.about-preview-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.about-preview-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-preview-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===================================
   HERO PHOTO CAROUSEL
   =================================== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: all;
}

.hero-slide .hero-image {
    position: absolute;
    inset: 0;
}

.hero-slide .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.1) 100%);
}

/* Desktop: text centred horizontally, sitting in lower-middle third */
.hero-slide .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 0 120px 80px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.hero-slide .hero-content .hero-title {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.hero-slide .hero-content .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.hero-slide .hero-content .hero-ctas {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* Tablet */
@media (max-width: 900px) {
    .hero-slide .hero-content {
        padding: 0 60px 60px;
    }

    .hero-slide .hero-content .hero-title {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-carousel {
        height: 75vh;
        min-height: 420px;
    }

    .hero-slide .hero-content {
        padding: 0 20px 50px;
        max-width: 100%;
    }

    .hero-slide .hero-content .hero-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .hero-slide .hero-content .hero-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .hero-slide .hero-content .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-slide .hero-content .btn-hero {
        width: 100%;
        max-width: 260px;
    }

    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

.carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s ease;
}

.carousel-dot.active {
    background: white;
}

/* ===================================
   LOGO STYLES
   =================================== */
.footer-logo-main {
    height: 120px;
    width: auto;
    margin-bottom: 16px;
}

.footer-division-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 28px;
    align-items: flex-start;
    margin: 24px 0;
}

.footer-division-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-division-logo {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.footer-division-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .header-logo-svg {
        height: 36px;
    }
}

/* ===================================
   DIVISIONS SECTION (About page)
   =================================== */
.divisions {
    background: var(--light-gray);
    padding: var(--section-padding) 0;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.division-card {
    text-align: center;
    padding: 24px 16px;
    border-top: 3px solid var(--primary-red);
}

.division-card:hover {
    transform: none;
}

.division-logo {
    height: 110px;
    width: auto;
    margin: 0 auto 20px;
    display: block;
}

.division-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.division-desc a {
    color: var(--primary-red);
    font-weight: 600;
}

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

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

/* ===================================
   HELP STRIP (replaces help-grid cards)
   =================================== */
.help-strip {
    display: flex;
    align-items: stretch;
    margin-top: 48px;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.help-strip-item {
    flex: 1;
    padding: 36px 28px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.help-strip-item:hover {
    background: var(--light-bg);
}

.help-strip-divider {
    width: 1px;
    background: #e8e8e8;
    flex-shrink: 0;
}

.help-strip-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.help-strip-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.help-strip-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red-dark);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .help-strip {
        flex-direction: column;
    }
    .help-strip-divider {
        width: 100%;
        height: 1px;
    }
    .help-strip-item {
        padding: 24px 20px;
    }
}

/* ===================================
   PARTNERS LIST (replaces grid boxes)
   =================================== */
.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
    margin: 40px 0 24px;
}

.partners-list span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
}

.partners-list span:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -18px;
    color: #ccc;
}

/* ===================================
   LIGHTER CARD STYLES
   =================================== */
.animal-card {
    box-shadow: 0 1px 6px rgba(0,0,0,0.08) !important;
    border-radius: 12px !important;
    border: none !important;
}

.story-card {
    box-shadow: none !important;
    border: 1px solid #eeeeee !important;
    border-radius: 8px !important;
}

.event-card {
    box-shadow: 0 1px 6px rgba(0,0,0,0.08) !important;
    border-radius: 8px !important;
}

/* ===================================
   FOSTERING CRITERIA LIST (from live site)
   =================================== */
.criteria-list {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.criteria-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid #eee;
}

.criteria-item:last-child {
    border-bottom: none;
}

.criteria-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    opacity: 0.3;
    flex-shrink: 0;
    width: 48px;
    line-height: 1;
}

.criteria-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.criteria-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===================================
   STEP STRIP (replaces numbered cards)
   =================================== */
.step-strip {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
    counter-reset: steps;
}

.step-strip-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-strip-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -1px;
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}

/* Larger circle for date labels like "Day 4–5" that hold text, not a single number */
.step-number--day {
    width: 64px;
    height: 64px;
    font-size: 0.85rem;
    line-height: 1.1;
    text-align: center;
    padding: 4px;
}

.step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

@media (max-width: 600px) {
    .step-strip {
        flex-direction: column;
        gap: 16px;
    }

    .step-strip-item {
        flex-direction: row;
        text-align: left;
        padding: 0;
        gap: 16px;
    }

    .step-strip-item::after {
        display: none;
    }

    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* ===================================
   TWO-COLUMN INFO LAYOUT
   (replaces help-grid/help-card pairs)
   =================================== */
.info-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.info-col h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-red);
}

.info-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-col ul li {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}

.info-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-red);
}

.info-col p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

@media (max-width: 600px) {
    .info-cols {
        gap: 24px;
    }
}

/* ===================================
   BLOG-STYLE PAGE LAYOUT
   =================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    transition: transform 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px;
}

.blog-card-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red);
    margin-bottom: 8px;
    display: block;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-meta);
    margin-bottom: 14px;
}

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

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

/* ===================================
   VOLUNTEER ROLES STRIP
   =================================== */
.roles-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    justify-content: center;
}

.role-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 24px;
    transition: all 0.2s ease;
}

.role-tag:hover {
    background: var(--primary-red);
    color: white;
}
