/* ENHANCED STYLESHEET WITH ALL COMMUNITY STYLES */
:root {
    /* Enhanced Modern Color System */
           --primary: #003E53;
        --secondary: #0894C5;
        --accent: #F96F25;
        --primary-light: rgba(0, 62, 83, 0.1);
        --secondary-light: rgba(8, 148, 197, 0.1);
        --accent-light: rgba(249, 111, 37, 0.1);
        --bs-border-radius-lg: 0.8rem;
        --gradient-1: linear-gradient(135deg, #003E53 0%, #0894C5 100%);
        --gradient-2: linear-gradient(135deg, #0894C5 0%, #003E53 100%);
        --gradient-3: linear-gradient(135deg, #F96F25 0%, #003E53 100%);
        --gradient-4: linear-gradient(135deg, #003E53 0%, #F96F25 100%);

    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #003E53 0%, #0894C5 50%, #F96F25 100%);
    --gradient-hero: linear-gradient(135deg, #F96F25 0%, #FF6B9D 100%);
    --gradient-accent: linear-gradient(135deg, #0894C5 0%, #00D4FF 100%);
    --gradient-glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-backdrop: blur(20px);

    /* Advanced Shadows */
    --shadow-glow: 0 0 50px rgba(249, 111, 37, 0.3);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ENHANCED NAVBAR - GLASS MORPHISM */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: var(--glass-backdrop);
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    margin-bottom: 2rem; /* Added spacing below header */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-glass);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(30px);
}

.navbar-brand {
    font-weight: 800 !important;
    color: var(--primary) !important;
    font-size: 1.75rem !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--accent) !important;
}

/* ENHANCED BRAND CIRCLE */
.navbar-brand-circle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.navbar-brand-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: spin 3s linear infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(249, 111, 37, 0.3); }
    50% { box-shadow: 0 0 40px rgba(249, 111, 37, 0.6); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ENHANCED NAV LINKS */
.nav-link {
    color: var(--text) !important;
    font-weight: 600 !important;
    margin: 0 1rem;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    transition: all 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 111, 37, 0.4);
}

/* MODERN BUTTON SYSTEM */
.btn {
    font-weight: 700;
    border-radius: 50px !important;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-hero) !important;
    color: white;
    border: none !important;
    box-shadow: 0 10px 30px rgba(249, 111, 37, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(249, 111, 37, 0.6);
    color: white;
}

.btn-secondary {
    background: var(--gradient-accent) !important;
    color: white;
    border: none !important;
    box-shadow: 0 10px 30px rgba(8, 148, 197, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(8, 148, 197, 0.6);
    color: white;
}

.btn-accent {
    background: var(--gradient-primary) !important;
    color: white;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 62, 83, 0.4);
}

.btn-accent:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 62, 83, 0.6);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 62, 83, 0.3);
}

/* ENHANCED HERO SECTION */
.hero {
    background: var(--gradient-primary) !important;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh !important;
    display: flex;
    align-items: center;
    padding-top: 0; /* Removed the 5rem padding that was pushing content down */
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MORPHING HERO SHAPES */
.hero-shape {
    position: absolute;
    z-index: 2;
    filter: blur(60px);
    opacity: 0.6;
}

.hero-shape.accent {
    background: radial-gradient(circle, rgba(249, 111, 37, 0.6) 0%, rgba(255, 107, 157, 0.4) 100%);
    width: 400px;
    height: 400px;
    right: 10%;
    top: 20%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 20s ease-in-out infinite;
}

.hero-shape.secondary {
    background: radial-gradient(circle, rgba(8, 148, 197, 0.5) 0%, rgba(0, 212, 255, 0.3) 100%);
    width: 300px;
    height: 300px;
    right: 5%;
    bottom: 20%;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: morph 25s ease-in-out infinite 5s;
}

.hero-shape.circle {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(0, 62, 83, 0.2) 100%);
    width: 200px;
    height: 200px;
    left: 10%;
    top: 30%;
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    animation: morph 18s ease-in-out infinite 3s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: translateY(20px) rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: translateY(-15px) rotate(270deg) scale(1.05);
    }
}

