/* //////////////////////////////////////////////////
   SOFT HOME — VARIABLES & RESET
   ////////////////////////////////////////////////// */
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.soft-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 32px);
    max-width: 1200px;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-radius: 16px;
    background: var(--surface);
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.soft-header.scrolled .header-inner {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: none;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

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

.nav-link {
    padding: 8px 16px;
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--text);
    background: var(--sidebar-hover);
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 34,197,94), 0.35);
    color: #fff;
}

.mobile-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--sidebar-hover);
    border: none;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.soft-header.scrolled .mobile-toggle span {
    background: #fff;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .header-actions .theme-toggle-btn {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

@media (min-width: 769px) {
    .header-actions {
        display: none !important;
    }
}

/* //////////////////////////////////////////////////
   MOBILE NAV
   ////////////////////////////////////////////////// */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: var(--surface);
    padding: 20px;
    transition: right 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.open .mobile-nav-panel {
    right: 0;
}

.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.mobile-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.mobile-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--sidebar-hover);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    justify-content: space-between;
    padding-bottom: 6vh;
}

.mobile-nav-link {
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    background: var(--sidebar-hover);
}

.mobile-nav-link.highlight {
    background: var(--primary);
    color: var(--text);
    text-align: center;
    margin-top: 8px;
}

/* //////////////////////////////////////////////////
   HERO SECTION
   ////////////////////////////////////////////////// */
.soft-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-soft {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb, 34,197,94), 0.4);
    color: var(--text);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--text);
}

.btn-outline:hover {
    background: #fff;
    color: var(--text);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    cursor: pointer;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* //////////////////////////////////////////////////
   SECTION COMMONS
   ////////////////////////////////////////////////// */
.soft-section {
    padding: 80px 0;
}

.soft-bg-alt {
    background: var(--sidebar-hover);
}

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

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(var(--primary-rgb, 34,197,94), 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* //////////////////////////////////////////////////
   SERVICES GRID
   ////////////////////////////////////////////////// */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 28px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.service-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(var(--primary-rgb, 34,197,94), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.service-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* //////////////////////////////////////////////////
   STATS
   ////////////////////////////////////////////////// */
.soft-stats {
    padding: 60px 0;
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* //////////////////////////////////////////////////
   ABOUT
   ////////////////////////////////////////////////// */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-image-dots {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary) 3px, transparent 3px);
    background-size: 16px 16px;
    z-index: -1;
    opacity: 0.3;
}

.about-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    background: var(--sidebar-hover);
}

.about-feature i {
    font-size: 22px;
    color: var(--primary);
    margin-top: 2px;
}

.about-feature strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* //////////////////////////////////////////////////
   PORTFOLIO / GALLERY
   ////////////////////////////////////////////////// */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.portfolio-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: default;
    aspect-ratio: 4/3;
}

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

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.portfolio-overlay h4 {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* //////////////////////////////////////////////////
   TESTIMONIALS
   ////////////////////////////////////////////////// */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 28px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-quote {
    font-size: 60px;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* //////////////////////////////////////////////////
   CTA
   ////////////////////////////////////////////////// */
.soft-cta {
    padding: 60px 0;
}

.cta-card {
    text-align: center;
    padding: 56px 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text);
}

.cta-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-card p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 28px;
}

/* //////////////////////////////////////////////////
   CONTACT
   ////////////////////////////////////////////////// */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: flex-start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb, 34,197,94), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.contact-form {
    padding: 28px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    background: var(--bg);
    color: var(--text);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 34,197,94), 0.08);
}

/* //////////////////////////////////////////////////
   FOOTER
   ////////////////////////////////////////////////// */
.soft-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 56px 0 0;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.footer-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sidebar-hover);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--text);
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

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

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

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary);
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
}

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

/* //////////////////////////////////////////////////
   BACK TO TOP
   ////////////////////////////////////////////////// */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 34,197,94), 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-2px);
}

/* //////////////////////////////////////////////////
   RESPONSIVE
   ////////////////////////////////////////////////// */
