/* FORZIMA Process Page Styles */

/* ===== ACCESSIBILITY ===== */
.video-container video[controls] {
    background: var(--charcoal);
}

.video-container video::-webkit-media-controls-panel {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
}

.video-container video::-webkit-media-controls-play-button,
.video-container video::-webkit-media-controls-mute-button {
    background-color: var(--primary-gold);
    border-radius: 50%;
}

/* Screen reader support */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== VIDEO ERROR HANDLING ===== */
.video-error {
    background: var(--light-gray);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 1rem;
    border: 2px dashed var(--medium-gray);
}

.video-error h4 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.video-error p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.video-error a {
    color: var(--primary-gold);
    text-decoration: underline;
}

.video-error a:hover {
    color: var(--navy);
}

/* ===== PRINT STYLES ===== */
@media print {

    .video-container,
    .process-cta,
    .cta-buttons {
        display: none;
    }

    .individual-videos::after {
        content: "Videos available at: https://forzima.com/process.html";
        display: block;
        text-align: center;
        margin-top: 2rem;
        font-style: italic;
        color: var(--medium-gray);
    }
}

/* ===== PROCESS HERO ===== */
.process-hero {
    background: var(--light-gray);
    padding: 6rem 0 3rem 0;
    margin-top: 70px !important;
    text-align: center;
}

.process-hero h1 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    max-width: 800px;
    margin: 0 auto 1rem auto;
    line-height: 1.6;
}

.process-hero p:last-child {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== VIDEO CONTAINERS ===== */
.video-container {
    position: relative;
    background: var(--charcoal);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.video-container video:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* ===== MAIN VIDEO SECTION ===== */
.main-video-section {
    padding: 4rem 0;
    background: white;
}

.main-video-section h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.main-video {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.main-video .video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    min-height: 450px;
    max-height: 600px;
    margin: 0 auto;
    background: var(--charcoal);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-video .video-container video {
    width: 100%;
    height: auto;
    max-height: 600px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 1rem;
    background: #000;
    -webkit-tap-highlight-color: transparent;
}

.video-info {
    background: white;
    padding: 2rem;
    margin-top: -1rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--light-gray);
    border-top: none;
}

.video-info h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-info p {
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.video-stats .stat {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 0.4rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* ===== PROCESS STEPS OVERVIEW ===== */
.process-steps-overview {
    padding: 4rem 0;
    background: var(--light-gray);
}

.process-steps-overview h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 3rem;
}

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

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-gold);
}

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

.step-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-item p {
    color: var(--charcoal);
    margin: 0;
    line-height: 1.5;
}

/* ===== INDIVIDUAL VIDEOS SECTION ===== */
.individual-videos {
    padding: 4rem 0;
    background: white;
}

.individual-videos h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-gold);
}

.video-details {
    padding: 1.5rem;
}

.video-details h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.video-details p {
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-meta span {
    background: var(--light-gray);
    padding: 0.4rem 0.8rem;
    border-radius: 0.3rem;
    font-size: 0.85rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* ===== QUALITY STANDARDS ===== */
.quality-standards {
    padding: 4rem 0;
    background: var(--light-gray);
}

.quality-standards h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 3rem;
}

.standards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.standards-text p {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.quality-features {
    display: grid;
    gap: 1.5rem;
}

.quality-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.8rem;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.quality-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.quality-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.quality-item h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.quality-item p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* ===== COLOR OPTIONS SECTION ===== */
.color-options-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.color-options-section h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.color-showcase {
    display: block;
    margin-top: 3rem;
}

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

.color-item {
    text-align: center;
    background: white;
    border-radius: 0.8rem;
    padding: 1rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.color-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-gold);
}

.color-sample {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.color-item h4 {
    color: var(--navy);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.color-description {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.color-description h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.color-description>p {
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.color-cta {
    background: white;
    padding: 1.5rem;
    border-radius: 0.8rem;
    border-left: 4px solid var(--primary-gold);
    box-shadow: var(--shadow-light);
}

.color-cta p {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.color-cta .btn {
    display: inline-block;
}

/* ===== CAPABILITIES SHOWCASE ===== */
.capabilities-showcase {
    padding: 4rem 0;
    background: white;
}

.capabilities-showcase h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 3rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.capability-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition-smooth);
}

.capability-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.capability-card h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.capability-card ul {
    list-style: none;
    padding: 0;
}

.capability-card li {
    padding: 0.75rem 0;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(100, 116, 139, 0.2);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.capability-card li:last-child {
    border-bottom: none;
}

.capability-card li:hover {
    color: var(--navy);
    transform: translateX(5px);
}

/* ===== PROCESS CTA ===== */
.process-cta {
    padding: 4rem 0;
    background: var(--navy);
    color: white;
    text-align: center;
}

.process-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.process-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.process-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-contact p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contact-methods {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    transition: var(--transition-fast);
    font-size: 1rem;
}

.contact-method:hover {
    color: white;
    text-decoration: underline;
}

.method-icon {
    font-size: 1.2rem;
}

/* ===== VIDEO LOADING STATES ===== */
.video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: videoSpin 1s linear infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container.loading::before {
    opacity: 1;
}

@keyframes videoSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===== VIDEO PLAY OVERLAY ===== */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-heavy);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop optimizations for main video */
@media (min-width: 1200px) {
    .main-video .video-container {
        max-width: 750px;
        height: 420px;
    }

    .main-video .video-container video {
        max-height: 420px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .main-video .video-container {
        max-width: 700px;
        height: 390px;
    }

    .main-video .video-container video {
        max-height: 390px;
    }
}

@media (max-width: 768px) {
    .process-hero h1 {
        font-size: 2.5rem;
    }

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

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

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

    .quality-features {
        grid-template-columns: 1fr;
    }

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

    .color-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .color-item {
        padding: 0.8rem;
    }

    /* Tablet video optimization */
    .main-video .video-container {
        max-width: none;
        min-height: 350px;
        max-height: 60vh;
        border-radius: 0.5rem;
    }

    .main-video .video-container video {
        max-height: 60vh;
        border-radius: 0.5rem;
    }

    .color-sample {
        height: 60px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }

    .video-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .process-hero {
        padding: 4rem 0 2rem 0;
    }

    .process-hero h1 {
        font-size: 2rem;
    }

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

    .video-info {
        padding: 1.5rem;
    }

    .video-details {
        padding: 1rem;
    }

    .step-item,
    .capability-card {
        padding: 1.5rem;
    }

    .main-video {
        margin: 0 0.5rem;
    }

    .main-video .video-container {
        border-radius: 0.5rem;
    }

    .main-video .video-container video {
        border-radius: 0.5rem;
    }

    .main-video {
        margin: 0;
    }

    .main-video .video-container {
        max-width: none;
        height: auto;
        min-height: 400px;
        max-height: 70vh;
        margin: 0;
        border-radius: 0;
    }

    .main-video .video-container video {
        max-height: 70vh;
        height: auto;
        min-height: 400px;
        width: 100%;
        max-width: 100%;
        object-fit: contain;
        border-radius: 0;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===