/* Video Editing service page — scoped under .ve-page */

.ve-page {
    --ve-bg: #0a0a0c;
    --ve-surface: #121218;
    --ve-elevated: #1a1a22;
    --ve-ink: #f4f4f6;
    --ve-muted: #9a9aaa;
    --ve-line: rgba(255, 255, 255, 0.08);
    --ve-accent: #ca3200;
    --ve-accent-soft: rgba(202, 50, 0, 0.18);
    color: var(--ve-ink);
    background: var(--ve-bg);
}

/* ---- Hero + background video ---- */
.ve-hero {
    position: relative;
    min-height: clamp(480px, 78vh, 720px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6.25rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .ve-hero {
        padding-top: calc(45px + 6rem);
    }
}

.ve-hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ve-hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ve-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6, 6, 10, 0.55) 0%, rgba(8, 8, 14, 0.82) 45%, rgba(6, 6, 10, 0.92) 100%),
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(202, 50, 0, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.ve-hero-inner {
    position: relative;
    z-index: 2;
}

.ve-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.ve-hero h1 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.06;
    color: #fff !important;
    text-transform: uppercase;
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
    max-width: 20ch;
}

.ve-hero-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    max-width: 36ch;
    line-height: 1.55;
}

.ve-hero-actions .btn-primary {
    background: var(--ve-accent);
    border-color: var(--ve-accent);
    font-weight: 600;
    padding: 0.65rem 1.35rem;
}

.ve-hero-actions .btn-primary:hover {
    filter: brightness(1.08);
    background: var(--ve-accent);
    border-color: var(--ve-accent);
}

.ve-hero-actions .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
}

/* ---- Stats ---- */
.ve-stats {
    position: relative;
    z-index: 3;
    margin-top: -2rem;
    margin-bottom: 0;
}

.ve-stats .container {
    background: linear-gradient(145deg, var(--ve-elevated) 0%, #14141c 100%);
    border: 1px solid var(--ve-line);
    border-radius: 1rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.ve-stat {
    text-align: center;
    padding: 1.25rem 0.75rem;
}

.ve-stat strong {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #ff6b35;
    letter-spacing: -0.02em;
}

.ve-stat span {
    font-size: 0.85rem;
    color: var(--ve-muted);
}

/* ---- Sections ---- */
.ve-section-title {
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    color: var(--ve-ink);
}

.ve-section-lead {
    color: var(--ve-muted);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ve-section-lead.text-start {
    margin-left: 0;
    margin-right: 0;
}

.ve-surface {
    background: var(--ve-surface);
}

.ve-surface-muted {
    background: linear-gradient(180deg, var(--ve-bg) 0%, var(--ve-surface) 40%, var(--ve-bg) 100%);
}

/* ---- Service cards ---- */
.ve-service-card {
    background: var(--ve-elevated);
    border: 1px solid var(--ve-line);
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ve-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.ve-service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ve-service-card .card-body {
    padding: 1.35rem;
}

.ve-service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--ve-ink);
}

.ve-service-card ul {
    padding-left: 1.1rem;
    margin: 0;
    color: var(--ve-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ---- Category grid ---- */
.ve-cat-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--ve-line);
}

.ve-cat-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.ve-cat-item:hover img {
    transform: scale(1.05);
}

.ve-cat-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.65rem 0.85rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

/* ---- Process ---- */
.ve-process-step {
    position: relative;
    padding: 1.5rem 1rem 1.5rem 1rem;
    background: var(--ve-elevated);
    border: 1px solid var(--ve-line);
    border-radius: 1rem;
    height: 100%;
}

.ve-process-num {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.ve-process-step .bi {
    font-size: 1.75rem;
    color: var(--ve-accent);
    margin-bottom: 0.75rem;
}

.ve-process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff !important;
}

.ve-process-step p {
    font-size: 0.9rem;
    color: var(--ve-muted);
    margin: 0;
}

/* ---- Testimonials ---- */
.ve-quote-card {
    background: var(--ve-elevated);
    border: 1px solid var(--ve-line);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
}

.ve-quote-card p {
    font-size: 0.95rem;
    color: rgba(244, 244, 246, 0.92);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ve-stars {
    color: #ffb020;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.ve-quote-meta {
    font-size: 0.85rem;
    color: var(--ve-muted);
}

.ve-quote-meta strong {
    color: var(--ve-ink);
    display: block;
}

/* ---- Quote strip ---- */
.ve-quote-strip {
    background: linear-gradient(90deg, rgba(202, 50, 0, 0.95) 0%, #8b2200 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.ve-quote-strip .form-control {
    border-radius: 0.5rem;
    border: none;
}

.ve-quote-strip .btn-light {
    font-weight: 700;
    color: #3a1508;
}

/* ---- Tools ---- */
.ve-tools-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.ve-tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--ve-elevated);
    border: 1px solid var(--ve-line);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ve-ink);
}

/* ---- Featured embed ---- */
.ve-feature-ratio {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--ve-line);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 9;
}

