/* Custom Styles & Animations */
body { font-family: 'Inter', sans-serif; }
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.hero-pattern {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2321313c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Hero Video Frame & Carousel */
.hero-video-frame, #hero-carousel {
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 25px 60px -10px rgba(0, 163, 96, 0.25),
        0 10px 30px -5px rgba(33, 49, 60, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.hero-video-frame:hover, #hero-carousel:hover {
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.15),
        0 35px 80px -10px rgba(0, 163, 96, 0.35),
        0 15px 40px -5px rgba(33, 49, 60, 0.4);
}

.carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.carousel-item.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-indicator.active {
    background-color: white;
    width: 2rem;
}

.carousel-indicator {
    transition: all 0.3s ease;
}

/* Preview Carousel */
.preview-tab.active {
    background: white;
    color: var(--primary-color, #21313C);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.preview-slide {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.preview-slide:not(.active) {
    opacity: 0;
    transform: translateX(50px);
    pointer-events: none;
}

.preview-dot.active {
    background-color: #006D40;
    width: 2rem;
}

@media (max-width: 1024px) {
    .preview-carousel-container {
        height: auto;
        min-height: 500px;
    }
    .preview-slide {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        display: none;
    }
    .preview-slide.active {
        display: block;
    }
}