@media (max-width: 991px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .soft-header { top: 8px; width: calc(100% - 16px); }
    .header-inner { padding: 12px 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero-container { padding-top: 100px; }
    .soft-section { padding: 48px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* //////////////////////////////////////////////////
   THEME TOGGLE
   ////////////////////////////////////////////////// */
.theme-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.soft-header.scrolled .theme-toggle-btn {
    background: var(--sidebar-hover);
    border-color: var(--border);
    color: var(--text);
}

.theme-toggle-btn:hover {
    background: rgba(255,255,255,0.2);
}

.soft-header.scrolled .theme-toggle-btn:hover {
    background: var(--border);
}

[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

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

.theme-switch-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

[data-theme="light"] .theme-switch-track {
    background: var(--primary);
}

[data-theme="light"] .theme-switch-thumb {
    left: 27px;
}

.theme-switch-track {
    width: 52px;
    height: 28px;
    border-radius: 14px;
    background: var(--border);
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
}

/* Mobile Theme Switch Track */
.mobile-theme-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--sidebar-hover);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-top: auto;
}

/* //////////////////////////////////////////////////
   DONATION CAMPAIGNS
   ////////////////////////////////////////////////// */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.campaign-card {
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.campaign-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.campaign-card:hover .campaign-image img {
    transform: scale(1.05);
}

.campaign-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
}

.campaign-urgency {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(0,0,0,0.6);
    color: var(--text);
    backdrop-filter: blur(4px);
}

.campaign-body {
    padding: 20px;
}

.campaign-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.campaign-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.campaign-progress {
    margin-bottom: 14px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--sidebar-hover);
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.progress-raised {
    font-weight: 700;
    color: var(--text);
}

.progress-goal {
    color: var(--text-muted);
}

.campaign-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.campaign-meta strong {
    color: var(--text);
}

.btn-block {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.section-footer-link {
    text-align: center;
    margin-top: 32px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.link-arrow:hover {
    gap: 10px;
    color: var(--primary);
}

/* //////////////////////////////////////////////////
   HOW IT WORKS / STEPS
   ////////////////////////////////////////////////// */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 28px 20px;
    position: relative;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(var(--primary-rgb, 34,197,94), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-connector {
    display: none;
    position: absolute;
    top: 50px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--primary);
    opacity: 0.2;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
    }
}

/* //////////////////////////////////////////////////
   IMPACT COUNTER
   ////////////////////////////////////////////////// */
.soft-impact {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.impact-item {
    padding: 24px;
}

.impact-icon {
    font-size: 36px;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 12px;
}

.impact-number {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.impact-label {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* //////////////////////////////////////////////////
   WHITE BUTTON FOR CTA
   ////////////////////////////////////////////////// */
.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: var(--primary);
}

/* //////////////////////////////////////////////////
   RESPONSIVE UPDATES
   ////////////////////////////////////////////////// */
@media (max-width: 991px) {
    .campaigns-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .step-connector { display: none; }
}

@media (max-width: 600px) {
    .campaigns-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .campaign-image { height: 180px; }
    .impact-item { padding: 16px; }
}

/* //////////////////////////////////////////////////
   BLOG POSTS
   ////////////////////////////////////////////////// */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.blog-card-image {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    bottom: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    background: var(--primary);
}

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

.blog-card-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.blog-card-date,
.blog-card-read {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta svg {
    opacity: 0.5;
    flex-shrink: 0;
}

.blog-card-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.35;
    letter-spacing: -0.3px;
}

.blog-card-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.blog-card-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
}

.blog-card-author-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.2s ease;
}

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

.blog-card-link svg {
    flex-shrink: 0;
}

/* //////////////////////////////////////////////////
   SECTION FOOTER LINK (shared utility)
   ////////////////////////////////////////////////// */
.section-footer-link {
    text-align: center;
    margin-top: 32px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: gap 0.2s ease;
}

.link-arrow:hover {
    gap: 10px;
}

.link-arrow svg {
    flex-shrink: 0;
}

/* //////////////////////////////////////////////////
   BLOG RESPONSIVE
   ////////////////////////////////////////////////// */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-body {
        padding: 16px;
    }
    
    .blog-card-title {
        font-size: 15px;
    }
}

/* ///////// */


.contact-form input,
.contact-form textarea {
    padding: 10px 15px;
    border-radius: 6px;
    box-sizing: border-box;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form .form-row .form-group {
    flex: 1 1 200px;
    min-width: 0;
}

