* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    font-weight: 400;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #d32f2f;
    --success-color: #4caf50;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --border-color: #ddd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c00 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    border-bottom: 8px solid #d32f2f;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
    z-index: 0;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.header-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #d32f2f;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 20px;
    animation: slideDown 0.7s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.header-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    animation: slideUp 0.7s ease 0.2s both;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
    animation: slideDown 0.7s ease;
    background: linear-gradient(180deg, #ffffff 0%, #fff5f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    opacity: 0.98;
    font-weight: 600;
    animation: slideUp 0.7s ease 0.1s both;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes pulseNumber {
    0% {
        transform: scale(1);
        color: #fff;
    }

    50% {
        transform: scale(1.15);
        color: #ffd700;
    }

    100% {
        transform: scale(1);
        color: #fff;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounceUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.counter-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 20px;
    margin: 8px 0;
    backdrop-filter: blur(10px);
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.6s ease 0.2s both;
}

.counter-badge span {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.time-unit {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: 8px 14px;
    border-radius: 12px;
    text-align: center;
    min-width: 75px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.time-unit span {
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
    letter-spacing: 2px;
}

.time-unit p {
    font-size: 0.75rem;
    margin-top: 2px;
    opacity: 0.9;
    font-weight: 600;
}

.separator {
    font-size: 2.5rem;
    font-weight: bold;
    opacity: 0.8;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.3;
    }
}

.viewers-count {
    margin-top: 25px;
    font-size: 1.25rem;
    animation: slideUp 0.6s ease 0.3s both;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.viewers-count strong {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #ff6b35;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 800;
    min-width: 60px;
    text-align: center;
}

/* Hero Video Container */
.hero-video-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 350px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.7s ease 0.2s both;
    border: 3px solid rgba(255, 255, 255, 0.3);
    aspect-ratio: 9/16;
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes pulseNumber {
    0% {
        transform: scale(1);
        color: #fff;
    }

    50% {
        transform: scale(1.15);
        color: #ffd700;
    }

    100% {
        transform: scale(1);
        color: #fff;
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
}

.video-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.video-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 3px;
}

.video-wrapper-single {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.6s ease;
    background: #f5f5f5;
}

.video-wrapper-single video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
}

.video-item {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.video-item::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.video-item:hover::before {
    opacity: 1;
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.gallery-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 3px;
}

.gallery-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Main Image Display */
.main-image-wrapper {
    position: relative;
    animation: slideUp 0.6s ease;
}

.image-frame {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

#mainFrameContainer {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

#mainFrameContainer video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: zoomIn 0.5s ease;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-counter {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* Thumbnails Gallery */
.thumbnails-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thumbnails-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 5px;
    box-sizing: border-box;
}

.thumbnail-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #000;
}

.thumbnail-item.video-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    font-size: 3rem;
    color: #ff6b35;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: pulse 1.5s ease-in-out infinite;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.3);
}

.thumbnail-item.active {
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.3);
}

.thumbnail.active {
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Product Description Box */
.product-description-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    border-right: 5px solid #ff6b35;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-description-box h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-description-box p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cable-specs-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.spec-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

/* Description Section */
.description-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.description-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.description-content {
    font-size: 1.15rem;
    line-height: 1.9;
    font-weight: 500;
}

.description-text h3 {
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cable-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    border-radius: 15px;
    border-right: 6px solid var(--primary-color);
}

.spec-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    letter-spacing: 0.5px;
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
    border-top-color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f0 0%, #fff0e6 100%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.testimonials-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 3px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 5px solid var(--success-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-card .stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card .comment {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-card .customer-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 3px;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    padding: 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
    user-select: none;
    letter-spacing: 0.3px;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
    color: var(--primary-color);
    padding-right: 30px;
}

.toggle-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    font-weight: bold;
    color: var(--primary-color);
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f0 0%, #fff0e6 100%);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.pricing-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 3px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.pricing-card.most-popular {
    border: 3px solid var(--accent-color);
    transform: scale(1.07);
}

.pricing-card.most-popular:hover {
    transform: scale(1.07) translateY(-12px);
}

