/* DP Foundation Virar - Compact Premium Design */
:root {
    --dp-navy: #1A2A4A;
    --dp-orange: #E8640A;
    --dp-gold: #F0A500;
    --dp-light: #F8F4EF;
    --dp-white: #FFFFFF;
    --dp-text: #333333;
    --dp-muted: #666666;
    --max-width: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--dp-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dp-navy);
    font-weight: 700;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-donate {
    background: linear-gradient(135deg, var(--dp-orange), #ff7a1a);
    color: white;
    box-shadow: 0 4px 12px rgba(232, 100, 10, 0.25);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 100, 10, 0.35);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 22px;
}

.btn-outline-white:hover {
    background: white;
    color: var(--dp-navy);
}

/* News Ticker */
.news-ticker-wrapper {
    background: var(--dp-navy);
    color: white;
    padding: 6px 0;
    font-size: 13px;
}

.ticker-content { display: flex; align-items: center; }

.ticker-label {
    background: var(--dp-gold);
    color: var(--dp-navy);
    padding: 2px 8px;
    font-weight: 700;
    margin-right: 12px;
    font-size: 11px;
    border-radius: 3px;
}

/* Header - Compact */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 42px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--dp-navy);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--dp-navy);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dp-orange);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--dp-orange); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions .btn-donate {
    padding: 7px 16px;
    font-size: 13px;
}

.mobile-menu-toggle {
    display: none;
    background: #f8fafc;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--dp-navy);
    font-size: 16px;
    cursor: pointer;
}

/* Hero Section - Compact */
.hero-section {
    background: linear-gradient(135deg, #0f1729 0%, #1A2A4A 50%, #0D1B35 100%);
    padding: 4.5rem 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(232, 100, 10, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge-pill {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--dp-orange);
    color: var(--dp-orange);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 18px;
    color: white;
    font-weight: 800;
}

.hero-left p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.hero-mini-stats {
    display: flex;
    gap: 1.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
}

.mini-stat-item {
    display: flex;
    flex-direction: column;
}

.mini-stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dp-gold);
}

.mini-stat-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

/* Hero Slider - Compact */
.hero-slider-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hero-slider-inner { height: 100%; position: relative; }

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #2a4365;
    font-size: 3rem;
}

.hero-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
}

.slide-tag {
    background: var(--dp-orange);
    padding: 3px 8px;
    font-size: 9px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 6px;
    display: inline-block;
}

.hero-slide-caption h3 {
    font-size: 14px;
    color: white;
    margin: 0 0 4px 0;
}

.hero-slide-caption p {
    font-size: 11px;
    margin: 0;
    opacity: 0.8;
}

.hero-slider-nav .prev,
.hero-slider-nav .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    font-size: 12px;
}

.hero-slider-nav .prev { left: 12px; }
.hero-slider-nav .next { right: 12px; }
.hero-slider-nav .prev:hover,
.hero-slider-nav .next:hover {
    background: var(--dp-orange);
}

.hero-dots-container {
    position: absolute;
    bottom: 12px;
    right: 16px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.hero-dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.hero-dot.active {
    background: var(--dp-orange);
    width: 16px;
    border-radius: 8px;
}

/* Stats Bar - Floating Compact */
.stats-premium {
    padding: 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.stat-premium-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.stat-premium-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(0,0,0,0.08);
}

.stat-premium-card:hover {
    background: rgba(232, 100, 10, 0.02);
}

.stat-icon-wrap {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(232, 100, 10, 0.1), rgba(240, 165, 0, 0.1));
    color: var(--dp-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.stat-premium-card:hover .stat-icon-wrap {
    background: linear-gradient(135deg, var(--dp-orange), var(--dp-gold));
    color: white;
    transform: scale(1.1);
}

.stat-data h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dp-navy);
    margin: 0 0 6px 0;
    line-height: 1;
}

