/* Future Growth Plan Section Styles */
.future-growth-plan-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.future-growth-plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/my-images/cta.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

/* Animated background elements */
.future-growth-plan-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 107, 28, 0.05) 0%, transparent 70%);
    animation: rotateGrowth 25s linear infinite;
    z-index: 0;
}

@keyframes rotateGrowth {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.future-growth-plan-container {
    position: relative;
    z-index: 1;
}

.future-growth-plan-title {
    text-align: center;
    margin-bottom: 80px;
}

.future-growth-plan-title h2 {
    font-weight: 700;
    color: var(--mediox-black, #1c1c27);
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.future-growth-plan-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--mediox-base, #f76b1c), #ff8c42);
    margin: 20px auto;
    border-radius: 2px;
}

.future-growth-plan-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
    align-items: stretch;
}

.future-growth-plan-card {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 20px;
    margin-bottom: 40px;
}

.future-growth-plan-card__inner {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 50px 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(247, 107, 28, 0.1);
    text-align: center;
}

.future-growth-plan-card__inner:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(247, 107, 28, 0.2);
    border-color: var(--mediox-base, #f76b1c);
}

.future-growth-plan-card__inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--mediox-base, #f76b1c), #ff8c42);
    z-index: 1;
}

/* Icon styling */
.future-growth-plan-card__icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(247, 107, 28, 0.1), rgba(255, 140, 66, 0.1));
    border-radius: 50%;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.future-growth-plan-card__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--mediox-base, #f76b1c), #ff8c42);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease;
    z-index: 0;
}

.future-growth-plan-card__inner:hover .future-growth-plan-card__icon::before {
    transform: scale(1);
}

.future-growth-plan-card__icon i {
    font-size: 50px;
    color: var(--mediox-base, #f76b1c);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.future-growth-plan-card__inner:hover .future-growth-plan-card__icon i {
    color: #fff;
    transform: scale(1.1);
}

/* Card specific icons and colors */
.future-growth-plan-card:nth-child(1) .future-growth-plan-card__icon {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1), rgba(50, 205, 50, 0.1));
}

.future-growth-plan-card:nth-child(1) .future-growth-plan-card__icon::before {
    background: linear-gradient(135deg, #228B22, #32CD32);
}

.future-growth-plan-card:nth-child(1) .future-growth-plan-card__icon i {
    color: #228B22;
}

.future-growth-plan-card:nth-child(2) .future-growth-plan-card__icon {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.1), rgba(100, 149, 237, 0.1));
}

.future-growth-plan-card:nth-child(2) .future-growth-plan-card__icon::before {
    background: linear-gradient(135deg, #4682B4, #6495ED);
}

.future-growth-plan-card:nth-child(2) .future-growth-plan-card__icon i {
    color: #4682B4;
}

.future-growth-plan-card:nth-child(3) .future-growth-plan-card__icon {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 140, 0, 0.1));
}

.future-growth-plan-card:nth-child(3) .future-growth-plan-card__icon::before {
    background: linear-gradient(135deg, #FF4500, #FF8C00);
}

.future-growth-plan-card:nth-child(3) .future-growth-plan-card__icon i {
    color: #FF4500;
}

.future-growth-plan-card__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--mediox-black, #1c1c27);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.future-growth-plan-card__text {
    font-size: 16px;
    line-height: 1.8;
    color: #575757;
    margin-bottom: 0;
}

/* Add subtle animation to cards */
.future-growth-plan-card:nth-child(1) {
    animation: floatUp 6s ease-in-out infinite;
}

.future-growth-plan-card:nth-child(2) {
    animation: floatUp 6s ease-in-out infinite 2s;
}

.future-growth-plan-card:nth-child(3) {
    animation: floatUp 6s ease-in-out infinite 4s;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 991px) {
    .future-growth-plan-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .future-growth-plan-title h2 {
        font-size: 36px;
    }
    
    .future-growth-plan-card__inner {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .future-growth-plan-card {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .future-growth-plan-section {
        padding: 70px 0;
    }
    
    .future-growth-plan-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .future-growth-plan-section {
        padding: 60px 0;
    }
    
    .future-growth-plan-title h2 {
        font-size: 28px;
    }
    
    .future-growth-plan-card__inner {
        padding: 30px 20px;
    }
    
    .future-growth-plan-card__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .future-growth-plan-card__icon i {
        font-size: 40px;
    }
    
    .future-growth-plan-card__title {
        font-size: 22px;
    }
}
