/* ===== COMPETITIVE FEATURES SECTION ===== */
.competitive-features-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.competitive-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230a2463' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.competitive-features-section .container {
    position: relative;
    z-index: 1;
}

.competitive-features-section .section-title {
    margin-bottom: 70px;
}

.competitive-features-section .section-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
    text-align: center;
    max-width: 700px;
    margin: 20px auto 0;
    opacity: 0.85;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(10, 36, 99, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(10, 36, 99, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 36, 99, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.feature-card-inner {
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f5c542 100%);
}

.feature-card-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.feature-card:hover .feature-card-icon::before {
    opacity: 0.6;
}

.feature-card-title {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 84px; /* Ensures consistent height for titles */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-divider {
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 0 auto 20px auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card-divider {
    width: 60px;
    background-color: var(--primary-dark);
}

.feature-card-desc {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.85;
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::after {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .feature-card-title {
        font-size: 19px;
        min-height: 80px;
    }
}

@media (max-width: 992px) {
    .competitive-features-section .section-title {
        margin-bottom: 50px;
    }
    
    .feature-card-inner {
        padding: 35px 25px;
    }
    
    .feature-card-title {
        font-size: 18px;
        min-height: 76px;
    }
    
    .feature-card-desc {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .competitive-features-section {
        padding: 60px 0;
    }
    
    .competitive-features-section .section-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .feature-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-card-inner {
        padding: 30px 20px;
    }
    
    .feature-card-title {
        font-size: 18px;
        min-height: auto;
        margin-bottom: 15px;
    }
    
    .feature-card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .competitive-features-section .section-heading {
        font-size: 28px;
    }
    
    .competitive-features-section .section-subtitle {
        font-size: 15px;
    }
    
    .feature-card-title {
        font-size: 17px;
    }
    
    .feature-card-desc {
        font-size: 14px;
    }
}

/* Equal height cards for desktop */
@media (min-width: 992px) {
    .feature-card {
        display: flex;
        flex-direction: column;
    }
    
    .feature-card-inner {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .feature-card-desc {
        flex-grow: 1;
    }
}

/* Center the last card on mobile */
@media (max-width: 768px) {
    .competitive-features-section .col-12.col-md-8.col-lg-6 {
        margin: 0 auto;
        float: none;
    }
}