/* ========================================
   SIMPLE MODERN HERO SLIDER
   Clean & Minimalist Design
   ======================================== */

.modern-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #ffffff;
    padding: 12px;
    box-sizing: border-box;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

/* Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

/* Content */
.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.content-box {
    max-width: 900px;
    text-align: left;
}

.hero-label {
    display: block;
    color: #d70006;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-align: left;
}

.hero-heading {
    font-size: 80px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 40px 0;
    text-align: left;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    justify-content: flex-start;
}

.btn-modern,
.btn-outline {
    display: inline-block;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-align: center;
}

.btn-modern {
    background: #d70006;
    color: #fff;
    border: 2px solid #d70006;
}

.btn-modern:hover {
    background: #fff;
    color: #d70006;
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Transportation Icons */
.transportation-icons {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 5;
}

.transport-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: floatIcon 3s ease-in-out infinite;
}

.transport-icon-container:nth-child(2) {
    animation-delay: 1.5s;
}

.transport-icon {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes the image white */
    transition: all 0.3s ease;
}

.transport-icon-container:hover {
    background: rgba(215, 0, 6, 0.8);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(215, 0, 6, 0.4);
}

.transport-icon-container:hover .transport-icon {
    transform: scale(1.1);
}

.transport-icon-container:hover .transport-icon img {
    filter: brightness(0) invert(1); /* Keeps the image white on hover */
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Controls */
.hero-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 30px;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: #d70006;
    border-color: #d70006;
}

.slide-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #d70006;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 64px;
    }
    
    .hero-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: 500px;
        height: 80vh;
        padding: 10px;
    }

    .hero-wrapper {
        border-radius: 24px;
    }
    
    .content-box {
        text-align: center;
    }
    
    .hero-label {
        text-align: center;
    }
    
    .hero-heading {
        font-size: 38px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }
    
    .btn-modern,
    .btn-outline {
        padding: 16px 35px;
        font-size: 14px;
        text-align: center;
    }
    
    .transportation-icons {
        right: 20px;
        gap: 20px;
    }
    
    .transport-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .transport-icon {
        width: 30px;
        height: 30px;
    }
    
    .hero-controls {
        bottom: 30px;
        gap: 20px;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .modern-hero {
        min-height: 450px;
        padding: 8px;
    }

    .hero-wrapper {
        border-radius: 20px;
    }
    
    .content-box {
        text-align: center;
    }
    
    .hero-heading {
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-label {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .btn-modern,
    .btn-outline {
        padding: 14px 30px;
        font-size: 13px;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
    }
    
    .transportation-icons {
        right: 15px;
        gap: 15px;
    }
    
    .transport-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .transport-icon {
        width: 25px;
        height: 25px;
    }
    
    .hero-controls {
        bottom: 25px;
        gap: 15px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}
