/**
 * TP4R Video Banners CSS
 * Uses CSS Variables for customizable colors
 */

/* ========================================
   סגנון 1: אלגנטי קלאסי
======================================== */
.tp4r-banner-1 {
    width: 100%;
    background: linear-gradient(180deg, var(--tp4r-bg-1) 0%, var(--tp4r-bg-2) 50%, var(--tp4r-bg-1) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tp4r-banner-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--tp4r-color-primary) 20%, var(--tp4r-color-primary) 80%, transparent 100%);
}

.tp4r-banner-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--tp4r-color-primary) 20%, var(--tp4r-color-primary) 80%, transparent 100%);
}

.tp4r-banner-1 .tp4r-corner-ornament {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.2;
    border: 1px solid var(--tp4r-color-primary);
    border-radius: 50%;
}

.tp4r-banner-1 .tp4r-corner-ornament.tp4r-top-right {
    top: 20px;
    right: 20px;
}

.tp4r-banner-1 .tp4r-corner-ornament.tp4r-top-left {
    top: 20px;
    left: 20px;
}

.tp4r-banner-1 .tp4r-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.tp4r-banner-1 .tp4r-content {
    flex: 1;
    text-align: center;
}

.tp4r-banner-1 .tp4r-subtitle {
    font-size: 0.85rem;
    color: var(--tp4r-color-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.tp4r-banner-1 .tp4r-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.tp4r-banner-1 .tp4r-title-wrapper::before,
.tp4r-banner-1 .tp4r-title-wrapper::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tp4r-color-primary);
    font-size: 1.2rem;
}

.tp4r-banner-1 .tp4r-title-wrapper::before {
    right: -40px;
}

.tp4r-banner-1 .tp4r-title-wrapper::after {
    left: -40px;
}

.tp4r-banner-1 .tp4r-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.tp4r-banner-1 .tp4r-decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tp4r-banner-1 .tp4r-decorative-line span {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tp4r-color-primary));
}

.tp4r-banner-1 .tp4r-decorative-line span:last-child {
    background: linear-gradient(90deg, var(--tp4r-color-primary), transparent);
}

.tp4r-banner-1 .tp4r-decorative-line .tp4r-diamond {
    width: 8px;
    height: 8px;
    background: var(--tp4r-color-primary);
    transform: rotate(45deg);
}

.tp4r-banner-1 .tp4r-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    max-width: 500px;
    margin: 0 auto;
}

.tp4r-banner-1 .tp4r-video-side {
    flex: 1.3;
    position: relative;
}

.tp4r-banner-1 .tp4r-video-frame {
    position: relative;
    border: 2px solid var(--tp4r-color-primary);
    padding: 15px;
    background: var(--tp4r-bg-1);
}

.tp4r-banner-1 .tp4r-video-frame::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    border: 1px solid rgba(var(--tp4r-color-primary-rgb), 0.3);
}

.tp4r-banner-1 .tp4r-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.tp4r-banner-1 .tp4r-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   סגנון 2: מודרני כהה יוקרתי
======================================== */
.tp4r-banner-2 {
    width: 100%;
    background: linear-gradient(135deg, rgba(var(--tp4r-bg-dark-rgb), 0.95) 0%, var(--tp4r-bg-dark) 50%, rgba(var(--tp4r-bg-dark-rgb), 0.95) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tp4r-banner-2 .tp4r-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(var(--tp4r-color-primary-rgb), 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(var(--tp4r-color-primary-rgb), 0.05) 0%, transparent 50%);
}

.tp4r-banner-2 .tp4r-gold-line-top,
.tp4r-banner-2 .tp4r-gold-line-bottom {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tp4r-color-primary) 30%, var(--tp4r-color-primary) 70%, transparent);
}

.tp4r-banner-2 .tp4r-gold-line-top {
    top: 30px;
}

.tp4r-banner-2 .tp4r-gold-line-bottom {
    bottom: 30px;
}

.tp4r-banner-2 .tp4r-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.tp4r-banner-2 .tp4r-header {
    text-align: center;
    margin-bottom: 50px;
}

