/* /var/www/corecontact_mainserver/consulting/program/intensive_consulting/style.css */

/* General Section Styling */
section {
    padding: 80px 0;
}
.bg-light {
    background-color: #f8f9fa;
}
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #0A2342;
}

/* Core Features Slider */
#core-features-slider {
    text-align: center;
}
#core-features-slider .section-title {
    margin-bottom: 30px;
}
.feature-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    max-width: 1100px;
    margin: 0 auto;
}
.feature-slider-track {
    display: flex;
    width: calc(320px * 10); /* (card-width + gap) * (number of cards * 2) */
    animation: slide-anim 40s linear infinite;
}
.feature-box-item {
    flex-shrink: 0;
    width: 280px;
    padding: 30px;
    margin: 15px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,30,80,0.08);
    text-align: left;
    border: 1px solid #e9ecef;
}
.feature-box-item h4 {
    font-size: 1.2rem;
    color: #0A2342;
    margin: 0 0 10px 0;
}
.feature-box-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
@keyframes slide-anim {
    from { transform: translateX(0%); }
    to { transform: translateX(-50%); }
}

/* Program Process Timeline */
#program-process {
    background-color: #fcfdff;
}
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: linear-gradient(to bottom, #a6c1ff, #e0e9ff);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0A2342;
    color: #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fcfdff;
    box-shadow: 0 4px 15px rgba(10, 35, 66, 0.15);
    z-index: 2;
}
.timeline-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 30, 80, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
}
.timeline-content::before {
    content: '';
    position: absolute;
    top: 18px;
    left: -12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 12px 0;
    border-color: transparent #ffffff transparent transparent;
    filter: drop-shadow(-2px 0px 2px rgba(0, 30, 80, 0.02));
}
.timeline-content .step-tag {
    display: inline-block;
    background-color: #eaf5ff;
    color: #007bff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.timeline-content h3 {
    font-size: 1.7rem;
    color: #0A2342;
    margin-top: 0;
    margin-bottom: 15px;
}
.timeline-content p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin: 0;
}

/* Program Outcomes */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.outcome-card {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    transition: transform 0.3s, box-shadow 0.3s;
}
.outcome-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.outcome-card .outcome-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
}
.outcome-card h3 {
    font-size: 1.3rem;
    color: #1d3c63;
    margin-bottom: 15px;
}
.outcome-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Consultant & Testimonials Section */
#consultant-team-section .card-grid, #testimonials .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
#consultant-team-section .consultant-profile {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 30, 80, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#consultant-team-section .consultant-profile:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 30, 80, 0.1);
}
.profile-main-info { display: flex; align-items: center; gap: 20px; }
#consultant-team-section .consultant-profile img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 4px solid #eaf5ff; }
.profile-details h3 { font-size: 1.4rem; color: #0A2342; margin: 0 0 5px 0; }
.profile-details .title { font-size: 0.9rem; font-weight: 600; color: #0056b3; }
.profile-details .profile-education { font-size: 0.9rem; line-height: 1.6; color: #495057; margin: 8px 0 0 0; }
.profile-strengths { border-top: 1px solid #f1f3f5; padding-top: 20px; }
.profile-strengths p { font-size: 0.95rem; line-height: 1.7; color: #495057; margin: 0 0 10px 0; }
.profile-strengths p:last-child { margin-bottom: 0; }
.profile-strengths p strong { font-weight: 700; color: #343a40; }
#testimonials .testimonial { background-color: #ffffff; border: 1px solid #e9ecef; }

/* CTA Section */
#cta { background: linear-gradient(135deg, #0A2342, #1d3c63); color: #ffffff; padding: 80px 40px; text-align: center; border-radius: 20px; margin: 80px 0; }
#cta h2 { color: #ffffff; font-size: 2.2rem; }
#cta p { color: #e0e0e0; margin-top: 1rem; margin-bottom: 2.5rem; }
#cta .pricing-info-cta { margin: 0 auto 2.5rem; padding: 25px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 16px; max-width: 480px; background: rgba(255, 255, 255, 0.05); }
#cta .price-display .amount { font-size: 3.2rem; font-weight: 700; }
#cta .price-display .currency { font-size: 1.5rem; font-weight: 600; margin-left: 5px; }
#cta .price-display .period { font-size: 1rem; color: #e0e0e0; display: block; margin-top: 5px; }
#cta .plan-description { color: #e0e0e0; font-size: 1rem; line-height: 1.6; margin: 15px 0 0 0; }
#cta .cta-button { background-color: #ffffff; color: #0A2342; font-weight: bold; padding: 14px 35px; border-radius: 50px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); text-decoration: none; transition: all 0.3s ease; }
#cta .cta-button:hover { background-color: #f0f0f0; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }

/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .process-timeline { padding-left: 0; }
    .process-timeline::before { left: 15px; }
    .timeline-item { padding-left: 50px; }
    .timeline-icon { width: 34px; height: 34px; font-size: 1.4rem; left: 0; }
    .timeline-content::before { display: none; }
    .timeline-content { padding: 20px; }
    .timeline-content h3 { font-size: 1.4rem; }
    #cta h2 { font-size: 1.8rem; }
    #consultant-team-section .profile-main-info { flex-direction: column; text-align: center; }
    #consultant-team-section .consultant-profile img { margin-bottom: 15px; }
}