/* ====================================
   VISION SECTION - PREMIUM REDESIGN
   ==================================== */

.vision-section {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    min-height: auto;
}

/* Animated Background Layer */
.vision-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

.vision-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.9) 0%, rgba(15, 15, 15, 0.8) 100%);
}

/* Floating Particles Animation */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 10%;
    animation-delay: 6s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 60%;
    animation-delay: 9s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 90%;
    animation-delay: 12s;
    animation-duration: 14s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-50px) translateX(-20px);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-20px) translateX(30px);
        opacity: 0.5;
    }
}

/* Vision Container */
.vision-container {
    position: relative;
    z-index: 2;
}

/* Vision Content Box */
.vision-content-box {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    padding: 50px;
    background: var(--glass-surface);
    backdrop-filter: var(--glass-blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.vision-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--brand-gradient);
    opacity: 0.6;
}

/* Vision Icon */
.vision-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: pulse-icon 3s infinite ease-in-out;
}

.vision-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--navy-darkest);
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    }
}

/* Vision Quote */
.vision-quote {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
    position: relative;
    padding: 0 20px;
}

.vision-quote::before,
.vision-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.3;
    font-family: Georgia, serif;
    position: absolute;
}

.vision-quote::before {
    top: -20px;
    left: -10px;
}

.vision-quote::after {
    bottom: -40px;
    right: -10px;
}

.vision-quote strong {
    color: var(--gold-primary);
    font-weight: 600;
    font-style: normal;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Stat Card */
.stat-card {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background: var(--glass-surface);
    backdrop-filter: var(--glass-blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-gradient);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

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

.stat-card:hover {
    transform: translateY(-10px);
    background: var(--glass-surface-strong);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

/* Stat Icon */
.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg);
    background: var(--brand-gradient);
    border-color: var(--gold-primary);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
    transition: color 0.4s ease;
}

.stat-card:hover .stat-icon i {
    color: var(--navy-darkest);
}

/* Animated Numbers */
.stat-number {
    display: inline-block;
    font-size: 4rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-suffix {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-left: 5px;
    opacity: 0.8;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin: 15px 0 0;
    font-weight: 500;
}

/* Decorative Underline */
.stat-underline {
    width: 50px;
    height: 2px;
    background: var(--gold-primary);
    margin: 15px auto 0;
    transition: width 0.4s ease;
}

.stat-card:hover .stat-underline {
    width: 100px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .vision-section {
        padding: 80px 0;
    }

    .vision-content-box {
        padding: 30px 20px;
        margin-bottom: 50px;
    }

    .vision-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .vision-icon-wrapper i {
        font-size: 1.8rem;
    }

    .vision-quote {
        font-size: 1.1rem;
        line-height: 1.7;
        padding: 0 10px;
    }

    .vision-quote::before,
    .vision-quote::after {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-suffix {
        font-size: 2rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

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