:root {
    --brand-start: #2d5a52;
    --brand-end: #417a6f;
    --accent: #f59e0b;
    --paw-color: #fb923c;
}

body {
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
}

.brand-gradient {
    background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
}

.btn-brand {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: #fff;
    font-weight: 800;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}

/* Hero Section Styling */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 40px;
}

.hero-bg-swiper {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.35);
}

/* Fixed Navbar (Non-Sticky) */
#main-nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem 0;
}

@media (min-width: 1024px) {
    #main-nav {
        top: 40px;
    }
}

.campaignSwiper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.campaign-img-container {
    border-radius: 12px;
    margin: 12px;
    overflow: hidden;
    height: 180px;
}

#mobile-sidebar {
    transform: translateX(-100%);
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-sidebar.open {
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 60px;
        flex-direction: column;
    }

    .hero-text-content {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .hero-text-content h1 {
        font-size: 2.1rem !important;
        line-height: 1.2;
    }

    .campaignSwiper {
        max-width: 320px;
    }

    .campaign-img-container {
        height: 150px;
    }
}

/* Swiper Active Bullet */
.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    width: 25px !important;
    border-radius: 4px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Announcement Scrolling Bar */
.announcement-bar {
    width: 100%;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 998;
}

.announcement-track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    padding: 10px 0;
    animation: scrollText 25s linear infinite;
}

.announcement-track span {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Animation */
@keyframes scrollText {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .announcement-track span {
        font-size: 12px;
    }
}

/* Campaign Card */
.campaign-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: .35s ease;
    display: flex;
    flex-direction: column;
}

.campaign-card:hover {
    transform: translateY(-8px);
}

/* Image */
.campaign-img {
    height: 220px;
    position: relative;
}

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

/* Badge */
.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 900;
    border-radius: 999px;
    color: #fff;
}

.badge.urgent {
    background: #ef4444;
}

.badge.daily {
    background: var(--accent);
}

.badge.care {
    background: var(--brand-end);
}

/* Body */
.campaign-body {
    padding: 22px;
    flex: 1;
}

.campaign-body h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-start);
    margin-bottom: 8px;
}

.campaign-body p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* Progress */
.animal-meter-container {
    position: relative;
    padding: 10px 0 25px 0;
}

.meter-track {
    height: 10px;
    background: #e2e8f0;
    border-radius: 10px;
    position: relative;
    overflow: visible;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-start), var(--brand-end));
    border-radius: 10px;
    position: relative;
}

/* The Paw Icon on the Meter */
.meter-paw {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: white;
    border: 2px solid var(--paw-color);
    color: var(--paw-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 3;
    transition: 0.3s;
}

.campaign-card:hover .meter-paw {
    transform: translateY(-50%) rotate(15deg) scale(1.1);
}

.meter-percent {
    position: absolute;
    right: 0;
    bottom: -22px;
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-end);
}

/* Footer */
.campaign-footer {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.supporters {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    color: var(--brand-end);
}

.supporters i {
    color: #ef4444;
}

.supporter-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--brand-end);
}

.supporter-pill i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Donate Button */
.donate-btn {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    padding: 10px 18px;
    border-radius: 999px;
    transition: .3s ease;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, .35);
}

/* Mobile */
@media (max-width: 640px) {
    .campaign-img {
        height: 180px;
    }

    .campaign-body h3 {
        font-size: 18px;
    }
}

.campaign-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .3s;
}

.campaign-card:hover {
    transform: translateY(-6px);
}

/* Image */
.campaign-img {
    height: 230px;
    position: relative;
}

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

/* BADGE – PREMIUM VERIFIED */
.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 999px;
    color: #fff;
    background: #16a34a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge i {
    font-size: 12px;
}

/* Body */
.campaign-body {
    padding: 18px;
}

