
/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 153, 2, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1624px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: #131825;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(251, 153, 2, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fb9902 0%, #3b82f6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 153, 2, 0.3);
    box-shadow: 0 20px 40px rgba(251, 153, 2, 0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fb9902 0%, #d48202 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #fb9902, #3b82f6);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover .stat-icon::after {
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.stat-icon i {
    color: white;
    font-size: 1.75rem;
}

.stat-content span {
    display: block;
    color: #e4e7eb;
    font-size: 0.95rem;
    line-height: 1.6;
}

.stat-content b {
    color: #fb9902;
    font-weight: 600;
}

/* Main Footer */
.main-footer {
    background: #0a0e1a;
    padding: 4rem 0 2rem;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(251, 153, 2, 0.3) 20%, 
        rgba(251, 153, 2, 0.3) 80%, 
        transparent 100%
    );
}

.main-footer .container {
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #e4e7eb;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-section h3 i {
    color: #fb9902;
    font-size: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #8b92a8;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fb9902;
    transition: width 0.3s;
}

.footer-section ul li a:hover {
    color: #fb9902;
    transform: translateX(4px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

/* Company Info */
.company-info {
    background: #131825;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid #fb9902;
}

.company-info p {
    margin-bottom: 0.5rem;
    color: #8b92a8;
    line-height: 1.6;
}

.company-info b {
    color: #e4e7eb;
}

.company-info i {
    color: #fb9902;
    margin-right: 0.5rem;
}

/* Rating Widget */
.rating-widget {
    background: linear-gradient(135deg, #131825 0%, rgba(251, 153, 2, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
}

.rating-text {
    color: #e4e7eb;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.stars i {
    color: #fb9902;
    font-size: 1.25rem;
    animation: starPop 0.5s ease-out backwards;
}

.stars i:nth-child(1) { animation-delay: 0.1s; }
.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.3s; }
.stars i:nth-child(4) { animation-delay: 0.4s; }
.stars i:nth-child(5) { animation-delay: 0.5s; }

@keyframes starPop {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    80% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Trust Badge */
.trust-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(251, 153, 2, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(251, 153, 2, 0.2);
}

.trust-badge img {
    vertical-align: middle;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.trust-badge:hover img {
    opacity: 1;
}

/* Bottom Bar */
.bottom-bar {
    border-top: 1px solid rgba(251, 153, 2, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #8b92a8;
    font-size: 0.9rem;
}

.bottom-bar p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0;
    }

    .stats-banner,
    .main-footer {
        padding: 2rem 0 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0e1a;
}

::-webkit-scrollbar-thumb {
    background: #fb9902;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d48202;
}