.hero-video {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

.video-dot {
    transition: all 0.3s ease;
}

.active-dot {
    width: 30px;
    border-radius: 9999px;
    background: #22d3ee;
}

.cf-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    outline: none;
}

.cf-input:focus {
    border-color: #22d3ee;
    box-shadow: 0 0 0 2px rgba(34,211,238,0.2);
}

.cf-textarea {
    width: 100%;
    min-height: 140px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    outline: none;
}

.cf-textarea:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 2px rgba(168,85,247,0.2);
}

.cf-button {
    background: linear-gradient(to right, #06b6d4, #a855f7);
    color: white;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.cf-button:hover {
    transform: scale(1.05);
}