/* ============================================
   VIDEO PAGE SPECIFIC STYLES
   ============================================ */

/* Import base styles */
@import url('furniture-style.css');

/* Videos Grid */
.videos-section {
    padding: 8rem 4rem;
    background: #0a0a0a;
}

.videos-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
}

/* Video Card */
.video-card {
    background: rgba(17, 17, 17, 0.6);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(59, 68, 75, 0.1);
    opacity: 0;
    transform: translateY(50px);
}

.video-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    border-color: rgba(59, 68, 75, 0.3);
}

/* Video Thumbnail */
.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.1);
}

/* Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.video-card:hover .video-play-overlay {
    opacity: 1;
}

.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
}

.play-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.play-icon-circle::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.play-icon-circle i {
    font-size: 1.8rem;
    color: #fff;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.video-play-btn:hover .play-icon-circle {
    background: rgba(59, 68, 75, 0.9);
    border-color: #3B444B;
    transform: scale(1.1);
}

.video-play-btn:hover .play-icon-circle i {
    transform: scale(1.1);
}

.play-text {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

/* Duration Badge */
.video-duration-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
}

.video-duration-badge i {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Type Badge */
.video-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 68, 75, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 600;
    z-index: 3;
}

/* Video Info */
.video-info {
    padding: 2rem;
}

.video-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #fff;
    transition: color 0.3s ease;
}

.video-card:hover .video-title {
    color: #3B444B;
}

.video-description {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(59, 68, 75, 0.2);
}

.video-meta-left {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-year,
.video-client {
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.6;
}

.video-client {
    color: #3B444B;
    font-weight: 600;
}

.availability-badge {
    padding: 0.4rem 1rem;
    background: rgba(59, 68, 75, 0.2);
    border: 1px solid rgba(59, 68, 75, 0.3);
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Video Actions */
.video-actions {
    display: flex;
    gap: 1rem;
}

.video-details-btn,
.video-inquiry-btn {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(59, 68, 75, 0.3);
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.video-details-btn i,
.video-inquiry-btn i {
    font-size: 0.9rem;
}

.video-details-btn:hover {
    background: rgba(59, 68, 75, 0.2);
    border-color: #3B444B;
}

.video-inquiry-btn {
    background: #3B444B;
    border-color: #3B444B;
}

.video-inquiry-btn:hover {
    background: #4a5562;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.4);
}

/* ============================================
   VIDEO PLAYER MODAL
   ============================================ */

.video-player-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.video-player-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.video-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.video-player-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10001;
}

.video-player-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(59, 68, 75, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player-close:hover {
    background: #3B444B;
    transform: rotate(90deg);
}

.video-player-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
}

.embed-player,
.local-player {
    width: 100%;
    height: 100%;
}

.embed-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    color: #fff;
}

.video-player-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
}

.video-player-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   HIDDEN CARDS & LOAD MORE
   ============================================ */

.hidden-card {
    display: none;
}

.load-more-wrapper {
    text-align: center;
    padding: 5rem 0;
}

.load-more-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(59, 68, 75, 0.5);
    padding: 1.2rem 3rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(59, 68, 75, 0.3);
    transition: left 0.4s ease;
    z-index: 0;
}

.load-more-btn:hover::before {
    left: 0;
}

.load-more-btn:hover {
    border-color: #3B444B;
    transform: translateY(-3px);
}

.btn-text,
.btn-count {
    position: relative;
    z-index: 1;
}

.btn-count {
    margin-left: 0.5rem;
    opacity: 0.6;
}

.load-more-btn.hidden {
    display: none;
}

/* ============================================
   INQUIRY MODAL
   ============================================ */

.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10100;
    display: none;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.inquiry-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.inquiry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.inquiry-container {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background: rgba(17, 17, 17, 0.95);
    border-radius: 20px;
    padding: 3rem;
    z-index: 10101;
    border: 1px solid rgba(59, 68, 75, 0.3);
    overflow-y: auto;
}

