/* 
   ==========================================================================
   PREMIUM BRANDING - REDESIGNED SECTIONS
   Focus: Why Choose Us & Custom IT Solutions
   ========================================================================== 
*/

/* --- WHY CHOOSE US - PREMIUM --- */
.why-choose-premium {
    padding: 40px 0;
    background-color: #fff;
    font-family: 'Outfit', sans-serif;
}

.premium-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(242, 91, 40, 0.1);
    color: #f25b28;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.premium-title {
    font-size: 40px;
    font-weight: 700;
    color: #2A323C;
    line-height: 1.2;
}

.premium-divider {
    width: 60px;
    height: 4px;
    background: #f25b28;
    margin: 25px auto;
    border-radius: 10px;
}

.premium-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-feature-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
    display: flex;
    gap: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.premium-feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 91, 40, 0.2);
    box-shadow: 0 20px 25px -5px rgba(242, 91, 40, 0.1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(242, 91, 40, 0.08);
    color: #f25b28;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.premium-feature-box:hover .feature-icon-wrapper {
    background: #f25b28;
    color: white;
    transform: rotate(10deg);
}

.feature-content h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #2A323C;
}

.feature-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    font-family: 'Work Sans', sans-serif;
}

.premium-image-wrapper {
    position: relative;
    padding: 20px;
}

.center-img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(242, 91, 40, 0.2) 0%, transparent 70%);
    z-index: 1;
    animation: pulse-glow 3s infinite alternate;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: #2A323C;
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.experience-badge .num {
    font-size: 32px;
    font-weight: 800;
    color: #f25b28;
}

.experience-badge .txt {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

@keyframes pulse-glow {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* --- OUR SERVICES - PREMIUM --- */
.services-premium {
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fffcfb 100%);
    font-family: 'Outfit', sans-serif;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.premium-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.premium-card:hover {
    transform: translateY(-12px);
    border-color: rgba(242, 91, 40, 0.2);
    box-shadow: 0 25px 50px -12px rgba(242, 91, 40, 0.15);
}

.premium-icon-box {
    width: 80px;
    height: 80px;
    background: #f25b28;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.premium-card:hover .premium-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: #2A323C;
}

.icon-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #f25b28;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    transition: all 0.4s ease;
}

.premium-card:hover .icon-blur {
    background: #2A323C;
    opacity: 0.4;
}

.premium-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2A323C;
    margin-bottom: 15px;
}

.premium-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    font-family: 'Work Sans', sans-serif;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #f25b28;
    transition: width 0.4s ease;
}

.premium-card:hover .card-accent {
    width: 100%;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .premium-feature-grid { grid-template-columns: 1fr; gap: 40px; }
    .feature-column.center { order: -1; }
    .premium-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .premium-grid { grid-template-columns: 1fr; }
    .premium-title { font-size: 32px; }
}
