/* ===== CAROUSEL ===== */
#guide {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.carousel-container {
    max-width: 1350px; /* Increased width by 50% (900px -> 1350px) */
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-color);
    background: var(--bg-card);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.slide-image-wrapper {
    width: 100%;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image-wrapper img {
    max-width: 100%;
    max-height: 650px;
    display: block;
    object-fit: contain;
}

.carousel-caption {
    background: var(--bg-card);
    padding: 30px 20px 50px; /* Room for dots at the bottom */
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-caption h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.carousel-caption p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Nav Buttons */
.carousel-nav {
    position: absolute;
    top: 50%; /* Center precisely on height */
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(18, 18, 31, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    z-index: 20;
}

.carousel-nav:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
    color: #000;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--cyan);
    transform: scale(1.4);
    box-shadow: 0 0 10px var(--cyan-glow);
}
