/* ===== FORMATION DETAIL CARDS STYLES ===== */

.formation-detail-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.formation-detail-section .container {
    max-width: 1200px;
}

/* Detail Cards Grid */
.detail-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Formation Card Base */
.formation-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 21, 44, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.formation-card:hover {
    box-shadow: 0 8px 24px rgba(0, 21, 44, 0.1);
}

.formation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E31B23, #FF6B6B);
}

/* Card Header */
.card-header {
    position: relative;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f3f7 100%);
    text-align: center;
}

.icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 2.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.formation-card:hover .icon-large {
}

.heart-icon {
    background: linear-gradient(135deg, #FFE5E5 0%, #FFD4D4 100%);
    color: #E31B23;
}

.academy-icon {
    background: linear-gradient(135deg, #E8F4FF 0%, #D4E8FF 100%);
    color: #003D82;
}

.briefcase-icon {
    background: linear-gradient(135deg, #FFF4E5 0%, #FFE8CC 100%);
    color: #F39C12;
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E31B23, #c2151a);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

/* Card Body */
.card-body {
    padding: 30px;
    flex-grow: 1;
}

.card-body h2 {
    font-size: 1.5rem;
    color: #00152c;
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-body p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Competence List */
.competence-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.competence-list li {
    padding: 12px 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
}

.competence-list li:last-child {
    border-bottom: none;
}

.comp-label {
    display: inline-block;
    background: linear-gradient(135deg, #E31B23, #c2151a);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-right: 10px;
    min-width: 100px;
    text-align: center;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.location-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f3f7 100%);
    border-radius: 12px;
    text-align: center;
}

.location-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f3f7 100%);
    color: inherit;
}

.location-item i {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.location-item span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Card Footer */
.card-footer {
    padding: 0;
    position: relative;
    height: 4px;
}

.accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E31B23, #FF6B6B);
}

/* Premium & Accent Cards */
.premium-card {
    border: 2px solid #FFE5E5;
}

.accent-card {
    border: 2px solid #E8F4FF;
}

.locations-card {
    border: 2px solid #FFF4E5;
}

/* ===== PRACTICAL INFO SECTION ===== */
.practical-info-section {
    margin-top: 40px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #00152c;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #E31B23, #003D82);
    border-radius: 2px;
}

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 25px;
}

/* Info Card */
.info-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 21, 44, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    box-shadow: 0 8px 24px rgba(0, 21, 44, 0.08);
}

/* Info Header */
.info-header {
    padding: 30px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f3f7 100%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #E31B23, #c2151a);
    color: white;
    flex-shrink: 0;
}

.info-header h3 {
    font-size: 1.2rem;
    color: #00152c;
    margin: 0;
}

/* Info Content */
.info-content {
    padding: 25px;
    flex-grow: 1;
}

.info-content .highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E31B23;
    margin-bottom: 8px;
}

.info-content .subtitle {
    color: #666;
    font-size: 0.9rem;
}

/* Requirement List */
.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-list li {
    padding: 10px 0;
    color: #444;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.requirement-list i {
    color: #E31B23;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Rhythm List */
.rhythm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rhythm-list li {
    padding: 10px 0;
    color: #444;
    font-size: 0.92rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rhythm-label {
    background: linear-gradient(135deg, #E31B23, #c2151a);
    color: white;
    padding: 3px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
}

/* Acquired Skills */
.acquired-skills {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acquired-skills li {
    padding: 10px 0;
    color: #444;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.skill-checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E31B23, #c2151a);
    color: white;
    margin-right: 10px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Info Decoration */
.info-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}

.duration-card .info-decoration {
    background: linear-gradient(135deg, #E31B23, #FF6B6B);
}

.diploma-card .info-decoration {
    background: linear-gradient(135deg, #003D82, #4A90E2);
}

.admission-card .info-decoration {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
}

.schedule-card .info-decoration {
    background: linear-gradient(135deg, #F39C12, #FFB347);
}

.skills-card .info-decoration {
    background: linear-gradient(135deg, #9B59B6, #BB86FC);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #00152c 0%, #003D82 100%);
    color: white;
    grid-column: span 1;
}

.cta-card:hover {
    box-shadow: 0 8px 24px rgba(0, 21, 44, 0.08);
}

.cta-content {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #E31B23;
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.cta-buttons .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.cta-buttons .btn-primary {
    background: #E31B23;
    color: white;
    border: 2px solid #E31B23;
}

.cta-buttons .btn-primary:hover {
    background: white;
    color: #E31B23;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #00152c;
}

.cta-buttons .btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-buttons .btn-whatsapp:hover {
    background: white;
    color: #25D366;
    transform: scale(1.05);
}

.cta-buttons .btn-whatsapp i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .formation-detail-section {
        padding: 40px 15px;
    }

    .detail-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card-header {
        padding: 30px 20px;
    }

    .card-body {
        padding: 20px;
    }

    .card-body h2 {
        font-size: 1.2rem;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-large {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .info-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .detail-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-item {
        padding: 10px;
        font-size: 0.8rem;
    }

    .cta-buttons {
        gap: 10px;
    }
}
