/* Wide Variety Section - Premium Design */
.section-wide-variety {
    position: relative;
    padding: 100px 0;
    background:#56A697;
    /* Deep Forest Green */
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

/* Background Texture Effect */
.section-wide-variety::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
}

/* Wavy Flute Decorative Element */
.section-wide-variety::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 10" xmlns="http://www.w3.org/2000/svg"><path d="M0 5 Q 2.5 0, 5 5 T 10 5 T 15 5 T 20 5 T 25 5 T 30 5 T 35 5 T 40 5 T 45 5 T 50 5 T 55 5 T 60 5 T 65 5 T 70 5 T 75 5 T 80 5 T 85 5 T 90 5 T 95 5 T 100 5" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/></svg>');
    background-size: 100px 10px;
    opacity: 0.3;
}

.section-wide-variety .section-head h2 {
    color: #fff !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-wide-variety .section-head h5 {
    color: #C1E1A6 !important;
    /* Soft Lime Green for contrast */
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.wv-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.wv-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wv-feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(193, 225, 166, 0.4);
}

.wv-feature-card .icon-circ {
    width: 50px;
    height: 50px;
    background: #C1E1A6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D3E1B;
    font-size: 20px;
    flex-shrink: 0;
}

.wv-feature-card h6 {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Technical Specification Card */
.tech-spec-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    color: #333;
    position: relative;
    overflow: hidden;
}

.tech-spec-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #10ccd3;
}

.tech-spec-card h4 {
    font-weight: 800;
    color: #10ccd3;
    margin-bottom: 30px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.spec-value {
    font-weight: 700;
    color: #2D3E1B;
    font-size: 0.95rem;
}

.flute-badge {
    background: #f4f4f4;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.8rem;
    color: #555;
    margin-left: 5px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-wide-variety {
        padding: 70px 0;
    }

    .tech-spec-card {
        margin-top: 50px;
    }

    .section-wide-variety .section-head h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .wv-feature-grid {
        grid-template-columns: 1fr;
    }

    .section-wide-variety .section-head h2 {
        font-size: 2rem;
    }

    .tech-spec-card {
        padding: 30px 20px;
    }
}