/* ========================================
   Sub-Pages Shared Styles
   ======================================== */

/* Active nav link */
.nav-center a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Page Hero - dark green banner for sub-pages */
.page-hero {
    background: #003d24;
    padding: 100px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #F4CA16;
    margin: 0 0 16px;
    letter-spacing: 0.02em;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page sections */
.page-section {
    padding: 80px 20px;
}

.page-section-alt {
    background: #f4f5f7;
}

.page-section-green {
    background: #003d24;
}

.page-section-green .section-title {
    color: white;
}

.page-section-green .title-underline-center::before,
.green-bg-section .title-underline-center::before {
    background-image:
        linear-gradient(90deg, transparent 0%, #F4CA16 25%, #F4CA16 38%, transparent 46%),
        linear-gradient(270deg, transparent 0%, #F4CA16 25%, #F4CA16 38%, transparent 46%) !important;
    background-size: 50% 100%, 50% 100%;
    background-position: left center, right center;
    background-repeat: no-repeat;
}

.page-section-green .title-underline-center::after,
.green-bg-section .title-underline-center::after {
    color: #F4CA16;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- Steps Timeline ---- */
.steps-timeline {
    max-width: 700px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* Steps with side image layout */
.steps-with-image {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

.steps-with-image.steps-image-right {
    grid-template-columns: 1.2fr 1fr;
}

.steps-with-image .steps-timeline {
    margin: 0;
    max-width: none;
}

.steps-image-side {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.steps-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Slide-in animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.visible,
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll-reveal animation for get-started steps */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.revealed .gs-step-visual {
    animation: gsPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes gsPopIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .steps-with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .steps-with-image.steps-image-right {
        grid-template-columns: 1fr;
    }
    .steps-image-side {
        max-width: 100%;
        margin: 0 auto;
    }
    .steps-with-image.steps-image-right .steps-image-side {
        order: -1;
    }
}

/* Scroll-reveal-section (whole content blocks) */
.scroll-reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal-section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll-reveal directional variants */
.scroll-reveal[data-reveal="left"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal[data-reveal="right"] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal[data-reveal="left"].revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal[data-reveal="right"].revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Dashboard bar fill animation */
.dash-mock-bar-fill {
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 32px;
    bottom: 32px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), rgba(0,39,20,0.15));
    border-radius: 2px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    position: relative;
}

.step-number-circle {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #F4CA16;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 39, 20, 0.25);
    z-index: 1;
}

.step-content h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: var(--tab-inactive);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ---- Two Column Grid ---- */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.col-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.col-heading span {
    font-size: 1.5rem;
}

/* ---- Info List ---- */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list-item {
    padding: 16px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.info-list-accent .info-list-item {
    border-left-color: var(--secondary);
}

/* ---- Card Grid ---- */
.card-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}

.card-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

/* ---- Info Card ---- */
.info-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-card h4 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 600;
}

.info-card p {
    margin: 0;
    color: var(--tab-inactive);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ---- Green info card (white card on green background) ---- */
.page-section-green .info-card {
    background: white;
}

/* ---- Icon Card ---- */
.icon-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-card .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
}

.icon-card .icon-circle.accent {
    background: var(--secondary);
}

.icon-card .icon-circle.danger {
    background: var(--danger);
}

.icon-card h4 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 600;
}

.icon-card p {
    margin: 0;
    color: var(--tab-inactive);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Agir ensemble carousel animation */
@keyframes agirCarouselSlide {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.agir-card-animate {
    opacity: 0;
    animation: agirCarouselSlide 0.8s ease-out forwards;
}

.agir-card-1 {
    animation-delay: 0.2s;
}

.agir-card-2 {
    animation-delay: 0.5s;
}

.agir-card-3 {
    animation-delay: 0.8s;
}

/* ---- Number Circle Card  ---- */
.number-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.number-card .num-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.number-card h4 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 600;
}

.number-card p {
    margin: 0;
    color: var(--tab-inactive);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ---- Article Card ---- */
.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-card-header {
    height: 180px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.article-card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.article-card-header span {
    margin-top: 4px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.article-card-body {
    padding: 24px;
}

.article-card-body p {
    margin: 0 0 16px;
    color: var(--tab-inactive);
    line-height: 1.7;
    font-size: 0.95rem;
}

.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-card-footer .read-time {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.article-card-footer .btn-sm {
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.article-card-footer .btn-sm:hover {
    background: var(--primary-dark);
}

/* ---- Testimonial Card ---- */
.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    margin: 0;
    color: var(--primary);
    font-size: 1rem;
}

.testimonial-info span {
    color: var(--tab-inactive);
    font-size: 0.85rem;
}

.testimonial-card p.quote {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ---- Pricing Card ---- */
.pricing-card {
    max-width: 540px;
    margin: 48px auto 0;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary);
    text-align: center;
}

.pricing-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin: 0 0 8px;
}

.pricing-card .pricing-sub {
    color: var(--tab-inactive);
    margin: 0 0 24px;
}

.pricing-card .pricing-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.pricing-card .pricing-desc {
    color: var(--tab-inactive);
    margin: 8px 0 28px;
}

.pricing-card .pricing-features {
    background: #f4f5f7;
    border-radius: 8px;
    padding: 24px;
    text-align: left;
}

.pricing-card .pricing-features h4 {
    color: var(--primary);
    margin: 0 0 12px;
    font-size: 1rem;
}

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

.pricing-card .pricing-features li {
    padding: 6px 0;
    color: #555;
    font-size: 0.95rem;
}

.pricing-card .pricing-features li::before {
    content: '•';
    color: var(--primary);
    font-weight: 700;
    margin-right: 10px;
}

/* ---- Dashboard Mock ---- */
.dashboard-mock {
    background: #f4f5f7;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dashboard-mock-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dashboard-mock-item h4 {
    margin: 0 0 6px;
    color: var(--primary);
    font-size: 1rem;
}

.dashboard-mock-item p {
    margin: 0;
    color: var(--tab-inactive);
    font-size: 0.9rem;
}

/* ---- FAQ Styles ---- */
.faq-search-wrap {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-search-wrap input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.faq-search-wrap input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 39, 20, 0.08);
}

.faq-search-wrap i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.1rem;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    background: #f8f9fa;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 20px 24px;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    margin: 0;
    color: var(--tab-inactive);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ---- Contact Options row ---- */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.contact-option {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-option .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: white;
}

.contact-option h4 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 1rem;
}

.contact-option p {
    margin: 0 0 16px;
    color: var(--tab-inactive);
    font-size: 0.9rem;
}

.contact-option .btn-sm {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.contact-option .btn-sm:hover {
    background: var(--primary-dark);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .page-hero {
        padding: 80px 20px 48px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .page-section {
        padding: 60px 16px;
    }

    .steps-timeline::before {
        left: 22px;
    }

    .step-number-circle {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .step-item {
        gap: 16px;
    }
}

/* ========================================
   CTA Section for Sub-Pages
   Matches homepage design language
   ======================================== */
.cta-section-pages {
    padding: 80px 20px;
    background: linear-gradient(135deg, #003d24, #005a35);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-section-pages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4CA16, rgba(255,255,255,0.4), #F4CA16);
}

.cta-section-pages h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
}

.cta-section-pages p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 36px;
    max-width: 550px;
}

.cta-section-pages .cta-buttons-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section-pages .cta-new-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cta-section-pages .cta-new-btn-primary {
    background: #F4CA16;
    color: #003d24;
    border: none;
    box-shadow: 0 4px 20px rgba(244, 202, 22, 0.35);
}

.cta-section-pages .cta-new-btn-primary:hover {
    background: #ffd633;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 202, 22, 0.45);
}

.cta-section-pages .cta-new-btn-primary i {
    transition: transform 0.3s ease;
}

.cta-section-pages .cta-new-btn-primary:hover i {
    transform: translateX(4px);
}

.cta-section-pages .cta-new-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.cta-section-pages .cta-new-btn-outline:hover {
    background: white;
    color: #003d24;
    transform: translateY(-3px);
    border-color: white;
}

@media (max-width: 600px) {
    .cta-section-pages h2 {
        font-size: 1.8rem;
    }

    .cta-section-pages .cta-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .cta-section-pages .cta-new-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Hero placeholder image */
.hero-image-placeholder {
    width: 100%;
    max-width: 700px;
    height: 300px;
    margin: 30px auto 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    gap: 10px;
}

/* Hero image wrapper (proper) */
.hero-image-wrapper {
    max-width: 520px;
    margin: 32px auto 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    display: block;
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        max-width: 300px;
        margin-top: 24px;
    }
}


/* ============================================
   CAUSES & SOLUTIONS (improved design)
   ============================================ */
.causes-solutions-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
    margin-top: 48px;
}

.cs-column {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.cs-column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    color: white;
    font-size: 1rem;
}

.cs-column-header i {
    font-size: 1.3rem;
}

.cs-column-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.cs-header-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.cs-header-success {
    background: linear-gradient(135deg, var(--primary), #00a86b);
}

.cs-items {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: white;
}

.cs-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 12px;
    transition: background 0.2s, transform 0.2s;
}

.cs-item:hover {
    background: #f8f9fa;
    transform: translateX(4px);
}

.cs-solutions .cs-item:hover {
    background: #f0fdf4;
}

.cs-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.cs-icon-danger {
    background: #fef2f2;
    color: #e74c3c;
}

.cs-icon-success {
    background: #f0fdf4;
    color: var(--primary);
}

.cs-item h4 {
    margin: 0 0 3px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
}

.cs-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.cs-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .causes-solutions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cs-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
    }
}


/* ============================================
   ROTATING IMAGE SLIDESHOW
   ============================================ */
.rotating-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.rotating-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.rotating-img.active {
    opacity: 1;
}


/* ============================================
   PRESS ARTICLES GRID
   ============================================ */
.press-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.press-article-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.press-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
}

.press-article-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.press-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.press-article-card:hover .press-article-img img {
    transform: scale(1.05);
}

.press-article-img-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-article-img-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
}

.press-article-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.press-article-source {
    font-size: 0.78rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.press-article-source i {
    margin-right: 4px;
    color: var(--primary);
}

.press-article-body h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-article-body p {
    margin: 0;
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-article-link {
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.press-article-card:hover .press-article-link {
    gap: 10px;
}

.press-article-link i {
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .press-articles-grid {
        grid-template-columns: 1fr;
    }
    .press-article-img {
        height: 160px;
    }
}


/* ============================================
   WHY SPLIT GRID (image + benefit cards)
   ============================================ */
.why-split-grid {
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

.why-split-grid.why-split-reverse {
    direction: rtl;
}

.why-split-grid.why-split-reverse > * {
    direction: ltr;
}

.why-split-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.why-split-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 61, 36, 0.15));
}

.why-split-cards {
    background: #003d24;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-mini-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary);
}

.why-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.why-mini-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), rgba(0, 61, 36, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.why-mini-card h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
}

.why-mini-card p {
    margin: 0;
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .why-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .why-split-grid.why-split-reverse {
        direction: ltr;
    }

    .why-split-image{
        order: -1; /*makes image div appear over the cards on mobile*/
    }

    .why-split-image img {
        max-width: 100%;
    }
}


/* ============================================
   GET STARTED STEPS (image cards with arrows)
   ============================================ */
.get-started-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
}

.gs-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 16px;
}

.gs-step-visual {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-shadow: 0 8px 30px rgba(0, 61, 36, 0.1);
}

.gs-step-visual img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    border-radius: 12px;
}

