/* ========================================
   OUR CONSULTANCY SECTION
   ======================================== */
.consultancy-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    overflow: hidden;
}

.consultancy-section__bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('assets/images/shapes/consultancy-shape.png') no-repeat;
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.consultancy-content {
    position: relative;
    z-index: 2;
}

.consultancy-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(229, 12, 55, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.consultancy-badge i {
    color: #e50c37;
    font-size: 20px;
}

.consultancy-badge span {
    color: #e50c37;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.consultancy-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1e2b;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.consultancy-title span {
    color: #e50c37;
    position: relative;
    display: inline-block;
}

.consultancy-title span::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(229, 12, 55, 0.2);
    z-index: -1;
}

.consultancy-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5f73;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.consultancy-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.consultancy-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.consultancy-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 12, 55, 0.15);
}

.consultancy-feature-item i {
    color: #e50c37;
    font-size: 18px;
}

.consultancy-feature-item span {
    font-weight: 500;
    color: #1a1e2b;
}

/* Right Side - Stats Card */
.consultancy-stats {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease;
}

.stats-card {
    background: #1a1e2b;
    border-radius: 30px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 12, 55, 0.15), transparent);
    pointer-events: none;
}

.stats-number {
    font-size: 56px;
    font-weight: 800;
    color: #e50c37;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.stats-number .counter {
    font-size: 56px;
    font-weight: 800;
}

.stats-label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.5s ease both;
}

.stats-list li:nth-child(1) { animation-delay: 0.1s; }
.stats-list li:nth-child(2) { animation-delay: 0.2s; }
.stats-list li:nth-child(3) { animation-delay: 0.3s; }

.stats-list li i {
    width: 30px;
    height: 30px;
    background: rgba(229, 12, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e50c37;
    font-size: 14px;
}

/* Buttons */
.consultancy-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-consultancy-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e50c37;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-consultancy-primary:hover {
    background: #c40a2f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 12, 55, 0.3);
}

.btn-consultancy-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #1a1e2b;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #e0e4eb;
    transition: all 0.3s ease;
}

.btn-consultancy-secondary:hover {
    border-color: #e50c37;
    color: #e50c37;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .consultancy-section {
        padding: 60px 0;
    }
    
    .consultancy-title {
        font-size: 32px;
    }
    
    .stats-card {
        margin-top: 40px;
        padding: 30px;
    }
    
    .stats-number, .stats-number .counter {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .consultancy-title {
        font-size: 28px;
    }
    
    .consultancy-feature-item {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .consultancy-buttons {
        flex-direction: column;
    }
    
    .btn-consultancy-primary,
    .btn-consultancy-secondary {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .consultancy-title {
        font-size: 24px;
    }
    
    .consultancy-features {
        gap: 10px;
    }
    
    .consultancy-feature-item {
        width: 100%;
    }
}