/* ===== CSS Variables ===== */
:root {
    --primary: #009AFF;
    --primary-dark: #0080D4;
    --primary-light: #33AFFF;
    --black: #1a1a1a;
    --gray-900: #2d2d2d;
    --gray-700: #4a4a4a;
    --gray-500: #6b6b6b;
    --gray-300: #a3a3a3;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --bg-light: #fafbfc;
    --success: #10b981;
    --danger: #ef4444;
    --gradient-blue: linear-gradient(135deg, #009AFF 0%, #0080D4 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 154, 255, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 154, 255, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 154, 255, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 154, 255, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: auto;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg,
            #fafbfc 0%,
            #f0f7ff 20%,
            #e8f4ff 40%,
            #f0f7ff 60%,
            #f8fbff 80%,
            #fafbfc 100%);
    background-size: 400% 400%;
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    animation: meshGradientFlow 20s ease infinite;
}

@keyframes meshGradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Ticker Bar ===== */
.ticker-bar {
    background: linear-gradient(90deg,
            var(--white) 0%,
            rgba(0, 154, 255, 0.04) 50%,
            var(--white) 100%);
    background-size: 200% 100%;
    border-bottom: 2px solid var(--primary);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
    overflow: hidden;
    animation: tickerGradientFlow 12s linear infinite;
}

@keyframes tickerGradientFlow {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 0%;
    }
}

.ticker-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    animation: tickerGlow 3s linear infinite;
}

@keyframes tickerGlow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.ticker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 16px;
    flex-wrap: wrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
}

.ticker-separator {
    width: 1px;
    height: 16px;
    background: var(--gray-300);
}

.ticker-separator-main {
    width: 2px;
    background: var(--primary);
    height: 20px;
}