.campaign-body h3 {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

/* Stats */
.campaign-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

/* SUPPORTER – PREMIUM */
.supporter {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-weight: 800;
}

.supporter i {
    color: #16a34a;
    font-size: 14px;
}

/* Progress */
.progress-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 14px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
}

/* Footer */
.campaign-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

social-icons a {
    text-decoration: none;
}

.social-icons a i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    margin-right: 6px;
    font-size: 14px;
    transition: .3s ease;
}

.social-icons a:hover i {
    background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
    color: #fff;
}


/* Button */
.donate-btn {
    background: #ff7a3d;
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.about-outer {
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .08);
}

/* --- LEFT PANEL --- */
.about-left {
    flex: 1.2;
    background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.left-content {
    padding: 60px;
    position: relative;
    z-index: 2;
}

.about-left h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: #fff;
}

.about-left p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    opacity: .9;
    max-width: 520px;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.facility-item i {
    color: var(--paw-color);
}

.facility-text {
    font-size: 14px;
    font-weight: 600;
}

.facility-subtext {
    font-size: 12px;
    display: block;
    opacity: 0.7;
    font-weight: 400;
}

.left-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.btn-orange {
    background: var(--accent);
    padding: 14px 30px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 8px 15px rgba(245, 158, 11, 0.2);
}

.btn-outline {
    border: 2px solid #fff;
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-orange:hover {
    transform: translateY(-2px);
    background: var(--paw-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* --- RIGHT PANEL --- */
.about-right {
    flex: 0.8;
    background: #f8faf5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
}

.blob {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    background: #fff;
    border: 4px solid #fff;
    transition: transform 0.4s ease;
}

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

.blob-main {
    width: 220px;
    height: 220px;
    border-radius: 60% 40% 55% 45% / 55% 45% 55% 45%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: float-main 6s ease-in-out infinite;
}

.blob-top {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    top: 0;
    right: 20px;
    z-index: 5;
    animation: float-sub 8s ease-in-out infinite;
}

.blob-right {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: 40px;
    right: -10px;
    z-index: 8;
    animation: float-sub 7s ease-in-out infinite reverse;
}

.blob-bottom {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    bottom: 0;
    left: 10px;
    z-index: 5;
    animation: float-sub 9s ease-in-out infinite 1s;
}

@keyframes float-main {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes float-sub {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    33% {
        transform: translateY(-10px) translateX(5px);
    }

    66% {
        transform: translateY(5px) translateX(-5px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }

    .left-content {
        padding: 50px 30px;
        text-align: center;
    }

    .facilities-grid {
        text-align: left;
    }

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

    .about-right {
        padding: 60px 20px;
    }

    .collage-wrapper {
        height: 350px;
        margin: auto;
    }
}

@media (max-width: 576px) {
    .about-left h1 {
        font-size: 36px;
    }

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

    .btn-orange,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .blob-main {
        width: 180px;
        height: 180px;
    }
}

.section-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 30px 24px;
    text-align: center;
    font-weight: bold;
}

/* --- TOP DETAILS & TITLE --- */
.top-details {
    margin-bottom: 90px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: var(--brand-end);
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 2px;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.main-title {

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.25;
    color: var(--brand-start);
    margin: 0 auto 25px;
    max-width: 780px;
    font-weight: 800;
}

.main-title .heart-icon {
    font-family: sans-serif;
    font-size: 0.85em;
    color: var(--accent);
    margin-left: 8px;
    font-weight: 300;
}

.sub-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--brand-end);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

/* --- 3 CARDS GRID --- */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.impact-card {
    background: #fff;
    padding: 60px 35px;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
}

.impact-card:nth-child(1) {
    animation: fadeIn 0.8s 0.2s forwards;
}

.impact-card:nth-child(2) {
    animation: fadeIn 0.8s 0.4s forwards;
}

.impact-card:nth-child(3) {
    animation: fadeIn 0.8s 0.6s forwards;
}

.impact-card:hover {
    transform: translateY(-10px);
    border-color: var(--paw-color);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
}

/* Circular Image Frame */
.image-frame {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 1.5px solid var(--paw-color);
    padding: 10px;
    margin-bottom: 40px;
    position: relative;
    background: #fff;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.5s;
}

.impact-card h3 {

    font-size: 26px;
    color: var(--brand-start);
    margin: 0 0 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.impact-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--brand-start);
    margin: 0;
    font-weight: 400;
}

/* --- FOOTER CTA --- */
.gold-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--paw-color), transparent);
    margin: 0 auto 60px;
    position: relative;
}

