/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.8;
}

.slide-overlay.blue {
    background: linear-gradient(to right, #2563eb, #0891b2);
}

.slide-overlay.orange {
    background: linear-gradient(to right, #f59e0b, #ea580c);
}

.slide-overlay.slate {
    background: linear-gradient(to right, #334155, #1e40af);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
}

.content-wrapper {
    max-width: 80rem;
    text-align: center;
    color: white;
}

.slide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.slide-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: white;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.slide-cta:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.nav-arrow.prev {
    left: 2rem;
}

.nav-arrow.next {
    right: 2rem;
}

.nav-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.tab-navigation {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.tab-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.tab-dot.active {
    width: 3rem;
    background-color: white;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: rgba(255, 255, 255, 0.2);
}

.progress-fill {
    height: 100%;
    background-color: white;
    width: 0;
    transition: width 0.1s linear;
}

.progress-fill.animating {
    animation: progress 7s linear;
}

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1.125rem;
    }

    .nav-arrow.prev {
        left: 1rem;
    }

    .nav-arrow.next {
        right: 1rem;
    }
}