.gs-step-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #F4CA16;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 61, 36, 0.3);
    z-index: 2;
}

.gs-step h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
}

.gs-step p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.gs-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .get-started-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .gs-step-arrow {
        padding-top: 0;
        transform: rotate(90deg);
    }
    .gs-step-visual {
        width: 140px;
        height: 140px;
    }
}


/* ============================================
   GREEN BG SECTION DECORATIVE ELEMENTS
   ============================================ */
.green-bg-section {
    position: relative;
    overflow: hidden;
}

/* Decorative circles - ONLY visible in green sections */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 0;
}

/* Hide bubbles on non-green sections */
.page-section:not(.green-bg-section) > .decorative-circle {
    display: none !important;
}

/* Pattern 1: Top-left and Bottom-right (opposite diagonal) */
.green-bg-section .demo-circle-1,
.page-section .demo-circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(244, 202, 22, 0.08), transparent);
}

.green-bg-section .demo-circle-2,
.page-section .demo-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 61, 36, 0.06), transparent);
}

/* Pattern 2: Top-right and Bottom-left (opposite diagonal) */
.green-bg-section .demo-circle-3,
.page-section .demo-circle-3 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(244, 202, 22, 0.08), transparent);
}

.green-bg-section .demo-circle-4,
.page-section .demo-circle-4 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 61, 36, 0.06), transparent);
}

