.sheyda-landing-page {
    --bg-main: #fff;
    --bg-card: #ffffff;
    --text-main: #1f2937;
    --text-muted: #6b7280;

    --purple-main: #5b469b;
    --purple-light: #7052c4;
    --purple-bg: #3D4390;

    --filmnet-red: #D32B4E;
    --brand-accent: #d39076;

    --navy-header: #2d3142;
    --navy-dark: #1e202d;

    --border-color: #e5e7eb;
    --sans: 'IRANSansFaNum', Arial, Tahoma;
}

.sheyda-landing-page * { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.sheyda-landing-page {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--sans);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.sheyda-landing-page .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.sheyda-landing-page [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.sheyda-landing-page [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Rotate Phone Warning Banner ===== */
.sheyda-landing-page .rotate-warning {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 32, 45, 0.95);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 10000;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--brand-accent);
    backdrop-filter: blur(5px);
    white-space: nowrap;
}
.sheyda-landing-page .rotate-warning svg { width: 22px; height: 22px; animation: rotatePhone-sheyda 2s infinite ease-in-out; }
@keyframes rotatePhone-sheyda {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(-90deg); }
    100% { transform: rotate(0deg); }
}

/* ===== Header ===== */
.sheyda-landing-page .header-top {
    background: linear-gradient(135deg, var(--navy-header) 0%, var(--purple-main) 100%);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.sheyda-landing-page .header-top-logo {
    height: 55px;
    width: auto;
}
.sheyda-landing-page .header-top .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.sheyda-unread-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(211, 144, 118, 0.2);
    border: 1px solid rgba(211, 144, 118, 0.5);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    animation: sheyda-badge-pulse 2s infinite;
}
.sheyda-unread-dot {
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
    display: inline-block;
    animation: sheyda-dot-blink 1.2s infinite;
}
@keyframes sheyda-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(211, 144, 118, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(211, 144, 118, 0); }
}
@keyframes sheyda-dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===== Hero Section ===== */
.sheyda-landing-page .hero-section {
    padding: 60px 0 50px;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}
.sheyda-landing-page .main-headline {
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.35;
    color: var(--navy-dark);
    max-width: 1000px;
    margin: 0 auto 36px;
    text-align: center;
}
.sheyda-landing-page .main-headline .filmnet-text {
    color: var(--filmnet-red);
    -webkit-text-fill-color: var(--filmnet-red);
}
.sheyda-landing-page .main-headline .pargar-text {
    color: var(--brand-accent);
    -webkit-text-fill-color: var(--brand-accent);
}
.sheyda-landing-page .main-headline .sheyda-text {
    color: var(--purple-main);
    background: linear-gradient(120deg, var(--purple-main), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sheyda-landing-page .partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.sheyda-landing-page .logo-box {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 18px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sheyda-landing-page .logo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(91, 70, 155, 0.12);
}
.sheyda-landing-page .logo-box img, .sheyda-landing-page .logo-box svg {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
}
.sheyda-landing-page .partners-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-accent);
    flex-shrink: 0;
}

