/* Component: iptv-contact-premium.css */

.iptv-adv {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: var(--iptv-adv-pad-x, 18px);
    padding-right: var(--iptv-adv-pad-x, 18px);
    padding-top: var(--iptv-adv-pad-y, 40px);
    padding-bottom: var(--iptv-adv-pad-y, 40px);
    overflow-x: clip;
    font-family: 'Outfit', sans-serif;
    background-color: #f8fafc;
}

.iptv-adv__inner {
    width: 100%;
    max-width: var(--iptv-adv-inner-max, 1200px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

/* Card Setup (Left Side) */
.iptv-adv__card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 20px 40px -5px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.iptv-adv__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
}

.iptv-adv__pretitle {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.iptv-adv__title {
    font-size: 1.8rem;
    font-weight: 950;
    color: #0f172a;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.iptv-adv__desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.iptv-adv__pills {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.iptv-adv__pills::-webkit-scrollbar {
    display: none;
}

.iptv-adv__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 30px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.iptv-adv__pill:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #0f172a;
}

.iptv-adv__pill-icon {
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* Form Styles */
.iptv-adv__form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.iptv-adv__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.iptv-adv__field.full-width {
    grid-column: 1 / -1;
}

.iptv-adv__label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
}

.iptv-adv__input,
.iptv-adv__textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.95rem;
    font-family: inherit;
    color: #0f172a;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
}

.iptv-adv__textarea {
    min-height: 120px;
    resize: vertical;
}

.iptv-adv__input:focus,
.iptv-adv__textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.iptv-adv__consent {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
    cursor: pointer;
}

.iptv-adv__consent input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #1e3a8a;
    flex-shrink: 0;
}

.iptv-adv__consent-text {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    font-weight: 600;
}

.iptv-adv__submit-wrap {
    grid-column: 1 / -1;
    margin-top: 5px;
}

.iptv-adv__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.iptv-adv__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
}

.iptv-adv__card-footer {
    grid-column: 1 / -1;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
    line-height: 1.6;
}

.iptv-adv__card-footer strong {
    color: #0f172a;
}

.iptv-adv__card-footer a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 800;
}

/* Right Side (Info area) */
.iptv-adv__info {
    padding-left: 0;
    display: flex;
    flex-direction: column;
}

.iptv-adv__info-title {
    font-size: 1.8rem;
    font-weight: 950;
    color: #1e3a8a;
    line-height: 1.25;
    margin: 0 0 15px 0;
    letter-spacing: -0.02em;
}

.iptv-adv__info-title em,
.iptv-adv__info-title i {
    font-style: italic;
    color: #0f172a;
}

.iptv-adv__divider {
    display: flex;
    margin-bottom: 25px;
}

.iptv-adv__divider span {
    height: 4px;
    display: inline-block;
}

.iptv-adv__div-blue {
    background: #1e3a8a;
    width: 40px;
    border-radius: 2px 0 0 2px;
}

.iptv-adv__div-red {
    background: #ef4444;
    width: 40px;
    border-radius: 0 2px 2px 0;
}

.iptv-adv__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.iptv-adv__card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.iptv-adv__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1.4;
}

.iptv-adv__feature-text {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.5;
}

.iptv-adv__feature-title {
    font-weight: 800;
    color: #0f172a;
    font-size: 1rem;
    display: inline;
}

.iptv-adv__feature-desc {
    display: inline;
    font-weight: 700;
}

.iptv-adv__highlight-box {
    background: #f1f5f9;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.iptv-adv__highlight-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.iptv-adv__info-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.iptv-adv__footer-line {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .iptv-adv__card {
        padding: 40px;
    }

    .iptv-adv__form {
        grid-template-columns: 1fr 1fr;
    }

    .iptv-adv__title {
        font-size: 2.25rem;
    }

    .iptv-adv__info-title {
        font-size: 2.1rem;
    }

    .iptv-adv__submit {
        width: auto;
    }

    .iptv-adv__card-footer {
        text-align: left;
    }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    .iptv-adv__inner {
        flex-direction: row;
        display: grid;
        grid-template-columns: 1fr 0.8fr;
        gap: 60px;
        align-items: flex-start;
    }

    .iptv-adv__card {
        padding: 50px;
    }

    .iptv-adv__info {
        padding-left: 20px;
    }
}

/* Success Feedback Animation */
@keyframes successPop {
    0% {
        transform: scale(0.9) translateY(10px);
        opacity: 0;
    }

    50% {
        transform: scale(1.02) translateY(-2px);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.iptv-adv__feedback.success-anim {
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

/* Form Feedback Styles */
.iptv-adv__feedback {
    display: none;
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.iptv-adv__feedback--success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #10b981;
}

.iptv-adv__feedback--error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.iptv-adv__feedback-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.iptv-adv__feedback-icon {
    flex-shrink: 0;
}