/* why-choose-section.css */

/* Core Container */
.nh-why-section {
    padding: 100px 20px;
    background-color: #111111;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.nh-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 15px);
    z-index: 0;
    pointer-events: none;
}

.nh-why-container {
    max-width: 1290px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Area */
.nh-why-header {
    text-align: center;
    margin-bottom: 60px;
}

.nh-why-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(237, 27, 36, 0.1);
    color: #ED1B24;
    border: 1px solid rgba(237, 27, 36, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.nh-why-title {
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.35 !important;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    word-wrap: break-word;
}

.nh-why-subtitle {
    font-size: 17px;
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Layout */
.nh-why-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

/* Left Trust Box */
.nh-why-trust-box {
    width: 35%;
    background-color: #ED1B24;
    background: linear-gradient(145deg, #ED1B24 0%, #a80f17 100%);
    padding: 50px 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(237, 27, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.nh-why-trust-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: nhWhyRotate 15s linear infinite;
}

@keyframes nhWhyRotate {
    100% { transform: rotate(360deg); }
}

.nh-why-trust-number {
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.nh-why-trust-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nh-why-trust-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

/* Right Feature Grid */
.nh-why-grid {
    width: 65%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Card */
.nh-why-card {
    background-color: #242424;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.nh-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(237, 27, 36, 0.1);
    color: #ED1B24;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.nh-why-icon svg {
    width: 24px;
    height: 24px;
}

.nh-why-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.nh-why-card-text {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nh-why-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #ED1B24;
    transition: width 0.4s ease;
}

/* Hover Effects */
.nh-why-card:hover {
    transform: translateY(-5px);
    border-color: #ED1B24;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(237, 27, 36, 0.1);
}

.nh-why-card:hover .nh-why-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: #ED1B24;
    color: #ffffff;
}

.nh-why-card:hover .nh-why-accent-line {
    width: 100%;
}

/* Grid Specifics (7 cards) */
/* Make the last card span full width if needed to balance, or just leave it */
.nh-why-grid .nh-why-card:nth-child(7) {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
}
.nh-why-grid .nh-why-card:nth-child(7) .nh-why-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}
.nh-why-grid .nh-why-card:nth-child(7) .nh-why-accent-line {
    left: 30px;
    bottom: 30px;
    width: 3px;
    height: 40px;
    transition: height 0.4s ease;
}
.nh-why-grid .nh-why-card:nth-child(7):hover .nh-why-accent-line {
    width: 3px;
    height: calc(100% - 60px);
}

@media (max-width: 991px) {
    .nh-why-grid .nh-why-card:nth-child(7) {
        grid-column: auto;
        display: block;
    }
    .nh-why-grid .nh-why-card:nth-child(7) .nh-why-icon {
        margin-bottom: 20px;
    }
    .nh-why-grid .nh-why-card:nth-child(7) .nh-why-accent-line {
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
    }
    .nh-why-grid .nh-why-card:nth-child(7):hover .nh-why-accent-line {
        width: 100%;
        height: 3px;
    }
}

/* Stats Section */
.nh-why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.nh-why-stat-item {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.nh-why-stat-item strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #ED1B24;
    margin-bottom: 5px;
}

.nh-why-stat-item span {
    font-size: 14px;
    color: #a0a0a0;
    text-transform: uppercase;
    font-weight: 600;
}

/* Bottom Highlight Strip */
.nh-why-cta-strip {
    background-color: #242424;
    border-left: 4px solid #ED1B24;
    padding: 35px 40px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nh-why-cta-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.nh-why-cta-buttons {
    display: flex;
    gap: 15px;
}

.nh-why-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nh-why-btn svg {
    margin-right: 8px;
}

.nh-why-btn-primary {
    background-color: #ED1B24;
    color: #ffffff;
    border: 2px solid #ED1B24;
}

.nh-why-btn-primary:hover {
    background-color: transparent;
    color: #ED1B24;
}

.nh-why-btn-secondary {
    background-color: #25D366;
    color: #ffffff;
    border: 2px solid #25D366;
}

.nh-why-btn-secondary:hover {
    background-color: transparent;
    color: #25D366;
}

/* Responsive */
@media (max-width: 991px) {
    .nh-why-layout {
        flex-direction: column;
    }
    .nh-why-trust-box {
        width: 100%;
        text-align: center;
    }
    .nh-why-grid {
        width: 100%;
    }
    .nh-why-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .nh-why-header {
        margin-bottom: 40px;
    }
    .nh-why-title {
        font-size: 26px !important;
        line-height: 1.4 !important;
        letter-spacing: 1px !important;
    }
    .nh-why-subtitle {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 10px;
    }
    .nh-why-grid {
        grid-template-columns: 1fr;
    }
    .nh-why-stats {
        grid-template-columns: 1fr;
    }
    .nh-why-cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    .nh-why-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .nh-why-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
.nh-why-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nh-why-animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nh-why-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.nh-delay-100 { transition-delay: 0.1s; }
.nh-delay-200 { transition-delay: 0.2s; }
.nh-delay-300 { transition-delay: 0.3s; }
.nh-delay-400 { transition-delay: 0.4s; }
.nh-delay-500 { transition-delay: 0.5s; }
.nh-delay-600 { transition-delay: 0.6s; }
.nh-delay-700 { transition-delay: 0.7s; }
