/* ==========================================================================
   HUDULY FEATURES STYLES (WHITE BG & EXPANDED SPACING)
   ========================================================================== */

.huduly-features-section {
    background: #ffffff !important;
    padding-top: 110px;
    padding-bottom: 110px;
    color: #071a52;
}

.huduly-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 44, 0.08);
    border: 1px solid rgba(255, 107, 44, 0.25);
    color: #FF6B2C;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.huduly-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #071a52 !important;
    letter-spacing: -0.8px;
    margin-top: 14px;
    margin-bottom: 16px;
}

.huduly-section-subtitle {
    color: #475569 !important;
    font-size: 17px;
    line-height: 1.7;
}

.features-showcase-wrapper {
    margin-top: 60px;
}

.feature-showcase-row {
    margin-bottom: 90px !important;
}

.feature-showcase-row:last-child {
    margin-bottom: 0 !important;
}

.feature-step-badge {
    display: inline-block;
    background: #071a52;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 6px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.feature-content-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #071a52;
    margin-bottom: 16px;
    line-height: 1.25;
}

.feature-content-box p {
    font-size: 16px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 28px;
}

.feature-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.f-tag {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    font-size: 13.5px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-orange {
    color: #FF6B2C !important;
}

/* BROWSER SCREENSHOT FRAME */
.feature-image-frame {
    background: #071a52;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(7, 26, 82, 0.12);
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
}

.feature-image-frame:hover {
    border-color: #FF6B2C;
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(194, 65, 12, 0.2);
}

.browser-frame-header {
    background: #040e2d;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.frame-title {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    margin-left: 8px;
}

.zoom-badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 800;
    color: #120851;
    background: #FF6B2C;
    padding: 4px 12px;
    border-radius: 6px;
}

.browser-frame-body {
    background: #f8fafc;
    padding: 10px;
}

.screenshot-img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* LIGHTBOX MODAL STYLES */
.huduly-image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 14, 45, 0.92);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.huduly-image-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-wrapper {
    background: #071a52;
    border: 2px solid #FF6B2C;
    border-radius: 20px;
    width: 100%;
    max-width: 1050px;
    padding: 24px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.huduly-image-lightbox.active .lightbox-wrapper {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.lightbox-header {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-body img {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

@media (max-width: 991px) {
    .huduly-section-title { font-size: 32px; }
    .feature-content-box h3 { font-size: 26px; }
    .feature-showcase-row { margin-bottom: 60px !important; }
}

@media (max-width: 575px) {
    .huduly-section-title { font-size: 26px; }
    .huduly-features-section { padding-top: 70px; padding-bottom: 70px; }
}