/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #FFFFFF;
    color: #1a1a1a;
    line-height: 1.6;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1 {
    font-family: 'Cairo', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    color: #1a1a1a;
}

h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

p {
    font-family: 'Cairo', sans-serif;
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Cairo', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #f740c4;
    letter-spacing: -0.01em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #f740c4;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: #f740c4;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

/* Hero Section */
.hero {
    margin-top: 22px;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
        #fef5ff 0%,
        #f8f0ff 25%,
        #fff5f9 50%,
        #fef5ff 75%,
        #ffffff 100%);
    padding: 0rem 1rem;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(247, 64, 196, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 35%);
    animation: heroGlow 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(247, 64, 196, 0.03) 50%,
        transparent 100%);
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translate(10%, 5%) rotate(1deg);
        opacity: 0.9;
    }
    66% {
        transform: translate(-5%, 10%) rotate(-1deg);
        opacity: 0.8;
    }
}

.hero > .container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f740c4;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(247, 64, 196, 0.1);
    border-radius: 2rem;
    letter-spacing: 0.01em;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    max-width: 600px;
    font-weight: 400;
}

.hero-images {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    height: 680px;
    overflow: hidden;
}

.hero-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollDown 40s linear infinite;
    will-change: transform;
}

.hero-column.reverse {
    animation: scrollUp 40s linear infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollUp {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-image-item {
    flex: 0 0 320px;
    width: 100%;
    height: 569px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #f740c4;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 64, 196, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 64, 196, 0.4);
    background: #d93bb0;
}

.btn-secondary {
    background: #ffffff;
    color: #f740c4;
    border: 2px solid #f740c4;
    box-shadow: none;
}

.btn-secondary:hover {
    background: #f740c4;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(247, 64, 196, 0.3);
}

/* Video Loop Carousel Section */
.video-loop-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef5ff 0%, #f5f5f5 100%);
    overflow: hidden;
    direction: ltr;
}

.video-loop-carousel {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    direction: ltr;
}

.video-loop-track {
    display: flex;
    width: max-content;
    animation: scrollVideoLoop 40s linear infinite;
    direction: ltr;
}

@keyframes scrollVideoLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.video-loop-card {
    flex: 0 0 320px;
    height: 569px;
    margin-right: 20px;
    position: relative;
}

.video-loop-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-loop-card:hover video {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(247, 64, 196, 0.25);
}

.video-loop-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
}

/* Explanation Section */
.explanation {
    background: #ffffff;
}

.explanation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.explanation-content {
    text-align: right;
}

.explanation-content h2 {
    text-align: right;
}

.explanation-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explanation-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explanation-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(247, 64, 196, 0.2);
}

.explanation-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #4a4a4a;
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 2rem;
    background: linear-gradient(135deg, #fef5ff 0%, #ffffff 100%);
    color: #1a1a1a;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: right;
}

.features-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(247, 64, 196, 0.15);
}

.features-list li:before {
    content: '✓';
    display: inline-block;
    margin-left: 0.75rem;
    color: #f740c4;
    font-weight: 900;
    font-size: 1.5rem;
}

.no-need-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.no-need-item {
    background: #f740c4;
    padding: 1.25rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(247, 64, 196, 0.3);
    transition: all 0.3s ease;
}

.no-need-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(247, 64, 196, 0.4);
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #fef5ff 0%, #ffffff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f740c4 0%, #d93bb0 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(247, 64, 196, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    color: #4a4a4a;
    font-size: 1.05rem;
}

.quote {
    text-align: center;
    font-family: 'Cairo', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f740c4 0%, #d93bb0 100%);
    color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(247, 64, 196, 0.3);
    line-height: 1.4;
}

/* Examples Section */
.examples {
    background: #ffffff;
}

.examples h2 {
    color: #1a1a1a;
    text-align: center;
}

.examples-intro {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    color: #4a4a4a;
    font-weight: 400;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.video-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #000000;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(247, 64, 196, 0.2);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.image-item {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(247, 64, 196, 0.2);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #fef5ff 0%, #ffffff 100%);
}

.pricing h2 {
    color: #1a1a1a;
    text-align: center;
}

.pricing-intro {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: #ffffff;
    color: #1a1a1a;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(247, 64, 196, 0.15);
}

.pricing-card.selected {
    background: linear-gradient(135deg, #f740c4 0%, #d93bb0 100%);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(247, 64, 196, 0.3);
}

.pricing-card.best {
    border: 2px solid #f740c4;
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: #f740c4;
    color: #ffffff;
    padding: 0.4rem 1.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 2rem;
    box-shadow: 0 4px 15px rgba(247, 64, 196, 0.3);
}

.pricing-card.best .package-badge {
    background: linear-gradient(135deg, #f740c4 0%, #d93bb0 100%);
}

.pricing-card h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-weight: 800;
    color: #f740c4;
}

.pricing-card.selected h3 {
    color: #ffffff;
}

.pricing-card .package-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.pricing-card.selected .package-name {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: #1a1a1a;
}

.pricing-card.selected .price {
    color: #ffffff;
}

.pricing-card .savings {
    color: #f740c4;
    font-weight: 700;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.pricing-card.selected .savings {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-card .description {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.pricing-card.selected .description {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

/* How It Works Section */
.how-it-works {
    background: #ffffff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step {
    background: linear-gradient(135deg, #fef5ff 0%, #ffffff 100%);
    padding: 2.5rem 1.5rem;
    position: relative;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(247, 64, 196, 0.15);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f740c4 0%, #d93bb0 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(247, 64, 196, 0.3);
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.step p {
    font-size: 0.95rem;
    color: #4a4a4a;
}

/* Order Form Section */
.order-form {
    background: linear-gradient(135deg, #fef5ff 0%, #ffffff 100%);
}

.order-form h2 {
    color: #1a1a1a;
    text-align: center;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #f740c4;
    box-shadow: 0 0 0 3px rgba(247, 64, 196, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.error {
    color: #f740c4;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background: #ffffff;
}

.faq h2 {
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 1rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #f740c4;
    box-shadow: 0 4px 20px rgba(247, 64, 196, 0.1);
}

.faq-question {
    padding: 1.5rem 1.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #f740c4;
}

.faq-answer {
    padding: 0 1.75rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #4a4a4a;
}

.faq-item.active .faq-answer {
    padding: 0 1.75rem 1.5rem;
    max-height: 500px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #f740c4;
    transition: transform 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 64, 196, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #f740c4;
    color: #ffffff;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

footer p strong {
    color: #f740c4;
}

/* Responsive Design */
@media (max-width: 991px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.25rem;
    }

    .hero > .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-images {
        order: -1;
        height: 400px;
    }

    .hero-image-item {
        flex: 0 0 200px;
        width: 200px;
        height: 356px;
    }

    .explanation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .explanation-image {
        order: -1;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.5rem;
        text-shadow: 3px 3px 0px #FFD23F, 6px 6px 0px #00B4D8;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.95rem;
    }

    .hero > .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-images {
        height: 350px;
        gap: 1rem;
    }

    .hero-image-item {
        flex: 0 0 180px;
        width: 180px;
        height: 320px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    section {
        padding: 4rem 0;
    }

    .explanation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .explanation-image {
        order: -1;
    }

    .no-need-list {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem;
    }

    .quote {
        font-size: 1.75rem;
        padding: 2rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .pricing-card.best {
        transform: scale(1) rotate(0deg);
    }

    .scroll-video-item {
        width: 250px;
        height: 444px;
    }

    .video-loop-card {
        flex: 0 0 280px;
        height: 498px;
    }
}