/* White backgrounds for green sections */
.green-bg-section .demo-circle-1,
.green-bg-section .demo-circle-3 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent);
}

.green-bg-section .demo-circle-2,
.green-bg-section .demo-circle-4 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
}

.green-bg-section .container {
    position: relative;
    z-index: 1;
}

/* Bubble animations */
.bubble-float {
    animation: bubbleFloat 6s ease-in-out infinite;
}

.bubble-float-alt {
    animation: bubbleFloatAlt 8s ease-in-out infinite;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(15px, -20px); }
    50% { transform: translate(-10px, -35px); }
    75% { transform: translate(20px, -15px); }
}

@keyframes bubbleFloatAlt {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-20px, 15px); }
    66% { transform: translate(15px, -25px); }
}


/* ============================================
   FAQ PREVIEW (accordion style)
   ============================================ */
.faq-preview-list {
    max-width: 900px;
    width: 90%;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-preview-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-preview-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-preview-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    transition: color 0.2s;
    font-family: inherit;
}

.faq-preview-q:hover {
    color: var(--primary);
}

.faq-preview-q i {
    transition: transform 0.3s ease;
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-preview-item.open .faq-preview-q i {
    transform: rotate(180deg);
}

.faq-preview-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-preview-item.open .faq-preview-a {
    max-height: 300px;
    padding: 0 24px 18px;
}

.faq-preview-a p {
    margin: 0;
    font-size: 0.93rem;
    color: #666;
    line-height: 1.7;
}

/* Green bg overrides for FAQ preview */
.green-bg-section .faq-preview-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.green-bg-section .faq-preview-item:hover {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.green-bg-section .faq-preview-q {
    color: white;
}

.green-bg-section .faq-preview-q:hover {
    color: #F4CA16;
}

.green-bg-section .faq-preview-q i {
    color: #F4CA16;
}

.green-bg-section .faq-preview-a p {
    color: rgba(255, 255, 255, 0.8);
}

.green-bg-section .contact-option .btn-sm:hover {
    background: #ffd633;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .faq-preview-list {
        max-width: 85%;
        width: 95%;
    }
}

@media (max-width: 768px) {
    .faq-preview-list {
        max-width: 100%;
        width: 95%;
    }
    
    .faq-preview-q {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .faq-preview-a {
        padding: 0 20px;
    }
    
    .faq-preview-item.open .faq-preview-a {
        padding: 0 20px 16px;
    }
}

@media (max-width: 480px) {
    .faq-preview-q {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .faq-preview-a {
        padding: 0 16px;
    }
    
    .faq-preview-item.open .faq-preview-a {
        padding: 0 16px 14px;
    }
    
    .faq-preview-a p {
        font-size: 0.88rem;
    }
}


/* ============================================
   DASHBOARD SHOWCASE (business page)
   ============================================ */
.dashboard-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

.dashboard-showcase-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
    transition: background 0.2s;
}

.dashboard-feature-item:hover {
    background: #f8faf9;
}

.dashboard-feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 61, 36, 0.1), rgba(0, 61, 36, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.dashboard-feature-item h4 {
    margin: 0 0 3px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
}

.dashboard-feature-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

/* Dashboard mock card */
.dash-mock-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.dash-mock-header {
    padding: 12px 16px;
    background: #f7f7f7;
    display: flex;
    gap: 6px;
}

.dash-mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-mock-body {
    padding: 24px;
}

.dash-mock-stat {
    text-align: center;
    margin-bottom: 20px;
}

.dash-mock-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.dash-mock-stat-value small {
    font-size: 1.2rem;
    font-weight: 600;
}

.dash-mock-stat-label {
    font-size: 0.85rem;
    color: #888;
    margin-top: 4px;
}

.dash-mock-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.dash-mock-mini {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    background: #f0fdf4;
    border-radius: 10px;
}

.dash-mock-mini-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.dash-mock-mini-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
}

.dash-mock-bar {
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.dash-mock-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #00a86b);
    border-radius: 4px;
    transition: width 1s ease;
}

.dash-mock-bar-label {
    font-size: 0.78rem;
    color: #888;
    text-align: center;
}

@media (max-width: 768px) {
    .dashboard-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   HERO DESIGN VARIATIONS
   ======================================== */

/* Hero Design 1: Image Left, Text Right Card */
.page-hero-design-1 {
    background: #003d24;
    padding: 100px 20px 80px;
}

.page-hero-design-1 .hero-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.page-hero-design-1 .hero-image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 61, 36, 0.15);
    position: relative;
}

