/* ===== FINAL FIXES - Last Polish Issues ===== */

/* 1. WHY CHOOSE US SECTION - Remove Box Stroke & Redesign */

.why-choose-us {
    background: #FFFFFF !important;
    padding: 5rem 0 !important;
}

.why-choose-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
}

.why-choose-content {
    padding: 0 !important;
}

.section-badge {
    background: linear-gradient(135deg, #DC143C, #FF6B35) !important;
    color: #FFFFFF !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin-bottom: 1rem !important;
}

.why-choose-content h2 {
    color: #0A0A0A !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    margin-bottom: 1.5rem !important;
}

.why-choose-content > p {
    color: #666666 !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 2.5rem !important;
}

/* Feature Items - Clean Card Design (No Stroke) */
.features-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.feature-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
}

/* Feature Icon - Gradient Circle */
.feature-icon {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    background: linear-gradient(135deg, #DC143C, #FF6B35) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.2) !important;
    transition: all 0.3s ease !important;
}

.feature-icon i {
    font-size: 1.8rem !important;
    color: #FFFFFF !important;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.3) !important;
}

/* Feature Text */
.feature-text h4 {
    color: #0A0A0A !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
}

.feature-text p {
    color: #666666 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Why Choose Image */
.why-choose-image {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1) !important;
}

.why-choose-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.why-choose-image:hover img {
    transform: scale(1.05) !important;
}

/* 2. HEADER NAVIGATION - Force ALL Links Clickable */

/* Make sure ALL nav links work */
.nav-menu li a {
    pointer-events: all !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1000 !important;
}

.nav-link {
    pointer-events: all !important;
    cursor: pointer !important;
    display: inline-block !important;
}

/* Specifically target About and Contact */
.nav-menu li a[href="about.html"],
.nav-menu li a[href="contact.html"] {
    pointer-events: all !important;
    cursor: pointer !important;
    z-index: 1000 !important;
}

/* Remove any blocking overlays */
.nav-menu::before,
.nav-menu::after,
.header::before,
.header::after {
    pointer-events: none !important;
}

/* Ensure interactive elements are clickable */
a,
button,
input,
textarea,
select,
label {
    pointer-events: all !important;
    cursor: pointer !important;
}

/* Force dropdown not to block other links when closed */
.dropdown-menu {
    pointer-events: none !important;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    pointer-events: all !important;
}

/* 3. HERO STATS ICONS - Remove ALL Blur Effects */

/* Remove blur from stat items (cards) */
.hero-stats .stat-item {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.stat-item {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Remove blur and filters from stat icons */
.stat-icon {
    font-size: 2.8rem !important;
    color: #DC143C !important;
    margin-bottom: 0.8rem !important;
    display: block !important;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Remove any drop-shadow or blur from icon elements */
.stat-icon i {
    filter: none !important;
    -webkit-filter: none !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hero-stats .stat-icon {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hero-stats .stat-icon i {
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Ensure crisp rendering */
.stat-icon i {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Also remove from h3 and p if they have any effects */
.stat-item h3,
.stat-item p {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* 4. RESPONSIVE ADJUSTMENTS */

@media (max-width: 991px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .why-choose-content h2 {
        font-size: 2rem !important;
    }
    
    .features-list {
        gap: 1.2rem !important;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
    }
    
    .feature-icon i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 767px) {
    .why-choose-content h2 {
        font-size: 1.8rem !important;
    }
    
    .feature-item {
        gap: 1rem !important;
    }
}

/* 5. ENSURE PROPER CURSOR INTERACTION */

/* Cursor elements should never block clicks */
.rocket-cursor,
.rocket-pointer,
.fire-trail-container,
.fire-particle {
    pointer-events: none !important;
    user-select: none !important;
    z-index: 9999 !important;
}

/* But all other elements should be clickable */
body,
html {
    pointer-events: auto !important;
}

/* Navigation must be accessible */
nav,
.navbar,
.nav-menu,
.nav-link {
    pointer-events: auto !important;
}

/* 6. ADDITIONAL POLISH */

/* Smooth all transitions */
.feature-item,
.feature-icon,
.nav-link {
    transition: all 0.3s ease !important;
}

/* Better hover states */
.nav-link:hover {
    color: #DC143C !important;
}

.feature-item:hover .feature-text h4 {
    color: #DC143C !important;
}
