 /* Enhanced Countdown Timer Styles */
        .countdown-container {
            padding: 25px 20px;
            background: linear-gradient(135deg, rgba(204, 54, 52, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 2px solid rgba(204, 54, 52, 0.4);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .countdown-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .countdown-title {
            text-align: center;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 1;
        }
        
        .countdown-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            margin: 10px auto 0;
            border-radius: 2px;
        }
        
        .countdown-timer {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            position: relative;
            z-index: 1;
        }
        
        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        
        .countdown-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--white);
            line-height: 1;
            background: linear-gradient(135deg, rgba(204, 54, 52, 0.8) 0%, rgba(204, 54, 52, 0.6) 100%);
            padding: 15px 18px;
            border-radius: 12px;
            width: 100%;
            text-align: center;
            box-shadow: 0 5px 20px rgba(204, 54, 52, 0.4), inset 0 -2px 5px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.2);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .countdown-number::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
            pointer-events: none;
        }
        
        .countdown-number:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(204, 54, 52, 0.6), inset 0 -2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .countdown-label {
            font-size: 0.75rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.95);
            margin-top: 8px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
        }
        
        /* Clock icon decoration */
        .countdown-icon {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 50px;
            height: 50px;
            background: rgba(204, 54, 52, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.6;
        }
        
        .countdown-icon i {
            font-size: 24px;
            color: var(--white);
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        
        .hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 1px;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .hero-scroll:hover {
            opacity: 1;
            transform: translate(-50%, -5px);
            color: var(--white);
        }
        
        .hero-scroll i {
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        /* Dropdown Styles */
        .custom-dropdown-container {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-toggle {
            cursor: pointer;
        }
        
        .dropdown-arrow {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .dropdown-menu-custom {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-top: 10px;
            min-width: 250px;
            z-index: 1000;
        }
        
        .dropdown-menu-custom ul {
            list-style: none;
            padding: 10px 0;
            margin: 0;
        }
        
        .dropdown-menu-custom li a {
            display: block;
            padding: 12px 20px;
            color: var(--secondary-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .dropdown-menu-custom li a:hover {
            background: var(--light-bg);
            color: var(--primary);
        }
        
        .custom-dropdown-container:hover .dropdown-menu-custom {
            display: block;
        }
        
        .custom-dropdown-container:hover .dropdown-arrow {
            transform: rotate(180deg);
        }
        
        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .hero-row {
                flex-direction: column;
                gap: 30px;
            }
            
            .hero-left {
                max-width: 100%;
                padding: 30px 20px;
            }
            
            .hero-right {
                width: 100%;
                max-width: 450px;
                padding: 0 20px;
                margin: 0 auto;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-theme {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-section {
                padding: 120px 0 50px;
            }
            
            .hero-title {
                font-size: 1.8rem;
                line-height: 33px;
            }
            
            .hero-theme {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn-hero {
                width: 100%;
                justify-content: center;
            }
            
            .countdown-container {
                padding: 20px 15px;
            }
            
            .countdown-title {
                font-size: 0.95rem;
                margin-bottom: 15px;
            }
            
            .countdown-timer {
                gap: 10px;
            }
            
            .countdown-number {
                font-size: 2rem;
                padding: 12px 15px;
            }
            
            .countdown-label {
                font-size: 0.65rem;
                margin-top: 6px;
            }
            
            .countdown-icon {
                width: 40px;
                height: 40px;
            }
            
            .countdown-icon i {
                font-size: 20px;
            }
            
            .hero-scroll {
                display: none;
            }
        }
        
        @media (max-width: 479.98px) {
            .countdown-timer {
                gap: 8px;
            }
            
            .countdown-number {
                font-size: 1.6rem;
                padding: 10px 12px;
            }
        }