/* =========================================
   Video Editing Service Page — Premium Cinema Design
   ========================================= */

/* Hero Section */
.ve-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 8rem 1.5rem 4rem;
}

.ve-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(147, 51, 234, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 20% 60%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.ve-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.ve-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: #c084fc;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.ve-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.ve-hero h1 .ve-gradient {
    background: linear-gradient(135deg, #c084fc, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ve-hero-sub {
    font-size: 1.15rem;
    color: #a1a1aa;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.ve-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Film Strip decoration */
.ve-filmstrip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 300px;
    background: repeating-linear-gradient(to bottom,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 20px,
            transparent 20px,
            transparent 30px);
    border-left: 2px solid rgba(255, 255, 255, 0.05);
    border-right: 2px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.ve-filmstrip.left {
    left: 3%;
}

.ve-filmstrip.right {
    right: 3%;
}

/* =========================================
   What We Do Section
   ========================================= */
.ve-services {
    padding: 6rem 1.5rem;
    position: relative;
}

.ve-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ve-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ve-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.ve-section-header p {
    color: #a1a1aa;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ve-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ve-service-card {
    background: rgba(24, 24, 27, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ve-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c084fc, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ve-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(147, 51, 234, 0.1);
}

.ve-service-card:hover::before {
    opacity: 1;
}

.ve-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.ve-service-card:nth-child(2) .ve-service-icon {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.2);
}

.ve-service-card:nth-child(3) .ve-service-icon {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
}

.ve-service-card:nth-child(4) .ve-service-icon {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.2);
}

.ve-service-card:nth-child(5) .ve-service-icon {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.ve-service-card:nth-child(6) .ve-service-icon {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
}

.ve-service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.ve-service-card p {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =========================================
   How It Works Section
   ========================================= */
.ve-how-it-works {
    padding: 6rem 1.5rem;
    position: relative;
}

.ve-how-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ve-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.ve-step-card {
    background: rgba(24, 24, 27, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ve-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(147, 51, 234, 0.1);
}

.ve-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.ve-step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.ve-step-card p {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* =========================================
   Pricing Urgency & Retainer
   ========================================= */
.ve-pricing-urgency {
    text-align: center;
    color: #71717a;
    font-size: 0.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.ve-retainer-callout {
    display: block;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.25rem 1.75rem;
    border-radius: 1rem;
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.25);
    color: #c084fc;
    font-size: 0.92rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.ve-retainer-callout:hover {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.15);
    color: #d8b4fe;
}

/* =========================================
   Pricing Section
   ========================================= */
.ve-pricing {
    padding: 6rem 1.5rem;
    position: relative;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, rgba(147, 51, 234, 0.03) 50%, rgba(10, 10, 15, 0) 100%);
}

.ve-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.3), transparent);
}

.ve-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.currency-indicator {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: #a1a1aa;
    font-weight: 500;
}

.ve-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.ve-price-card {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ve-price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 51, 234, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(147, 51, 234, 0.1);
}

.ve-price-card.featured {
    border-color: rgba(236, 72, 153, 0.4);
    background: rgba(30, 20, 40, 0.7);
}

.ve-price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 6px 0;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ec4899, #9333EA);
    color: white;
}

.ve-price-card.featured .ve-plan-name {
    margin-top: 1rem;
}

.ve-plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.ve-plan-tagline {
    color: #71717a;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.ve-price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.ve-price-note {
    color: #71717a;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.ve-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.ve-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.6rem 0;
    color: #d4d4d8;
    font-size: 0.9rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ve-features-list li:last-child {
    border-bottom: none;
}

.ve-features-list .check {
    color: #c084fc;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.ve-price-card.featured .ve-features-list .check {
    color: #ec4899;
}

/* =========================================
   Showcase / Portfolio Section
   ========================================= */
.ve-showcase {
    padding: 6rem 1.5rem;
    position: relative;
}

.ve-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ve-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.ve-showcase-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 9/16;
    max-height: 500px;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.ve-showcase-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.ve-showcase-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ve-pinterest-cta {
    text-align: center;
    margin-top: 3rem;
}

.ve-pinterest-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(189, 8, 28, 0.15);
    border: 1px solid rgba(189, 8, 28, 0.3);
    color: #e11d48;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ve-pinterest-cta a:hover {
    background: rgba(189, 8, 28, 0.25);
    border-color: rgba(189, 8, 28, 0.5);
    transform: translateY(-2px);
}

/* =========================================
   FAQ Section
   ========================================= */
.ve-faq {
    padding: 6rem 1.5rem;
    position: relative;
}

.ve-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.ve-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ve-faq-item {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ve-faq-item:hover {
    border-color: rgba(147, 51, 234, 0.2);
}

.ve-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    color: #e4e4e7;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    user-select: none;
    transition: color 0.3s ease;
}

.ve-faq-q:hover {
    color: #c084fc;
}

.ve-faq-item.active .ve-faq-q {
    color: #c084fc;
}

.ve-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.ve-faq-icon::before,
.ve-faq-icon::after {
    content: '';
    position: absolute;
    background: #e4e4e7;
    transition: all 0.3s ease;
}

.ve-faq-icon::before {
    width: 12px;
    height: 2px;
}

.ve-faq-icon::after {
    width: 2px;
    height: 12px;
}

.ve-faq-item.active .ve-faq-icon {
    border-color: #c084fc;
    transform: rotate(45deg);
}

.ve-faq-item.active .ve-faq-icon::before,
.ve-faq-item.active .ve-faq-icon::after {
    background: #c084fc;
}

.ve-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ve-faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* =========================================
   CTA Section
   ========================================= */
.ve-cta {
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
}

.ve-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ve-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.ve-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.ve-cta p {
    color: #a1a1aa;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
    .ve-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ve-hero {
        min-height: 70vh;
        padding: 6rem 1rem 3rem;
    }

    .ve-hero h1 {
        font-size: 2rem;
    }

    .ve-filmstrip {
        display: none;
    }

    .ve-services-grid {
        grid-template-columns: 1fr;
    }

    .ve-pricing-grid {
        grid-template-columns: 1fr;
    }

    .ve-steps-grid {
        grid-template-columns: 1fr;
    }

    .ve-retainer-callout {
        font-size: 0.85rem;
        padding: 1rem 1.25rem;
    }

    .ve-section-header h2 {
        font-size: 1.8rem;
    }

    .ve-showcase-grid {
        grid-template-columns: 1fr;
    }

    .ve-cta h2 {
        font-size: 1.8rem;
    }
}