/* ===== MODERN HERO SECTION - Inspired by Latest Design Trends ===== */

/* Reset and Base */
.hero {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, 
                #DC143C 0%, 
                #FF6B35 25%, 
                #FF8C42 50%, 
                #FFA94D 75%, 
                #FFB84D 100%) !important;
    background-size: 400% 400% !important;
    animation: gradientShift 15s ease infinite !important;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hide old image slider */
.hero-images-slider,
.hero-image-item,
.hero-image-overlay,
.hero-content-gradient {
    display: none !important;
}

/* Floating Shapes Background */
.hero::before {
    content: '' !important;
    position: absolute !important;
    width: 500px !important;
    height: 500px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    top: -200px !important;
    right: -100px !important;
    animation: float 20s ease-in-out infinite !important;
}

.hero::after {
    content: '' !important;
    position: absolute !important;
    width: 300px !important;
    height: 300px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 50% !important;
    bottom: -100px !important;
    left: -50px !important;
    animation: float 15s ease-in-out infinite reverse !important;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
}

.hero-content-wrapper .container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
    gap: 4rem !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Left Content */
.hero-content {
    max-width: 600px !important;
}

.hero-title {
    font-size: 4.5rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    color: #FFFFFF !important;
    letter-spacing: -2px !important;
    animation: fadeInUp 0.8s ease-out !important;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFEB3B) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
}

.hero-subtitle {
    font-size: 1.3rem !important;
    line-height: 1.7 !important;
    margin-bottom: 2.5rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 400 !important;
    animation: fadeInUp 0.8s ease-out 0.2s both !important;
}

/* Buttons */
.hero-buttons {
    display: flex !important;
    gap: 1.5rem !important;
    margin-bottom: 3rem !important;
    animation: fadeInUp 0.8s ease-out 0.4s both !important;
}

.btn {
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.btn-primary {
    background: #FFFFFF !important;
    color: #DC143C !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
}

.btn-outline-light {
    background: transparent !important;
    color: #FFFFFF !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px) !important;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #FFFFFF !important;
    transform: translateY(-3px) !important;
}

/* Stats with Floating Cards */
.hero-stats {
    display: flex !important;
    gap: 2rem !important;
    animation: fadeInUp 0.8s ease-out 0.6s both !important;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) !important;
    padding: 1.5rem 2rem !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s ease !important;
    animation: floatCard 6s ease-in-out infinite !important;
}

.stat-item:nth-child(1) { animation-delay: 0s !important; }
.stat-item:nth-child(2) { animation-delay: 0.5s !important; }
.stat-item:nth-child(3) { animation-delay: 1s !important; }
.stat-item:nth-child(4) { animation-delay: 1.5s !important; }

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

.stat-item:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2) !important;
    background: rgba(255, 255, 255, 0.25) !important;
}

.stat-icon {
    font-size: 2.5rem !important;
    color: #FFFFFF !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) !important;
}

.stat-item h3 {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    margin: 0 !important;
}

.stat-item p {
    display: none !important;
}

/* Right Side - Floating Elements */
.hero-visual {
    position: relative !important;
    height: 600px !important;
    animation: fadeInRight 1s ease-out 0.3s both !important;
}

/* Create floating elements */
.floating-element {
    position: absolute !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
    animation: floatElement 8s ease-in-out infinite !important;
}

.floating-element:nth-child(1) {
    top: 10% !important;
    right: 10% !important;
    width: 200px !important;
    height: 200px !important;
    animation-delay: 0s !important;
}

.floating-element:nth-child(2) {
    top: 50% !important;
    right: 30% !important;
    width: 150px !important;
    height: 150px !important;
    animation-delay: 1s !important;
}

.floating-element:nth-child(3) {
    bottom: 20% !important;
    right: 15% !important;
    width: 180px !important;
    height: 180px !important;
    animation-delay: 2s !important;
}

.floating-element:nth-child(4) {
    top: 35% !important;
    right: 5% !important;
    width: 120px !important;
    height: 120px !important;
    animation-delay: 3s !important;
    border-radius: 50% !important;
}

.floating-element:nth-child(5) {
    top: 70% !important;
    right: 35% !important;
    width: 100px !important;
    height: 100px !important;
    animation-delay: 4s !important;
    border-radius: 15px !important;
}

.floating-element:nth-child(6) {
    top: 15% !important;
    right: 40% !important;
    width: 90px !important;
    height: 90px !important;
    animation-delay: 5s !important;
    border-radius: 50% !important;
}

/* Central Circle with Icon */
.central-circle {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 300px !important;
    height: 300px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(30px) !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
    animation: pulse 3s ease-in-out infinite !important;
}

