/* Home Promo Section - Modern Design */
.home-promo-section {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-alt) 100%);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.promo-background-text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 20vw, 25rem);
    font-weight: 900;
    font-style: italic;
    color: rgba(229, 9, 20, 0.2);
    letter-spacing: -10px;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    white-space: normal;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    animation: promoTextPulse 4s ease-in-out infinite;
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@keyframes promoTextPulse {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.01);
    }
}

.promo-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-text-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.promo-main-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1px;
    line-height: 1.2;
    margin: 0;
}

.promo-description {
    color: var(--color-text);
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
}

.promo-description p {
    margin: 0;
}

.promo-services {
    margin-top: var(--spacing-md);
}

.promo-services-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(229, 9, 20, 0.9);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.promo-services-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text);
    font-size: 1rem;
    transition: var(--transition);
}

.promo-services-list li svg {
    color: rgba(229, 9, 20, 0.8);
    flex-shrink: 0;
    transition: var(--transition);
}

.promo-services-list li:hover {
    transform: translateX(5px);
    color: var(--color-primary);
}

.promo-services-list li:hover svg {
    color: var(--color-primary);
    transform: scale(1.1);
}

.promo-contact-info {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    width: 100%;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(26, 26, 26, 0.6);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    flex: 1;
    width: 100%;
}

.contact-box:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2), rgba(229, 9, 20, 0.2));
    border-radius: 12px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Graphics Section */
.promo-graphics {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphics-monitor {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 300px;
    perspective: 1000px;
}

.monitor-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.15), rgba(229, 9, 20, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(229, 9, 20, 0.3);
    padding: var(--spacing-md);
    position: relative;
    transform-style: preserve-3d;
    animation: monitorFloat 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(229, 9, 20, 0.3);
}

@keyframes monitorFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}

.screen-content {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: var(--spacing-sm);
}

.screen-image-placeholder {
    width: 100%;
    height: 80px;
    background: rgba(229, 9, 20, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(229, 9, 20, 0.6);
}

.screen-color-wheel {
    display: flex;
    gap: 2px;
    height: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.color-segment {
    flex: 1;
    height: 100%;
}

.screen-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.timeline-controls {
    display: flex;
    gap: var(--spacing-xs);
}

.control-btn {
    width: 20px;
    height: 20px;
    background: rgba(229, 9, 20, 0.3);
    border-radius: 4px;
}

.timeline-waves {
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 40px;
}

.wave {
    height: 8px;
    border-radius: 4px;
    animation: waveAnimation 2s ease-in-out infinite;
}

.wave-green {
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.4), rgba(0, 255, 0, 0.6));
}

.wave-purple {
    background: linear-gradient(90deg, rgba(229, 9, 20, 0.4), rgba(229, 9, 20, 0.6));
}

@keyframes waveAnimation {
    0%, 100% {
        width: 60%;
    }
    50% {
        width: 100%;
    }
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(229, 9, 20, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(229, 9, 20, 0.6);
    border: 1px solid rgba(229, 9, 20, 0.3);
    backdrop-filter: blur(10px);
    animation: iconFloat 4s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: -5%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 10%;
    right: -10%;
    animation-delay: 3s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .promo-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .promo-graphics {
        height: 400px;
    }
    
    .floating-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-promo-section {
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }
    
    .promo-graphics {
        height: 300px;
    }
    
    .graphics-monitor {
        max-width: 300px;
        height: 200px;
    }
    
    .promo-contact-info {
        flex-direction: column;
    }
}