.gold-divider::after {
    content: '◆ ◆ ◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 0 20px;
    color: var(--accent);
    font-size: 10px;
    letter-spacing: 5px;
}

.section-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.footer-text {

    font-size: 32px;
    color: var(--primary-dark);
    font-weight: 500;
    margin: 0;
}

.btn-gold {
    background: linear-gradient(135deg, #c5a059, #a38144);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    box-shadow: 0 15px 30px rgba(80, 193, 161, 0.25);
    transition: all 0.4s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(30, 114, 93, 0.35);
}

.link-muted {
    color: var(--brand-start);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    transition: 0.3s;
}

.link-muted:hover {
    color: var(--brand-start);
    border-color: var(--brand-start);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-footer {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .main-title {
        font-size: 36px;
    }

    .image-frame {
        width: 170px;
        height: 170px;
    }
}

.container {
    max-width: 1050px;
    margin: auto;
    padding: 0 14px;
}

.impact-section {
    background: #234d54;
    padding: 70px 0;
    color: #fff;
}

.section-title {
   font-size: clamp(34px, 4vw, 52px);
    line-height: 1.25;
    color: #fff;
    margin: 0 auto 25px;
    max-width: 780px;
    font-weight: 800;
}

.section-subtitle {
    opacity: .85;
    margin-bottom: 35px;
}

/* GRID */

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

.col-left {
    flex: 0 0 64%;
}

.col-right {
    flex: 0 0 32%;
}

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

/* STAT CARD — SMALLER */

.stat-card {
    background: #fff;
    border: 2px solid #c5a059;
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
    color: #234d54;
    transition: .25s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
}

.stat-icon {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 4px 0;
}

.stat-label {
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.2;
}

/* BRAND CARD — COMPACT */

.brand-card {
    border: 2px solid #c5a059;
    border-radius: 20px;
    padding: 28px 18px;
    text-align: center;
    background: rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-holder {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
}

.logo-holder i {
    font-size: 2rem;
    color: #234d54;
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.brand-tagline {
    font-size: .9rem;
}

.brand-footer {
    margin-top: 10px;
    font-size: .8rem;
    opacity: .85;
}

/* TABLET */

@media(max-width:900px) {

    .col-left,
    .col-right {
        flex: 0 0 100%;
    }
}

/* MOBILE */

@media(max-width:560px){

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

    .stat-card{
        padding:14px 8px;
    }

    .stat-number{
        font-size:1.3rem;
    }

    .stat-label{
        font-size:.72rem;
    }

}

 :root {
            --brand-deep: #1e3f3a;
            --brand-primary: #2d5a52;
            --brand-light: #417a6f;
            --accent: #f59e0b;
            --accent-hover: #d97706;
        }

        /* ================= FOOTER ================= */

        body {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
        }

        /* Top Illustration */

        .footer-top-image img {
            width: 100%;
            display: block;
        }

        /* Main Footer */

        .maw-footer {
            background: linear-gradient(135deg, var(--brand-deep), var(--brand-primary));
            color: #fff;
        }

        .footer-main {
            padding: 90px 0 60px;
        }

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

        /* Grid */

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
        }

        /* Logo */

        .footer-logo {
            width: 170px;
            margin-bottom: 20px;
        }

        /* Description */

        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            opacity: .9;
            margin-bottom: 25px;
        }

        /* Headings */

        .footer-col h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--accent);
            bottom: -8px;
            left: 0;
            border-radius: 3px;
        }

        /* Links */

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            text-decoration: none;
            color: #ffffffcc;
            font-size: 14px;
            transition: .3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 6px;
        }

        /* Social */

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

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: .3s ease;
        }

        .footer-social a:hover {
            background: var(--accent);
            color: #000;
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(245, 158, 11, .3);
        }

        /* Contact */

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 14px;
            opacity: .9;
        }

        .contact-item i {
            color: var(--accent);
        }

        /* Bottom */

        .footer-bottom {
            background: #162e2a;
            text-align: center;
            padding: 20px 10px;
            font-size: 13px;
            color: #ffffffaa;
            border-top: 1px solid rgba(255, 255, 255, .05);
        }

        /* ================= RESPONSIVE ================= */

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

        @media(max-width:600px) {
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-social {
                justify-content: center;
            }

            .contact-item {
                justify-content: center;
            }
        }

         .success-section {
            background: linear-gradient(135deg, #ffffff 0%, #e8f3f1 100%);
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 80px 0;
        }

        /* Floral decorations */
        .floral-illustration {
            position: absolute;
            left: -50px;
            bottom: -50px;
            width: 350px;
            opacity: 0.3;
            z-index: 0;
            filter: hue-rotate(140deg) saturate(0.5);
            pointer-events: none;
        }

        /* Carousel Layout */
        .carousel-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 24px;
        }

        .rescue-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.04);
            border: 1px solid rgba(255,255,255,0.8);
            min-width: calc(50% - 12px); /* Logic to show 2 cards */
            padding: 24px;
            position: relative;
            transition: transform 0.3s ease;
        }

        @media (max-width: 1024px) {
            .rescue-card {
                min-width: 100%; /* Show 1 card on smaller screens */
            }
        }

        .btn-gradient {
            background: linear-gradient(to right, #136d61, #04d4b5);
            color: white;
            border-radius: 50px;
            padding: 12px 24px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-gradient:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .badge-status {
            background-color: var(--accent);
            color: white;
            padding: 5px 18px;
            border-radius: 15px 0 15px 0;
            font-size: 14px;
            font-weight: 700;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10;
        }

        .image-pair {
            display: flex;
            gap: 12px;
            margin-top: 15px;
            height: 180px;
        }

        .image-box {
            flex: 1;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .label-overlay {
            position: absolute;
            bottom: 8px;
            left: 8px;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(4px);
            color: white;
            font-size: 11px;
            padding: 2px 10px;
            border-radius: 6px;
            font-weight: 500;
        }

        .nav-btn {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-end);
            box-shadow: 0 6px 15px rgba(0,0,0,0.06);
            cursor: pointer;
            z-index: 50;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: var(--paw-color);
            color: white;
        }

        .dot-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d1e2e0;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .dot-indicator.active {
            background: #8cbab4;
            width: 24px;
            border-radius: 10px;
        }

        /* =====================================================
   MITAN ANIMAL WELFARE — LOGO THEME COLOR OVERRIDE
   Keep all your classes same — only colors changed
===================================================== */

:root {
    --brand-start: #2b5c63;
    --brand-end: #3f7a80;
    --brand-light: #6aa5a9;

    --brand-deep: #234e54;
    --brand-primary: #2f666d;
    --brand-light-2: #4f8f95;

    --accent: #c98a3a;
    --accent-hover: #a8742f;

    --paw-color: #c98a3a;

    --soft-bg: #f2f4f5;
    --soft-border: #dbe5e7;
}

/* ================= GLOBAL ================= */

body {
    background-color: var(--soft-bg);
}

/* ================= GRADIENTS ================= */

.brand-gradient,
.impact-section,
.maw-footer {
    background: linear-gradient(135deg, var(--brand-start), var(--brand-end)) !important;
}

/* ================= BUTTONS ================= */

.btn-brand,
.donate-btn,
.btn-orange,
.btn-gradient,
.btn-gold {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
    color: #fff !important;
}

.btn-brand:hover,
.donate-btn:hover,
.btn-orange:hover,
.btn-gradient:hover,
.btn-gold:hover {
    filter: brightness(1.05);
}

/* ================= BADGES ================= */

.badge,
.badge.daily {
    background: var(--accent) !important;
    color: #fff !important;
}

.badge.care {
    background: var(--brand-end) !important;
}

.badge.urgent {
    background: #b91c1c !important;
}

/* ================= TEXT COLORS ================= */

.main-title,

.campaign-body h3,
.impact-card h3 {
    color: var(--brand-start) !important;
}

.sub-description,
.campaign-body p {
    color: var(--brand-end) !important;
}

/* ================= LINKS ================= */

.link-muted {
    color: var(--brand-start) !important;
    border-color: var(--accent) !important;
}

.link-muted:hover {
    border-color: var(--brand-start) !important;
}

/* ================= PROGRESS / METERS ================= */

.meter-fill,
.progress-fill {
    background: linear-gradient(90deg, var(--brand-start), var(--brand-end)) !important;
}

.meter-paw {
    border-color: var(--paw-color) !important;
    color: var(--paw-color) !important;
}

/* ================= CARDS ================= */

.stat-card,
.brand-card {
    border-color: var(--accent) !important;
}

.impact-card:hover {
    border-color: var(--accent) !important;
}

/* ================= ICON COLORS ================= */

.supporter i,
.contact-item i {
    color: var(--brand-end) !important;
}

/* ================= SOCIAL ================= */

.footer-social a:hover {
    background: var(--accent) !important;
    color: #000 !important;
}

/* ================= DIVIDERS ================= */

.gold-divider {
    background: linear-gradient(
        to right,
        transparent,
        var(--accent),
        transparent
    ) !important;
}

/* ================= NAV BUTTON ================= */

.nav-btn:hover {
    background: var(--accent) !important;
    color: #fff !important;
}

/* ================= DOT INDICATOR ================= */

.dot-indicator.active {
    background: var(--brand-end) !important;
}

/* ================= FOOTER ================= */

.footer-bottom {
    background: #1b3e43 !important;
}

/* ================= ANNOUNCEMENT BAR ================= */

.announcement-bar {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
}
.maw-footer {
    background: linear-gradient(
        135deg,
        #e8f3f1 0%,
        #c2e7e1 40%,
        #a2cdc7 100%
    ) !important;
    color: #2b5c63 !important;  /* logo deep teal text */
}
.maw-footer h4 {
    color: #2b5c63 !important;
}

/* footer links */
.footer-col ul li a {
    color: #3f7a80 !important;
}

.footer-col ul li a:hover {
    color: var(--accent) !important;
}

/* description text */
.footer-desc {
    color: #3f7a80 !important;
    opacity: .95;
}

/* social icons */
.footer-social a {
    background: #ffffff !important;
    color: #2b5c63 !important;
    border: 1px solid #cfe3e0 !important;
}

.footer-social a:hover {
    background: var(--accent) !important;
    color: #fff !important;
}

/* contact icons */
.contact-item i {
    color: var(--accent) !important;
}

    .services-section {
            background: linear-gradient(135deg, #f8fcfb 0%, #e8f3f1 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* Decorative background elements */
        .decor-circle {
            position: absolute;
            background: radial-gradient(circle, rgba(140, 186, 180, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .service-card {
            background: white;
            border-radius: 30px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(140, 186, 180, 0.15);
            border-color: #8cbab4;
        }

        .icon-wrapper {
            width: 80px;
            height: 80px;
            background: #f0f7f6;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #6e9e97;
            transition: all 0.3s ease;
        }

        .service-card:hover .icon-wrapper {
            background: #8cbab4;
            color: white;
            transform: rotate(-5deg);
        }

        .section-tag {
            background: #e6f2f0;
            color: #6e9e97;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 16px;
        }

        .grid-custom {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .cruelty-card {
            background: linear-gradient(135deg, #2d5a5a 0%, #1a3a3a 100%);
            color: white;
        }
        
        .cruelty-card .icon-wrapper {
            background: rgba(255,255,255,0.1);
            color: #f9bc7d;
        }

        .cruelty-card h3 { color: white !important; }
        .cruelty-card p { color: rgba(255,255,255,0.7) !important; }

        .mi-sec{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 16px;
  background:url('image/14.jpg') center/cover no-repeat;
}

.mi-sec::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
}

.mi-wrap{
  position:relative;
  z-index:2;
  max-width:1200px;
  width:100%;
}

/* ===== OVERLAY MAIN CARD ===== */
.mi-card{
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius:26px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1fr 1.6fr;
}

/* ===== LEFT PANEL ===== */
.mi-left{
  background:
    linear-gradient(rgba(47,125,115,.78), rgba(47,125,115,.78)),
    url('image/11.jpg') center/cover no-repeat;
  color:white;
  padding:42px 34px;
  position:relative;
}

.mi-title{
  font-family:'Playfair Display',serif;
  font-size:40px;
  line-height:1.05;
  margin-bottom:12px;
}

.mi-sub{
  font-size:18px;
  margin-bottom:22px;
  opacity:.95;
}

.mi-btn-month{
  background:white;
  color:var(--accent);
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  box-shadow:0 12px 26px rgba(0,0,0,.25);
  display:inline-block;
  transition:.25s;
}

.mi-btn-month:hover{ transform:translateY(-2px); }

/* ===== RIGHT PANEL ===== */
.mi-right{
  padding:40px 36px 46px;
  text-align:center;
}

.mi-head{
  font-weight:800;
  letter-spacing:.4px;
  color:var(--accent);
  font-size:22px;
  margin-bottom:26px;
}

/* ===== 4 IMPACT CARDS ===== */
.mi-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows: 1fr;
  gap:18px;
  margin-bottom:22px;
}

.mi-box{
  border-radius:18px;
  padding:22px 14px;
  font-weight:700;
  background:white;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mi-box:hover{ transform:translateY(-4px); }

.mi-b1{ border:3px solid var(--brand-end); }
.mi-b2{ border:3px solid var(--brand-end); }
.mi-b3{ border:3px solid var(--accent); }
.mi-b4{ border:3px solid #7bbf6a; }

.mi-label{
  font-size:11px;
  font-weight:800;
  letter-spacing:.6px;
  color:#6b7c7a;
  margin-bottom:6px;
}

.mi-price{
  font-size:18px;
  font-weight:900;
  color:var(--brand-light);
  margin-bottom:6px;
}

.mi-text{
  font-size:13px;
  line-height:1.35;
  color:#476865;
}

.mi-desc{
  max-width:680px;
  margin:0 auto 24px;
  font-size:15px;
  color:#476865;
}

.mi-btn-donate{
  background:linear-gradient(180deg,var(--accent-hover),var(--accent));
  color:white;
  padding:14px 28px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 14px 30px rgba(47,125,115,.35);
  display:inline-block;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1000px){
  .mi-card{ grid-template-columns:1fr; }
}

@media(max-width:700px){
  .mi-grid{
    grid-template-columns:repeat(1,1fr);
  }
  .mi-title{font-size:32px}
}

/* ===== MOBILE BUTTON FIX ===== */
@media (max-width: 576px) {

    .left-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-orange,
    .btn-outline {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}
.faq-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-start);
    margin-bottom: 10px;
}

.faq-header p {
    color: #64748b;
    font-size: 16px;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    color: var(--brand-start);
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 0 0 18px;
    font-size: 14px;
    color: #475569;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 768px) {
    .faq-header h2 { font-size: 24px; }
}
