/* Approche Section Styles */
#approche {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

.approche-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-bottom: 4px solid transparent;
}

.approche-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.approche-card.card-80-20:hover {
    border-bottom-color: #0d6efd;
}

.approche-card.card-70-30:hover {
    border-bottom-color: #198754;
}

.approche-card.card-100:hover {
    border-bottom-color: #dc3545;
}

/* SVG Progress Ring */
.progress-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
}

.progress-ring {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.progress-ring__circle,
.progress-ring__circle-bg {
    fill: transparent;
}

.progress-ring__circle {
    transition: stroke-dashoffset 2s cubic-bezier(0.35, 1, 0.35, 1);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    /* Start empty, animate to value */
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
    stroke-linecap: round;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.progress-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

/* Specific Colors */
.card-80-20 .progress-ring {
    --fill-color: #0d6efd;
}

.card-70-30 .progress-ring {
    --fill-color: #198754;
}

.card-100 .progress-ring {
    --fill-color: #dc3545;
}

/* Text Content */
.approche-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
}

.approche-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Made in Morocco Badge */
.badge-morocco {
    background: linear-gradient(135deg, #c1272d 0%, #a01e23 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(193, 39, 45, 0.3);
}

/* Approche Dark Card & Emojis */
.approche-dark-card {
    background: linear-gradient(145deg, #1a1d20, #000000);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.approche-dark-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #198754, #dc3545);
}

.emoji-icon {
    font-size: 2rem;
    display: inline-block;
}

.emoji-spin {
    animation: spin-slow 8s linear infinite;
}

.emoji-bounce {
    animation: bounce-gentle 2s infinite;
}

.emoji-pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes spin-slow {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce-gentle {

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

    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
}

/* Typography Refinements */
.approche-dark-card strong {
    font-size: 0.9rem;
}

.approche-dark-card .small {
    font-size: 0.75rem;
}

.emoji-icon {
    font-size: 1.5rem !important;
    /* Reduced from 2rem */
    display: inline-block;
}