/* === Hero Carousel === */
.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 480px;
    max-height: 720px;
    overflow: hidden;
    background: #000;
    z-index: 1;
}
@media (max-width: 1024px) {
    .hero-carousel { height: 60vh; min-height: 360px; }
}

/* Prevent horizontal scrollbar from negative margins */
body.page-id-7876,
body.home {
    overflow-x: clip;
}

/* === Floating trust strip overlay (top of carousel) === */
.hero-trust-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    pointer-events: none; /* let clicks pass through to carousel/slides below */
}
.hero-trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: rgba(26, 26, 26, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    font-size: 13px;
    color: #fff;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto; /* re-enable on the strip itself */
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.hero-trust-item .trust-icon {
    width: 16px;
    height: 16px;
    color: #27ae60;
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .hero-trust-strip {
        gap: 14px;
        font-size: 11px;
        padding: 9px 14px;
    }
    .hero-trust-item {
        flex: 0 0 calc(33.33% - 10px);
        justify-content: center;
    }
    .hero-trust-item .trust-icon {
        width: 14px;
        height: 14px;
    }
}
@media (max-width: 600px) {
    .hero-trust-strip {
        gap: 8px;
        font-size: 10px;
        padding: 8px 10px;
    }
    .hero-trust-item {
        flex: 0 0 calc(50% - 6px);
    }
    .hero-trust-item .trust-icon {
        width: 12px;
        height: 12px;
    }
}

/* === Slides === */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    z-index: 2;
}
.hero-eyebrow {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 4px rgba(0,0,0,0.5);
}
.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 24px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.6), 0 0 12px rgba(0,0,0,0.4);
    max-width: 1100px;
}
.hero-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
    color: #fff;
    margin: 0 0 36px;
    max-width: 720px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.5);
}
.hero-cta {
    display: inline-block;
    background: #fff;
    color: #000 !important;
    padding: 16px 48px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    font-weight: 600;
    border-radius: 0;
    transition: background 0.2s;
}
.hero-cta:hover { background: #f0f0f0; }
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}
.hero-dot.active { background: #fff; border-color: #fff; transform: scale(1.3); }
.hero-dot:hover { border-color: #fff; background: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 14px; margin-bottom: 24px; }
    .hero-cta { padding: 12px 32px; font-size: 12px; }
    .hero-dots { bottom: 16px; }
}