.page-hero-design-1 .hero-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 61, 36, 0.3), transparent);
    z-index: 1;
}

.page-hero-design-1 .hero-image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.page-hero-design-1 .hero-text-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.page-hero-design-1 .hero-badge {
    display: inline-block;
    background: rgba(244, 202, 22, 0.15);
    color: #003d24;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-hero-design-1 .hero-badge i {
    margin-right: 6px;
    color: #F4CA16;
}

.page-hero-design-1 h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #003d24;
    margin: 0 0 16px;
    line-height: 1.2;
}

.page-hero-design-1 p {
    font-size: 1.1rem;
    color: #555;
    margin: 0 0 28px;
    line-height: 1.6;
}

.btn-hero {
    background: #F4CA16;
    color: #003d24;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #e0b814;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 202, 22, 0.4);
}

.btn-hero i {
    margin-left: 8px;
}

/* Hero Design 2: Side by Side Split */
.page-hero-design-2 {
    padding: 0;
    background: transparent;
}

.page-hero-design-2 .hero-full-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.page-hero-design-2 .hero-split-text {
    background: #003d24;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.page-hero-design-2 .hero-content-inner {
    max-width: 500px;
}

.page-hero-design-2 .hero-badge {
    display: inline-block;
    background: rgba(244, 202, 22, 0.2);
    color: #F4CA16;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-hero-design-2 .hero-badge i {
    margin-right: 6px;
}

