/* Hero Section Container */
.hero-section-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
}

/* Hero Column */
.hero-column {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    cursor: pointer;
}

/* Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 700px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dots .dot.active {
    background: #ffffff;
    width: 30px;
    border-radius: 5px;
}

.hero-slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Media (Image/Video) */
.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    min-height: 700px;
    display: block;
}

.hero-column:hover .hero-slide.active .hero-media {
    transform: scale(1.1);
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    transition: background 0.4s ease;
    z-index: 2;
}

.hero-column:hover .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

/* Content */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 60px 30px;
    color: #ffffff;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.hero-column:hover .hero-content {
    transform: translateY(-10px);
}

/* Title */
.hero-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.3;
}

/* Subtitle */
.hero-subtitle {
    font-size: 16px;
    margin: 0 0 20px 0;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* Button */
.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-button:hover {
    background: #f0f0f0;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-button svg {
    transition: transform 0.3s ease;
}

.hero-button:hover svg {
    transform: translateX(3px);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero-section-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-column {
        min-height: 550px;
    }
    .hero-slider {
        min-height: 550px;
    }
    .hero-slide {
        min-height: 550px;
    }
    .hero-media {
        min-height: 550px;
    }
    .hero-title {
        font-size: 24px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-section-grid {
        grid-template-columns: 1fr;
    }
    .hero-column {
        min-height: 500px;
    }
    .hero-slider {
        min-height: 500px;
    }
    .hero-slide {
        min-height: 500px;
    }
    .hero-media {
        min-height: 500px;
    }
    .hero-title {
        font-size: 22px;
    }
    .hero-content {
        padding: 25px 20px 50px 20px;
    }
}

