/* Spacing Override - Reduce section spacing systemically */
:root {
    --bringer-section-gap: 4rem; /* Reduced from default 6rem */
    --stg-large-gap: 2.5rem; /* Reduced from default 3rem */
    --stg-gap: 1.5rem; /* Reduced from default 2rem */
    --stg-xl-gap: 3rem; /* Reduced from default 4rem */
}

/* Additional specific reductions */
section {
    padding: calc(0.75 * var(--bringer-section-gap)) 0;
}

.bringer-hero-block,
.bringer-section-title {
    margin-bottom: calc(0.8 * var(--stg-large-gap));
}

.bringer-footer-widgets {
    padding: calc(0.8 * var(--stg-large-gap)) 0;
}

/* Mobile - reduce even more */
@media (max-width: 768px) {
    :root {
        --bringer-section-gap: 2rem;
        --stg-large-gap: 1.5rem;
        --stg-gap: 1rem;
        --stg-xl-gap: 1.5rem;
    }
    
    section {
        padding: calc(0.5 * var(--bringer-section-gap)) 0;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-whatsapp,
.floating-scroll-top {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
}

.floating-whatsapp {
    background: #25D366;
    color: white;
}

.floating-scroll-top {
    background: var(--bringer-s-accent);
    color: white;
    opacity: 0;
    pointer-events: none;
}

.floating-scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.floating-whatsapp:hover,
.floating-scroll-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 16px;
        right: 16px;
    }
    
    .floating-whatsapp,
    .floating-scroll-top {
        width: 48px;
        height: 48px;
    }
}

/* Hero Slideshow */
.bringer-hero-media-wrap {
    height: 80vh !important;
    min-height: 600px !important;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100% !important;
    overflow: hidden;
    border-radius: var(--bringer-default-br);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: var(--bringer-default-br);
    backdrop-filter: blur(8px);
}

.hero-text-overlay h2 {
    font-size: var(--bringer-t-h2-fs);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-text-overlay p {
    font-size: var(--bringer-t-large-fs);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Hero Content Overlay */
.hero-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 2rem;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.hero-main-content {
    max-width: 60%;
    color: white;
    text-align: left;
}

.hero-main-content h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 1.5rem;
}

.hero-main-content p {
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-content-overlay {
        align-items: flex-end !important;
        justify-content: flex-start !important;
        padding: 1.5rem;
    }
    
    .hero-main-content {
        max-width: 100%;
        text-align: left;
    }
}

/* Process Diagram Mobile */
@media (max-width: 768px) {
    .process-diagram svg {
        width: 450px !important;
        height: 300px !important;
    }
}