.page-hero-design-2 h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #F4CA16;
    margin: 0 0 16px;
    line-height: 1.2;
}

.page-hero-design-2 p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px;
    line-height: 1.6;
}

.page-hero-design-2 .hero-stats-mini {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.page-hero-design-2 .mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    border-radius: 12px;
    flex: 1;
}

.page-hero-design-2 .mini-stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F4CA16;
    margin-bottom: 4px;
}

.page-hero-design-2 .mini-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-design-2 .hero-split-img {
    position: relative;
    overflow: hidden;
}

.page-hero-design-2 .hero-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Hide decorative bubbles on hero sections with images */
.page-hero-design-2 .decorative-circle {
    display: none;
}

/* Hide decorative bubbles on hero sections with images */
.page-hero-design-2 .decorative-circle {
    display: none;
}

.page-hero-design-2 .hero-split-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 61, 36, 0.3), transparent);
}

/* Hero Design 3: Full Background with Overlay */
.page-hero-design-3 {
    position: relative;
    padding: 150px 20px;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-design-3 .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.page-hero-design-3 .hero-bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 61, 36, 0.85), rgba(0, 61, 36, 0.6));
    z-index: 1;
}

.page-hero-design-3 .container {
    position: relative;
    z-index: 2;
}

.page-hero-design-3 .hero-overlay-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-design-3 .hero-badge {
    display: inline-block;
    background: rgba(244, 202, 22, 0.3);
    color: #F4CA16;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-hero-design-3 .hero-badge i {
    margin-right: 6px;
}

.page-hero-design-3 h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-hero-design-3 p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px;
    line-height: 1.6;
}

.page-hero-design-3 .hero-impact-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.page-hero-design-3 .impact-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(244, 202, 22, 0.15);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(244, 202, 22, 0.3);
}

.page-hero-design-3 .impact-stat i {
    font-size: 1.5rem;
    color: #F4CA16;
}

.page-hero-design-3 .impact-stat span {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ========================================
   WASTE INFOGRAPHIC V2 - Pins around bag
   ======================================== */

.waste-infographic-v2 {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 900 / 700;
}

/* SVG arrow layer */
.waste-arrows-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.waste-arrow-path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.55;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.waste-arrow-dot {
    fill: var(--primary);
    opacity: 0;
}

/* Center bag */
.waste-bag-v2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36%;
    z-index: 2;
}

.waste-bag-v2 img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.waste-bag-v2 img:hover {
    transform: scale(1.04);
}