.ve-feature-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---- Detail list ---- */
.ve-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ve-detail-item .bi {
    color: var(--ve-accent);
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.ve-detail-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #fff !important;
}

.ve-detail-item p {
    font-size: 0.92rem;
    color: var(--ve-muted);
    margin: 0;
}

/* ---- CTA banner ---- */
.ve-cta-banner {
    position: relative;
    padding: 4rem 1.5rem;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(8, 8, 12, 0.92) 0%, rgba(18, 10, 8, 0.88) 100%),
        url("https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
    border-top: 1px solid var(--ve-line);
    border-bottom: 1px solid var(--ve-line);
}

.ve-cta-banner h2 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff !important;
    margin-bottom: 0.75rem;
}

.ve-cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 1.25rem;
}

/* ---- Industries ---- */
.ve-industry-card {
    background: var(--ve-elevated);
    border: 1px solid var(--ve-line);
    border-radius: 0.75rem;
    padding: 1.25rem;
    height: 100%;
}

.ve-industry-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--ve-ink);
}

.ve-industry-card p {
    font-size: 0.88rem;
    color: var(--ve-muted);
    margin: 0;
    line-height: 1.5;
}

/* ---- FAQ ---- */
.ve-page .accordion-item {
    background: var(--ve-elevated);
    border: 1px solid var(--ve-line);
    color: var(--ve-ink);
}

.ve-page .accordion-button {
    background: var(--ve-elevated);
    color: var(--ve-ink);
    font-weight: 600;
    font-size: 0.95rem;
}

.ve-page .accordion-button:not(.collapsed) {
    background: rgba(202, 50, 0, 0.12);
    color: var(--ve-ink);
    box-shadow: none;
}

.ve-page .accordion-button::after {
    filter: invert(0.9);
}

.ve-page .accordion-body {
    color: var(--ve-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ---- Portfolio grid (LCD-style frames) ---- */
.ve-portfolio-card {
    --ve-lcd-bezel: #2c2c34;
    --ve-lcd-inner: #0a0a0e;
    background: linear-gradient(165deg, #3a3a44 0%, var(--ve-lcd-bezel) 35%, #1a1a20 100%);
    border-radius: 0.65rem;
    padding: 0.65rem 0.65rem 0.85rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 4px 0 rgba(0, 0, 0, 0.35),
        0 20px 50px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
}

.ve-portfolio-ratio {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--ve-lcd-inner);
    border-radius: 0.2rem;
    overflow: hidden;
    border: 3px solid #0d0d12;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 2px 24px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(0, 0, 0, 0.9);
}

.ve-portfolio-ratio::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.25);
}

.ve-portfolio-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 0;
}

.ve-portfolio-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 0.5rem 0.15rem;
    margin: 0;
    color: var(--ve-ink);
    text-align: center;
}

.ve-intro-visual {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--ve-line);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.ve-intro-visual img {
    width: 100%;
    height: auto;
    display: block;
}
