
.carousel-container { position: relative; width: 100%; height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0f0f0f 0%, var(--navy-dark) 100%); flex-shrink: 0; }

.carousel-wrapper { position: relative; width: 100%; height: 100%; overflow: hidden; user-select: none; }

.carousel-slides { display: flex; height: 100%; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

.slide { min-width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

.slide-image { width: 100%; height: 100%; object-fit: cover; opacity: 0; animation: fadeIn 0.8s ease-in forwards; }

.slide-video { width: 100%; height: 100%; object-fit: cover; opacity: 0; animation: fadeIn 0.8s ease-in forwards; }

.video-badge { position: absolute; top: 40px; right: 40px; background: linear-gradient(135deg, var(--red) 0%, #c0392b 100%); color: white; padding: 10px 20px; border-radius: 30px; font-size: 1.15rem; font-weight: 700; z-index: 10; animation: slideDown 0.6s ease-out 0.3s backwards; }

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 60px 40px; }

.slide-content { color: white; animation: slideUp 0.8s ease-out forwards; opacity: 0; animation-delay: 0.2s; }

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-title { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; margin-bottom: 15px; line-height: 1.2; background: linear-gradient(135deg, #fff 0%, #d4d4d4 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.slide-description { font-family: var(--font-body); font-size: 1.5rem; color: rgba(255, 255, 255, 0.8); max-width: 1200px; line-height: 1.6; }

.nav-button { position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; border: none; background: rgba(255, 255, 255, 0.15); color: white; font-size: 28px; cursor: pointer; z-index: 30; transition: all 0.3s ease; border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); }

    .nav-button:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-50%) scale(1.1); }

    .nav-button.prev { left: 30px; }

    .nav-button.next { right: 30px; }

.dots-container { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 20; }

.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); cursor: pointer; transition: all 0.3s ease; border: none; }

    @media (max-width: 1200px) {
        .carousel-container { height: 100vh; }
        .slide-title { font-size: 2.5rem; }
        .slide-description { font-size: 1.3rem; }
        .slide-overlay { padding: 50px 35px; }
        .video-badge { top: 30px; right: 30px; padding: 8px 18px; font-size: 1rem; }
    }

    @media (max-width: 992px) {
        .carousel-container { height: 100vh; }
        .slide-title { font-size: 2.2rem; }
        .slide-description { font-size: 1.2rem; max-width: 900px; }
        .slide-overlay { padding: 40px 30px; }
        .nav-button { width: 50px; height: 50px; font-size: 24px; }
        .nav-button.prev { left: 20px; }
        .nav-button.next { right: 20px; }
        .dots-container { bottom: 30px; gap: 10px; }
    }

    @media (max-width: 768px) {
        .carousel-container { height: 100vh; min-height: 100vh; }
        .slide-title { font-size: 2.2rem; }
        .slide-description { font-size: 1.2rem; max-width: 600px; }
        .slide-overlay { padding: 30px 24px; }
        .nav-button { width: 44px; height: 44px; font-size: 20px; }
        .nav-button.prev { left: 15px; }
        .nav-button.next { right: 15px; }
        .video-badge { top: 20px; right: 20px; padding: 6px 14px; font-size: 0.9rem; }
        .dots-container { bottom: 24px; gap: 8px; }
        .dot { width: 8px; height: 8px; }
        .dot.active { width: 24px; }
    }

    @media (max-width: 576px) {
        .carousel-container { height: 100vh; min-height: 100vh; }
        .slide-title { font-size: 2rem; margin-bottom: 10px; }
        .slide-description { font-size: 1.1rem; line-height: 1.5; max-width: 100%; }
        .slide-overlay { padding: 24px 20px; }
        .nav-button { width: 38px; height: 38px; font-size: 18px; }
        .nav-button.prev { left: 10px; }
        .nav-button.next { right: 10px; }
        .video-badge { top: 15px; right: 15px; padding: 5px 12px; font-size: 0.8rem; border-radius: 20px; }
        .dots-container { bottom: 20px; gap: 6px; }
        .dot { width: 6px; height: 6px; }
        .dot.active { width: 20px; }
    }

    @media (max-width: 400px) {
        .carousel-container { height: 100vh; min-height: 100vh; }
        .slide-title { font-size: 1.8rem; }
        .slide-description { font-size: 1rem; }
        .slide-overlay { padding: 20px 16px; }
    }