/* ENHANCED HERO STATS */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-backdrop);
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.hero-stat:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stat:hover::before {
    animation: shine 1s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* FLOATING ANIMATIONS */
@keyframes float1 {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(-15px, -20px, 30px) rotate(2deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(20px, -15px, 20px) rotate(-3deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(-10px, 15px, 25px) rotate(2deg);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* ENHANCED ACCOUNT TYPES SECTION */
.account-types {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.account-card {
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.account-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.account-card:hover::before {
    opacity: 0.05;
}

.account-card-header {
    padding: 3rem;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.account-card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.account-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 1.5rem;
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.account-card-body {
    padding: 3rem;
    background: white;
}

.account-feature {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.5);
}

.account-feature:hover {
    background: var(--accent-light);
    transform: translateX(15px);
    box-shadow: 0 5px 15px rgba(249, 111, 37, 0.2);
}

.account-feature i {
    color: var(--accent);
    margin-right: 1rem;
    font-size: 1.25rem;
    width: 25px;
}

/* ENHANCED CAMPAIGN TYPES */
.campaign-types {
    padding: 8rem 0;
    background: rgba(248, 250, 252, 0.5);
}

.campaign-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    background: white;
}

.campaign-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

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

.campaign-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.7));
}

.campaign-card-type {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.type-business {
    background: rgba(249, 111, 37, 0.9);
}

.type-cause {
    background: rgba(8, 148, 197, 0.9);
}

.campaign-card-body {
    padding: 2.5rem;
    background: white;
}

.campaign-progress {
    height: 10px;
    border-radius: 10px;
    background-color: #e9ecef;
    margin: 20px 0;
    overflow: hidden;
    position: relative;
}

.campaign-progress-bar {
    height: 100%;
    border-radius: 10px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.campaign-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

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

.campaign-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6c757d;
}

.campaign-stats div {
    display: flex;
    align-items: center;
}

/* COMPLETE COMMUNITIES SECTION STYLES */
.communities {
    padding: 8rem 0;
    background: white;
}

.community-card {
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.community-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.community-card:hover::before {
    opacity: 0.03;
}

.community-card-header {
    height: 140px;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
}

.community-card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.community-card-avatar {
    position: absolute;
    bottom: -40px;
    left: 30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    background: var(--gradient-hero);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: relative;
    overflow: hidden;
}

.community-card-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: spin 4s linear infinite;
}

.community-card-body {
    padding: 50px 30px 30px;
    background: white;
    position: relative;
}

.community-members {
    margin-top: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.community-member-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid white;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: -12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.community-member-avatar:hover {
    transform: translateY(-3px) scale(1.1);
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.community-member-avatar:last-of-type {
    background: var(--gradient-primary);
}

.community-member-count {
    margin-left: 20px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.community-member-count::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* HOW IT WORKS SECTION */
.how-it-works {
    background: var(--gradient-hero);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.step-card {
    background: var(--gradient-glass);
    border-radius: 30px;
    padding: 3rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(249, 111, 37, 0.2), transparent);
    animation: spin 3s linear infinite;
}

/* ENHANCED FEATURES SECTION */
.features {
    padding: 8rem 0;
    background: var(--background);
}

.feature-card {
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-hero);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: spin 4s linear infinite;
}

/* ENHANCED CTA SECTION */
.cta-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(249, 111, 37, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(8, 148, 197, 0.3) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
    z-index: 1;
}

.cta-box {
    padding: 4rem 3rem;
    border-radius: 30px;
    position: relative;
    z-index: 10;
    background: var(--gradient-glass);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    color: white;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

/* Hide old CTA shapes */
.cta-shape,
.cta-shape-1,
.cta-shape-2 {
    display: none;
}

/* ENHANCED FORMS */
.form-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background: var(--gradient-primary);
}

.form-container {
    width: 100%;
    max-width: 700px;
    background: var(--gradient-glass);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
}

.form-container h2 {
    text-align: center;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control,
.upload-box {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(249, 111, 37, 0.2);
    transform: translateY(-3px);
    background: white;
}

.upload-box {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.upload-box:hover {
    border-color: var(--accent);
    background: rgba(249, 111, 37, 0.1);
}

.preview-image {
    width: 100%;
    border-radius: 20px;
    margin-top: 15px;
    display: none;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-col {
    flex: 1;
    min-width: 48%;
}

/* FOOTER STYLES */
.footer {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 4rem;
}

.footer-brand {
    margin-bottom: 25px;
    display: inline-block;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.footer-social {
    margin-top: 25px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    color: var(--primary);
    margin-right: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-social-link:hover {
    color: white;
}

.footer-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.1rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-hero);
    border-radius: 2px;
}

.footer-link {
    display: block;
    color: var(--text-light);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 5px 0;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(8px);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 3rem;
    margin-top: 5rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: var(--text-light);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        text-align: center;
        padding: 6rem 1rem 2rem;
    }

    .navbar-brand {
        font-size: 1.5rem !important;
    }

    .navbar-brand-circle {
        width: 35px;
        height: 35px;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-stat {
        padding: 1.5rem;
    }

    .account-card-header,
    .account-card-body,
    .community-card-body {
        padding: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .form-container {
        padding: 2rem;
        margin: 1rem;
    }

    .form-col {
        min-width: 100%;
    }

    .community-card-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        bottom: -35px;
    }

    .community-member-avatar {
        width: 30px;
        height: 30px;
        font-size: 11px;
        margin-right: -8px;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        gap: 1rem;
    }

    .hero-stat {
        padding: 1rem;
    }

    .community-members {
        flex-wrap: wrap;
        gap: 5px;a
    }

    .community-member-avatar {
        margin-right: 0;
    }

    .community-member-count {
        margin-left: 10px;
        margin-top: 10px;
        width: 100%;
    }
}
