.holidays-cta-section {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 4rem 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            position: relative;
            overflow: hidden;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Animated background elements */
        .holidays-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="2s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="1" fill="white" opacity="0.2"><animate attributeName="opacity" values="0.2;0.7;0.2" dur="4s" repeatCount="indefinite"/></circle><circle cx="70" cy="80" r="0.8" fill="white" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="10" cy="60" r="1.2" fill="white" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3.5s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-10px) rotate(1deg); }
            66% { transform: translateY(-5px) rotate(-1deg); }
        }

        .holidays-cta-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            transform: translateY(0);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-content::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%; }
        }

        .cta-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
        }

        .cta-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            display: inline-block;
            animation: bounce 2s infinite;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .cta-title {
            color: white;
            font-size: 3rem;
            font-weight: 800;
            margin: 0 0 1rem 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: -1px;
            line-height: 1.1;
            background: linear-gradient(45deg, #fff, #f0f8ff, #fff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textShine 4s ease-in-out infinite;
        }

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

        .cta-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.25rem;
            font-weight: 300;
            margin: 0 0 2rem 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff6b6b);
            background-size: 200% 200%;
            color: white;
            text-decoration: none;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: buttonGlow 3s ease-in-out infinite;
        }

        @keyframes buttonGlow {
            0%, 100% { 
                background-position: 0% 50%;
                box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
            }
            50% { 
                background-position: 100% 50%;
                box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
            }
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6);
            background-position: 100% 50%;
        }

        .cta-button:active {
            transform: translateY(0) scale(1.02);
        }

        .button-icon {
            margin-left: 0.75rem;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .cta-button:hover .button-icon {
            transform: translateX(5px);
        }

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

        .floating-element {
            position: absolute;
            color: rgba(255, 255, 255, 0.2);
            font-size: 2rem;
            animation: floatAround 15s linear infinite;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 5%;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            bottom: 15%;
            right: 10%;
            animation-delay: 6s;
        }

        .floating-element:nth-child(5) {
            top: 50%;
            left: 3%;
            animation-delay: 8s;
        }

        .floating-element:nth-child(6) {
            top: 40%;
            right: 5%;
            animation-delay: 10s;
        }

        @keyframes floatAround {
            0% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
            25% { transform: translateY(-20px) rotate(90deg); opacity: 0.4; }
            50% { transform: translateY(-10px) rotate(180deg); opacity: 0.2; }
            75% { transform: translateY(-30px) rotate(270deg); opacity: 0.3; }
            100% { transform: translateY(0px) rotate(360deg); opacity: 0.2; }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .holidays-cta-section {
                padding: 3rem 1rem;
                min-height: 350px;
            }

            .cta-title {
                font-size: 2.5rem;
            }

            .cta-content {
                padding: 2.5rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .holidays-cta-section {
                padding: 2rem 1rem;
                min-height: 300px;
            }

            .cta-content {
                padding: 2rem 1rem;
                border-radius: 20px;
            }

            .cta-icon {
                font-size: 3rem;
            }

            .cta-title {
                font-size: 2rem;
                margin-bottom: 0.75rem;
            }

            .cta-subtitle {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }

            .cta-button {
                padding: 1rem 2rem;
                font-size: 1rem;
                letter-spacing: 0.5px;
            }

            .floating-element {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .holidays-cta-section {
                padding: 1.5rem 0.5rem;
            }

            .cta-content {
                padding: 1.5rem 1rem;
            }

            .cta-title {
                font-size: 1.75rem;
            }

            .cta-subtitle {
                font-size: 1rem;
            }

            .cta-button {
                padding: 0.875rem 1.5rem;
                font-size: 0.9rem;
            }

            .floating-element {
                font-size: 1.2rem;
            }
        }

        /* Large screen enhancements */
        @media (min-width: 1400px) {
            .holidays-cta-section {
                padding: 5rem 2rem;
                min-height: 500px;
            }

            .cta-content {
                padding: 4rem 3rem;
            }

            .cta-icon {
                font-size: 5rem;
            }

            .cta-title {
                font-size: 3.5rem;
            }

            .cta-subtitle {
                font-size: 1.4rem;
            }

            .cta-button {
                padding: 1.5rem 3rem;
                font-size: 1.3rem;
            }

            .floating-element {
                font-size: 2.5rem;
            }
        }

        /* High-end large screens */
        @media (min-width: 1800px) {
            .holidays-cta-section {
                padding: 6rem 2rem;
                min-height: 600px;
            }

            .cta-title {
                font-size: 4rem;
            }

            .cta-subtitle {
                font-size: 1.6rem;
            }

            .cta-button {
                padding: 1.75rem 3.5rem;
                font-size: 1.4rem;
            }
        }