/* Modern Banner Enhancements */

/* Animated Background Particles */
.banner-section .banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.banner-section .banner-particles .particle {
    position: absolute;
    background: rgba(246, 175, 52, 0.3);
    border-radius: 50%;
    animation: floatParticle 15s infinite;
}

.banner-section .banner-particles .particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.banner-section .banner-particles .particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.banner-section .banner-particles .particle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.banner-section .banner-particles .particle:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.banner-section .banner-particles .particle:nth-child(5) {
    width: 70px;
    height: 70px;
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.banner-section .banner-particles .particle:nth-child(6) {
    width: 50px;
    height: 50px;
    top: 70%;
    left: 40%;
    animation-delay: 5s;
    animation-duration: 21s;
}

.banner-section .banner-particles .particle:nth-child(7) {
    width: 90px;
    height: 90px;
    top: 40%;
    right: 30%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.banner-section .banner-particles .particle:nth-child(8) {
    width: 55px;
    height: 55px;
    bottom: 15%;
    left: 60%;
    animation-delay: 4.5s;
    animation-duration: 20s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(30px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-60px) translateX(-20px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-30px) translateX(-40px) scale(1.05);
        opacity: 0.4;
    }
}

/* Modern Gradient Overlay */
.banner-section .modern-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(246, 175, 52, 0.15) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.banner-section.modern-banner .banner-slide:before {
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}

/* Edition Badge */
.banner-section .edition-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(246, 175, 52, 0.2);
    border: 2px solid rgba(246, 175, 52, 0.5);
    border-radius: 0;
    backdrop-filter: blur(10px);
    z-index: 100;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(246, 175, 52, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(246, 175, 52, 0.5);
    }
}

@media (max-width: 1199px) {
    .banner-section .edition-badge {
        top: 20px;
        right: 20px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .banner-section .edition-badge {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
    }
}

.banner-section .edition-badge .badge-icon {
    font-size: 20px;
    color: #f6af34;
}

.banner-section .edition-badge .badge-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Banner Title */
.banner-section .banner-title {
    position: relative;
    margin-top: 3%;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .banner-section .banner-title {
        text-align: center;
    }
}

.banner-section .banner-title .title-line-1 {
    display: block;
    font-size: 60px;
    font-weight: 800;
    color: #f6af34;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(246, 175, 52, 0.4);
}

@media (max-width: 1399px) {
    .banner-section .banner-title .title-line-1 {
        font-size: 52px;
    }
}

@media (max-width: 991px) {
    .banner-section .banner-title .title-line-1 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .banner-section .banner-title .title-line-1 {
        font-size: 32px;
    }
}

.banner-section .banner-title .title-line-2 {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-top: 10px;
}

@media (max-width: 1399px) {
    .banner-section .banner-title .title-line-2 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .banner-section .banner-title .title-line-2 {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .banner-section .banner-title .title-line-2 {
        font-size: 16px;
    }
}

/* Banner Subtitle */
.banner-section .banner-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 50px;
    max-width: 800px;
}

@media (max-width: 1199px) {
    .banner-section .banner-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 991px) {
    .banner-section .banner-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .banner-section .banner-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }
}

/* Countdown & Highlights Row - Now Just Highlights */
.banner-section .countdown-highlights-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .banner-section .countdown-highlights-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .banner-section .countdown-highlights-row {
        gap: 20px;
    }
}

/* Event Highlights */
.banner-section .event-highlights {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .banner-section .event-highlights {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .banner-section .event-highlights {
        gap: 15px;
        width: 100%;
    }
}

.banner-section .event-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-left: 5px solid #c22439;
    border-radius: 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 160px;
    flex: 0 0 auto;
}

.banner-section .event-highlights .highlight-item:nth-child(2) {
    border-left-color: #fdbd1b;
}

.banner-section .event-highlights .highlight-item:nth-child(3) {
    border-left-color: #3da8e0;
}

@media (max-width: 1199px) {
    .banner-section .event-highlights .highlight-item {
        min-width: 160px;
        padding: 18px 22px;
    }
}

@media (max-width: 575px) {
    .banner-section .event-highlights .highlight-item {
        padding: 15px 20px;
        min-width: 140px;
    }
}

.banner-section .event-highlights .highlight-item:hover {
    background: rgba(246, 175, 52, 0.2);
    border-color: rgba(246, 175, 52, 0.6);
    transform: translateY(-5px);
}

.banner-section .event-highlights .highlight-item .highlight-icon {
    font-size: 32px;
    color: #f6af34;
}

@media (max-width: 575px) {
    .banner-section .event-highlights .highlight-item .highlight-icon {
        font-size: 24px;
    }
}

.banner-section .event-highlights .highlight-item .highlight-content .highlight-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

