/* ===================================
   FUND US PAGE - ULTRA PROFESSIONAL ENHANCED STYLING
   =================================== */

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

/* Page Container */
.fund-us-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2463 100%);
    position: relative;
    overflow-x: hidden;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Enhanced Hero Section */
.fund-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.fund-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    z-index: 1;
}

.fund-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.fund-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 3px, transparent 3px);
    background-size: 150px 150px, 200px 200px, 300px 300px;
    animation: float 25s ease-in-out infinite;
}

/* Floating Shapes */
.fund-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.fund-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    animation: float 12s ease-in-out infinite;
}

.fund-shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.fund-shape-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.fund-shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.fund-shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
}

.fund-hero-content {
    position: relative;
    z-index: 4;
    color: white;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Badge */
.fund-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out;
    transition: all 0.3s ease;
}

.fund-hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.fund-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
}

/* Enhanced Hero Icon */
.fund-hero-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 0.2s both;
}

.fund-hero-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.fund-hero-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.fund-icon-inner {
    position: relative;
    z-index: 2;
}

.fund-icon-inner i {
    font-size: 2.5rem;
    color: #ff6b6b;
    animation: pulse 2s ease-in-out infinite;
}

.fund-icon-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

.fund-icon-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite 1s;
}

/* Enhanced Hero Title */
.fund-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    animation: slideInUp 1s ease-out 0.4s both;
}

.fund-title-line {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.fund-title-highlight {
    display: block;
    background: linear-gradient(135deg, #00ff88, #00d4ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    animation: gradient-shift 3s ease-in-out infinite;
}

.fund-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 2px;
    animation: slideInUp 1s ease-out 0.8s both;
}

.fund-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 60px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    animation: slideInUp 1s ease-out 0.6s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Enhanced Stats */
.fund-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    animation: slideInUp 1s ease-out 0.8s both;
}

.fund-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.fund-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.fund-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.fund-stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.fund-stat-content {
    color: white;
}

.fund-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    display: block;
}

.fund-stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Call to Action */
.fund-hero-cta {
    margin-top: 50px;
    animation: slideInUp 1s ease-out 1s both;
}

.fund-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fund-cta-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.5s ease;
}

.fund-cta-btn:hover::before {
    left: 100%;
}

.fund-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
}

.fund-cta-text {
    position: relative;
    z-index: 2;
}

.fund-cta-icon {
    position: relative;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

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

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* ===================================
   MAIN CONTENT SECTION
   =================================== */

.fund-main-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.fund-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Section Headers */
.fund-section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.fund-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.fund-badge-icon {
    font-size: 1.2rem;
}

.fund-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fund-section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Cards */
.fund-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

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

.fund-card:hover::before {
    left: 100%;
}

.fund-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.fund-card-header {
    padding: 40px 40px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.fund-payment-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.fund-payment-header-icon i {
    font-size: 2rem;
    color: white;
}

.fund-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.fund-card-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.fund-card-body {
    padding: 20px 40px 40px;
    position: relative;
    z-index: 2;
}

/* Enhanced Features Grid */
.fund-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.fund-feature-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fund-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fund-feature-item:hover::before {
    opacity: 1;
}

.fund-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.fund-feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.fund-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
    position: relative;
    z-index: 2;
}

.fund-feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.fund-feature-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(15px);
    animation: pulse 2s ease-in-out infinite;
}

.fund-feature-content {
    color: white;
    position: relative;
    z-index: 2;
}

.fund-feature-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.fund-feature-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Progress Bars */
.fund-feature-progress {
    margin-top: 20px;
}

.fund-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.fund-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 4px;
    transition: width 1.5s ease;
    position: relative;
}

.fund-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.fund-progress-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

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

/* ===================================
   ENHANCED AMOUNT SELECTION
   =================================== */

.fund-amount-section {
    margin-bottom: 50px;
}

.fund-amount-header {
    text-align: center;
    margin-bottom: 40px;
}

.fund-amount-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.fund-amount-icon {
    font-size: 1.5rem;
}

.fund-amount-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.fund-amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.fund-amount-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fund-amount-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fund-amount-btn:hover::before {
    opacity: 1;
}