.inquiry-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(59, 68, 75, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-close:hover {
    background: #3B444B;
    transform: rotate(90deg);
}

.inquiry-header {
    text-align: center;
    margin-bottom: 3rem;
}

.inquiry-header i {
    font-size: 3rem;
    color: #3B444B;
    margin-bottom: 1rem;
}

.inquiry-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.inquiry-header p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.inquiry-header p span {
    color: #3B444B;
    font-weight: 600;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.form-group label i {
    color: #3B444B;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem 1.5rem;
    background: rgba(59, 68, 75, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3B444B;
    background: rgba(59, 68, 75, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.inquiry-submit-btn {
    padding: 1.2rem 3rem;
    background: #3B444B;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.inquiry-submit-btn:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 68, 75, 0.5);
}

.inquiry-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.inquiry-success.active {
    display: block;
}

.inquiry-success i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.inquiry-success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.inquiry-success p {
    opacity: 0.8;
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .videos-section {
        padding: 6rem 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-play-overlay {
        opacity: 1;
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.6) 100%
        );
    }
    
    .play-icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .play-icon-circle i {
        font-size: 1.5rem;
    }
    
    .video-actions {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .inquiry-container {
        padding: 2rem 1.5rem;
    }
    
    .video-player-container {
        width: 95%;
    }
    
    .video-player-close {
        top: -50px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .videos-section {
        padding: 4rem 1.5rem;
    }
    
    .video-info {
        padding: 1.5rem;
    }
    
    .video-title {
        font-size: 1.3rem;
    }
    
    .play-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .play-icon-circle i {
        font-size: 1.3rem;
    }
    
    .inquiry-header h2 {
        font-size: 2rem;
    }
}


/* ===================================
   VIDEO INFO BANNER - ORBIS.EXMACHINA
   =================================== */

.video-info-banner {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, #0d0d12 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.video-info-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 68, 75, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: start;
}

/* ===================================
   LEFT SIDE - INFO MAIN
   =================================== */

.info-main {
    background: rgba(59, 68, 75, 0.05);
    border: 1px solid rgba(59, 68, 75, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.info-main:hover {
    background: rgba(59, 68, 75, 0.08);
    box-shadow: 0 10px 40px rgba(59, 68, 75, 0.2);
    transform: translateY(-5px);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 68, 75, 0.1);
    border: 2px solid rgba(59, 68, 75, 0.3);
    border-radius: 50%;
    font-size: 2rem;
    color: #3B444B;
    transition: all 0.5s ease;
}


@keyframes pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.info-icon i {
    font-size: 2.5rem;
   
    position: relative;
    z-index: 1;
}

.info-title {
  
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: #3B444B;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.info-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

/* Info Features */
.info-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(59, 68, 75, 0.1);
    border: 1px solid rgba(59, 68, 75, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(59, 68, 75, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(59, 68, 75, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: #3B444B;
    margin-bottom: 1rem;
}

.feature-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

/* ===================================
   RIGHT SIDE - PRICING
   =================================== */

.info-pricing {
    position: sticky;
    top: 8rem;
}

.pricing-card {
    background: rgba(59, 68, 75, 0.08);
    border: 2px solid rgba(59, 68, 75, 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3B444B 0%, #495660 100%);
}

.pricing-card:hover {
    background: rgba(59, 68, 75, 0.12);
    border-color: #3B444B;
    box-shadow: 0 15px 50px rgba(59, 68, 75, 0.3);
    transform: translateY(-10px);
}

.price-tag {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(59, 68, 75, 0.2);
}

.price-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.price-amount {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    letter-spacing: 2px;
    color: #3B444B;
    line-height: 1;
}

/* Pricing Includes */
.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-includes li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(59, 68, 75, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.pricing-includes li:last-child {
    border-bottom: none;
}

.pricing-includes li:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.pricing-includes li i {
    font-size: 1rem;
    color: #3B444B;
    flex-shrink: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .video-info-banner {
        padding: 6rem 3rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .info-pricing {
        position: relative;
        top: 0;
    }

    .info-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .video-info-banner {
        padding: 5rem 1.5rem;
    }

    .info-main {
        padding: 2rem 1.5rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .info-icon i {
        font-size: 2rem;
    }

    .info-title {
        font-size: 2rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }

    .info-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .info-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 1rem 1.5rem;
    }

    .feature-item i {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 1rem;
    }

    .feature-item span {
        font-size: 0.85rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .pricing-includes li {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .info-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .info-description {
        font-size: 0.9rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .pricing-includes li {
        font-size: 0.85rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal animations */
.info-main,
.info-pricing {
    animation: fadeInUp 0.8s ease forwards;
}

.info-pricing {
    animation-delay: 0.2s;
}