/* ===== Exclusive Statement Row ===== */
.sheyda-landing-page .exclusive-statement-row {
    padding: 50px 0;
    background-color: var(--purple-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #ffffff;
}
.sheyda-landing-page .statement-text {
    font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
}
.sheyda-landing-page .statement-text strong {
    color: var(--brand-accent);
    font-weight: 800;
}

/* ===== Hero Step 2 Banner ===== */
.sheyda-landing-page .hero-step-2 { padding: 30px 0; }
.sheyda-landing-page .hero-card-banner {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.sheyda-landing-page  h2,.sheyda-landing-page  h3 {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 900;
    color: var(--navy-dark);
    margin-bottom: 16px;
}
.sheyda-landing-page .banner-content p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.9;
}

.sheyda-landing-page .banner-img-frame img {
    width: 100%;
    object-fit: contain;
    display: block;
}

/* ===== Offers Section ===== */
.sheyda-landing-page .offer-landing-block {
    padding: 60px 0;
}
.sheyda-landing-page .offer-grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.sheyda-landing-page .offer-grid-content.reverse { direction: ltr; }
.sheyda-landing-page .offer-grid-content.reverse > * { direction: rtl; }
.sheyda-landing-page .offer-visual-card {
    border-radius: 18px;
    overflow: hidden;
}
.sheyda-landing-page .offer-visual-card img {
    width: 100%; display: block;
}
.offer-text-box p{
    color: var(--text-muted);
}
/* ===== Offer Services Table ===== */
.sheyda-landing-page .offer-services-table {
    padding: 60px 0;
    text-align: center;
}
.sheyda-landing-page .offer-services-table .section-title {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 40px;
    text-align: center;
}
.sheyda-landing-page .services-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
}
.sheyda-landing-page .services-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}
.sheyda-landing-page .services-table tbody tr:last-child {
    border-bottom: none;
}
.sheyda-landing-page .service-num {
    width: 60px;
    text-align: center;
    padding: 18px;
    vertical-align: middle;
}
.sheyda-landing-page .service-num span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--purple-main);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.9375rem;
    font-weight: 700;
}
.sheyda-landing-page .service-text {
    padding: 18px 24px;
    text-align: right;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-main);
    vertical-align: middle;
}
@media (max-width: 576px) {
    .sheyda-landing-page .services-table { border-radius: 12px; }
    .sheyda-landing-page .service-num { padding: 14px 8px; }
    .sheyda-landing-page .service-text { padding: 14px 16px; font-size: 0.9375rem; }
    .sheyda-landing-page .service-num span { width: 30px; height: 30px; font-size: 0.8125rem; }
}
/* ===== Customers Section ===== */
.sheyda-landing-page .customers {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
    min-height: 350px;
}
.sheyda-landing-page .customer-row {
    position: absolute;
    left: 50%;
    top: 0;
    white-space: nowrap;
    animation: linear infinite;
    width: max-content;
}
.sheyda-landing-page .customer-row-right {
    transform: translateX(-50%);
    animation-name: streamFromCenterRight;
    animation-duration: 28s;
}
.sheyda-landing-page .customer-row-left {
    top: 150px;
    transform: translateX(-50%);
    animation-name: streamFromCenterLeft;
    animation-duration: 28s;
}
.sheyda-landing-page .customer-row-right:hover,
.sheyda-landing-page .customer-row-left:hover {
    animation-play-state: paused;
}
.sheyda-landing-page .customer-img {
    display: inline-block;
    width: auto;
    height: 144px;
    margin-inline-end: 8px;
    vertical-align: middle;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
    flex-shrink: 0;
}
.sheyda-landing-page .customer-img:last-child {
    margin-inline-end: 0;
}
.sheyda-landing-page .customer-img:hover {
    filter: grayscale(0%);
}
@keyframes streamFromCenterRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
@keyframes streamFromCenterLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(-100%); }
}