/* Pin: numbered circle + label */
.waste-pin {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.waste-pin-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #F4CA16;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 39, 20, 0.35);
    flex-shrink: 0;
    border: 3px solid rgba(244, 202, 22, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.waste-pin:hover .waste-pin-circle {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(0, 39, 20, 0.45);
}

.waste-pin-label {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: white;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 3px solid var(--primary);
    min-width: 130px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waste-pin:hover .waste-pin-label {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
}

/* Right-side pins: label on the right (default) */
/* Left-side pins: reversed — label on the left */
.waste-pin-1,
.waste-pin-2,
.waste-pin-3 {
    flex-direction: row-reverse;
}

.waste-pin-1 .waste-pin-label,
.waste-pin-2 .waste-pin-label,
.waste-pin-3 .waste-pin-label {
    text-align: right;
    border-left: none;
    border-right: 3px solid var(--primary);
}

.waste-pin-pct {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.waste-pin-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.waste-pin-sub {
    font-size: 0.72rem;
    color: #999;
    line-height: 1.2;
}

/* === Pin positions (percentage-based for responsiveness) === */
/* Left side: 1 top-left, 2 mid-left, 3 bottom-left */
.waste-pin-1 { top: 8%;  left: 0%;  }
.waste-pin-2 { top: 40%; left: 0%;  }
.waste-pin-3 { top: 72%; left: 0%;  }

/* Right side: 4 top-right, 5 mid-right, 6 bottom-right */
.waste-pin-4 { top: 8%;  right: 0%; }
.waste-pin-5 { top: 40%; right: 0%; }
.waste-pin-6 { top: 72%; right: 0%; }

/* === Animation: pins fly in from their side === */
.waste-pin-anim {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.waste-pin-1.waste-pin-anim,
.waste-pin-2.waste-pin-anim,
.waste-pin-3.waste-pin-anim {
    transform: translateX(-40px) scale(0.85);
}

.waste-pin-4.waste-pin-anim,
.waste-pin-5.waste-pin-anim,
.waste-pin-6.waste-pin-anim {
    transform: translateX(40px) scale(0.85);
}

.waste-pin-anim.waste-pin-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* === Responsive: tablet === */
@media (max-width: 1000px) {
    .waste-infographic-v2 {
        max-width: 700px;
    }

    .waste-pin-circle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .waste-pin-label {
        padding: 8px 10px;
        min-width: 110px;
    }

    .waste-pin-pct {
        font-size: 1.25rem;
    }

    .waste-pin-name {
        font-size: 0.82rem;
    }
}

/* === Responsive: mobile — stack vertically === */
@media (max-width: 768px) {
    .waste-infographic-v2 {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }

    .waste-arrows-svg {
        display: none;
    }

    .waste-bag-v2 {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 220px;
        order: -1;
    }

    .waste-pin {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        flex-direction: row !important;
        width: 100%;
        max-width: 320px;
    }

    .waste-pin-1 .waste-pin-label,
    .waste-pin-2 .waste-pin-label,
    .waste-pin-3 .waste-pin-label {
        text-align: left;
        border-right: none;
        border-left: 3px solid var(--primary);
    }

    .waste-pin-circle {
        width: 40px;
        height: 40px;
    }

    .waste-pin-label {
        flex: 1;
    }

    /* Animation: all from bottom on mobile */
    .waste-pin-anim {
        transform: translateY(24px) scale(0.92) !important;
    }

    .waste-pin-anim.waste-pin-visible {
        opacity: 1;
        transform: translateY(0) scale(1) !important;
    }
}

@media (max-width: 480px) {
    .waste-bag-v2 {
        width: 180px;
    }

    .waste-pin {
        max-width: 280px;
    }

    .waste-pin-pct {
        font-size: 1.15rem;
    }
}

/* Footer Design 3 styles are in landing.css (shared across all pages) */
.footer-design-2 .footer-two-col {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-design-2 .footer-left-col h3 {
    color: #F4CA16;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.footer-design-2 .footer-newsletter {
    max-width: 300px;
}

.footer-design-2 .footer-newsletter .newsletter-title {
    text-align: left;
}

.footer-design-2 .footer-right-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-design-2 .footer-social-block .social {
    justify-content: flex-start;
}

.footer-design-2 .footer-copyright p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer Design 3 styles are in landing.css (shared across all pages) */

/* ========================================
   RESPONSIVE HERO & FOOTER DESIGNS
   ======================================== */

@media (max-width: 968px) {
    /* Hero Design 1 */
    .page-hero-design-1 .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .page-hero-design-1 .hero-image-card img {
        height: 400px;
    }
    
    .page-hero-design-1 h1 {
        font-size: 2.2rem;
    }
    
    /* Hero Design 2 - Keep side by side, adjust sizing */
    .page-hero-design-2 .hero-full-split {
        min-height: 450px;
    }
    
    .page-hero-design-2 .hero-split-text {
        padding: 40px 30px;
    }
    
    .page-hero-design-2 h1 {
        font-size: 2.2rem;
    }
    
    .page-hero-design-2 .hero-content-inner {
        max-width: 100%;
    }
    
    .page-hero-design-2 .hero-stats-mini {
        gap: 12px;
    }
    
    .page-hero-design-2 .mini-stat {
        padding: 10px 14px;
    }
    
    .page-hero-design-2 .mini-stat-num {
        font-size: 1.4rem;
    }
    
    /* Hero Design 3 */
    .page-hero-design-3 {
        padding: 100px 20px;
        min-height: 500px;
    }
    
    .page-hero-design-3 h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-design-3 .hero-overlay-content {
        padding: 36px 28px;
    }
    
    .page-hero-design-3 .hero-impact-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    /* Footer Design 2 */
    .footer-design-2 .footer-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer Design 3 */
    .footer-design-3 .footer-three-col {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-design-3 .footer-col-3 p {
        text-align: center !important;
    }
    
    .footer-design-3 .footer-newsletter {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .page-hero-design-1 .hero-text-card {
        padding: 32px 24px;
    }
    
    .page-hero-design-1 h1 {
        font-size: 1.8rem;
    }
    
    /* Hero Design 2 - Still side by side, compact */
    .page-hero-design-2 .hero-full-split {
        min-height: 380px;
    }
    
    .page-hero-design-2 .hero-split-text {
        padding: 30px 20px;
    }
    
    .page-hero-design-2 h1 {
        font-size: 1.8rem;
    }
    
    .page-hero-design-2 p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .page-hero-design-2 .hero-stats-mini {
        gap: 6px;
        margin-bottom: 16px;
    }
    
    .page-hero-design-2 .mini-stat {
        padding: 8px 10px;
    }
    
    .page-hero-design-2 .mini-stat-num {
        font-size: 1.1rem;
    }
    
    .page-hero-design-2 .mini-stat-label {
        font-size: 0.7rem;
    }
    
    .page-hero-design-2 .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    
    .page-hero-design-2 .btn-hero {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .page-hero-design-3 h1 {
        font-size: 2rem;
    }
    
    .page-hero-design-3 p {
        font-size: 1.05rem;
    }
}

/* Use background image approach for consumer/business heroes on very small screens */
@media (max-width: 600px) {
    .consumer-hero,
    .business-hero {
        position: relative;
        overflow: hidden;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .consumer-hero .hero-full-split,
    .business-hero .hero-full-split {
        display: block;
        position: relative;
        z-index: 2;
        width: 100%;
        min-height: auto;
    }
    
    .consumer-hero .hero-split-img,
    .business-hero .hero-split-img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        order: initial;
        min-height: initial;
        max-height: initial;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .consumer-hero .hero-split-img::after,
    .business-hero .hero-split-img::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 61, 36, 0.85), rgba(0, 61, 36, 0.7));
        z-index: 1;
    }
    
    .consumer-hero .hero-split-img img,
    .business-hero .hero-split-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .consumer-hero .hero-split-text,
    .business-hero .hero-split-text {
        padding: 50px 24px 40px;
        order: initial;
        background: transparent;
        position: relative;
        z-index: 2;
    }
    
    .consumer-hero h1,
    .business-hero h1 {
        font-size: 1.8rem;
    }
    
    .consumer-hero p,
    .business-hero p {
        font-size: 0.95rem;
    }
    
    .consumer-hero .hero-stats-mini,
    .business-hero .hero-stats-mini {
        display: flex !important;
        gap: 8px;
    }
    
    .consumer-hero .mini-stat,
    .business-hero .mini-stat {
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.12);
    }
    
    .consumer-hero .mini-stat-num,
    .business-hero .mini-stat-num {
        font-size: 1.1rem;
    }
    
    .consumer-hero .mini-stat-label,
    .business-hero .mini-stat-label {
        font-size: 0.7rem;
    }
    
    .consumer-hero + .page-section,
    .business-hero + .page-section {
        padding-top: 48px;
    }
}