.stat-data span {
    font-size: 12px;
    color: var(--dp-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Common - Compact */
.section-padding {
    padding: 4rem 2.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.section-header p {
    max-width: 520px;
    margin: 0 auto;
    color: var(--dp-muted);
    font-size: 15px;
    line-height: 1.6;
}

.sub-title {
    display: block;
    color: var(--dp-orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* Causes Section - Compact Cards */
.causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cause-card-premium {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    max-height: 320px;
}

.cause-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.cause-img-wrap-premium {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.cause-img-wrap-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cause-card-premium:hover .cause-img-wrap-premium img {
    transform: scale(1.08);
}

.cause-badge-pill {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15, 27, 45, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.cause-content-premium {
    padding: 1.2rem;
}

.cause-content-premium h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dp-navy);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.progress-labels-premium {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: var(--dp-navy);
    margin-bottom: 8px;
}

.bar-container-premium {
    height: 5px;
    background: #f1f5f9;
    border-radius: 5px;
    overflow: hidden;
    margin: 0.6rem 0;
}

.bar-fill-premium {
    height: 100%;
    background: linear-gradient(90deg, var(--dp-gold), var(--dp-orange));
    border-radius: 4px;
}

.cause-footer-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    border-top: 1px solid #f1f5f9;
}

.goal-group span {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
}

.goal-group strong {
    display: block;
    font-size: 14px;
    color: var(--dp-navy);
    font-weight: 700;
}

.cause-footer-premium .btn {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 8px;
}

/* Programs Section - Dark Compact */
.programs-premium {
    background: var(--dp-navy);
    color: white;
}

.programs-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.p-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.8rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.p-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.p-icon {
    width: 50px;
    height: 50px;
    background: var(--dp-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
}

.p-card:hover .p-icon {
    transform: scale(1.1);
}

.p-card h4 {
    font-size: 15px;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.p-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-active-stats {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(240, 165, 0, 0.2);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    color: var(--dp-gold);
    text-transform: uppercase;
}

/* Testimonials - Compact 2 Column */
.testimonials-premium {
    background: white;
}

.testimonial-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.t-card-premium {
    background: var(--dp-light);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.t-card-premium:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.t-quote {
    font-size: 3rem;
    color: var(--dp-orange);
    opacity: 0.2;
    margin-bottom: 12px;
    line-height: 1;
}

.t-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dp-navy);
    font-style: italic;
    margin-bottom: 18px;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.t-user-info h5 {
    margin: 0;
    font-size: 13px;
    color: var(--dp-navy);
    font-weight: 600;
}

.t-user-info span {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
}

/* Donate Section - Compact */
.donate-section {
    background: var(--dp-navy);
    color: white;
}

.donate-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 2rem;
    align-items: center;
}

.donate-left h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 12px;
}

.donate-left p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.donate-form-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
}

.donate-form-card h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--dp-navy);
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 12px;
}

.amount-btn {
    padding: 8px;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
    color: var(--dp-navy);
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--dp-orange);
    background: var(--dp-orange);
    color: white;
}

.form-group {
    margin-bottom: 0.6rem;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--dp-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--dp-orange);
    box-shadow: 0 0 0 3px rgba(232, 100, 10, 0.1);
}

.btn-submit-donate {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    margin-top: 8px;
}

/* Footer - Compact */
.main-footer {
    background: #0D1525;
    color: #94a3b8;
    padding: 2.5rem 2rem 1.2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--dp-orange);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--dp-orange);
    margin-top: 2px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--dp-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    background: #090e17;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin: 0 -2rem -1.2rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    padding: 0 2rem;
}

.reg-badge {
    font-size: 10px;
    color: #64748b;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 50px;
    margin-left: 8px;
}

/* Modal - Compact */
.donation-modal-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.donation-modal-premium.active {
    display: flex;
}

.m-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 27, 45, 0.85);
    backdrop-filter: blur(8px);
}

.m-box {
    position: relative;
    width: 800px;
    max-width: 90%;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    z-index: 10;
    animation: modalSlide 0.4s ease;
}

@keyframes modalSlide {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.m-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-close:hover {
    background: var(--dp-orange);
    color: white;
}

.m-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 480px;
}

.m-info-panel {
    background: var(--dp-navy);
    color: white;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.m-info-panel h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.m-info-panel p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
}

.m-info-panel ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.m-info-panel li {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    margin-bottom: 0.8rem;
}

.m-form-panel {
    padding: 2.5rem 2rem;
    background: white;
}

