/* ===== Modern Hero Section - Complete Redesign ===== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    background: var(--dark-black);
}

/* Hero Images - Full Width Background */
.hero-images-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s ease-in-out;
}

.hero-image-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurnsZoom 20s ease-out infinite alternate;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Gradient Overlays */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 40%,
        rgba(220, 20, 60, 0.15) 70%,
        rgba(255, 107, 53, 0.1) 100%
    );
    z-index: 3;
}

.hero-content-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 30% 50%,
        transparent 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 0.6) 100%
    );
    z-index: 4;
}

/* Hero Content Container */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 120px 0;
}

.hero-content {
    max-width: 900px;
    padding: 0 80px;
}

/* Hero Title */
.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: -1px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #DC143C 0%, #FF6B35 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 15px;
    position: relative;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(10deg) brightness(1.2);
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-buttons .btn {
    min-width: 220px;
    font-size: 1.1rem;
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
    width: 400px;
    height: 400px;
}

.hero-buttons .btn i {
    margin-right: 10px;
}

/* Hero Stats - Modern Card Design */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 800px;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(220, 20, 60, 0.3) 90deg,
        transparent 180deg
    );
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-item:hover::before {
    opacity: 1;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
    background: rgba(220, 20, 60, 0.05);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Slider Dots - Bottom Right */
.hero-slider-dots {
    position: absolute;
    bottom: 50px;
    right: 80px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    position: relative;
}

.slider-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.4s;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
}

.slider-dot.active {
    background: var(--primary-red);
    width: 50px;
    border-radius: 12px;
    border-color: var(--primary-orange);
}

.slider-dot.active::after {
    border-color: var(--primary-orange);
    animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-orange);
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.8));
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

/* Responsive Design */

/* Large Desktop (2560px) */
@media (min-width: 1920px) {
    .hero-content {
        max-width: 1200px;
        padding: 0 100px;
    }
    
    .hero-title {
        font-size: 7rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        max-width: 900px;
    }
    
    .stat-item h3 {
        font-size: 4rem;
    }
}

/* Standard Laptop (1920x1080) */
@media (max-width: 1919px) and (min-width: 1440px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Laptop (1366px, 1440px) */
@media (max-width: 1439px) and (min-width: 1200px) {
    .hero-content {
        padding: 0 60px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* Tablet */
@media (max-width: 1199px) and (min-width: 768px) {
    .hero-content {
        max-width: 700px;
        padding: 0 50px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-slider-dots {
        right: 50px;
    }
    
    .scroll-indicator {
        left: 50px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content-wrapper {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 50px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    .hero-slider-dots {
        bottom: 30px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* iPhone 14 Pro Max (430x932) */
@media (max-width: 430px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
}

/* Performance Optimization */
.hero-images-slider,
.hero-image-item,
.hero-content-wrapper,
.stat-item {
    will-change: transform, opacity;
}
