/**
 * Hero Slider Styles
 * Version: 1.0.33
 */

.hdp-hero-slider-section {
    padding: 5.5rem 1rem 2rem 1rem;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hdp-hero-slider-section {
        padding: 4.5rem 1rem 2rem 1rem;
    }
}

.hdp-hero-slider-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hdp-hero-slider-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    clip-path: inset(0 round 24px);
    -webkit-clip-path: inset(0 round 24px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    aspect-ratio: 16/9;
    min-height: 600px;
    background-color: #0F172A;
}

@media (max-width: 768px) {
    .hdp-hero-slider-wrapper {
        aspect-ratio: auto;
        min-height: 750px;
        border-radius: 16px;
        clip-path: inset(0 round 16px);
        -webkit-clip-path: inset(0 round 16px);
    }
}

.hdp-hero-slider {
    height: 100%;
    width: 100%;
    position: relative !important;
}

.hdp-hero-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    display: block !important;
}

/* Background via ::before — immune to Elementor's lazy-load "background-image:none !important" on * */
.hdp-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--bg-url);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    z-index: 0;
}

@media (max-width: 768px) {
    .hdp-hero-slide::before {
        background-image: var(--bg-mobile);
        background-position: center center;
    }
}

.hdp-hero-slide.active {
    opacity: 1 !important;
    z-index: 2;
}

/* Dark Overlay */
.hdp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none !important;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hdp-hero-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.4) 100%) !important;
    }
}

.hdp-hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 5rem;
    max-width: 650px;
    color: white !important;
}

@media (max-width: 768px) {
    .hdp-hero-content {
        padding: 2rem;
        max-width: 100%;
        justify-content: flex-start;
        padding-top: 3rem;
    }
}

/* Google Badge */
.hdp-trust-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
}

.hdp-trust-icon-google {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.hdp-trust-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hdp-trust-stars {
    color: #FBBF24;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.hdp-trust-text {
    color: #64748B;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Typography */
.hdp-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white !important;
}

.hdp-text-red {
    color: #EF4444 !important;
}

.hdp-hero-subtitle {
    font-size: 1.25rem;
    color: #fff !important;
    margin-bottom: 3rem;
    line-height: 1.5;
    font-weight: 500;
}

.hdp-hero-subtitle.no-features {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hdp-hero-title {
        font-size: 2.5rem;
    }

    .hdp-hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

/* Features */
.hdp-hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hdp-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.hdp-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

}

.hdp-feature-item:hover .hdp-feature-icon {
    background: #EF4444;
    color: white;
    transform: translateY(-2px);
}

.hdp-feature-item span {
    font-size: 0.875rem;
    line-height: 1.3;
    color: #E2E8F0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hdp-hero-features {
        gap: 1rem;
        justify-content: space-between;
    }

    .hdp-feature-item span {
        font-size: 0.75rem;
    }
}

/* Actions */
.hdp-hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hdp-btn-red {
    background: #EF4444;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.hdp-btn-red:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.hdp-hero-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #E2E8F0;
    font-size: 0.9rem;
    font-weight: 600;
}

.hdp-status-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 768px) {
    .hdp-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hdp-btn-red {
        width: 100%;
        justify-content: center;
    }
}

/* Phone Link */
.hdp-hero-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    font-weight: 500;
}

.hdp-hero-phone-link:hover {
    color: #EF4444;
}

/* Navigation */
.hdp-slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hdp-slider-prev,
.hdp-slider-next {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #0F172A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hdp-slider-prev:hover,
.hdp-slider-next:hover {
    background: white;
    color: #EF4444;
    transform: scale(1.05);
}

.hdp-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.hdp-slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hdp-slider-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: white;
}

@media (max-width: 768px) {
    .hdp-slider-nav {
        right: 50%;
        transform: translateX(50%);
        bottom: 1rem;
        z-index: 5;
    }
}