/* =========================================================
   IPTV SUPPORT FORM V4 PREMIUM
========================================================= */

body .iptv-support-card {
    max-width: 880px;
    margin: 60px auto;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 60, 255, 0.08);
}

body .iptv-header {
    position: relative;
    overflow: hidden;
    padding: 50px 30px;
    background: linear-gradient(135deg,#003cff,#2f7fff);
    color: #fff;
    text-align: center;
}

body .iptv-header::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
    animation: glowMove 6s linear infinite;
}

body .iptv-header h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #fff;
}

body .iptv-header p {
    position: relative;
    z-index: 1;
    margin: 0;
    opacity: 0.95;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
}

@keyframes glowMove {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body .iptv-steps {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px 0 10px;
}

body .step {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e4e9ff;
    color: #567;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all .25s ease;
}

body .step.active {
    background: #2f6cff;
    color: #fff;
    box-shadow: 0 10px 24px rgba(47,108,255,0.25);
}

body .step.active::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(47,108,255,0.15);
    border-radius: 50%;
    z-index: -1;
}

body .iptv-support-form {
    padding: 28px;
}

body .iptv-step {
    display: none;
    background: #fff;
    border: 1px solid rgba(0, 60, 255, 0.06);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 60, 255, 0.05);
}

body .iptv-step.active {
    display: block;
}

body .iptv-step h3 {
    margin: 0 0 18px;
    font-size: 22px;
    color: #13213f;
}

body #iptvForm input,
body #iptvForm select,
body #iptvForm textarea {
    width: 100%;
    margin: 10px 0;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #dbe5ff;
    background: #fff;
    font-size: 15px;
    color: #1a2440;
    box-sizing: border-box;
    box-shadow: 0 6px 18px rgba(0,60,255,0.04);
    transition: all .25s ease;
}

body #iptvForm input:hover,
body #iptvForm select:hover,
body #iptvForm textarea:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0,60,255,0.08);
}

body #iptvForm input:focus,
body #iptvForm select:focus,
body #iptvForm textarea:focus {
    border-color: #2f6cff;
    box-shadow: 0 0 0 4px rgba(47,108,255,0.08);
    outline: none;
}

body #iptvForm input:focus,
body #iptvForm textarea:focus {
    transform: scale(1.01);
}

body #iptvForm textarea {
    min-height: 160px;
    resize: vertical;
}

body #iptv_url {
    border: 2px solid #2f6cff;
    background: #f7faff;
}

body .iptv-help-text {
    margin-top: 8px;
    background: #eef4ff;
    color: #21409a;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.6;
    border-left: 4px solid #2f6cff;
    font-weight: 500;
}

body .next,
body .prev {
    padding: 14px 18px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-top: 16px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s ease;
}

body .next {
    background: #2f6cff;
    color: #fff;
    box-shadow: 0 12px 24px rgba(47,108,255,0.18);
}

body .next:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,60,255,0.25);
}

body .prev {
    background: #eef1f7;
    color: #2b3550;
    margin-right: 10px;
}

body .prev:hover {
    background: #dde3ff;
}

body .iptv-submit-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#003cff,#2f7fff);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 18px;
    width: 100%;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 20px 40px rgba(0,60,255,0.20);
    cursor: pointer;
}

body .iptv-submit-btn::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 100%;
    left: -10%;
    top: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
}

body .iptv-submit-btn:hover::after {
    animation: shine 0.8s;
}

@keyframes shine {
    100% { transform: translateX(100%); }
}

body .iptv-ticket-notice {
    max-width: 880px;
    margin: 20px auto;
    padding: 18px 20px;
    border-radius: 18px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

body .iptv-ticket-success {
    background: linear-gradient(135deg, #def6e5, #eefdf2);
    color: #166534;
    border: 1px solid #bfe8cb;
}

body .iptv-ticket-error {
    background: linear-gradient(135deg, #fde7ea, #fff4f5);
    color: #a61b2b;
    border: 1px solid #f2c7ce;
}

body .iptv-hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    body .iptv-support-card {
        margin: 20px 12px;
        border-radius: 22px;
    }

    body .iptv-header {
        padding: 34px 18px;
    }

    body .iptv-header h2 {
        font-size: 24px;
    }

    body .iptv-header p {
        font-size: 14px;
    }

    body .iptv-support-form {
        padding: 16px;
    }

    body .iptv-step {
        padding: 18px;
        transform: none;
    }

    body .iptv-step h3 {
        font-size: 20px;
    }

    body .step {
        width: 36px;
        height: 36px;
    }
}
