/**
 * LOCATION STUDIO — Production Page Styles
 */

/* ─── Services Section ─── */
.prod-services {
    padding: 0 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.prod-services h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.prod-services h2 .accent {
    color: var(--red);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.service-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    transition: all 0.35s ease;
}

.service-card:hover {
    border-color: rgba(230, 0, 0, 0.15);
    box-shadow: 0 0 25px rgba(230, 0, 0, 0.06);
}

.service-icon {
    color: var(--red);
    margin-bottom: 1rem;
}

.service-icon svg {
    stroke: var(--red);
}

.service-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.service-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.65;
}

/* ─── Advantages Section ─── */
.prod-advantages {
    padding: 0 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.prod-advantages h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.prod-advantages h2 .accent {
    color: var(--red);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.advantage-card {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    transition: all 0.35s ease;
}

.advantage-card:hover {
    border-color: rgba(230, 0, 0, 0.15);
    box-shadow: 0 0 25px rgba(230, 0, 0, 0.06);
}

.advantage-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 1rem;
    line-height: 1;
    opacity: 0.6;
}

.advantage-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.advantage-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.65;
}

/* ─── CTA Section ─── */
.prod-cta {
    padding: 2rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.prod-cta-content {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 3rem;
    text-align: center;
}

.prod-cta-text {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 2rem;
}

/* ─── 2-Column Services Variant (YouTube page) ─── */
.services-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

/* ─── Steps Grid (YouTube page) ─── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.steps-grid .step-card--wide {
    grid-column: 1 / -1;
}

.step-team {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-team-member {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid var(--red);
}

.step-team-member strong {
    color: var(--text);
    font-weight: 600;
}

/* ─── Video Gallery Items ─── */
.gallery-item--video {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    transition: all 0.35s ease;
}

.gallery-item--video:hover {
    border-color: rgba(230, 0, 0, 0.15);
    box-shadow: 0 0 25px rgba(230, 0, 0, 0.06);
}

.gallery-video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.gallery-video-thumb img,
.gallery-item--video > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item--video:hover img {
    transform: scale(1.04);
}

.gallery-video-label {
    padding: 1rem 1.2rem;
    color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
}

.gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(230, 0, 0, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    opacity: 0.9;
}

.gallery-play-icon svg {
    margin-left: 3px;
    width: 22px;
    height: 22px;
}

.gallery-item--video:hover .gallery-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(230, 0, 0, 0.4);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .prod-services,
    .prod-advantages {
        padding: 0 1rem 2rem;
    }

    .services-grid,
    .advantages-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .prod-cta {
        padding: 1rem 1rem 3rem;
    }

    .prod-cta-content {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid--2col {
        grid-template-columns: repeat(2, 1fr);
    }
}
