* {
    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: #f0f4f8;
    font-weight: 400;
}

:root {
    --primary-color: #0077b6;
    --secondary-color: #00a8e8;
    --accent-color: #ff6b35;
    --success-color: #00b894;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #0077b6 0%, #00a8e8 50%, #48cae4 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --gradient-light: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    --shadow-soft: 0 4px 20px rgba(0, 119, 182, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #0077b6 0%, #00a8e8 50%, #48cae4 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
    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: 60px 60px;
    animation: moveBackground 25s linear infinite;
    z-index: 0;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    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, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 20px;
    animation: slideDown 0.7s ease, glowPulse 2s ease-in-out infinite;
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.4);
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 5px 35px rgba(255, 107, 53, 0.6); }
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.header-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
    flex-wrap: wrap;
    animation: slideUp 0.7s ease 0.2s both;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
    animation: slideDown 0.7s ease;
    color: #fff;
}

.header p, .header-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 600;
    animation: slideUp 0.7s ease 0.1s both;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

@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: 15px 20px;
    border-radius: 20px;
    margin: 8px 0;
    backdrop-filter: blur(15px);
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    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: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.countdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 16px;
    border-radius: 15px;
    text-align: center;
    min-width: 75px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.time-unit span {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    letter-spacing: 2px;
    color: #fff;
}

.time-unit p {
    font-size: 0.75rem;
    margin-top: 2px;
    opacity: 0.9;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.separator {
    font-size: 2.5rem;
    font-weight: bold;
    opacity: 0.8;
    animation: blink 1s infinite;
    color: #fff;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.3;
    }
}

.viewers-count {
    margin-top: 25px;
    font-size: 1.2rem;
    animation: slideUp 0.6s ease 0.3s both;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.viewers-count strong {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* 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.2);
    animation: slideUp 0.7s ease 0.2s both;
    border: 3px solid rgba(255, 255, 255, 0.4);
    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(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.gallery-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #00a8e8);
    margin: 15px auto 0;
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(0, 119, 182, 0.3);
}

.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: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px solid rgba(0, 119, 182, 0.15);
}

#mainFrameContainer {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px solid rgba(0, 119, 182, 0.15);
}

#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: var(--text-light);
    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: #ffffff;
    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: #ffffff;
}

.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: #0077b6;
    text-shadow: 0 2px 15px rgba(0, 119, 182, 0.4);
    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(0, 119, 182, 0.2);
    border-color: rgba(0, 119, 182, 0.4);
}

.thumbnail-item.active {
    border-color: #0077b6;
    box-shadow: 0 0 25px rgba(0, 119, 182, 0.3);
}

.thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 119, 182, 0.2);
    border-color: rgba(0, 119, 182, 0.4);
}

.thumbnail.active {
    border-color: #0077b6;
    box-shadow: 0 0 25px rgba(0, 119, 182, 0.3);
}

/* Product Description Box */
.product-description-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    border-right: 5px solid #0077b6;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.product-description-box h3 {
    color: #0077b6;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-description-box p {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cable-specs-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.spec-badge {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.1) 0%, rgba(0, 168, 232, 0.08) 100%);
    color: #0077b6;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.1);
    border: 1px solid rgba(0, 119, 182, 0.2);
    transition: all 0.3s ease;
}

.spec-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.15);
}

/* 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(180deg, #e9ecef 0%, #f8f9fa 100%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.testimonials-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #00a8e8);
    margin: 15px auto 0;
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(0, 119, 182, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 4px solid #28a745;
    position: relative;
    border: 1px solid rgba(0, 119, 182, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    color: #0077b6;
    opacity: 0.15;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.12);
    border-color: rgba(0, 119, 182, 0.2);
}

.testimonial-card .stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card .comment {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
    font-style: italic;
}

.testimonial-card .customer-name {
    font-weight: 600;
    color: #0077b6;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #00a8e8);
    margin: 15px auto 0;
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(0, 119, 182, 0.3);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-item:hover {
    border-color: #0077b6;
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.08) 0%, rgba(0, 168, 232, 0.04) 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, rgba(0, 119, 182, 0.12) 0%, rgba(0, 168, 232, 0.08) 100%);
    color: #0077b6;
    padding-right: 30px;
}

.toggle-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    font-weight: bold;
    color: #0077b6;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 119, 182, 0.03);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px;
    color: #495057;
    line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #e9ecef 0%, #f8f9fa 100%);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.pricing-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #00a8e8);
    margin: 15px auto 0;
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(0, 119, 182, 0.3);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px 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;
    width: 100%;
    max-width: 500px;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 119, 182, 0.15);
}

.pricing-card.featured {
    border: 3px solid #0077b6;
    box-shadow: 0 0 40px rgba(0, 119, 182, 0.15);
}

.pricing-card.most-popular {
    border: 3px solid #0077b6;
    transform: scale(1.02);
}

.pricing-card.most-popular:hover {
    transform: scale(1.02) translateY(-12px);
}

.offer-badge {
    position: absolute;
    top: -18px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    margin-top: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.highlight-item {
    background: rgba(0, 119, 182, 0.1);
    color: #0077b6;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 119, 182, 0.2);
}

.discount-box {
    background: linear-gradient(135deg, #0077b6 0%, #00a8e8 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 119, 182, 0.25);
    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.08'%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: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.currency {
    display: block;
    font-size: 1.2rem;
    margin-top: 8px;
    opacity: 0.95;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.old-price {
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.per-piece {
    text-align: center;
    color: #0077b6;
    font-weight: 800;
    margin: 12px 0;
    font-size: 1.05rem;
}

.benefits {
    margin: 25px 0;
}

.benefit-item {
    padding: 14px 0;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-align: center;
}

.benefit-item:last-child {
    border-bottom: none;
}

.cta-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #0077b6 0%, #00a8e8 100%);
    color: white;
    margin-top: 18px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.25);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.35);
}

.cta-btn:active {
    transform: translateY(-1px);
}

.cta-btn.primary {
    background: linear-gradient(135deg, #0077b6 0%, #00a8e8 100%);
    font-size: 1.3rem;
    box-shadow: 0 10px 35px rgba(0, 119, 182, 0.3);
}

.cta-btn.primary:hover {
    box-shadow: 0 15px 45px rgba(0, 119, 182, 0.4);
}

/* Order Form Section */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.order-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.order-form-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #00a8e8);
    margin: 15px auto 0;
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(0, 119, 182, 0.3);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 119, 182, 0.1);
}