.m-form-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dp-navy);
}

.m-amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 12px;
}

.m-amt-btn {
    padding: 10px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--dp-navy);
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.m-amt-btn:hover {
    border-color: var(--dp-orange);
    background: rgba(232, 100, 10, 0.05);
}

.m-amt-btn.active {
    background: var(--dp-orange);
    border-color: var(--dp-orange);
    color: white;
}

.m-group {
    margin-bottom: 0.8rem;
}

.m-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.m-field {
    width: 100%;
    padding: 10px 12px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dp-navy);
    transition: all 0.3s;
}

.m-field:focus {
    background: white;
    border-color: var(--dp-orange);
    outline: none;
}

.m-submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--dp-orange);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.m-submit-btn:hover {
    background: var(--dp-navy);
    transform: translateY(-2px);
}

/* Responsive - Mobile */
@media (max-width: 992px) {
    .container { padding: 0 1.5rem; }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-left h1 { font-size: 1.8rem; }
    .hero-slider-wrap { height: 280px; }
    
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-premium-card:nth-child(2)::after { display: none; }
    
    .causes-grid,
    .programs-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .donate-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        position: fixed;
        top: 56px;
        left: -100%;
        width: 260px;
        height: calc(100vh - 56px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 5px 0 20px rgba(0,0,0,0.1);
        transition: left 0.4s ease;
        z-index: 1999;
        gap: 0;
    }
    
    .nav-links.active { left: 0; }
    
    .nav-links li {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 13px;
    }
    
    .nav-links a:hover {
        background: rgba(232, 100, 10, 0.1);
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .m-grid {
        grid-template-columns: 1fr;
    }
    
    .m-info-panel { display: none; }
}

@media (max-width: 600px) {
    .hero-left h1 { font-size: 1.6rem; }
    .hero-left p { font-size: 13px; }
    .hero-slider-wrap { height: 240px; }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
    }
    
    .stat-premium-card::after { display: none; }
    
    .causes-grid,
    .programs-grid-premium,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 { font-size: 1.5rem; }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .hero-mini-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Utility Classes */
.counter { display: inline-block; }

/* Selection Colors */
::selection {
    background: var(--dp-orange);
    color: white;
}

/* Smooth Transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===================================
   PAGE HERO - For All Inner Pages
   =================================== */
.page-hero {
    padding: 5rem 2.5rem 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--dp-navy), var(--dp-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero .breadcrumb {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.mv-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(15, 27, 45, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(232, 100, 10, 0.12);
    border-color: rgba(232, 100, 10, 0.2);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    color: var(--dp-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    background: var(--dp-orange);
    color: white;
    transform: scale(1.1);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dp-navy);
}

.mv-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 14px;
}

/* About Story Section */
.about-story-section {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dp-navy);
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* ===================================
   CAUSES PAGE STYLES
   =================================== */
.causes-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ===================================
   GALLERY PAGE STYLES
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-card {
    background: var(--dp-navy);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
}

.contact-info-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dp-orange);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dp-navy);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-full {
    margin-bottom: 1rem;
}

.form-group-full label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dp-navy);
    margin-bottom: 0.5rem;
}

.form-group-full input,
.form-group-full textarea,
.form-group-full select {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group-full textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group-full input:focus,
.form-group-full textarea:focus,
.form-group-full select:focus {
    outline: none;
    border-color: var(--dp-orange);
    box-shadow: 0 0 0 3px rgba(232, 100, 10, 0.1);
}

/* ===================================
   VOLUNTEER PAGE STYLES
   =================================== */
.volunteer-benefits {
    background: var(--dp-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(232, 100, 10, 0.1), rgba(240, 165, 0, 0.1));
    color: var(--dp-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 1.5rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dp-navy);
}

.benefit-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.volunteer-form-section {
    background: white;
}

/* ===================================
   DONATE PAGE STYLES
   =================================== */
.donate-page-section {
    background: linear-gradient(135deg, var(--dp-navy) 0%, #0D1B35 100%);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* ===================================
   RESPONSIVE - Inner Pages
   =================================== */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .mission-vision-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .causes-page-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 3rem 1.5rem 2rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .causes-page-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