.tp4r-banner-2 .tp4r-subtitle {
    font-size: 0.8rem;
    color: var(--tp4r-color-primary);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 400;
}

.tp4r-banner-2 .tp4r-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.tp4r-banner-2 .tp4r-title strong {
    font-weight: 700;
    color: var(--tp4r-color-primary);
}

.tp4r-banner-2 .tp4r-title span {
    color: var(--tp4r-color-primary);
}

.tp4r-banner-2 .tp4r-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.tp4r-banner-2 .tp4r-ornament .tp4r-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--tp4r-color-primary-rgb), 0.5));
}

.tp4r-banner-2 .tp4r-ornament .tp4r-line:last-child {
    background: linear-gradient(90deg, rgba(var(--tp4r-color-primary-rgb), 0.5), transparent);
}

.tp4r-banner-2 .tp4r-ornament .tp4r-star {
    color: var(--tp4r-color-primary);
    font-size: 0.6rem;
}

.tp4r-banner-2 .tp4r-description {
    font-size: 1.1rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.tp4r-banner-2 .tp4r-video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.tp4r-banner-2 .tp4r-video-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, rgba(var(--tp4r-color-primary-rgb), 0.15), transparent, rgba(var(--tp4r-color-primary-rgb), 0.15));
    filter: blur(20px);
}

.tp4r-banner-2 .tp4r-video-border {
    position: relative;
    padding: 3px;
    background: linear-gradient(135deg, var(--tp4r-color-primary), var(--tp4r-color-primary-dark), var(--tp4r-color-primary));
}

.tp4r-banner-2 .tp4r-video-inner {
    background: rgba(var(--tp4r-bg-dark-rgb), 0.9);
    padding: 10px;
}

.tp4r-banner-2 .tp4r-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.tp4r-banner-2 .tp4r-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   סגנון 3: רך ורומנטי
======================================== */
.tp4r-banner-3 {
    width: 100%;
    background: linear-gradient(180deg, var(--tp4r-bg-1) 0%, var(--tp4r-bg-2) 50%, var(--tp4r-bg-1) 100%);
    padding: 90px 0;
    position: relative;
}

.tp4r-banner-3 .tp4r-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.tp4r-banner-3 .tp4r-float-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(var(--tp4r-color-primary-rgb), 0.15);
}

.tp4r-banner-3 .tp4r-float-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 5%;
}

.tp4r-banner-3 .tp4r-float-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
}

.tp4r-banner-3 .tp4r-float-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 3%;
    border-color: rgba(var(--tp4r-color-primary-rgb), 0.1);
}

.tp4r-banner-3 .tp4r-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 1;
}

.tp4r-banner-3 .tp4r-video-side {
    flex: 1.4;
    position: relative;
}

.tp4r-banner-3 .tp4r-video-card {
    position: relative;
    background: var(--tp4r-bg-1);
    border-radius: 30px;
    padding: 20px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.05);
}

.tp4r-banner-3 .tp4r-video-card::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid rgba(var(--tp4r-color-primary-rgb), 0.2);
    border-radius: 22px;
    pointer-events: none;
}

.tp4r-banner-3 .tp4r-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 18px;
    overflow: hidden;
}

.tp4r-banner-3 .tp4r-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tp4r-banner-3 .tp4r-content {
    flex: 1;
}

.tp4r-banner-3 .tp4r-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--tp4r-color-primary), var(--tp4r-color-primary-light));
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(var(--tp4r-color-primary-rgb), 0.3);
}

.tp4r-banner-3 .tp4r-badge::before {
    content: '★';
    font-size: 0.65rem;
}

.tp4r-banner-3 .tp4r-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.tp4r-banner-3 .tp4r-title span {
    color: var(--tp4r-color-primary);
    position: relative;
}

.tp4r-banner-3 .tp4r-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(var(--tp4r-color-primary-rgb), 0.2);
    z-index: -1;
}

.tp4r-banner-3 .tp4r-leaf-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tp4r-banner-3 .tp4r-leaf-divider .tp4r-leaf {
    font-size: 1.2rem;
    color: var(--tp4r-color-primary);
}

