.why-choose-kokand {
    padding: 80px 0;
    position: relative;
}

.why-choose-kokand .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Elementor Override Ready */
.elementor-widget-why-choose-kokand .main-title,
.why-choose-kokand .main-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.why-choose-kokand .main-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.layout-grid .features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.elementor-widget-why-choose-kokand .layout-grid .feature-item,
.why-choose-kokand .layout-grid .feature-item {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.layout-grid .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.layout-grid .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.layout-grid .feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.layout-grid .feature-icon i {
    font-size: 32px;
    color: #ffffff;
}

/* List Layout */
.layout-list .features-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.elementor-widget-why-choose-kokand .layout-list .feature-item,
.why-choose-kokand .layout-list .feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px !important;
    padding: 30px !important;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

.layout-list .feature-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(30px);
}

.layout-list .feature-item:hover {
    transform: translateX(0) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.layout-list .feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color), rgba(255,255,255,0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.layout-list .feature-icon i {
    font-size: 40px;
    color: #ffffff;
}

.layout-list .feature-content {
    flex: 1;
}

/* Cards Layout */
.layout-cards .features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.elementor-widget-why-choose-kokand .layout-cards .feature-item,
.why-choose-kokand .layout-cards .feature-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 25px !important;
    padding: 35px !important;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: scale(0.9) rotateY(10deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.layout-cards .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    border-radius: 25px 25px 0 0;
}

.layout-cards .feature-item:hover {
    transform: scale(1.05) rotateY(0deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.layout-cards .feature-icon {
    width: 90px;
    height: 90px;
    background: var(--accent-color);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.layout-cards .feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.layout-cards .feature-item:hover .feature-icon::after {
    opacity: 0.3;
}

.layout-cards .feature-icon i {
    font-size: 36px;
    color: #ffffff;
}

/* Common Styles */
.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.feature-item.animate,
.elementor-editor-active .feature-item {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotateY(0deg);
}

/* Hexagon Layout */
.layout-hexagon .features-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}

.elementor-widget-why-choose-kokand .layout-hexagon .feature-item,
.why-choose-kokand .layout-hexagon .feature-item {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.layout-hexagon .feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.layout-hexagon .feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.layout-hexagon .feature-content {
    flex: 1;
    background: var(--card-bg-color, white);
    border: 3px solid var(--card-border-color, #e74c3c);
    border-radius: 15px;
    padding: 30px;
    margin: 0 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.layout-hexagon .feature-item:nth-child(odd) .feature-content {
    text-align: center;
    margin-right: 80px;
}

.layout-hexagon .feature-item:nth-child(even) .feature-content {
    text-align: center;
    margin-left: 80px;
}

.layout-hexagon .feature-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.layout-hexagon .feature-item:nth-child(odd) .feature-content::after {
    right: -30px;
    border-left: 15px solid var(--card-border-color, #e74c3c);
}

.layout-hexagon .feature-item:nth-child(even) .feature-content::after {
    left: -30px;
    border-right: 15px solid var(--card-border-color, #e74c3c);
}

.layout-hexagon .hexagon-wrapper {
    position: relative;
    width: var(--hexagon-width, 160px);
    height: var(--hexagon-height, 140px);
    flex-shrink: 0;
}

.layout-hexagon .hexagon {
    width: var(--hexagon-width, 160px);
    height: var(--hexagon-height, 140px);
    background: transparent;
    border: 3px solid #d4a574;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.layout-hexagon .feature-item .hexagon {
    border-color: var(--hexagon-border-color, var(--accent-color, #d4a574));
    border-width: var(--hexagon-border-width, 3px);
}

.layout-hexagon .hexagon:hover {
    transform: scale(1.05);
}

.layout-hexagon .hexagon-icon {
    font-size: 40px;
    color: white !important;
    z-index: 10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout-hexagon .hexagon-icon i,
.layout-hexagon .hexagon-icon svg {
    color: #d4a574 !important;
    fill: #d4a574 !important;
    font-size: 40px;
}

.layout-hexagon .feature-item .hexagon-icon i,
.layout-hexagon .feature-item .hexagon-icon svg {
    color: var(--hexagon-border-color, var(--accent-color, #d4a574)) !important;
    fill: var(--hexagon-border-color, var(--accent-color, #d4a574)) !important;
}

.layout-hexagon .hexagon-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.layout-hexagon .feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.layout-hexagon .feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}



/* Responsive */
@media (max-width: 768px) {
    .why-choose-kokand {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .layout-grid .features-container,
    .layout-cards .features-container {
        grid-template-columns: 1fr;
    }

    .layout-list .feature-item {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
    }

    .layout-list .feature-item:nth-child(even) {
        flex-direction: column !important;
    }

    .layout-hexagon .feature-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px;
    }

    .layout-hexagon .feature-item:nth-child(even) {
        flex-direction: column !important;
    }

    .layout-hexagon .feature-content {
        text-align: center !important;
        margin: 0 !important;
        padding: 20px !important;
    }

    .layout-hexagon .feature-content::after {
        display: none;
    }

    .layout-hexagon .hexagon-wrapper {
        width: 120px;
        height: 105px;
    }

    .layout-hexagon .hexagon {
        width: 120px;
        height: 105px;
    }

    .layout-hexagon .hexagon-icon {
        font-size: 24px;
    }

    .layout-hexagon .hexagon-icon img {
        width: 40px;
        height: 40px;
    }

    .layout-hexagon .feature-title {
        font-size: 18px;
    }



    .feature-item {
        padding: 25px !important;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }
}