/* ===== Why Choose Us Section ===== */
.wm-whyChooseUs {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
}

.wm-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.wm-sectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.wm-sectionLabel {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2ec4b6;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.wm-sectionHeader h2 {
    font-size: 2.5rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.wm-sectionHeader h2 span {
    color: #2ec4b6;
    position: relative;
}

.wm-sectionSubtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #5a6a7e;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.9;
}

.wm-headerDivider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.wm-dividerLine {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #1a3a5f, #2ec4b6);
}

/* ===== Features Grid Layout ===== */
.wm-featuresGrid {
    display: grid;
    gap: 20px;
}

/* Mobile: 2 cols × 3 rows */
@media (max-width: 767px) {
    .wm-featuresGrid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
}

/* Tablet/Desktop: 3 cols × 2 rows */
@media (min-width: 768px) {
    .wm-featuresGrid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }
}

/* ===== Feature Cards ===== */
.wm-featureCard {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.wm-featureCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.wm-featureCardInner {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    height: 100%;
}

.wm-featureIcon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.1) 0%, rgba(26, 58, 95, 0.1) 100%);
    border-radius: 50%;
    font-size: 1.8rem;
    color: #2ec4b6;
    transition: all 0.3s ease;
}

.wm-featureCardInner:hover .wm-featureIcon {
    background: linear-gradient(135deg, #2ec4b6 0%, #1a3a5f 100%);
    color: white;
}

.wm-featureCard h3 {
    font-size: 1.2rem;
    color: #1a3a5f;
    margin: 0;
    font-weight: 600;
}

/* ===== Enhanced Popup Styling ===== */
.wm-swal-overlay {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    pointer-events: none !important;
}

.wm-swal-popup-container {
    pointer-events: auto !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    width: 90% !important;
    max-width: 640px !important;
    margin: 5% auto !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transform: translate3d(0, 0, 0) !important;
    will-change: transform !important;
    transition: all 0.3s ease-out !important;
    max-height: 70vh !important;
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
}

.wm-swal-popup-container:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
}

.wm-swal-header {
    padding: 1.5rem 1.5rem 0.5rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    background: #ffffff !important;
}

.wm-swal-title-fs {
    /* color: #1a3a5f !important; */
    color: #ffffff !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding-right: 2rem !important;
    line-height: 1.4 !important;
}

.wm-swal-close-fs {
    position: absolute !important;
    top: 1.25rem !important;
    right: 1.25rem !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    font-size: 1.25rem !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

.wm-swal-close-fs:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    transform: rotate(90deg) !important;
}

.wm-swal-content-container {
    padding: 0 1.5rem !important;
    overflow-y: auto !important;
    flex-grow: 1 !important;
    max-height: calc(70vh - 150px) !important;
    scrollbar-width: thin !important;
    scrollbar-color: #2ec4b6 transparent !important;
}

.wm-swal-content-container::-webkit-scrollbar {
    width: 6px !important;
}

.wm-swal-content-container::-webkit-scrollbar-thumb {
    background-color: #2ec4b6 !important;
    border-radius: 3px !important;
}

.wm-swal-image-container {
    margin: 0 -1.5rem 1.5rem !important;
    overflow: hidden !important;
    max-height: 25vh !important;
    border-radius: 12px 12px 0 0 !important; /* Rounded top corners only */
}

.wm-swal-image {
    width: 100% !important;
    height: auto !important;
    max-height: 25vh !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease !important;
    border-radius: 12px 12px 0 0 !important; /* Match container rounding */
}

.wm-swal-image:hover {
    transform: scale(1.02) !important;
}

.wm-swal-content {
    color: #4a4a4a !important;
    line-height: 1.7 !important;
    font-size: 1.05rem !important;
    padding-bottom: 1rem !important;
}

.wm-swal-content h3 {
    color: #1a3a5f !important;
    font-size: 1.35rem !important;
    margin: 1.5rem 0 1rem !important;
    font-weight: 600 !important;
}

.wm-swal-content ul {
    padding-left: 1.25rem !important;
    margin: 1.25rem 0 !important;
}

.wm-swal-content li {
    margin-bottom: 0.75rem !important;
    position: relative !important;
}

.wm-swal-content li::before {
    content: '' !important;
    position: absolute !important;
    left: -1rem !important;
    top: 0.65rem !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #2ec4b6 !important;
}

.wm-swal-footer {
    padding: 1rem 1.5rem !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    justify-content: flex-end !important;
    background: rgba(250, 250, 250, 0.7) !important;
    backdrop-filter: blur(4px) !important;
}

.wm-swal-confirm {
    background: linear-gradient(135deg, #2ec4b6, #26a69a) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 12px rgba(46, 196, 182, 0.25) !important;
    transition: all 0.2s ease !important;
    color: white !important;
}

.wm-swal-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(46, 196, 182, 0.35) !important;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 992px) {
    .wm-whyChooseUs {
        padding: 80px 0;
    }
    
    .wm-sectionHeader h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .wm-swal-popup-container {
        max-height: 75vh !important;
        width: 94% !important;
    }
    
    .wm-swal-content-container {
        max-height: calc(75vh - 150px) !important;
    }
    
    .wm-swal-title-fs {
        font-size: 1.4rem !important;
    }
    
    .wm-featureIcon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .wm-featureCard h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .wm-whyChooseUs {
        padding: 60px 0;
    }
    
    .wm-swal-popup-container {
        max-height: 80vh !important;
        margin: 2% auto !important;
    }
    
    .wm-swal-content-container {
        max-height: calc(80vh - 140px) !important;
        padding: 0 1rem !important;
    }
    
    .wm-swal-header {
        padding: 1.25rem 1rem 0.5rem !important;
    }
    
    .wm-swal-footer {
        padding: 0.75rem 1rem !important;
    }
    
    .wm-swal-image-container {
        margin: 0 -1rem 1rem !important;
    }
    
    .wm-sectionHeader h2 {
        font-size: 1.8rem;
    }
    
    .wm-featureCardInner {
        padding: 25px 15px;
    }
}