.ticker-currency {
    background: var(--gradient-glass);
    padding: 4px 12px;
    border-radius: 20px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.flag {
    width: 22px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ticker-value {
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
}

.ticker-value.value-up {
    color: var(--success);
    animation: popUp 0.5s ease-out;
}

.ticker-value.value-down {
    color: var(--danger);
    animation: popDown 0.5s ease-out;
}

@keyframes popUp {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@keyframes popDown {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }
}

/* ===== Header with Trade Elements ===== */
.header {
    background: var(--white);
    padding: 40px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.trade-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.trade-element {
    position: absolute;
    font-size: 30px;
    color: var(--primary);
    opacity: 0.12;
}

.trade-element.truck {
    top: 25%;
    animation: flyAcross 18s linear infinite;
}

.trade-element.train {
    top: 25%;
    animation: flyAcross 18s linear infinite -6s;
}

.trade-element.plane {
    top: 25%;
    animation: flyAcross 18s linear infinite -12s;
}

@keyframes flyAcross {
    0% {
        left: -10%;
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }

    100% {
        left: 110%;
        transform: translateY(0) rotate(0deg);
    }
}

.logo-container {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 140%;
    height: 140%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(0, 154, 255, 0.15) 60deg,
            rgba(51, 175, 255, 0.2) 120deg,
            transparent 180deg,
            rgba(0, 154, 255, 0.15) 240deg,
            rgba(51, 175, 255, 0.2) 300deg,
            transparent 360deg);
    border-radius: 50%;
    animation: haloRotate 8s linear infinite;
    z-index: -1;
    filter: blur(20px);
}

@keyframes haloRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.logo-img {
    max-width: 150px;
    height: auto;
    position: relative;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 24px rgba(0, 154, 255, 0.3));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 154, 255, 0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.header-subtitle {
    font-size: 14px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
    color: var(--gray-700);
}

.highlight-text {
    position: relative;
    color: var(--black);
    font-weight: 800;
    display: inline-block;
    animation: textPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s backwards;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 2px;
    animation: underlineSlide 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    box-shadow: 0 2px 8px rgba(0, 154, 255, 0.4);
}

@keyframes textPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes underlineSlide {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

/* ===== Floating Particles ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.06;
    animation: floatUp 25s infinite ease-in-out;
    animation-delay: calc(var(--i) * -2.5s);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.06;
    }

    50% {
        transform: translateY(50vh) translateX(20px) scale(1);
    }

    90% {
        opacity: 0.06;
    }

    100% {
        transform: translateY(-100px) translateX(-20px) scale(0.5);
        opacity: 0;
    }
}


/* ===== Main Content ===== */
.main-content {
    margin-top: 30px;
    padding-bottom: 0;
    position: relative;
    z-index: 10;
}

.news-banner {
    background: var(--gradient-blue);
    padding: 20px 0;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.news-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 2.5s infinite;
}

.news-banner::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 200%;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20'%3E%3Cpath fill='%23009AFF' fill-opacity='0.3' d='M0,10 Q300,0 600,10 T1200,10 L1200,20 L0,20 Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 100%;
    animation: waveMove 8s linear infinite;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1200px);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.banner-title {
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* ===== Carousel - MAXIMIZED WIDTH ===== */
.carousel-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
}

.carousel-btn {
    background: var(--white);
    border: 3px solid var(--primary);
    color: var(--primary);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
    z-index: 10;
    position: relative;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--gradient-blue);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.carousel-btn:hover::before {
    opacity: 1;
}

.carousel-btn:hover {
    color: var(--white);
    transform: scale(1.2) rotate(90deg);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.carousel-btn svg {
    width: 28px;
    height: 28px;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 32px;
    flex: 1;
    perspective: 1500px;
}

.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 28px 100px;
    position: relative;
    opacity: 0.3;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.carousel-slide.active::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle at center,
            rgba(0, 154, 255, 0.15) 0%,
            rgba(0, 154, 255, 0.08) 50%,
            transparent 70%);
    border-radius: 40px;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

.slide-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 100%);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-slide.active .slide-backdrop {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(248, 251, 255, 1) 50%,
            rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 30px 90px rgba(0, 154, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(0, 154, 255, 0.1);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.slide-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.slide-icon {
    font-size: 36px;
    display: inline-block;
    color: var(--primary);
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(0, 154, 255, 0.3));
}

.slide-icon i {
    display: block;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: radarWave 2s ease-out infinite;
}

.icon-ring-2 {
    animation-delay: 0.7s;
}

.icon-ring-3 {
    animation-delay: 1.4s;
}

@keyframes radarWave {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.6;
        border-width: 4px;
    }

    100% {
        width: 180px;
        height: 180px;
        opacity: 0;
        border-width: 1px;
    }
}

.slide-title {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 6px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 12px;
    color: var(--gray-700);
    margin-bottom: 12px;
    font-weight: 500;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Slide Stats ===== */
.slide-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 154, 255, 0.05) 0%, rgba(0, 154, 255, 0.02) 100%);
    min-width: 160px;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 8px rgba(0, 154, 255, 0.2);
}

.stat-label {
    font-size: 10px;
    color: var(--gray-600);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Progress Bars ===== */
.progress-bars {
    max-width: 600px;
    margin: 0 auto 22px;
}

.progress-item {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.progress-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    min-width: 160px;
    text-align: right;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background: rgba(0, 154, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg,
            #009AFF 0%,
            #33AFFF 25%,
            #66C2FF 50%,
            #33AFFF 75%,
            #009AFF 100%);
    background-size: 200% 100%;
    border-radius: 12px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 154, 255, 0.3);
    animation: rainbowFlow 3s linear infinite;
}

@keyframes rainbowFlow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    min-width: 50px;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-blue);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 28px;
    font-weight: 800;
    font-size: 15px;
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-badge i {
    font-size: 16px;
}

.slide-badge-soon {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

/* ===== Carousel Dots ===== */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 0 rgba(0, 154, 255, 0);
}

.dot:hover {
    background: var(--gray-500);
    transform: scale(1.2);
    box-shadow:
        0 0 15px rgba(0, 154, 255, 0.5),
        0 0 30px rgba(0, 154, 255, 0.25);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.4);
    box-shadow:
        0 0 15px rgba(0, 154, 255, 0.8),
        0 0 30px rgba(0, 154, 255, 0.4),
        0 0 45px rgba(0, 154, 255, 0.2);
    animation: dotGlowPulse 2s ease-in-out infinite;
}