@media (max-width: 575px) {
    .banner-section .event-highlights .highlight-item .highlight-content .highlight-number {
        font-size: 24px;
    }
}

.banner-section .event-highlights .highlight-item .highlight-content .highlight-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .banner-section .event-highlights .highlight-item .highlight-content .highlight-label {
        font-size: 12px;
    }
}

/* Location CTA Box */
.banner-section .location-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

@media (max-width: 1199px) {
    .banner-section .location-cta-box {
        gap: 20px;
    }
}

.banner-section .location-cta-box .location-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.5);
    border-left: 5px solid #c22439;
    border-radius: 0;
}

@media (max-width: 575px) {
    .banner-section .location-cta-box .location-info {
        padding: 15px 20px;
    }
}

.banner-section .location-cta-box .location-info .location-icon {
    font-size: 32px;
    color: #f6af34;
}

@media (max-width: 575px) {
    .banner-section .location-cta-box .location-info .location-icon {
        font-size: 24px;
    }
}

.banner-section .location-cta-box .location-info .location-text {
    display: flex;
    flex-direction: column;
}

.banner-section .location-cta-box .location-info .location-text .location-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.banner-section .location-cta-box .location-info .location-text .location-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.banner-section .location-cta-box .location-info .location-text .location-date {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fdbd1b;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 575px) {
    .banner-section .location-cta-box .location-info .location-text .location-name {
        font-size: 16px;
    }
    
    .banner-section .location-cta-box .location-info .location-text .location-date {
        font-size: 18px;
    }
}

.banner-section .location-cta-box .cta-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 575px) {
    .banner-section .location-cta-box .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
}

.banner-section .location-cta-box .cta-buttons .theme-btn.pulse-btn {
    animation: pulse 2s infinite;
    border-radius: 0 !important;
    background: #fdbd1b !important;
    color: #000000 !important;
    border: none !important;
}

.banner-section .location-cta-box .cta-buttons .theme-btn.pulse-btn:before {
    border-radius: 0 !important;
}

.banner-section .location-cta-box .cta-buttons .theme-btn.pulse-btn .icon {
    border-radius: 0 !important;
}

.banner-section .location-cta-box .cta-buttons .theme-btn.btn-outline {
    background: transparent !important;
    border: 2px solid #3da8e0 !important;
    border-radius: 0 !important;
    color: #ffffff !important;
}

.banner-section .location-cta-box .cta-buttons .theme-btn.btn-outline:before {
    border-radius: 0 !important;
}

.banner-section .location-cta-box .cta-buttons .theme-btn.btn-outline .icon {
    border-radius: 0 !important;
    background: transparent !important;
    color: #3da8e0 !important;
    width: auto !important;
    height: auto !important;
    font-size: 18px !important;
    margin-right: 8px !important;
}

.banner-section .location-cta-box .cta-buttons .theme-btn.btn-outline:hover .icon {
    color: #ffffff !important;
}

.banner-section .location-cta-box .cta-buttons .theme-btn.btn-outline:hover {
    background: #3da8e0 !important;
    color: #ffffff !important;
    border-color: #3da8e0 !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(246, 175, 52, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(246, 175, 52, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(246, 175, 52, 0);
    }
}

/* Scroll Indicator */
.banner-section .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
}

@media (max-width: 1199px) {
    .banner-section .scroll-indicator {
        display: none;
    }
}

.banner-section .scroll-indicator .scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    margin: 0 auto 10px;
    position: relative;
}

.banner-section .scroll-indicator .scroll-icon span {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

.banner-section .scroll-indicator p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

@keyframes scrollDown {
    0%, 20% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

.banner-section .scroll-indicator.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Enhanced Modern Countdown */
.banner-section .time-counter.modern-countdown {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: none;
    border-top: 5px solid #fdbd1b;
    border-radius: 0;
    padding: 20px 25px;
    max-width: fit-content;
}

/* Lateral Countdown Layout - Display Timer Vertically on Side */
.banner-section .time-counter.countdown-lateral {
    padding: 20px 15px;
}

.banner-section .time-counter.countdown-lateral .countdown-header {
    display: none;
}

.banner-section .time-counter.countdown-lateral .time-countdown {
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 0;
}

.banner-section .time-counter.countdown-lateral .separator {
    display: none;
}

/* Countdown Positioned on Right */
.banner-section .time-counter.countdown-right-position {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 1199px) {
    .banner-section .time-counter.modern-countdown {
        padding: 20px 25px;
        width: 100%;
        max-width: 600px;
    }
    
    .banner-section .time-counter.countdown-right-position {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 30px auto;
    }
}

@media (max-width: 575px) {
    .banner-section .time-counter.modern-countdown {
        padding: 15px 20px;
    }
}

.banner-section .time-counter .countdown-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.banner-section .time-counter .countdown-header:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f6af34, transparent);
    border-radius: 2px;
    animation: lineGlow 2s ease-in-out infinite;
}

