.ip-phone-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Card Wrapper */
.feature-item-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.feature-item-card .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.feature-item-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-text h5 {
    margin: 0 0 5px;
    font-weight: 600;
}

.feature-text p {
    margin: 0;
    font-size: 0.85rem;
    color: #555;
}

/* Gradients */
.bg-gradient-red {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #ff8008, #ffc837);
}

.bg-gradient-yellow {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.bg-gradient-teal {
    background: linear-gradient(135deg, #43cea2, #185a9d);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.bg-gradient-indigo {
    background: linear-gradient(135deg, #5f2c82, #49a09d);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.bg-gradient-pink {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
}

.bg-gradient-cyan {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
}

.bg-gradient-lime {
    background: linear-gradient(135deg, #a8ff78, #78ffd6);
}

/* Feature Cards */
.feature-list .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
}

.feature-item h6 {
    margin: 0;
    font-size: 1rem;
}

.feature-item p {
    margin: 0;
    font-size: 0.85rem;
}

/* Gradients */
.bg-gradient-red {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #ff8008, #ffc837);
}

.bg-gradient-yellow {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.bg-gradient-teal {
    background: linear-gradient(135deg, #43cea2, #185a9d);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.bg-gradient-indigo {
    background: linear-gradient(135deg, #5f2c82, #49a09d);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.bg-gradient-pink {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
}

.bg-gradient-cyan {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
}

.bg-gradient-lime {
    background: linear-gradient(135deg, #a8ff78, #78ffd6);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Card Hover Effects */
.card:hover {
    transform: translateY(-10px);
    transition: 0.3s ease;
}

.icon i {
    transition: transform 0.3s ease;
}

.icon:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Timeline */
.timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ffb300);
    z-index: 1;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.7);
}

@media (max-width: 768px) {
    .feature-list .feature-item {
        flex-direction: row;
        gap: 10px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .timeline::before {
        display: none;
    }
}

.cta-section {
    background: linear-gradient(135deg, #213a51, #213a51);
    color: #fff;
}

.cta-section .btn-warning {
    background: #fdc134;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-section .btn-success {
    background: #25d366;
    border: none;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-section .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(253, 193, 52, 0.5);
}

.cta-section .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.cta-section h2 {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    color: #fff;
    text-align: center;
}

.cta-buttons a {
    min-width: 180px;
}

.cta-section .btn-contact {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    /* vibrant pink-red gradient */
    border: none;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-section .btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 75, 43, 0.5);
}