@keyframes dotGlowPulse {

    0%,
    100% {
        box-shadow:
            0 0 15px rgba(0, 154, 255, 0.8),
            0 0 30px rgba(0, 154, 255, 0.4),
            0 0 45px rgba(0, 154, 255, 0.2);
    }

    50% {
        box-shadow:
            0 0 25px rgba(0, 154, 255, 1),
            0 0 50px rgba(0, 154, 255, 0.6),
            0 0 75px rgba(0, 154, 255, 0.3);
    }
}

.dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
    animation: dotRipple 1.5s ease-out infinite;
}

.dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.3;
    animation: dotRipple 1.5s ease-out 0.5s infinite;
}

@keyframes dotRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .carousel-section {
        max-width: 900px;
    }

    .carousel-slide {
        padding: 24px 50px;
    }

    .slide-icon {
        font-size: 48px;
    }

    .slide-title {
        font-size: 26px;
    }

    .stat-number {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .ticker-content {
        font-size: 11px;
        gap: 12px;
        padding: 8px 12px;
    }

    .trade-element {
        font-size: 30px;
    }

    .logo-img {
        max-width: 220px;
    }

    .header-subtitle {
        font-size: 16px;
    }

    .carousel-btn {
        display: none;
    }

    .carousel-section {
        padding: 0 20px;
    }

    .carousel-slide {
        padding: 20px 24px;
    }

    .slide-icon {
        font-size: 44px;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-description {
        font-size: 14px;
    }

    .slide-stats {
        gap: 40px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 36px;
    }

    .progress-label {
        min-width: 100px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ticker-content {
        font-size: 10px;
        gap: 8px;
        padding: 6px 8px;
    }

    .flag {
        width: 16px;
    }

    .logo-img {
        max-width: 180px;
    }

    .header-subtitle {
        font-size: 14px;
    }

    .banner-title {
        font-size: 18px;
    }

    .carousel-slide {
        padding: 16px 20px;
    }

    .slide-icon {
        font-size: 40px;
    }

    .slide-title {
        font-size: 22px;
    }

    .slide-description {
        font-size: 13px;
    }

    .slide-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-number {
        font-size: 34px;
    }

    .progress-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .progress-label {
        text-align: left;
        min-width: auto;
        font-size: 11px;
    }

    .progress-bar {
        width: 100%;
    }

    .carousel-dots {
        gap: 8px;
        margin-top: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ===== Alert Ribbon ===== */
.alert-ribbon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    padding: 14px 20px;
    margin: 40px 0 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    flex-wrap: wrap;
}

.alert-content i {
    font-size: 18px;
}

.alert-text {
    font-size: 15px;
}

.alert-days {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 13px;
}

/* ===== Info Cards ===== */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: var(--gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.card-text {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
}

/* Mobile adjustments for new elements */
@media (max-width: 768px) {
    .alert-ribbon {
        padding: 12px 16px;
        margin: 30px 0 20px;
    }

    .alert-text {
        font-size: 13px;
    }

    .info-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .info-card {
        padding: 16px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .card-title {
        font-size: 14px;
    }

    .card-text {
        font-size: 12px;
    }
}

/* ===== AI Chat Widget ===== */
.ai-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.ai-chat-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gradient-blue);
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 154, 255, 0.4);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 154, 255, 0.5);
}

.ai-chat-toggle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--gradient-blue);
    opacity: 0.3;
    animation: aiPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes aiPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.ai-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--success);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 10px;
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.ai-chat-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 340px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 154, 255, 0.25);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-chat-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ai-chat-header {
    background: var(--gradient-blue);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

.ai-header-info i {
    font-size: 22px;
}

.ai-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ai-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ai-chat-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.ai-welcome {
    text-align: center;
    margin-bottom: 20px;
}

.ai-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 154, 255, 0.1) 0%, rgba(0, 154, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 28px;
    color: var(--primary);
}