.banner-section .time-counter .countdown-header .countdown-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0;
    border: none;
    border-left: 5px solid #fdbd1b;
    backdrop-filter: blur(10px);
    animation: titlePulse 3s ease-in-out infinite;
}

.banner-section .time-counter .countdown-header .countdown-title:before {
    content: '⏰';
    margin-right: 8px;
    font-size: 18px;
    animation: iconBounce 2s ease-in-out infinite;
}

.banner-section .time-counter .countdown-header .countdown-title:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #fdbd1b, #fdbd1b, #fdbd1b);
    border-radius: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.banner-section .time-counter .countdown-header .countdown-title:hover:after {
    opacity: 0.3;
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(246, 175, 52, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(246, 175, 52, 0.4);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.5;
        width: 60px;
    }
    50% {
        opacity: 1;
        width: 80px;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 991px) {
    .banner-section .time-counter .countdown-header .countdown-title {
        font-size: 14px;
        padding: 7px 18px;
        letter-spacing: 1.2px;
    }
    
    .banner-section .time-counter .countdown-header .countdown-title:before {
        font-size: 16px;
        margin-right: 6px;
    }
}

@media (max-width: 575px) {
    .banner-section .time-counter .countdown-header .countdown-title {
        font-size: 12px;
        padding: 6px 15px;
        letter-spacing: 1px;
    }
    
    .banner-section .time-counter .countdown-header .countdown-title:before {
        font-size: 14px;
        margin-right: 5px;
    }
    
    .banner-section .time-counter .countdown-header:before {
        width: 40px;
    }
}

.banner-section .time-counter .time-countdown.enhanced-countdown .counter-column {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-top: 3px solid #3da8e0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 0;
    padding: 12px 15px;
    min-width: 90px;
}

.banner-section .time-counter .time-countdown.enhanced-countdown .counter-column:nth-child(1) {
    border-top-color: #c22439;
}

.banner-section .time-counter .time-countdown.enhanced-countdown .counter-column:nth-child(3) {
    border-top-color: #fdbd1b;
}

.banner-section .time-counter .time-countdown.enhanced-countdown .counter-column:nth-child(5) {
    border-top-color: #3da8e0;
}

.banner-section .time-counter .time-countdown.enhanced-countdown .counter-column:nth-child(7) {
    border-top-color: #c22439;
}

.banner-section .time-counter .time-countdown.enhanced-countdown .counter-column .count,
.banner-section .time-counter .time-countdown.enhanced-countdown .counter-column span.count {
    background: linear-gradient(135deg, #f6af34 0%, #f6af34 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countPulse 2s infinite;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    display: block;
}

.banner-section .time-counter .time-countdown.enhanced-countdown .counter-column sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-section .time-counter .time-countdown.enhanced-countdown .counter-column:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 175, 52, 0.3), transparent);
    transition: left 0.5s ease;
}

.banner-section .time-counter .time-countdown.enhanced-countdown .counter-column:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.5);
}

.banner-section .time-counter .time-countdown.enhanced-countdown .counter-column:hover:before {
    left: 100%;
}

@media (max-width: 991px) {
    .banner-section .time-counter .time-countdown.enhanced-countdown .counter-column {
        min-width: 75px;
        padding: 10px 12px;
    }
    
    .banner-section .time-counter .time-countdown.enhanced-countdown .counter-column .count,
    .banner-section .time-counter .time-countdown.enhanced-countdown .counter-column span.count {
        font-size: 28px;
    }
    
    .banner-section .time-counter .time-countdown.enhanced-countdown .counter-column sub {
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    .banner-section .time-counter .time-countdown.enhanced-countdown .counter-column {
        min-width: 65px;
        padding: 8px 10px;
    }
    
    .banner-section .time-counter .time-countdown.enhanced-countdown .counter-column .count,
    .banner-section .time-counter .time-countdown.enhanced-countdown .counter-column span.count {
        font-size: 24px;
    }
    
    .banner-section .time-counter .time-countdown.enhanced-countdown .counter-column sub {
        font-size: 9px;
    }
}

@keyframes countPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Countdown Separator Styling */
.banner-section .time-counter .time-countdown.enhanced-countdown .separator {
    font-size: 28px;
    font-weight: 700;
    color: rgba(246, 175, 52, 0.8);
    margin: 0 5px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    animation: separatorPulse 2s ease-in-out infinite;
}

@keyframes separatorPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .banner-section .time-counter .time-countdown.enhanced-countdown .separator {
        font-size: 20px;
        margin: 0 3px;
    }
}