.tp4r-banner-3 .tp4r-leaf-divider .tp4r-dots {
    display: flex;
    gap: 8px;
}

.tp4r-banner-3 .tp4r-leaf-divider .tp4r-dots span {
    width: 5px;
    height: 5px;
    background: var(--tp4r-color-primary);
    border-radius: 50%;
    opacity: 0.5;
}

.tp4r-banner-3 .tp4r-leaf-divider .tp4r-dots span:nth-child(2) {
    opacity: 0.7;
}

.tp4r-banner-3 .tp4r-leaf-divider .tp4r-dots span:nth-child(3) {
    opacity: 1;
}

.tp4r-banner-3 .tp4r-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
}

/* ========================================
    סגנון 7: גלריה מפוצלת
======================================== */
.tp4r-banner-7 {
    width: 100%;
    min-height: 650px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.tp4r-banner-7 .tp4r-split-left {
    flex: 1;
    background: linear-gradient(135deg, var(--tp4r-bg-dark) 0%, rgba(var(--tp4r-bg-dark-rgb), 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.tp4r-banner-7 .tp4r-split-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(var(--tp4r-color-primary-rgb), 0.03) 0%, transparent 50%);
}

.tp4r-banner-7 .tp4r-content-box {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 450px;
}

.tp4r-banner-7 .tp4r-crown-icon {
    margin-bottom: 25px;
    color: var(--tp4r-color-primary);
    font-size: 2.5rem;
}

.tp4r-banner-7 .tp4r-subtitle {
    font-size: 0.75rem;
    color: var(--tp4r-color-primary);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tp4r-banner-7 .tp4r-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.tp4r-banner-7 .tp4r-title span {
    color: var(--tp4r-color-primary);
}

.tp4r-banner-7 .tp4r-ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tp4r-banner-7 .tp4r-ornament-line .tp4r-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tp4r-color-primary));
}

.tp4r-banner-7 .tp4r-ornament-line .tp4r-line:last-child {
    background: linear-gradient(90deg, var(--tp4r-color-primary), transparent);
}

.tp4r-banner-7 .tp4r-ornament-line .tp4r-star {
    color: var(--tp4r-color-primary);
    font-size: 0.8rem;
}

.tp4r-banner-7 .tp4r-description {
    font-size: 1rem;
    color: #999;
    line-height: 1.9;
}

.tp4r-banner-7 .tp4r-split-right {
    flex: 1.2;
    position: relative;
}

.tp4r-banner-7 .tp4r-video-full {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tp4r-banner-7 .tp4r-video-full iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp4r-banner-7 .tp4r-gold-strip {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 5px;
    background: linear-gradient(180deg, transparent, var(--tp4r-color-primary) 20%, var(--tp4r-color-primary) 80%, transparent);
    z-index: 2;
}

/* ========================================
    סגנון 8: כרטיס צף מרכזי
======================================== */
.tp4r-banner-8 {
    width: 100%;
    background: linear-gradient(180deg, var(--tp4r-bg-1) 0%, var(--tp4r-bg-2) 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.tp4r-banner-8 .tp4r-bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.tp4r-banner-8 .tp4r-bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(var(--tp4r-color-primary-rgb), 0.1);
}

.tp4r-banner-8 .tp4r-bg-circle:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

.tp4r-banner-8 .tp4r-bg-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

.tp4r-banner-8 .tp4r-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tp4r-banner-8 .tp4r-floating-card {
    background: var(--tp4r-bg-1);
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
}

.tp4r-banner-8 .tp4r-floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tp4r-color-primary), var(--tp4r-color-primary-light), var(--tp4r-color-primary));
}

.tp4r-banner-8 .tp4r-card-inner {
    display: flex;
}

.tp4r-banner-8 .tp4r-video-section {
    flex: 1.4;
    position: relative;
}

.tp4r-banner-8 .tp4r-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.tp4r-banner-8 .tp4r-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tp4r-banner-8 .tp4r-content-section {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(var(--tp4r-color-primary-rgb), 0.2);
}

