/**
 * Range Rover BR6 P530 Extended Showcase Section Styles
 * SchutzCarr Armored Vehicles Theme
 */

/* Range Rover Showcase Section */
.range-rover-showcase-section {
    margin: var(--spacing-xl) 0;
    position: relative;
}

.range-rover-showcase {
    position: relative;
}

.showcase-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-xl) 0 var(--spacing-lg) 0;
    position: relative;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 169, 104, 0.3) 50%, transparent 100%);
}

.divider-icon {
    margin: 0 var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(212, 169, 104, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(212, 169, 104, 0.3);
}

.divider-icon i {
    color: var(--color-accent-1);
    font-size: 1rem;
}

.showcase-content {
    background: rgba(26, 32, 40, 0.6);
    border-radius: 12px;
    padding: var(--spacing-xl);
    border: 1px solid rgba(212, 169, 104, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.showcase-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(212, 169, 104, 0.02) 2px,
        rgba(212, 169, 104, 0.02) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.showcase-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.showcase-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 169, 104, 0.2) 0%, rgba(212, 169, 104, 0.1) 100%);
    border: 1px solid rgba(212, 169, 104, 0.4);
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: var(--spacing-md);
}

.showcase-badge .badge-text {
    color: var(--color-accent-1);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.showcase-title .title-highlight {
    color: var(--color-accent-1);
    display: block;
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.showcase-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Video Container */
.showcase-video-container {
    margin: var(--spacing-lg) 0;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 169, 104, 0.3);
    max-width: 640px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio for 360p video */
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.tactical-scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 2px,
        rgba(212, 169, 104, 0.05) 2px,
        rgba(212, 169, 104, 0.05) 4px
    );
    opacity: 0.6;
}

/* Feature Grid */
.showcase-features {
    margin: var(--spacing-lg) 0;
    position: relative;
    z-index: 2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: var(--spacing-md);
    transition: all var(--transition-medium);
}

.feature-item:hover {
    background: rgba(212, 169, 104, 0.05);
    border-color: rgba(212, 169, 104, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    margin-right: var(--spacing-sm);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 169, 104, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(212, 169, 104, 0.3);
}

.feature-icon i {
    color: var(--color-accent-1);
    font-size: 1rem;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.feature-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* Showcase CTA Button */
.showcase-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.btn-showcase-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #d4a90a 0%, #b8900a 100%);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 169, 10, 0.3);
    min-height: 60px;
    gap: 12px;
}

.btn-showcase-primary:hover {
    background: linear-gradient(135deg, #e5ba0b 0%, #d4a90a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 169, 10, 0.4);
    color: #000000;
    text-decoration: none;
}

.btn-showcase-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 169, 10, 0.3);
}

.btn-showcase-primary i {
    font-size: 1.2rem;
    margin-right: 0;
}

.btn-showcase-primary .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-showcase-primary .btn-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.btn-showcase-primary .btn-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0;
}

.btn-tactical-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.6s ease-in-out;
    z-index: -1;
}

.btn-showcase-primary:hover .btn-tactical-effect {
    left: 100%;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .showcase-content {
        padding: var(--spacing-md);
    }

    .showcase-title {
        font-size: 1.6rem;
    }

    .showcase-title .title-highlight {
        font-size: 1.4rem;
    }

    .video-wrapper {
        max-width: 100%;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .feature-item {
        padding: var(--spacing-sm);
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-icon i {
        font-size: 0.9rem;
    }

    .btn-showcase-primary {
        padding: 14px 24px;
        font-size: 0.9rem;
        min-height: 50px;
        gap: 10px;
    }

    .btn-showcase-primary .btn-text {
        align-items: center;
        text-align: center;
    }

    .btn-showcase-primary .btn-label {
        font-size: 0.9rem;
    }

    .btn-showcase-primary .btn-subtitle {
        font-size: 0.75rem;
    }

    .btn-showcase-primary i {
        font-size: 1rem;
    }
}