.fund-amount-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.fund-amount-btn.active {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-color: #00ff88;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
}

.fund-amount-btn.active::before {
    opacity: 0;
}

.fund-amount-value {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.fund-amount-currency {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.fund-amount-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.fund-amount-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Custom Amount Input */
.fund-custom-amount {
    margin-top: 30px;
}

.fund-custom-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.fund-custom-icon {
    font-size: 1.2rem;
}

.fund-custom-input-wrapper {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.fund-currency-symbol {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 2;
}

.fund-amount-input {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 18px 20px 18px 60px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.fund-amount-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.fund-amount-input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
}

.fund-custom-input-wrapper.focused .fund-input-focus-line {
    transform: scaleX(1);
}

.fund-custom-input-wrapper.has-value .fund-currency-symbol {
    color: #00ff88;
}

.fund-input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 0 0 15px 15px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* ===================================
   ENHANCED PAYMENT DETAILS
   =================================== */

.fund-payment-details {
    margin-bottom: 40px;
}

.fund-payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.fund-payment-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.fund-payment-icon {
    font-size: 1.4rem;
}

.fund-payment-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.fund-payment-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fund-payment-info:hover::before {
    opacity: 1;
}

.fund-payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.fund-payment-row:last-child {
    border-bottom: none;
}

.fund-payment-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fund-payment-label i {
    font-size: 1.1rem;
    color: #00ff88;
}

.fund-payment-value {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.fund-code-value,
.fund-name-value {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
}

.fund-dial-value {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.fund-dial-code {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 1rem;
}

.fund-amount-placeholder {
    color: #00ff88;
    font-weight: 800;
}

.fund-copy-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.fund-copy-btn:hover {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* ===================================
   ENHANCED FUND BUTTON
   =================================== */

.fund-button-section {
    text-align: center;
    margin-bottom: 40px;
}

.fund-btn-primary {
    position: relative;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border: none;
    border-radius: 25px;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 280px;
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fund-btn-primary:disabled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.fund-btn-primary:not(:disabled):hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 255, 136, 0.5);
}

.fund-btn-primary:not(:disabled):active {
    transform: translateY(-1px) scale(0.98);
}

.fund-btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    transition: all 0.3s ease;
}

.fund-btn-primary:not(:disabled):hover .fund-btn-background {
    background: linear-gradient(135deg, #00d4ff, #ff6b6b);
}

.fund-btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.fund-btn-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.fund-btn-primary:not(:disabled):hover .fund-btn-icon {
    transform: scale(1.1);
}

.fund-btn-text {
    font-weight: 700;
}

.fund-btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.fund-btn-primary:not(:disabled):hover .fund-btn-arrow {
    transform: translateX(5px);
}

.fund-btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

.fund-btn-ripple.active {
    animation: ripple 0.6s linear;
}

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

.fund-btn-primary:not(:disabled):hover .fund-btn-shine {
    left: 100%;
}

.fund-btn-primary.loading {
    pointer-events: none;
}

.fund-btn-primary.success {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    animation: success-pulse 0.6s ease;
}

.fund-btn-info {
    margin-top: 25px;
}

.fund-btn-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.fund-btn-note i {
    color: #00ff88;
}

.fund-btn-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.fund-btn-security i {
    color: #00d4ff;
}

/* ===================================
   ENHANCED THANK YOU SECTION
   =================================== */

.fund-thanks-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fund-thanks-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fund-thanks-card:hover::before {
    opacity: 1;
}

.fund-thanks-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.fund-thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.fund-thanks-icon i {
    font-size: 2.5rem;
    color: white;
}

.fund-thanks-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fund-sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 3s ease-in-out infinite;
}

.fund-sparkle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.fund-sparkle-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.fund-sparkle-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.fund-sparkle-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

.fund-thanks-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fund-thanks-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Impact Section */
.fund-impact-section {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

.fund-impact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

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

.fund-impact-item {
    text-align: center;
}

.fund-impact-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.fund-impact-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Enhanced Social Share */
.fund-social-share {
    margin-top: 50px;
}

.fund-social-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.fund-social-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.fund-social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fund-social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fund-social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fund-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.fund-social-facebook::before {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.fund-social-twitter::before {
    background: linear-gradient(135deg, #1da1f2, #42a5f5);
}

.fund-social-whatsapp::before {
    background: linear-gradient(135deg, #25d366, #4caf50);
}

.fund-social-telegram::before {
    background: linear-gradient(135deg, #0088cc, #42a5f5);
}

.fund-social-btn:hover::before {
    opacity: 1;
}

.fund-social-icon {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
}

.fund-social-text {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

/* Testimonials */
.fund-testimonials {
    margin-top: 50px;
}

.fund-testimonials-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.fund-testimonial-slider {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.fund-testimonial-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.fund-testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.fund-testimonial-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.fund-testimonial-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.fund-testimonial-author {
    font-size: 1rem;
    color: #00ff88;
    font-weight: 600;
}

/* Additional Animations */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

/* ===================================
   COMPREHENSIVE RESPONSIVE DESIGN
   =================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .fund-hero-title {
        font-size: 3.8rem;
    }

    .fund-section-title {
        font-size: 2.5rem;
    }

    .fund-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .fund-amount-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }

    .fund-hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 30px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .fund-hero-section {
        padding: 100px 0 60px;
        min-height: 90vh;
    }

    .fund-hero-title {
        font-size: 3.2rem;
        margin-bottom: 20px;
    }

    .fund-title-line,
    .fund-title-highlight {
        display: inline;
    }

    .fund-hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .fund-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .fund-stat-item {
        padding: 25px 15px;
    }

    .fund-stat-number {
        font-size: 2rem;
    }

    .fund-main-section {
        padding: 80px 0;
    }

    .fund-section-title {
        font-size: 2.2rem;
    }

    .fund-section-subtitle {
        font-size: 1.1rem;
    }

    .fund-card-header {
        padding: 30px 30px 15px;
    }

    .fund-card-body {
        padding: 15px 30px 30px;
    }

    .fund-card-title {
        font-size: 1.8rem;
    }

    .fund-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fund-feature-item {
        padding: 25px;
    }

    .fund-amount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .fund-amount-btn {
        padding: 20px 15px;
        min-height: 100px;
    }

    .fund-amount-value {
        font-size: 1.5rem;
    }

    .fund-btn-primary {
        padding: 18px 40px;
        font-size: 1.1rem;
        min-width: 250px;
    }

    .fund-payment-info {
        padding: 25px;
    }

    .fund-payment-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 0;
    }

    .fund-payment-value {
        width: 100%;
        justify-content: space-between;
    }

    .fund-dial-value {
        align-items: flex-start;
        width: 100%;
    }

    .fund-social-buttons {
        gap: 15px;
    }

    .fund-social-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .fund-impact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .fund-impact-number {
        font-size: 1.8rem;
    }

    .fund-thanks-title {
        font-size: 2rem;
    }

    .fund-thanks-text {
        font-size: 1.1rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .fund-hero-section {
        padding: 80px 0 50px;
        min-height: 85vh;
    }

    .fund-hero-content {
        padding: 0 15px;
    }

    .fund-hero-badge {
        padding: 10px 20px;
        margin-bottom: 25px;
    }

    .fund-badge-text {
        font-size: 0.8rem;
    }

    .fund-hero-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }

    .fund-icon-inner i {
        font-size: 2rem;
    }

    .fund-hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .fund-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .fund-hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }

    .fund-stat-item {
        padding: 20px 15px;
    }

    .fund-stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .fund-stat-icon i {
        font-size: 1.2rem;
    }

    .fund-stat-number {
        font-size: 1.8rem;
    }

    .fund-stat-label {
        font-size: 0.9rem;
    }

    .fund-cta-btn {
        padding: 15px 25px;
        font-size: 1rem;
        gap: 10px;
    }

    .fund-main-section {
        padding: 60px 0;
    }

    .fund-section-header {
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .fund-section-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .fund-section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .fund-section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .fund-card {
        margin: 0 15px 30px;
        border-radius: 20px;
    }

    .fund-card-header {
        padding: 25px 20px 10px;
    }

    .fund-card-body {
        padding: 10px 20px 25px;
    }

    .fund-payment-header-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .fund-payment-header-icon i {
        font-size: 1.5rem;
    }

    .fund-card-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .fund-card-subtitle {
        font-size: 1rem;
    }

    .fund-feature-item {
        padding: 20px;
    }

    .fund-feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .fund-feature-icon i {
        font-size: 1.5rem;
    }

    .fund-feature-content h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .fund-feature-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .fund-amount-header {
        margin-bottom: 30px;
    }

    .fund-amount-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 8px;
    }

    .fund-amount-subtitle {
        font-size: 0.9rem;
    }

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

    .fund-amount-btn {
        padding: 15px 10px;
        min-height: 85px;
    }

    .fund-amount-value {
        font-size: 1.3rem;
    }

    .fund-amount-currency {
        font-size: 0.8rem;
    }

    .fund-amount-label {
        font-size: 0.7rem;
        margin-top: 5px;
    }

    .fund-custom-input-wrapper {
        max-width: 250px;
    }

    .fund-amount-input {
        padding: 15px 15px 15px 50px;
        font-size: 1.1rem;
    }

    .fund-currency-symbol {
        left: 15px;
        font-size: 1rem;
    }

    .fund-payment-title {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 8px;
    }

    .fund-payment-info {
        padding: 20px;
    }

    .fund-payment-row {
        padding: 12px 0;
    }

    .fund-payment-label {
        font-size: 0.9rem;
        gap: 8px;
    }

    .fund-payment-value {
        font-size: 1rem;
        gap: 10px;
    }

    .fund-dial-code {
        font-size: 0.9rem;
        padding: 6px 10px;
        word-break: break-all;
    }

    .fund-copy-btn {
        padding: 6px 8px;
        font-size: 0.8rem;
    }

    .fund-btn-primary {
        padding: 16px 30px;
        font-size: 1rem;
        min-width: 220px;
    }

    .fund-btn-content {
        gap: 10px;
    }

    .fund-btn-icon {
        font-size: 1.2rem;
    }

    .fund-btn-info {
        margin-top: 20px;
        padding: 0 15px;
    }

    .fund-btn-note,
    .fund-btn-security {
        font-size: 0.85rem;
        text-align: center;
    }

    .fund-thanks-card {
        padding: 40px 20px;
        margin: 0 15px;
    }

    .fund-thanks-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .fund-thanks-icon i {
        font-size: 2rem;
    }

    .fund-thanks-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .fund-thanks-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .fund-impact-section {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .fund-impact-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .fund-impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fund-impact-number {
        font-size: 1.6rem;
    }

    .fund-impact-label {
        font-size: 0.9rem;
    }

    .fund-social-title {
        font-size: 1.3rem;
    }

    .fund-social-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .fund-social-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .fund-social-btn {
        padding: 12px 25px;
        width: 200px;
        justify-content: center;
    }

    .fund-testimonials-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .fund-testimonial-content {
        padding: 25px 20px;
    }

    .fund-testimonial-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .fund-testimonial-author {
        font-size: 0.9rem;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .fund-hero-title {
        font-size: 2.2rem;
    }

    .fund-section-title {
        font-size: 1.6rem;
    }

    .fund-amount-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fund-amount-btn {
        min-height: 75px;
        padding: 12px 8px;
    }

    .fund-amount-value {
        font-size: 1.2rem;
    }

    .fund-btn-primary {
        min-width: 200px;
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .fund-card {
        margin: 0 10px 25px;
    }

    .fund-payment-info {
        padding: 15px;
    }

    .fund-dial-code {
        font-size: 0.8rem;
        padding: 5px 8px;
    }

    .fund-social-btn {
        width: 180px;
        padding: 10px 20px;
    }
}

/* Print Styles */
@media print {
    .fund-us-page {
        background: white !important;
        color: black !important;
    }

    .fund-hero-section,
    .fund-main-section {
        background: white !important;
    }

    .fund-card,
    .fund-feature-item,
    .fund-payment-info {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }

    .fund-btn-primary,
    .fund-social-btn {
        display: none !important;
    }

    * {
        color: black !important;
        text-shadow: none !important;
    }
}