.tp4r-banner-8 .tp4r-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tp4r-bg-dark);
    color: var(--tp4r-color-primary);
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    width: fit-content;
}

.tp4r-banner-8 .tp4r-badge::before {
    content: '★';
}

.tp4r-banner-8 .tp4r-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.tp4r-banner-8 .tp4r-title span {
    color: var(--tp4r-color-primary);
}

.tp4r-banner-8 .tp4r-gold-underline {
    display: inline;
    background: linear-gradient(180deg, transparent 60%, rgba(var(--tp4r-color-primary-rgb), 0.3) 60%);
}

.tp4r-banner-8 .tp4r-separator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tp4r-banner-8 .tp4r-separator .tp4r-dot {
    width: 6px;
    height: 6px;
    background: var(--tp4r-color-primary);
    border-radius: 50%;
}

.tp4r-banner-8 .tp4r-separator .tp4r-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--tp4r-color-primary), transparent);
}

.tp4r-banner-8 .tp4r-description {
    font-size: 1rem;
    color: #777;
    line-height: 1.8;
}

/* ========================================
    סגנון 5: פרימיום עם מסגרת
======================================== */
.tp4r-banner-5 {
    width: 100%;
    background: linear-gradient(180deg, var(--tp4r-bg-1) 0%, var(--tp4r-bg-2) 100%);
    padding: 100px 40px;
    position: relative;
}

.tp4r-banner-5 .tp4r-outer-frame {
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid var(--tp4r-color-primary);
    padding: 60px;
    position: relative;
}

.tp4r-banner-5 .tp4r-outer-frame::before,
.tp4r-banner-5 .tp4r-outer-frame::after {
    content: '✿';
    position: absolute;
    font-size: 1.5rem;
    color: var(--tp4r-color-primary);
    background: var(--tp4r-bg-1);
    padding: 5px 15px;
}

.tp4r-banner-5 .tp4r-outer-frame::before {
    top: -18px;
    right: 50px;
}

.tp4r-banner-5 .tp4r-outer-frame::after {
    bottom: -18px;
    left: 50px;
}

.tp4r-banner-5 .tp4r-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--tp4r-color-primary);
    border-style: solid;
}

.tp4r-banner-5 .tp4r-corner.tp4r-tl {
    top: 15px;
    right: 15px;
    border-width: 2px 2px 0 0;
}

.tp4r-banner-5 .tp4r-corner.tp4r-tr {
    top: 15px;
    left: 15px;
    border-width: 2px 0 0 2px;
}

.tp4r-banner-5 .tp4r-corner.tp4r-bl {
    bottom: 15px;
    right: 15px;
    border-width: 0 2px 2px 0;
}

.tp4r-banner-5 .tp4r-corner.tp4r-br {
    bottom: 15px;
    left: 15px;
    border-width: 0 0 2px 2px;
}

.tp4r-banner-5 .tp4r-content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.tp4r-banner-5 .tp4r-content {
    flex: 1;
    text-align: center;
}

.tp4r-banner-5 .tp4r-luxury-icon {
    margin-bottom: 25px;
    font-size: 3.5rem;
    color: var(--tp4r-color-primary);
}

.tp4r-banner-5 .tp4r-luxury-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--tp4r-color-primary);
}

.tp4r-banner-5 .tp4r-pre-title {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tp4r-banner-5 .tp4r-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.tp4r-banner-5 .tp4r-title span {
    color: var(--tp4r-color-primary);
}

.tp4r-banner-5 .tp4r-elegant-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tp4r-banner-5 .tp4r-elegant-line .tp4r-line {
    width: 60px;
    height: 1px;
    background: var(--tp4r-color-primary);
}

.tp4r-banner-5 .tp4r-elegant-line .tp4r-circle {
    width: 10px;
    height: 10px;
    border: 1px solid var(--tp4r-color-primary);
    border-radius: 50%;
    position: relative;
}

.tp4r-banner-5 .tp4r-elegant-line .tp4r-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--tp4r-color-primary);
    border-radius: 50%;
}

