/* ========================================
   INFOGRAPHIC SECTION - WHY CHOOSE US
   ======================================== */

.infographic-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1015 0%, #2D1F26 50%, #1a1015 100%);
    overflow: hidden;
}

/* Header */
.info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.info-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.info-header h2 span {
    color: #C77D8F;
}

.info-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Stats Row - Circular Progress */
.info-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 968px) {
    .info-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .info-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.info-stat {
    text-align: center;
}

.info-stat-circle {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 0.75rem;
}

@media (max-width: 480px) {
    .info-stat-circle {
        width: 75px;
        height: 75px;
    }
}

.info-stat-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.info-stat-circle circle {
    fill: none;
    stroke-width: 6;
    stroke-linecap: round;
}

.info-stat-circle circle.bg {
    stroke: rgba(199, 125, 143, 0.2);
}

.info-stat-circle circle.progress {
    stroke: url(#gradient) #C77D8F;
    stroke-dasharray: 283;
    stroke-dashoffset: calc(283 - (283 * var(--percent)) / 100);
    transition: stroke-dashoffset 1.5s ease;
}

.info-stat-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 480px) {
    .info-stat-num {
        font-size: 1rem;
    }
}

.info-stat h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Process Flow - How It Works */
.info-process {
    margin-bottom: 2.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(199, 125, 143, 0.15);
}

.info-process h3 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1.5rem;
}

.info-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .info-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .info-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }

    .info-process {
        padding: 1.5rem 1rem;
    }

    .info-step-icon {
        width: 45px;
        height: 45px;
    }

    .info-step-icon i {
        font-size: 1rem;
    }

    .step-num {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }

    .info-step h4 {
        font-size: 0.8rem;
    }

    .info-step p {
        font-size: 0.7rem;
    }
}

.info-step {
    text-align: center;
    position: relative;
}

.info-step-icon {
    position: relative;
    width: 55px;
    height: 55px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, #C77D8F, #8B4558);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-step-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.step-num {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: #fff;
    color: #8B4558;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-step-line {
    position: absolute;
    top: 27px;
    left: calc(50% + 35px);
    width: calc(100% - 40px);
    height: 2px;
    background: linear-gradient(90deg, #C77D8F, rgba(199, 125, 143, 0.2));
}

.info-step:last-child .info-step-line {
    display: none;
}

@media (max-width: 768px) {
    .info-step-line {
        display: none;
    }
}

.info-step h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.25rem;
}

.info-step p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Features Grid with Progress Bars */
.info-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .info-features {
        grid-template-columns: 1fr;
    }
}

.info-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(199, 125, 143, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.info-feature:hover {
    background: rgba(199, 125, 143, 0.08);
    border-color: rgba(199, 125, 143, 0.3);
    transform: translateY(-3px);
}

.info-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(199, 125, 143, 0.2), rgba(139, 69, 88, 0.3));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-feature-icon i {
    font-size: 1rem;
    color: #C77D8F;
}

.info-feature-content {
    flex: 1;
    min-width: 150px;
}

.info-feature-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.2rem;
}

.info-feature-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.info-feature-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.bar-fill {
    height: 100%;
    width: var(--width);
    background: linear-gradient(90deg, #C77D8F, #E8B4BC);
    border-radius: 2px;
    animation: fillBar 1.5s ease forwards;
}

@keyframes fillBar {
    from {
        width: 0;
    }
    to {
        width: var(--width);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .infographic-section {
        padding: 2.5rem 0;
    }

    .info-header h2 {
        font-size: 1.6rem;
    }

    .info-stats {
        margin-bottom: 2rem;
    }

    .info-process {
        margin-bottom: 2rem;
    }

    .info-process h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .infographic-section {
        padding: 2rem 0;
    }

    .info-header h2 {
        font-size: 1.4rem;
    }

    .info-header p {
        font-size: 0.85rem;
    }

    .info-feature {
        padding: 1rem;
    }
}