.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: 16px 18px;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Cairo', inherit;
    transition: all 0.3s ease;
    resize: vertical;
    font-weight: 500;
    background: #ffffff;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 20px rgba(0, 119, 182, 0.15);
    background-color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-family: 'Cairo', sans-serif !important;
    opacity: 0.6;
    color: #6c757d;
}

.form-group select,
.form-group select option {
    font-family: 'Cairo', sans-serif !important;
    background: #ffffff;
}

.price-summary {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.08) 0%, rgba(0, 168, 232, 0.04) 100%);
    padding: 28px;
    border-radius: 15px;
    margin: 30px 0;
    border-right: 5px solid #0077b6;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 119, 182, 0.15);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 119, 182, 0.1);
    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: #495057;
    font-weight: 600;
}

.summary-item.savings span:last-child {
    color: var(--success-color);
    font-weight: 800;
    font-size: 1.1rem;
}

.summary-item.total-price {
    background: rgba(0, 119, 182, 0.08);
    margin: 10px -28px -28px -28px;
    padding: 18px 28px;
    border-radius: 0 0 15px 15px;
}

.summary-item.total-price span:last-child {
    font-size: 1.3rem;
}

.product-name-summary span:last-child {
    color: #0077b6 !important;
    font-weight: 700 !important;
}

.highlight {
    color: #0077b6 !important;
    font-weight: 800 !important;
    font-size: 1.2rem;
}

.free-shipping {
    color: #28a745 !important;
    font-weight: 800;
}

.saving-amount {
    color: #28a745 !important;
    font-weight: 800;
}

.submit-btn {
    padding: 20px;
    background: linear-gradient(135deg, #0077b6 0%, #00a8e8 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.4rem;
    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 10px 35px rgba(0, 119, 182, 0.25);
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 119, 182, 0.35);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-note {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border-radius: 12px;
    border-left: 5px solid #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
}

.form-note p {
    color: #28a745;
    font-weight: 700;
    margin: 8px 0;
    font-size: 0.98rem;
    letter-spacing: 0.2px;
}

.form-status {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.08) 0%, rgba(0, 168, 232, 0.04) 100%);
    border-radius: 12px;
    border-left: 5px solid #0077b6;
    padding: 15px 20px;
    animation: slideUp 0.5s ease;
}

.form-status.success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border-left-color: #28a745;
    color: #28a745;
}

.form-status.error {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(200, 50, 50, 0.05) 100%);
    border-left-color: #ff6b35;
    color: #ff6b35;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #343a40 0%, #212529 100%);
    color: white;
    padding: 60px 0 30px;
    border-top: 4px solid #0077b6;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 119, 182, 0.08) 0%, transparent 50%);
    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: #48cae4;
    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: rgba(255, 255, 255, 0.8);
    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(72, 202, 228, 0.15);
    color: #48cae4;
    transition: all 0.3s ease;
    border: 2px solid rgba(72, 202, 228, 0.3);
}

.social-icon:hover {
    background: #48cae4;
    color: #212529;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(72, 202, 228, 0.4);
}

.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: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.contact-info .icon {
    font-size: 1.3rem;
}

.contact-info a {
    color: #48cae4;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #90e0ef;
    text-decoration: underline;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    border-bottom: 1px solid rgba(72, 202, 228, 0.15);
    transition: all 0.3s ease;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li:hover {
    color: #48cae4;
    padding-right: 10px;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #48cae4, 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;
    color: rgba(255, 255, 255, 0.8);
}

.footer-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    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 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0077b6 0%, #00a8e8 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 119, 182, 0.3);
    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 40px rgba(0, 119, 182, 0.4);
}

.back-to-top svg {
    width: 28px;
    height: 28px;
    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;
}