.circle-inner {
    width: 220px !important;
    height: 220px !important;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.8), rgba(255, 107, 53, 0.8)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
}

.circle-inner i {
    font-size: 5rem !important;
    color: #FFFFFF !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3)) !important;
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05); 
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    }
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute !important;
    bottom: 3rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    animation: bounceAnimation 2s infinite !important;
}

.scroll-indicator span {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.scroll-indicator i {
    font-size: 1.5rem !important;
}

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

/* Hide slider dots */
.hero-slider-dots {
    display: none !important;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop - 1440px to 1920px */
@media (max-width: 1920px) {
    .hero-title {
        font-size: 4rem !important;
    }
    
    .hero-visual {
        height: 550px !important;
    }
}

/* Laptop - 1200px to 1440px */
@media (max-width: 1440px) {
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .hero-content-wrapper .container {
        gap: 3rem !important;
    }
    
    .hero-visual {
        height: 500px !important;
    }
    
    .central-circle {
        width: 250px !important;
        height: 250px !important;
    }
    
    .circle-inner {
        width: 180px !important;
        height: 180px !important;
    }
    
    .circle-inner i {
        font-size: 4rem !important;
    }
}

/* Tablet - 991px to 1200px */
@media (max-width: 1200px) {
    .hero {
        min-height: auto !important;
        padding: 6rem 0 !important;
    }
    
    .hero-content-wrapper .container {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
        text-align: center !important;
    }
    
    .hero-content {
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: 3rem !important;
    }
    
    .hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .hero-stats {
        justify-content: center !important;
    }
    
    .hero-visual {
        display: none !important;
    }
    
    .scroll-indicator {
        bottom: 2rem !important;
    }
}

/* Mobile - 767px to 991px */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem !important;
        letter-spacing: -1px !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-stats {
        gap: 1rem !important;
    }
    
    .stat-item {
        padding: 1rem 1.5rem !important;
    }
    
    .stat-icon {
        font-size: 2rem !important;
    }
    
    .stat-item h3 {
        font-size: 1.8rem !important;
    }
}

/* Mobile - 575px to 767px */
@media (max-width: 767px) {
    .hero {
        padding: 5rem 0 !important;
    }
    
    .hero-content-wrapper .container {
        padding: 0 1.5rem !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.9rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .hero-stats {
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 0.8rem) !important;
        min-width: 140px !important;
    }
}

/* Small Mobile - 430px to 575px */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    .hero-stats {
        gap: 0.6rem !important;
    }
    
    .stat-item {
        padding: 0.8rem 1rem !important;
        min-width: 120px !important;
    }
    
    .stat-icon {
        font-size: 1.8rem !important;
    }
    
    .stat-item h3 {
        font-size: 1.5rem !important;
    }
}

/* Extra Small Mobile - Below 430px */
@media (max-width: 430px) {
    .hero {
        padding: 4rem 0 !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .hero-stats {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .stat-item {
        flex: 1 1 100% !important;
        width: 100% !important;
        min-width: auto !important;
    }
    
    .scroll-indicator {
        bottom: 1.5rem !important;
    }
    
    .scroll-indicator span {
        font-size: 0.75rem !important;
    }
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1920px) {
    .hero-title {
        font-size: 5.5rem !important;
    }
    
    .hero-visual {
        height: 700px !important;
    }
}

/* Desktop */
@media (max-width: 1440px) {
    .hero-title {
        font-size: 4rem !important;
    }
    
    .hero-visual {
        height: 550px !important;
    }
}

/* Tablet Landscape */
@media (max-width: 1199px) {
    .hero-content-wrapper .container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center !important;
    }
    
    .hero-content {
        max-width: 700px !important;
        margin: 0 auto !important;
    }
    
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .hero-buttons {
        justify-content: center !important;
    }
    
    .hero-stats {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .hero-visual {
        display: none !important;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .hero {
        min-height: 90vh !important;
    }
    
    .hero-title {
        font-size: 3rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .stat-item {
        padding: 1.2rem 1.5rem !important;
    }
    
    .stat-icon {
        font-size: 2.2rem !important;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero {
        min-height: 100vh !important;
        padding: 6rem 0 4rem 0 !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .hero-stats {
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 0.5rem) !important;
        min-width: 140px !important;
    }
    
    .hero::before,
    .hero::after {
        width: 300px !important;
        height: 300px !important;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .stat-item {
        padding: 1rem !important;
    }
    
    .stat-icon {
        font-size: 2rem !important;
    }
    
    .stat-item h3 {
        font-size: 1.8rem !important;
    }
}