/* ===== Portfolio / Video Section ===== */
.sheyda-landing-page .portfolio-section {
    padding: 70px 0;
    background-color: var(--purple-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.sheyda-landing-page .portfolio-section .section-title { color:#fff; }
.sheyda-landing-page .portfolio-section .section-subtitle { color: #fff; }
.sheyda-landing-page .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}
.sheyda-landing-page .video-card {
    background: var(--bg-main);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.sheyda-landing-page .video-card:hover {
    transform: translateY(-6px);
    border-color: var(--purple-main);
    box-shadow: 0 12px 30px rgba(91, 70, 155, 0.12);
}
.sheyda-landing-page .video-thumb {
    width: 100%;
    height: 180px;
    position: relative;
    background-size: cover;
    background-position: center;
}
.sheyda-landing-page .video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 60%);
}
.sheyda-landing-page .play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
}
.sheyda-landing-page .play-btn-overlay svg { width: 26px; height: 26px; display: block; }
.sheyda-landing-page .play-btn-overlay svg path { stroke: #d39076; }
.sheyda-landing-page .video-card:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ffffff;
}
.sheyda-landing-page .video-info {
    padding: 18px;
}
.sheyda-landing-page .video-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple-main);
    background: rgba(91, 70, 155, 0.08);
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid rgba(91, 70, 155, 0.15);
}
.sheyda-landing-page .video-title {
    font-weight: 800;
    font-size: 0.9375rem;
    color: var(--navy-dark);
    margin-bottom: 6px;
}
.sheyda-landing-page .video-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== VOD Capacity Section ===== */
.sheyda-landing-page .vod-capacity-section {
    padding: 70px 0;
    background: #FFF;
}
.sheyda-landing-page .section-title {
    font-size: clamp(1.25rem, 2.2vw, 1.125rem);
    font-weight: 800; color: var(--navy-dark);
    margin-bottom: 8px; text-align: center;
}
.sheyda-landing-page .section-subtitle {
    color: var(--text-muted); font-size: 0.9375rem;
    margin-bottom: 40px; text-align: center;
}
.sheyda-landing-page .vod-shows-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.sheyda-landing-page .show-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
}
.sheyda-landing-page .show-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(91, 70, 155, 0.2);
    border-color: var(--purple-main);
}
.sheyda-landing-page .show-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.sheyda-landing-page .show-card:hover .show-poster { transform: scale(1.05); }
.sheyda-landing-page .show-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 70%, transparent 100%);
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease, transform 0.35s ease;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    z-index: 2;
}
.sheyda-landing-page .show-name {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.sheyda-landing-page .show-card:hover .show-info {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ===== Modals ===== */
.sheyda-landing-page .video-modal, .sheyda-landing-page .image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sheyda-landing-page .video-modal.active, .sheyda-landing-page .image-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.sheyda-landing-page .modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 860px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.sheyda-landing-page .video-modal.active .modal-container { transform: scale(1); }
.sheyda-landing-page .modal-header {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-main);
}
.sheyda-landing-page .modal-title {
    font-weight: 800;
    font-size: 1.0625rem;
    color: var(--navy-dark);
}
.sheyda-landing-page .modal-close {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    padding: 0 !important;
}
.sheyda-landing-page .modal-close:hover {
    background: var(--filmnet-red);
    color: #ffffff;
    border-color: var(--filmnet-red);
}
.sheyda-landing-page .modal-body {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}
.sheyda-landing-page .modal-body iframe, .sheyda-landing-page .modal-body video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.sheyda-landing-page .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.sheyda-landing-page .image-lightbox.active .lightbox-content { transform: scale(1); }
.sheyda-landing-page .lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    object-fit: contain;
}
.sheyda-landing-page .lightbox-caption {
    color: #ffffff;
    margin-top: 15px;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
}
.sheyda-landing-page .lightbox-close {
    position: absolute;
    top: -45px;
    left: 0;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    padding: 0;
}
.sheyda-landing-page .lightbox-close:hover { background: var(--filmnet-red); }

/* ===== Form Styles ===== */
.sheyda-landing-page .form-section {
    padding: 70px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}
.sheyda-landing-page .form-card {
    max-width: 580px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(91, 70, 155, 0.06);
    position: relative;
}
.sheyda-landing-page .form-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 28px;
    text-align: center;
    line-height: 1.6;
}

