/* PACA Hero Slider Styles - FIXED */
.paca-hero-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 40vh;
    overflow: hidden;
    z-index: 1;
}

.paca-hero-slides {
    height: 100%;
    z-index: 2;
}

.paca-hero-slide {
    height: 40vh !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 3;
}

.paca-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 4;
}

.paca-hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
    width: 100%;
}

.paca-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    color: white;
    line-height: 1.2;
}

.paca-hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin: 0 0 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    color: white;
    line-height: 1.4;
}

.paca-hero-buttons {
    display: flex !important;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.paca-hero-button {
    display: inline-block !important;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    visibility: visible !important;
    opacity: 1 !important;
    border-radius: 8px;
}


.paca-hero-button.primary {
    background: #007cba;
    color: white;
    border: 2px solid #007cba;
    border-radius: 8px;
}

.paca-hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* DOTS STYLING */
.paca-hero-slides .slick-dots {
    bottom: 15px !important;
    position: absolute !important;
    width: 100% !important;
    text-align: center !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 !important;
}

.paca-hero-slides .slick-dots li {
    display: inline-block !important;
    margin: 0 !important;
    width: 12px !important;
    height: 12px !important;
}

.paca-hero-slides .slick-dots li button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.5) !important;
    border: none !important;
    padding: 0 !important;
    font-size: 0 !important;
    transition: all 0.3s ease !important;
}

.paca-hero-slides .slick-dots li button:before {
    display: none !important;
}

.paca-hero-slides .slick-dots li.slick-active button {
    background: white !important;
    transform: scale(1.2) !important;
}

/* NO ARROWS */
.paca-hero-slides .slick-prev,
.paca-hero-slides .slick-next {
    display: none !important;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .paca-hero-slider {
        height: 35vh;
        margin: 10px;
    }
    
    .paca-hero-slide {
        height: 35vh !important;
    }
    
    .paca-hero-content {
        top: 50% !important;
        padding-bottom: 40px !important;
    }
    
    .paca-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 30px !important;
    }
    
    .paca-hero-button {
        width: 180px;
        text-align: center;
        padding: 10px 20px;
        font-size: 1rem;
        font-weight: 700;
    }
    
    .paca-hero-slides .slick-dots {
        bottom: 10px !important;
    }
}

/* REMOVE ARROWS COMPLETELY */
.hero-slick-prev,
.hero-slick-next,
.paca-hero-slides .slick-prev,
.paca-hero-slides .slick-next {
    display: none !important;
}

/* DOTS AS ACTUAL DOTS */
.paca-hero-slides .slick-dots {
    bottom: 20px;
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 10;
    display: flex !important;
    justify-content: center;
    gap: 8px;
}

.paca-hero-slides .slick-dots li {
    display: inline-block;
    margin: 0;
    width: 12px;
    height: 12px;
}

.paca-hero-slides .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    padding: 0;
    font-size: 0;
    transition: all 0.3s ease;
}

.paca-hero-slides .slick-dots li button:before {
    display: none;
}

.paca-hero-slides .slick-dots li.slick-active button {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .paca-hero-slides .slick-dots {
        margin-top: 10px;
    }
}














