/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 50%, #a7f3d0 100%);
    min-height: 100vh;
    background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { 
    font-size: 1.8rem; 
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 { 
    font-size: 1.5rem; 
    color: #1f2937;
}
h3 { 
    font-size: 1.25rem; 
    color: #374151;
}

.text-gradient {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.08);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(20, 184, 166, 0.1);
}

.nav-menu {
    display: none;
    list-style: none;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.nav-menu li {
    margin: 0.75rem 0;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    position: relative;
    display: block;
}

.nav-link:hover {
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.05);
    transform: translateX(8px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 1rem;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: calc(100% - 2rem);
}

.hamburger {
    display: block;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.hamburger:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(240, 253, 250, 0.8) 100%);
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    background: none;
    -webkit-text-fill-color: initial;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.3s both;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Cards */
.card {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    border: 1px solid rgba(20, 184, 166, 0.1);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #14b8a6 0%, #0d9488 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-image {
    transform: scale(1.08);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-weight: 700;
    line-height: 1.3;
}

.card-text {
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Progress Bar */
.progress-container {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50px;
    height: 16px;
    margin: 2rem 0;
    overflow: hidden;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.progress-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-bar {
    background: linear-gradient(90deg, #14b8a6 0%, #0d9488 100%);
    height: 100%;
    border-radius: 50px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 50px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
}

.btn:active {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 3px solid #14b8a6;
    color: #14b8a6;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.2);
}

.btn-outline:hover {
    background: #14b8a6;
    color: white;
    border-color: #14b8a6;
}

.btn-full {
    width: 100%;
}

/* Grid */
.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #374151;
    font-size: 1.05rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-input:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

/* Amount Selection */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.amount-option {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.amount-option:hover,
.amount-option.selected {
    border-color: #14b8a6;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

/* Statistics */
.stats {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 2.5rem 0;
    margin: 2rem 0;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
}

.stat-item {
    padding: 1.25rem;
    border-radius: 1.5rem;
    background: white;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(20, 184, 166, 0.2);
}

.stat-item p {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Distribution Cards */
.distribution-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.1);
    transition: transform 0.3s ease;
}

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

.distribution-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.distribution-date {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.distribution-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.distribution-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.distribution-image:hover {
    transform: scale(1.05) rotate(1deg);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #14b8a6 0%, #0d9488 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #14b8a6;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    font-weight: 500;
}

.footer-section a:hover {
    color: #14b8a6;
    transform: translateX(8px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Responsive Design */

/* Mobile First - Base styles above are for mobile */

/* Small mobile devices (360px and up) */
@media (min-width: 360px) {
    .container {
        padding: 0 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Large mobile devices (480px and up) */
@media (min-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .nav-menu li {
        margin: 0 0.5rem;
    }

    .hamburger {
        display: none;
    }

    .logo {
        font-size: 1.6rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 { 
        font-size: 2.8rem; 
    }
    
    .hero p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 { 
        font-size: 1.8rem; 
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .card-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .card-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .card-image {
        height: 220px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .btn {
        padding: 1.1rem 2.25rem;
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 1.75rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
    
    .distribution-images {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .distribution-image {
        height: 180px;
    }
    
    .footer {
        padding: 3rem 0 2rem;
        margin-top: 4rem;
    }
    
    .footer-content {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .distribution-card {
        padding: 2rem;
        border-radius: 2rem;
        margin-bottom: 2rem;
    }
    
    .distribution-header {
        margin-bottom: 1.5rem;
        gap: 1.5rem;
    }
    
    .distribution-date {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .stats {
        padding: 3rem 0;
        margin: 3rem 0;
        border-radius: 2.5rem;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero {
        padding: 5rem 0;
    }
    
    .hero h1 { 
        font-size: 3.2rem; 
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 2.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-text {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .card-image {
        height: 250px;
    }
    
    .btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.05rem;
    }
    
    .stats-grid {
        gap: 2rem;
    }
    
    .stat-item {
        padding: 2rem;
    }
    
    .stat-item h3 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .stat-item p {
        font-size: 1.1rem;
    }
    
    .distribution-images {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .distribution-image {
        height: 220px;
        border-radius: 1.5rem;
    }
    
    .footer {
        padding: 4rem 0 2rem;
        margin-top: 5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .distribution-card {
        padding: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .distribution-header {
        margin-bottom: 2rem;
        gap: 1.5rem;
    }
    
    .distribution-date {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .stats {
        padding: 4rem 0;
        margin: 4rem 0;
        border-radius: 3rem;
    }
}

/* Large desktop (1200px and up) */
@media (min-width: 1200px) {
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .stats-grid {
        gap: 2.5rem;
    }
}

/* Special Effects */
.glow {
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Campaign Page Specific Styles */
.search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: end;
}

.search-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.search-result-info {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 0.75rem;
    border-left: 4px solid #14b8a6;
}

.campaign-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.badge-completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.badge-urgent {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.badge-days {
    background: rgba(20, 184, 166, 0.9);
    backdrop-filter: blur(10px);
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
}

.campaign-placeholder {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.placeholder-title {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
}

.campaign-progress {
    background: rgba(20, 184, 166, 0.05);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.progress-header {
    text-align: center;
    margin-bottom: 1rem;
}

.progress-percentage {
    font-size: 2rem;
    color: #14b8a6;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.progress-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.progress-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.stat-box {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-amount {
    font-size: 1rem;
    font-weight: 800;
    color: #14b8a6;
    margin-bottom: 0.25rem;
    word-break: break-all;
}

.stat-amount.target {
    color: #6b7280;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
}

.donor-count {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(20, 184, 166, 0.1);
    color: #14b8a6;
    font-weight: 700;
    font-size: 0.95rem;
}

.campaign-actions {
    display: flex;
    gap: 1rem;
}

.btn-completed {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
}

.campaign-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.cta-section h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-section p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Campaign Styles */
@media (min-width: 480px) {
    .search-grid {
        grid-template-columns: 1fr auto;
        gap: 1.5rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .badge-days {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .placeholder-icon {
        font-size: 3.5rem;
    }
    
    .placeholder-title {
        font-size: 1.1rem;
    }
    
    .progress-percentage {
        font-size: 2.25rem;
    }
    
    .stat-amount {
        font-size: 1.05rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .donor-count {
        font-size: 1rem;
    }
    
    .campaign-meta {
        font-size: 0.85rem;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .campaign-badges {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .badge {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
    
    .badge-days {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .campaign-progress {
        padding: 1.75rem;
        border-radius: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .progress-header {
        margin-bottom: 1.25rem;
    }
    
    .progress-percentage {
        font-size: 2.5rem;
    }
    
    .progress-label {
        font-size: 1rem;
    }
    
    .progress-stats {
        gap: 1.25rem;
        margin-top: 1.25rem;
    }
    
    .stat-box {
        padding: 1.25rem;
        border-radius: 1rem;
    }
    
    .stat-amount {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .donor-count {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        font-size: 1.05rem;
    }
    
    .campaign-meta {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 2.5rem;
        margin-top: 4rem;
    }
    
    .cta-section h3 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1.05rem;
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .campaign-progress {
        padding: 2rem;
        border-radius: 1.5rem;
    }
    
    .progress-stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-amount {
        font-size: 1.15rem;
    }
    
    .donor-count {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        font-size: 1.1rem;
    }
    
    .campaign-meta {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem;
    }
}

/* Campaign Page Mobile Adjustments */
@media (max-width: 479px) {
    .search-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .campaign-badges {
        top: 0.75rem;
        right: 0.75rem;
        gap: 0.4rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .badge-days {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .campaign-progress {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .progress-percentage {
        font-size: 1.75rem;
    }
    
    .progress-label {
        font-size: 0.8rem;
    }
    
    .progress-stats {
        gap: 0.75rem;
    }
    
    .stat-box {
        padding: 0.75rem;
    }
    
    .stat-amount {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .donor-count {
        font-size: 0.85rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .campaign-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.75rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .meta-item {
        font-size: 0.75rem;
    }
    
    .cta-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Mobile grid adjustment */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-image {
        height: 200px !important;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
    }
    
    .placeholder-title {
        font-size: 0.9rem;
    }
}

/* Professional Statistics Design */
.stats-professional {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stats-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2314b8a6' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.stats-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stat-card-pro {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.stat-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(20, 184, 166, 0.2);
}

.stat-icon-pro {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(20, 184, 166, 0.3);
}

.stat-content-pro {
    text-align: left;
}

.stat-number-pro {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-pro {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.25rem;
}

.stat-desc-pro {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

.impact-summary {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.1);
    position: relative;
    z-index: 2;
}

.impact-item {
    text-align: center;
    flex: 1;
}

.impact-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.impact-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #14b8a6;
}

@media (max-width: 768px) {
    .stats-professional {
        padding: 4rem 0;
    }
    
    .stats-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid-pro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card-pro {
        padding: 2rem;
    }
    
    .stat-number-pro {
        font-size: 2rem;
    }
    
    .impact-summary {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .impact-item {
        width: 100%;
    }
} 