/* فرم جدید - با اعتبارسنجی کلاینت */
.sheyda-landing-page .sheyda-form .form-group {
    margin-bottom: 20px;
}
.sheyda-landing-page .sheyda-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.sheyda-landing-page .sheyda-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.sheyda-landing-page .sheyda-form .form-control {
    width: 100% !important;
    background: var(--bg-main) !important;
    border: 1.5px solid var(--border-color) !important;
    padding: 14px 44px 14px 16px !important;
    border-radius: 12px !important;
    color: var(--text-main) !important;
    font-size: 0.9375rem !important;
    font-family: var(--sans) !important;
    outline: none !important;
    transition: all 0.25s ease !important;
    height: auto !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
}
.sheyda-landing-page .sheyda-form .form-control.valid { border-color: #28a745 !important; }
.sheyda-landing-page .sheyda-form .form-control.error { border-color: #dc3545 !important; }
.sheyda-landing-page .sheyda-form .form-control:focus {
    border-color: var(--purple-main) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(91, 70, 155, 0.1) !important;
}
.sheyda-landing-page .sheyda-form .input-icon {
    position: absolute;
    right: 14px;
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    transition: stroke 0.25s ease;
    pointer-events: none;
}
.sheyda-landing-page .sheyda-form .form-control:focus + .input-icon {
    stroke: var(--purple-main);
}
.sheyda-landing-page .error-message {
    color: #dc3545;
    font-size: 0.75rem;
    margin-top: 5px;
    min-height: 16px;
    display: none;
}
.sheyda-landing-page .error-message.show {
    display: block;
}
#submit-btn{
    width: 100%;
}
#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success message */
.sheyda-landing-page .success-message {
    text-align: center;
    padding: 40px 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 24px;
}
.sheyda-landing-page .success-message h3 {
    color: #155724;
    font-weight: 800;
    margin-bottom: 10px;
}

/* ===== Footer ===== */
.sheyda-landing-page footer {
    background: var(--navy-dark); color: #ffffff;
    padding: 40px 0 30px; text-align: center;
    border-top: 1px solid #2a2f45;
}
.sheyda-landing-page .footer-services-label {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--brand-accent);
    margin-bottom: 22px;
}
.sheyda-landing-page .footer-services-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}
.sheyda-landing-page .footer-service-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 11px 22px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: default;
    transition: background 0.25s ease, border-color 0.25s ease;
    user-select: none;
}
.sheyda-landing-page .footer-service-btn:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.24);
}
.sheyda-landing-page .footer-divider {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto 22px;
}
.sheyda-landing-page footer p { opacity: 0.8; font-size: 0.85rem; }
.sheyda-landing-page footer p + p { margin-top: 6px; opacity: 0.6; font-size: 0.75rem; }
@media (max-width: 768px) {
    .sheyda-landing-page .footer-services-buttons { gap: 10px; }
    .sheyda-landing-page .footer-service-btn { padding: 10px 16px; font-size: 0.8125rem; }
    .offer-landing-block .offer-grid-content{grid-template-columns: 1fr;}
    .sheyda-landing-page .offer-grid-content-t{display: flex;flex-direction: column-reverse;}
}
@media (max-width: 576px) {
    .sheyda-landing-page .footer-services-buttons { flex-direction: column; align-items: center; }
    .sheyda-landing-page .footer-service-btn { width: 100%; max-width: 320px; }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .sheyda-landing-page .video-grid { grid-template-columns: repeat(2, 1fr); }
    .sheyda-landing-page .vod-shows-grid { grid-template-columns: repeat(3, 1fr); }
    .sheyda-landing-page .offer-visual-card{width: 100%;}
    .sheyda-landing-page .services-table{max-width: 100% !important}
    .sheyda-landing-page .customer-row {
        top: 0;
    }
    .sheyda-landing-page .customer-row-left {
        top: 125px;
    }
    .sheyda-landing-page .customers {
        min-height: 280px;
    }
    .sheyda-landing-page .customer-img {
        height: 120px;
        margin-inline-end: 6px;
    }
}
@media (max-width: 768px) {
    .sheyda-landing-page .hero-card-banner { grid-template-columns: 1fr; }
    .sheyda-landing-page .container { padding: 0 16px; }
    .no-js .owl-carousel, .owl-carousel.owl-loaded{display: block;}
    .sheyda-landing-page .offer-landing-block{padding: 30px 0;}
    .sheyda-landing-page .offer-services-table { padding: 30px 0; }
    .sheyda-landing-page .vod-shows-grid{grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 576px) {
    .sheyda-landing-page .video-grid { grid-template-columns: 1fr; }
    .sheyda-landing-page .show-card { height: 360px; }
    .sheyda-landing-page .partners-row { gap: 10px; }
    .sheyda-landing-page .logo-box { padding: 12px 18px; }
    .sheyda-landing-page .logo-box img,
    .sheyda-landing-page .logo-box svg { height: 32px; }
    .sheyda-landing-page .partners-plus svg { width: 22px; height: 22px; }
    .sheyda-landing-page .form-card { padding: 28px 20px; }
    .sheyda-landing-page .customer-row-left {
        top: 105px;
    }
    .sheyda-landing-page .customers {
        min-height: 230px;
    }
    .sheyda-landing-page .customer-img {
        height: 100px;
        margin-inline-end: 4px;
    }
}
@media (max-width:370px) {
        .sheyda-landing-page .vod-shows-grid { grid-template-columns: 1fr; gap: 16px; }
}

@supports (-webkit-appearance: none) {
    .sheyda-landing-page .form-control {
        padding-right: 44px;
    }
}

/* 320px optimization */
@media (max-width: 340px) and (orientation: portrait) {
    .sheyda-landing-page .rotate-warning { display: flex; }
    .sheyda-landing-page .main-headline { font-size: 1.25rem; }
    .sheyda-landing-page .logo-box { padding: 8px 12px; }
    .sheyda-landing-page .logo-box svg { height: 24px; }
    .sheyda-landing-page .partners-plus svg { width: 18px; height: 18px; }
    .sheyda-landing-page .container { padding: 0 10px; }
}


