
        /* Hero Section Improvements */
        .hero-wrapper {
            position: relative;
            overflow: hidden;
        }
        
        .rocket-image {
            position: absolute;
            right: 100px;
            top: 50%;
            transform: translateY(-50%);
            width: 300px;
            height: auto;
            z-index: 0;
            opacity: 0.3;
        }
        
        .hero-subtitle {
            color: rgba(255,255,255,0.85);
            font-size: 18px;
            margin: 20px 0 30px 0;
            line-height: 1.6;
        }
        
        /* Statistics Cards - COMPLETELY NEW DESIGN */
        .stats-modern-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        
        .stats-card-modern {
            background: linear-gradient(135deg, rgba(249, 168, 212, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
            border: 2px solid transparent;
            background-clip: padding-box;
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        
        .stats-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, #f9a8d4, #a78bfa);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .stats-card-modern:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(167, 139, 250, 0.4);
        }
        
        .stats-card-modern:hover::before {
            opacity: 1;
        }
        
        .stats-number-modern {
            font-size: 64px;
            font-weight: 800;
            background: linear-gradient(135deg, #f9a8d4 0%, #a78bfa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1;
        }
        
        .stats-label-modern {
            color: rgba(255,255,255,0.9);
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        /* Calculator - COMPACT DESIGN */
        .calculator-wrapper-compact {
            max-width: 1000px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(30, 27, 75, 0.95) 0%, rgba(49, 46, 129, 0.95) 100%);
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .calculator-inputs-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .calc-input-group {
            position: relative;
        }
        
        .calc-label {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }
        
        .calc-value-display {
            font-size: 42px;
            font-weight: 700;
            color: #a78bfa;
            margin: 15px 0;
            text-align: center;
        }
        
        .calc-slider {
            -webkit-appearance: none;
            width: 100%;
            height: 10px;
            border-radius: 5px;
            background: rgba(255,255,255,0.2);
            outline: none;
            margin: 15px 0;
        }
        
        .calc-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f9a8d4, #a78bfa);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(167, 139, 250, 0.5);
        }
        
        .calc-slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f9a8d4, #a78bfa);
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 12px rgba(167, 139, 250, 0.5);
        }
        
        .calc-range-labels {
            display: flex;
            justify-content: space-between;
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            margin-top: 8px;
        }
        
        .calc-results {
            background: rgba(0,0,0,0.4);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
        }
        
        .calc-result-main {
            margin-bottom: 30px;
        }
        
        .calc-result-label {
            color: rgba(255,255,255,0.7);
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .calc-result-value-big {
            font-size: 56px;
            font-weight: 800;
            color: #10b981;
            line-height: 1;
        }
        
        .calc-result-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 30px;
        }
        
        .calc-result-item {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 25px;
        }
        
        .calc-result-item-label {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .calc-result-item-value {
            font-size: 32px;
            font-weight: 700;
            color: white;
        }
        
        /* Platform Advantages with FontAwesome Icons */
        .advantage-card-new {
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
            border: 1px solid rgba(167, 139, 250, 0.3);
            border-radius: 25px;
            padding: 45px;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card-new::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(249, 168, 212, 0.1), rgba(167, 139, 250, 0.1));
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .advantage-card-new:hover {
            transform: translateY(-8px);
            border-color: #a78bfa;
            box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
        }
        
        .advantage-card-new:hover::before {
            opacity: 1;
        }
        
        .advantage-icon-new {
            font-size: 72px;
            color: #a78bfa;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .advantage-title-new {
            font-size: 30px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        
        .advantage-subtitle-new {
            font-size: 16px;
            color: #f9a8d4;
            margin-bottom: 18px;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }
        
        .advantage-text-new {
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
            font-size: 15px;
            position: relative;
            z-index: 1;
        }
        
        /* Review Cards with Scroll */
        .reviews-scroll-container {
            overflow: hidden;
            margin: 0 -15px;
        }
        
        .review-card-new {
            background: linear-gradient(135deg, rgba(30, 27, 75, 0.9) 0%, rgba(49, 46, 129, 0.9) 100%);
            border: 1px solid rgba(167, 139, 250, 0.2);
            border-radius: 25px;
            padding: 35px;
            margin: 0 15px;
            min-height: 400px;
            transition: all 0.3s ease;
        }
        
        .review-card-new:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(167, 139, 250, 0.3);
            border-color: #a78bfa;
        }
        
        .review-header-new {
            margin-bottom: 25px;
        }
        
        .review-name-new {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }
        
        .review-period-new {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            margin-bottom: 12px;
        }
        
        .review-stars-new {
            color: #fbbf24;
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        .review-stats-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 25px 0;
            padding: 20px;
            background: rgba(0,0,0,0.4);
            border-radius: 15px;
        }
        
        .review-stat-item {
            text-align: center;
        }
        
        .review-stat-label {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .review-stat-value {
            font-size: 24px;
            font-weight: 700;
            color: #10b981;
        }
        
        .review-stat-value.invested {
            color: #f9a8d4;
        }
        
        .review-text-new {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            font-size: 15px;
        }
        
        /* CTA Buttons */
        .cta-block {
            text-align: center;
            padding: 80px 20px;
        }
        
        .cta-btn-large {
            display: inline-block;
            padding: 20px 60px;
            font-size: 20px;
            font-weight: 700;
            background: linear-gradient(135deg, #a78bfa 0%, #f9a8d4 100%);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(167, 139, 250, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-btn-large:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(167, 139, 250, 0.6);
            color: white;
        }
        
        /* Slick Slider Customization */
        .slick-prev, .slick-next {
            width: 50px;
            height: 50px;
            z-index: 100;
        }
        
        .slick-prev {
            left: -60px;
        }
        
        .slick-next {
            right: -60px;
        }
        
        .slick-prev:before, .slick-next:before {
            font-size: 40px;
            color: #a78bfa;
        }
        
        /* Mobile Responsive */
        @media (max-width: 992px) {
            .stats-modern-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .calculator-inputs-row {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .calc-result-details {
                grid-template-columns: 1fr;
            }
            
            .rocket-image {
                opacity: 0.15;
                width: 200px;
                right: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .stats-modern-container {
                grid-template-columns: 1fr;
            }
            
            .stats-number-modern {
                font-size: 48px;
            }
            
            .calc-value-display {
                font-size: 32px;
            }
            
            .calc-result-value-big {
                font-size: 42px;
            }
            
            .slick-prev {
                left: 10px;
            }
            
            .slick-next {
                right: 10px;
            }
        }
        /* Slick Dots Styling */
.slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.slick-dots li {
    margin: 0;
    width: 12px;
    height: 12px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li button:hover {
    background: rgba(167, 139, 250, 0.6);
}

.slick-dots li.slick-active button {
    background: #a78bfa;
    width: 12px;
    height: 12px;
}

.slick-dots li button:before {
    display: none;
}
/* Hide Slick Arrows */
.slick-prev,
.slick-next {
    display: none !important;
}

        /* Timeline Styles */
        .timeline-section {
            position: relative;
            padding: 80px 0;
        }
        
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #a78bfa 0%, #f9a8d4 100%);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 80px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
            text-align: left;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            margin-right: auto;
            text-align: right;
        }
        
        .timeline-content {
            width: 45%;
            background: linear-gradient(135deg, rgba(30, 27, 75, 0.9), rgba(49, 46, 129, 0.9));
            padding: 35px;
            border-radius: 20px;
            border: 1px solid rgba(167, 139, 250, 0.3);
            position: relative;
        }
        
        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 30px;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: #a78bfa;
            border-radius: 50%;
            border: 4px solid #1e1b4b;
            z-index: 10;
        }
        
        .timeline-year {
            font-size: 32px;
            font-weight: 700;
            background: linear-gradient(135deg, #f9a8d4, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }
        
        .timeline-title {
            color: white;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .timeline-text {
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
        }
        
        /* Stats Cards */
        .stat-card-large {
            background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(249, 168, 212, 0.1));
            border: 2px solid rgba(167, 139, 250, 0.3);
            border-radius: 25px;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .stat-card-large:hover {
            transform: translateY(-10px);
            border-color: #a78bfa;
            box-shadow: 0 20px 60px rgba(167, 139, 250, 0.4);
        }
        
        .stat-icon {
            font-size: 64px;
            color: #a78bfa;
            margin-bottom: 25px;
        }
        
        .stat-number-big {
            font-size: 56px;
            font-weight: 800;
            background: linear-gradient(135deg, #f9a8d4, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            line-height: 1;
        }
        
        .stat-label-big {
            color: rgba(255,255,255,0.9);
            font-size: 20px;
            font-weight: 600;
        }
        
        /* Team Section */
        .team-member {
            background: linear-gradient(135deg, rgba(30, 27, 75, 0.9), rgba(49, 46, 129, 0.9));
            border: 1px solid rgba(167, 139, 250, 0.2);
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .team-member:hover {
            transform: translateY(-8px);
            border-color: #a78bfa;
            box-shadow: 0 15px 50px rgba(167, 139, 250, 0.3);
        }
        
        .team-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #a78bfa, #f9a8d4);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-name {
            color: white;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .team-position {
            color: #f9a8d4;
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .team-bio {
            color: rgba(255,255,255,0.75);
            line-height: 1.7;
            font-size: 15px;
        }
        
        /* Values Section */
        .value-card {
            background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(249, 168, 212, 0.1));
            border: 1px solid rgba(167, 139, 250, 0.2);
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            border-color: #a78bfa;
            box-shadow: 0 10px 40px rgba(167, 139, 250, 0.2);
        }
        
        .value-icon {
            font-size: 56px;
            color: #a78bfa;
            margin-bottom: 20px;
        }
        
        .value-title {
            color: white;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .value-text {
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
        }
        
        /* Chart Container */
        .chart-container {
            background: linear-gradient(135deg, rgba(30, 27, 75, 0.9), rgba(49, 46, 129, 0.9));
            border: 1px solid rgba(167, 139, 250, 0.3);
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
        }
        
        .chart-title {
            color: white;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }
        
        /* Mobile Responsive */
        @media (max-width: 992px) {
            .timeline-line {
                left: 30px;
            }
            
            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
                text-align: left !important;
            }
            
            .timeline-dot {
                left: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .stat-number-big {
                font-size: 42px;
            }
            
            .team-photo {
                width: 120px;
                height: 120px;
            }
        }

        /* Review Cards */
        .review-card-new {
            background: linear-gradient(135deg, rgba(30, 27, 75, 0.9) 0%, rgba(49, 46, 129, 0.9) 100%);
            border: 1px solid rgba(167, 139, 250, 0.2);
            border-radius: 25px;
            padding: 35px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .review-card-new:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(167, 139, 250, 0.3);
            border-color: #a78bfa;
        }
        
        .review-header-new {
            margin-bottom: 25px;
        }
        
        .review-name-new {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }
        
        .review-period-new {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            margin-bottom: 12px;
        }
        
        .review-stars-new {
            color: #fbbf24;
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        .review-stats-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 25px 0;
            padding: 20px;
            background: rgba(0,0,0,0.4);
            border-radius: 15px;
        }
        
        .review-stat-item {
            text-align: center;
        }
        
        .review-stat-label {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .review-stat-value {
            font-size: 24px;
            font-weight: 700;
            color: #10b981;
        }
        
        .review-stat-value.invested {
            color: #f9a8d4;
        }
        
        .review-text-new {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            font-size: 15px;
        }
        
        /* Filter Buttons */
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 12px 30px;
            background: rgba(167, 139, 250, 0.1);
            border: 2px solid rgba(167, 139, 250, 0.3);
            border-radius: 50px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, #a78bfa, #f9a8d4);
            border-color: transparent;
        }
        
        /* Stats Summary */
        .reviews-stats {
            background: linear-gradient(135deg, rgba(30, 27, 75, 0.9), rgba(49, 46, 129, 0.9));
            border: 1px solid rgba(167, 139, 250, 0.3);
            border-radius: 25px;
            padding: 50px;
            margin-bottom: 60px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        
        .stat-item-large {
            padding: 20px;
        }
        
        .stat-number-huge {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, #f9a8d4, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        
        .stat-label-large {
            color: rgba(255,255,255,0.8);
            font-size: 16px;
            font-weight: 600;
        }
        
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Platform Screenshot */
        .platform-screenshot {
            background: linear-gradient(135deg, rgba(30, 27, 75, 0.95), rgba(49, 46, 129, 0.95));
            border: 2px solid rgba(167, 139, 250, 0.3);
            border-radius: 25px;
            padding: 20px;
            margin-bottom: 60px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .screenshot-container {
            border-radius: 15px;
            overflow: hidden;
            background: #1a1625;
            position: relative;
        }
        
        .screenshot-container img {
            width: 100%;
            display: block;
        }
        
        .screenshot-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(249, 168, 212, 0.1));
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .platform-screenshot:hover .screenshot-overlay {
            opacity: 1;
        }
        
        /* Browser Chrome */
        .browser-chrome {
            background: #2d2640;
            padding: 12px 20px;
            border-radius: 15px 15px 0 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .chrome-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .chrome-dot.red { background: #ff5f56; }
        .chrome-dot.yellow { background: #ffbd2e; }
        .chrome-dot.green { background: #27c93f; }
        
        /* Feature Sections */
        .feature-section {
            margin-bottom: 80px;
        }
        
        .feature-content {
            background: linear-gradient(135deg, rgba(30, 27, 75, 0.6), rgba(49, 46, 129, 0.6));
            border: 1px solid rgba(167, 139, 250, 0.2);
            border-radius: 20px;
            padding: 40px;
        }
        
        .feature-icon-large {
            font-size: 72px;
            color: #a78bfa;
            margin-bottom: 25px;
        }
        
        .feature-title-large {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }
        
        .feature-text-large {
            color: rgba(255,255,255,0.8);
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }
        
        .feature-list li {
            color: rgba(255,255,255,0.8);
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            font-size: 16px;
        }
        
        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 20px;
        }
        
        /* Stats Bar */
        .stats-bar {
            background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(249, 168, 212, 0.2));
            border: 1px solid rgba(167, 139, 250, 0.3);
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
        }
        
        .stats-bar-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: center;
        }
        
        .stat-bar-item h3 {
            font-size: 42px;
            font-weight: 800;
            background: linear-gradient(135deg, #f9a8d4, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        
        .stat-bar-item p {
            color: rgba(255,255,255,0.8);
            font-size: 16px;
            font-weight: 600;
        }
        
        /* Image Placeholder */
        .img-placeholder {
            background: linear-gradient(135deg, #1e1b4b, #312e81);
            border: 2px dashed rgba(167, 139, 250, 0.3);
            border-radius: 15px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            font-size: 18px;
        }
        
        @media (max-width: 992px) {
            .stats-bar-grid {
                grid-template-columns: 1fr;
            }
        }
 /* Contact Info Cards */
        .contact-info-card {
            background: linear-gradient(135deg, rgba(30, 27, 75, 0.9), rgba(49, 46, 129, 0.9));
            border: 1px solid rgba(167, 139, 250, 0.3);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .contact-info-card:hover {
            transform: translateY(-8px);
            border-color: #a78bfa;
            box-shadow: 0 15px 50px rgba(167, 139, 250, 0.3);
        }
        
        .contact-icon {
            font-size: 56px;
            color: #a78bfa;
            margin-bottom: 25px;
        }
        
        .contact-info-title {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }
        
        .contact-info-text {
            color: rgba(255,255,255,0.8);
            font-size: 16px;
            line-height: 1.8;
        }
        
        .contact-info-text a {
            color: #a78bfa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-info-text a:hover {
            color: #f9a8d4;
        }
        
        /* Contact Form */
        .contact-form-wrapper {
            background: linear-gradient(135deg, rgba(30, 27, 75, 0.95), rgba(49, 46, 129, 0.95));
            border: 1px solid rgba(167, 139, 250, 0.3);
            border-radius: 25px;
            padding: 50px;
            backdrop-filter: blur(15px);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-control-custom {
            padding: 16px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.1);
            color: white;
            width: 100%;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-control-custom:focus {
            outline: none;
            border-color: #a78bfa;
            background: rgba(255,255,255,0.15);
            box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
        }
        
        .form-control-custom::placeholder {
            color: rgba(255,255,255,0.5);
        }
        
        textarea.form-control-custom {
            resize: vertical;
            min-height: 150px;
        }
        
        /* Business Hours */
        .business-hours {
            background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(249, 168, 212, 0.1));
            border: 1px solid rgba(167, 139, 250, 0.2);
            border-radius: 20px;
            padding: 35px;
            margin-top: 40px;
        }
        
        .hours-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.8);
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .hours-day {
            font-weight: 600;
        }
        
        .hours-time {
            color: #a78bfa;
        }