.ai-welcome p {
    color: var(--gray-700);
    font-size: 15px;
    font-weight: 500;
}

.ai-questions-title {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.ai-question-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(0, 154, 255, 0.06) 0%, rgba(0, 154, 255, 0.02) 100%);
    border: 1px solid rgba(0, 154, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    text-align: left;
}

.ai-question-btn:hover {
    background: var(--gradient-blue);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 154, 255, 0.3);
}

.ai-question-btn i {
    font-size: 16px;
    color: var(--primary);
    width: 20px;
    transition: var(--transition);
}

.ai-question-btn:hover i {
    color: var(--white);
}

@media (max-width: 480px) {
    .ai-chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .ai-chat-panel {
        width: 300px;
        right: -10px;
    }

    .ai-chat-toggle {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* AI Response Styles */
.ai-response {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-message {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.ai-message-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.ai-message-content {
    background: linear-gradient(135deg, rgba(0, 154, 255, 0.08) 0%, rgba(0, 154, 255, 0.03) 100%);
    padding: 14px 16px;
    border-radius: 16px;
    border-top-left-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-900);
}

.ai-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.ai-back-btn:hover {
    background: var(--gradient-blue);
    color: var(--white);
    border-color: transparent;
}

/* ===== Carousel Controls with AI Toggle ===== */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.ai-toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-blue);
    border: none;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 154, 255, 0.35);
    transition: var(--transition);
}

.ai-toggle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 154, 255, 0.5);
}

.ai-toggle-btn i {
    font-size: 18px;
}

/* AI Chat Toggle Fixed Button */
.ai-chat-toggle-fixed {
    position: fixed;
    bottom: 150px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gradient-blue);
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 154, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.ai-chat-toggle-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 154, 255, 0.5);
}

.ai-chat-toggle-fixed .ai-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--success);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 10px;
}

/* ===== AI Chat Section (Same size as carousel) ===== */
.ai-chat-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeIn 0.4s ease;
}

.ai-chat-container {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 154, 255, 0.15);
    overflow: hidden;
}

.ai-chat-section .ai-chat-header {
    padding: 20px 30px;
    border-radius: 24px 24px 0 0;
}

.ai-chat-section .ai-header-info {
    font-size: 18px;
}

.ai-chat-section .ai-header-info i {
    font-size: 26px;
}

.ai-chat-section .ai-close-btn {
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.ai-chat-section .ai-close-btn span {
    display: inline;
}

.ai-chat-section .ai-chat-body {
    padding: 16px;
    min-height: 120px;
    max-height: 150px;
    overflow-y: auto;
}

/* AI Messages */
.ai-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ai-message-bot {
    flex-direction: row;
}

.ai-message-user {
    flex-direction: row-reverse;
}

.ai-message-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    flex-shrink: 0;
}

.ai-message-user .ai-message-avatar {
    background: var(--gray-400);
}

.ai-message-content {
    background: var(--gray-100);
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.5;
    max-width: 70%;
}

.ai-message-user .ai-message-content {
    background: var(--primary);
    color: var(--white);
}

/* Chat Input Area */
.ai-chat-input-area {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 0 0 24px 24px;
}

.ai-chat-input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    font-size: 12px;
    transition: var(--transition);
    outline: none;
}

.ai-chat-input:focus {
    border-color: var(--primary);
}

.ai-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-blue);
    border: none;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-send-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .carousel-controls {
        flex-direction: column;
        gap: 16px;
    }

    .ai-chat-section .ai-chat-body {
        padding: 12px;
    }

    .ai-chat-toggle-fixed {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .ai-chat-toggle-fixed .ai-badge {
        font-size: 8px;
        padding: 3px 5px;
    }
}

@media (max-width: 480px) {
    .ai-toggle-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .ai-chat-toggle-fixed {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .ai-chat-section {
        padding: 0 10px;
    }

    .ai-chat-input-area {
        padding: 10px;
    }
}