.offer-badge {
    position: absolute;
    top: -18px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c62828 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.7rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    margin-top: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.discount-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.discount-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.discount-price {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.currency {
    display: block;
    font-size: 1.1rem;
    margin-top: 8px;
    opacity: 0.95;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.old-price {
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.9;
    text-decoration: line-through;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.per-piece {
    text-align: center;
    color: var(--primary-color);
    font-weight: 800;
    margin: 12px 0;
    font-size: 1.05rem;
}

.benefits {
    margin: 25px 0;
}

.benefit-item {
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.benefit-item:last-child {
    border-bottom: none;
}

.cta-btn {
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: var(--secondary-color);
    color: white;
    margin-top: 18px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(247, 147, 30, 0.25);
}

.cta-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 107, 53, 0.35);
}

.cta-btn:active {
    transform: translateY(-1px);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    font-size: 1.25rem;
    box-shadow: 0 8px 22px rgba(255, 107, 53, 0.3);
}

.cta-btn.primary:hover {
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

/* Order Form Section */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    position: relative;
}

.order-form-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.order-form-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 3px;
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.buy-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Cairo', inherit;
    transition: all 0.3s ease;
    resize: vertical;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.25);
    background-color: #fff9f5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-family: 'Cairo', sans-serif !important;
    opacity: 0.7;
}

.form-group select,
.form-group select option {
    font-family: 'Cairo', sans-serif !important;
}

.price-summary {
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    padding: 28px;
    border-radius: 15px;
    margin: 30px 0;
    border-right: 6px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span:first-child {
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.summary-item span:last-child {
    color: var(--text-light);
    font-weight: 600;
}

.summary-item.savings span:last-child {
    color: var(--success-color);
    font-weight: 800;
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-color) !important;
    font-weight: 800 !important;
    font-size: 1.15rem;
}

.free-shipping {
    color: var(--success-color) !important;
    font-weight: 800;
}

.saving-amount {
    color: var(--success-color) !important;
    font-weight: 800;
}

.submit-btn {
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 25px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.35);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-note {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 12px;
    border-left: 5px solid var(--success-color);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.1);
}

.form-note p {
    color: var(--success-color);
    font-weight: 700;
    margin: 6px 0;
    font-size: 0.98rem;
    letter-spacing: 0.2px;
}

.form-status {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 12px;
    border-left: 5px solid #2196f3;
    padding: 15px 20px;
    animation: slideUp 0.5s ease;
}

.form-status.success {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left-color: var(--success-color);
    color: var(--success-color);
}

.form-status.error {
    background: linear-gradient(135deg, #ffebee 0%, #ffe0b2 100%);
    border-left-color: #d32f2f;
    color: #d32f2f;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2a2a2a 50%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 30px;
    border-top: 8px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.footer-tagline {
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
    font-weight: 500;
}

.contact-info .icon {
    font-size: 1.3rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffb366;
    text-decoration: underline;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 10px 0;
    color: #ccc;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 10px 0;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-note {
    font-size: 0.95rem;
    color: #999;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba58 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.whatsapp-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
}

.back-to-top.show {
    display: flex;
    animation: popIn 0.5s ease;
}

.back-to-top:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    animation: bounceUp 1.5s ease infinite;
}

@keyframes bounceUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 60px 0;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .header-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-video-container {
        justify-content: center;
    }

    .hero-video-wrapper {
        max-width: 300px;
    }

    .header h1 {
        font-size: 2.3rem;
    }

    .header p {
        font-size: 1.1rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }

    .time-unit {
        min-width: 70px;
        padding: 10px 15px;
    }

    .time-unit span {
        font-size: 1.5rem;
    }

    .pricing-card.most-popular {
        transform: scale(1);
    }

    .pricing-card.most-popular:hover {
        transform: scale(1) translateY(-10px);
    }

    .hero-video-wrapper {
        max-width: 100%;
        margin-top: 25px;
    }

    .hero-video {
        max-height: 350px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .thumbnails-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }

    .thumbnails-gallery {
        gap: 15px;
    }

    .product-description-box {
        padding: 20px;
    }

    .product-description-box h3 {
        font-size: 1.2rem;
    }

    .cable-specs-mini {
        grid-template-columns: 1fr 1fr;
    }

    .description-section h2,
    .testimonials-section h2,
    .faq-section h2,
    .pricing-section h2,
    .order-form-section h2 {
        font-size: 1.8rem;
    }

    .form-wrapper {
        padding: 25px;
    }

    .cable-specs {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-btn,
    .back-to-top {
        width: 55px;
        height: 55px;
    }

    .whatsapp-btn svg,
    .back-to-top svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 40px 0;
    }

    .header-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-video-wrapper {
        max-width: 200px;
    }

    .countdown {
        gap: 8px;
        flex-wrap: wrap;
    }

    .separator {
        font-size: 1.5rem;
    }

    .hero-video-wrapper {
        max-width: 200px;
    }

    .gallery-container {
        gap: 15px;
    }

    .thumbnails-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .thumbnails-gallery {
        gap: 15px;
    }

    .product-description-box {
        padding: 18px;
    }

    .product-description-box h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .product-description-box p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .cable-specs-mini {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .spec-badge {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .thumbnail {
        border-radius: 8px;
        border-width: 2px;
        padding: 3px;
    }

    .image-counter {
        font-size: 0.85rem;
    }

    .header h1 {
        font-size: 1.15rem;
    }

    .countdown {
        gap: 5px;
    }

    .separator {
        font-size: 1.2rem;
    }

    .time-unit {
        min-width: 60px;
        padding: 8px 12px;
    }

    .time-unit span {
        font-size: 1.3rem;
    }

    .counter-badge {
        padding: 15px;
    }

    .pricing-cards {
        gap: 20px;
    }

    .discount-price {
        font-size: 2rem;
    }

    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        bottom: 80px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
}

/* Additional Enhancements */
.section-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Badge Animations */
.animated-badge {
    animation: pulse 2s infinite;
}

/* Hover Effects for Links */
a {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Selection Styling */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Focus Styles for Accessibility */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}