.tp4r-banner-5 .tp4r-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.9;
    max-width: 450px;
    margin: 0 auto;
}

.tp4r-banner-5 .tp4r-video-side {
    flex: 1.3;
}

.tp4r-banner-5 .tp4r-video-elegant {
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.tp4r-banner-5 .tp4r-video-elegant::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    border: 1px solid rgba(var(--tp4r-color-primary-rgb), 0.3);
}

.tp4r-banner-5 .tp4r-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.tp4r-banner-5 .tp4r-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
    סגנון 10: אסימטרי מודרני
======================================== */
.tp4r-banner-10 {
    width: 100%;
    background: var(--tp4r-bg-1);
    padding: 80px 0;
    position: relative;
}

.tp4r-banner-10 .tp4r-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.tp4r-banner-10 .tp4r-content-side {
    padding-left: 40px;
}

.tp4r-banner-10 .tp4r-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(var(--tp4r-color-primary-rgb), 0.1);
    line-height: 1;
    margin-bottom: -30px;
    position: relative;
    z-index: 0;
}

.tp4r-banner-10 .tp4r-subtitle {
    font-size: 0.8rem;
    color: var(--tp4r-color-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.tp4r-banner-10 .tp4r-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.tp4r-banner-10 .tp4r-title span {
    color: var(--tp4r-color-primary);
}

.tp4r-banner-10 .tp4r-accent-box {
    display: inline-block;
    background: var(--tp4r-bg-dark);
    color: var(--tp4r-color-primary);
    padding: 5px 15px;
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.tp4r-banner-10 .tp4r-elegant-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.tp4r-banner-10 .tp4r-elegant-divider .tp4r-line {
    width: 60px;
    height: 1px;
    background: var(--tp4r-color-primary);
}

.tp4r-banner-10 .tp4r-elegant-divider .tp4r-icon {
    color: var(--tp4r-color-primary);
    font-size: 1rem;
}

.tp4r-banner-10 .tp4r-description {
    font-size: 1rem;
    color: #777;
    line-height: 1.9;
    max-width: 400px;
}

.tp4r-banner-10 .tp4r-video-side {
    position: relative;
}

.tp4r-banner-10 .tp4r-video-frame {
    position: relative;
    background: var(--tp4r-bg-dark);
    padding: 20px;
}

.tp4r-banner-10 .tp4r-video-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--tp4r-color-primary);
    border-right: 3px solid var(--tp4r-color-primary);
}

.tp4r-banner-10 .tp4r-video-frame::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-bottom: 3px solid var(--tp4r-color-primary);
    border-left: 3px solid var(--tp4r-color-primary);
}

.tp4r-banner-10 .tp4r-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.tp4r-banner-10 .tp4r-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
    סגנון 12: מסגרת פנימית מעוצבת
======================================== */
.tp4r-banner-12 {
    width: 100%;
    background: var(--tp4r-bg-2);
    padding: 60px;
}

.tp4r-banner-12 .tp4r-outer-border {
    border: 1px solid #1a1a1a;
    padding: 40px;
    position: relative;
}

.tp4r-banner-12 .tp4r-corner-decor {
    position: absolute;
    width: 20px;
    height: 20px;
}

.tp4r-banner-12 .tp4r-corner-decor.tp4r-tl {
    top: 10px;
    right: 10px;
    border-top: 2px solid var(--tp4r-color-primary);
    border-right: 2px solid var(--tp4r-color-primary);
}

.tp4r-banner-12 .tp4r-corner-decor.tp4r-tr {
    top: 10px;
    left: 10px;
    border-top: 2px solid var(--tp4r-color-primary);
    border-left: 2px solid var(--tp4r-color-primary);
}

.tp4r-banner-12 .tp4r-corner-decor.tp4r-bl {
    bottom: 10px;
    right: 10px;
    border-bottom: 2px solid var(--tp4r-color-primary);
    border-right: 2px solid var(--tp4r-color-primary);
}

