/* Customization Promo Section */
.customization-promo {
    position: relative;
    height: 100vh;
   /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #327baf 0%, #7e3333 100%
100%
);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.customization-promo:hover {
    background: linear-gradient(135deg, #764ba2 0%, #7e3333 100%);
    transform: scale(1.02);
}

.customization-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.promo-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

/* Promo Content */
.promo-content {
    margin-bottom: 80px;
}

.promo-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.title-word {
    opacity: 0;
    transform: translateY(50px);
    animation: titleReveal 0.8s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Floating Words */
.floating-words-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-word {
    position: absolute;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    animation: floatAcross 15s linear infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
    user-select: none;
}

.floating-word:nth-child(odd) {
    animation-duration: 20s;
    animation-delay: -5s;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
}

.floating-word:nth-child(3n) {
    animation-duration: 25s;
    animation-delay: -10s;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.floating-word:nth-child(4n) {
    animation-duration: 18s;
    animation-delay: -2s;
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.08);
}

@keyframes floatAcross {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

/* CTA Button */
.promo-cta {
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.promo-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ctaPulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 120%;
        height: 140%;
        opacity: 0;
    }
}

.cta-text {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-word {
        font-size: 2.5rem;
    }
    
    .floating-word:nth-child(odd) {
        font-size: 3rem;
    }
    
    .floating-word:nth-child(4n) {
        font-size: 3.5rem;
    }
    
    .promo-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .promo-title {
        font-size: 2rem;
    }
    
    .promo-subtitle {
        font-size: 1.1rem;
    }
    
    .floating-word {
        font-size: 2rem;
    }
}