.tp4r-banner-12 .tp4r-corner-decor.tp4r-br {
    bottom: 10px;
    left: 10px;
    border-bottom: 2px solid var(--tp4r-color-primary);
    border-left: 2px solid var(--tp4r-color-primary);
}

.tp4r-banner-12 .tp4r-inner-content {
    background: var(--tp4r-bg-1);
    display: flex;
    overflow: hidden;
}

.tp4r-banner-12 .tp4r-video-part {
    flex: 1.3;
}

.tp4r-banner-12 .tp4r-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.tp4r-banner-12 .tp4r-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tp4r-banner-12 .tp4r-text-part {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--tp4r-bg-1) 0%, var(--tp4r-bg-2) 100%);
    position: relative;
}

.tp4r-banner-12 .tp4r-text-part::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--tp4r-color-primary), transparent);
}

.tp4r-banner-12 .tp4r-sparkle {
    color: var(--tp4r-color-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tp4r-banner-12 .tp4r-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.tp4r-banner-12 .tp4r-title .tp4r-highlight {
    position: relative;
    display: inline-block;
}

.tp4r-banner-12 .tp4r-title span {
    color: var(--tp4r-color-primary);
}

.tp4r-banner-12 .tp4r-title .tp4r-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(var(--tp4r-color-primary-rgb), 0.25);
    z-index: -1;
}

.tp4r-banner-12 .tp4r-fancy-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.tp4r-banner-12 .tp4r-fancy-divider .tp4r-circle {
    width: 8px;
    height: 8px;
    border: 1px solid var(--tp4r-color-primary);
    border-radius: 50%;
}

.tp4r-banner-12 .tp4r-fancy-divider .tp4r-line {
    width: 50px;
    height: 1px;
    background: var(--tp4r-color-primary);
}

.tp4r-banner-12 .tp4r-fancy-divider .tp4r-circle.tp4r-filled {
    background: var(--tp4r-color-primary);
}

.tp4r-banner-12 .tp4r-description {
    font-size: 1rem;
    color: #777;
    line-height: 1.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .tp4r-banner-1 .tp4r-container,
    .tp4r-banner-3 .tp4r-container,
    .tp4r-banner-5 .tp4r-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .tp4r-banner-7 {
        flex-direction: column;
        min-height: auto;
    }

    .tp4r-banner-7 .tp4r-split-left {
        padding: 60px 40px;
    }

    .tp4r-banner-7 .tp4r-split-right {
        position: relative;
        height: 400px;
    }

    .tp4r-banner-7 .tp4r-gold-strip {
        display: none;
    }

    .tp4r-banner-8 .tp4r-card-inner,
    .tp4r-banner-10 .tp4r-container,
    .tp4r-banner-12 .tp4r-inner-content {
        flex-direction: column;
    }

    .tp4r-banner-8 .tp4r-content-section {
        border-right: none;
        border-top: 1px solid rgba(var(--tp4r-color-primary-rgb), 0.2);
    }

    .tp4r-banner-10 .tp4r-container {
        grid-template-columns: 1fr;
    }

    .tp4r-banner-10 .tp4r-content-side {
        padding-left: 0;
        order: -1;
    }

    .tp4r-banner-12 .tp4r-text-part::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .tp4r-banner-1 .tp4r-title,
    .tp4r-banner-2 .tp4r-title,
    .tp4r-banner-3 .tp4r-title,
    .tp4r-banner-5 .tp4r-title,
    .tp4r-banner-7 .tp4r-title,
    .tp4r-banner-8 .tp4r-title,
    .tp4r-banner-10 .tp4r-title,
    .tp4r-banner-12 .tp4r-title {
        font-size: 2rem;
    }

    .tp4r-banner-8 .tp4r-floating-card {
        border-radius: 20px;
    }

    .tp4r-banner-5 .tp4r-outer-frame {
        padding: 30px;
    }

    .tp4r-banner-12 {
        padding: 30px;
    }

    .tp4r-banner-12 .tp4r-outer-border {
        padding: 20px;
    }

    .tp4r-banner-12 .tp4r-text-part {
        padding: 30px;
    }
}