/* Generator Tabs Section - Full Width */
.generator-tabs-section-full {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.generator-tabs-nav-full {
    margin-bottom: 50px;
    padding: 0 20px;
}

.tabs-wrapper-full {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-btn-full {
    background: #ffffff;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 25px 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.tab-btn-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.tab-btn-full:hover::before,
.tab-btn-full.active::before {
    left: 0;
}

.tab-btn-full:hover {
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.tab-btn-full.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #ffffff;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.35);
    transform: translateY(-5px);
}

.tab-icon-full {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #667eea;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.tab-btn-full.active .tab-icon-full {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.tab-content-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.tab-title-full {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.tab-btn-full.active .tab-title-full {
    color: #ffffff;
}

.tab-subtitle-full {
    font-size: 14px;
    color: #4a5568;
    transition: color 0.3s ease;
}

.tab-btn-full.active .tab-subtitle-full {
    color: rgba(255, 255, 255, 0.9);
}

.generator-tabs-content-full {
    position: relative;
    min-height: 600px;
}

.tab-panel-full {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-panel-full.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel-wrapper-full {
    background: transparent;
    padding: 0;
}

.generator-header-full {
    margin-bottom: 50px;
}

.generator-title-full {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.generator-description-full {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.bd-generator-form-wrapper-full {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
}

.form-input-box-full {
    margin-bottom: 30px;
}

.form-input-title-full {
    margin-bottom: 12px;
}

.form-input-title-full label {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: block;
    line-height: 1.4;
}

.form-input-title-full label span {
    color: #e53e3e;
    margin-left: 3px;
}

.form-hint {
    font-size: 13px;
    color: #718096;
    margin-top: 6px;
    line-height: 1.5;
    display: block;
}

.form-input-full textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a1a1a;
    resize: vertical;
    font-family: inherit;
}

.form-input-full textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #fafbfc;
}

.form-options-grid {
    margin-top: 35px;
}

.form-options-grid .row {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.form-option-card {
    background: #ffffff;
    border: 2px solid rgba(102, 126, 234, 0.12);
    border-radius: 14px;
    padding: 18px 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.06);
    display: flex;
    flex-direction: column;
}

.form-option-card:hover {
    border-color: rgba(102, 126, 234, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.12);
}

.form-option-header {
    margin-bottom: 10px;
    flex-shrink: 0;
}

.form-option-header label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #667eea;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.form-option-header label i {
    font-size: 16px;
    color: #667eea;
    flex-shrink: 0;
}

.form-option-input {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.form-option-input select {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid rgba(102, 126, 234, 0.12);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    background: #ffffff;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    line-height: 1.4;
}

.form-option-input select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #fafbfc;
}

.form-option-input::after {
    content: '\ea4e';
    font-family: 'remixicon';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #667eea;
    font-size: 16px;
    font-weight: 400;
}

.bd-generator-form-btn-full {
    margin-top: 40px;
}

.bd-generator-form-btn-full .bd-btn {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
}

/* Responsive Full Width Tabs */
@media (max-width: 991px) {
    .tabs-wrapper-full {
        gap: 15px;
    }

    .tab-btn-full {
        min-width: calc(50% - 10px);
        padding: 20px 25px;
    }

    .generator-title-full {
        font-size: 2.5rem;
    }

    .generator-description-full {
        font-size: 1.1rem;
    }

    .bd-generator-form-wrapper-full {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .tabs-wrapper-full {
        flex-direction: column;
        gap: 15px;
    }
    
    .tab-btn-full {
        min-width: 100%;
        padding: 18px 25px;
    }
    
    .tab-icon-full {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .tab-title-full {
        font-size: 18px;
    }
    
    .tab-subtitle-full {
        font-size: 13px;
    }
    
    .generator-title-full {
        font-size: 2rem;
    }
    
    .generator-description-full {
        font-size: 1rem;
    }
    
    .bd-generator-form-wrapper-full {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .form-options-grid .row {
        max-width: 100%;
    }
    
    .form-option-card {
        padding: 18px;
    }
    
    .form-option-header label {
        font-size: 13px;
    }
    
    .form-option-input select {
        padding: 10px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tab-btn-full {
        padding: 15px 20px;
        gap: 15px;
    }

    .tab-icon-full {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .tab-title-full {
        font-size: 16px;
    }

    .tab-subtitle-full {
        font-size: 12px;
    }

    .generator-title-full {
        font-size: 1.75rem;
    }

    .bd-generator-form-wrapper-full {
        padding: 25px 15px;
    }

    .form-input-full textarea {
        padding: 15px;
        font-size: 15px;
    }

    .form-option-card {
        padding: 18px;
    }
}

/* Hero Section Adjustments */
.bd-hero-premium {
    min-height: 85vh !important;
    padding: 120px 0 100px !important;
}

.generator-tabs-section-full {
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .bd-hero-premium {
        min-height: 75vh !important;
        padding: 100px 0 80px !important;
    }

    .generator-tabs-section-full {
        margin-top: -30px;
    }
}

@media (max-width: 480px) {
    .bd-hero-premium {
        min-height: 70vh !important;
        padding: 80px 0 60px !important;
    }

    .generator-tabs-section-full {
        margin-top: -20px;
    }
}

/* Floating Stats Styles */
.floating-stats {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 15px 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 140px;
    pointer-events: auto;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.stat-bubble:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

.stat-bubble.stat-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.stat-bubble.stat-2 {
    bottom: 30%;
    right: -30px;
    animation-delay: 1s;
}

.stat-bubble.stat-3 {
    top: 50%;
    left: -20px;
    animation-delay: 2s;
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Video Frame Styles */
.video-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(102, 126, 234, 0.3);
    background: #ffffff;
    padding: 8px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.video-thumbnail:hover .play-button-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
    transform: scale(1.1);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Floating Stats */
@media (max-width: 991px) {
    .stat-bubble {
        min-width: 120px;
        padding: 12px 16px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-bubble.stat-1 {
        right: -15px;
    }

    .stat-bubble.stat-2 {
        right: -20px;
    }

    .stat-bubble.stat-3 {
        left: -15px;
    }
}

@media (max-width: 768px) {
    .floating-stats {
        display: none;
    }
}

/* Dropzone Styles - Simple and Clean */
.dropzone-wrapper-simple {
    margin-top: 10px;
}

.dropzone-simple {
    border: 2px dashed rgba(102, 126, 234, 0.25) !important;
    border-radius: 12px !important;
    background: #f7fafc !important;
    padding: 30px 20px !important;
    min-height: 180px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.dropzone-simple:hover {
    border-color: rgba(102, 126, 234, 0.4) !important;
    background: #f0f4f8 !important;
}

.dropzone-simple.dz-drag-hover {
    border-color: #667eea !important;
    background: rgba(102, 126, 234, 0.05) !important;
    border-width: 2px !important;
}

.dropzone-simple.dz-started {
    min-height: auto !important;
    padding: 20px !important;
    background: #ffffff !important;
    border: 2px solid rgba(102, 126, 234, 0.15) !important;
}

.dz-message {
    text-align: center;
    margin: 0 !important;
    padding: 0 !important;
}

.dz-message i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 15px;
    display: block;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dropzone-simple.dz-drag-hover .dz-message i {
    opacity: 1;
    transform: scale(1.1);
    color: #667eea;
}

.dz-message p {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.dz-note {
    font-size: 12px;
    color: #718096;
    display: block;
    margin-top: 6px;
    line-height: 1.5;
}

/* Hide message when files are added */
.dropzone-simple.dz-started .dz-message {
    display: none !important;
}

/* File previews container */
.dropzone-simple.dz-started {
    display: block !important;
}

.dz-preview {
    margin: 0 8px 12px 8px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 2px solid rgba(102, 126, 234, 0.12) !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08) !important;
    width: calc(20% - 16px) !important;
    min-width: 120px !important;
    max-width: 150px !important;
    display: inline-block !important;
    vertical-align: top !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.dz-preview:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.12) !important;
    border-color: rgba(102, 126, 234, 0.25) !important;
}

.dz-image {
    border-radius: 10px 10px 0 0 !important;
    width: 100% !important;
    height: 100px !important;
    background: #f7fafc !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.dz-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.dz-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
}

.dz-image i {
    position: absolute;
    z-index: 2;
    font-size: 40px;
    color: #667eea;
    opacity: 0.7;
}

.dz-details {
    padding: 10px 12px !important;
    background: #ffffff !important;
    position: relative !important;
}

.dz-filename {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-bottom: 4px !important;
    word-break: break-word !important;
    line-height: 1.3 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.dz-size {
    font-size: 11px !important;
    color: #718096 !important;
    font-weight: 500 !important;
}

.dz-progress {
    height: 4px !important;
    background: rgba(102, 126, 234, 0.1) !important;
    border-radius: 0 0 12px 12px !important;
}

.dz-progress .dz-upload {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    height: 100% !important;
    border-radius: 0 0 12px 12px !important;
}

.dz-success-mark,
.dz-error-mark {
    display: none !important;
}

.dz-error-message {
    font-size: 12px !important;
    color: #e53e3e !important;
    margin-top: 5px !important;
}

.dz-remove {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    width: 28px !important;
    height: 28px !important;
    background: rgba(229, 62, 62, 0.95) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3) !important;
    opacity: 0.9 !important;
}

.dz-remove:hover {
    background: #e53e3e !important;
    transform: scale(1.15) !important;
    opacity: 1 !important;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.4) !important;
}

/* File Type Icons */
.dz-preview[data-dz-type="video"] .dz-image i::before {
    content: '\ea6c';
    font-family: 'remixicon';
}

.dz-preview[data-dz-type="image"] .dz-image i::before {
    content: '\eb57';
    font-family: 'remixicon';
}

.dz-preview[data-dz-type="application"] .dz-image i::before {
    content: '\ee9a';
    font-family: 'remixicon';
}

/* Responsive Dropzone */
@media (max-width: 768px) {
    .dropzone {
        padding: 30px 15px !important;
        min-height: 180px !important;
    }

    .dz-message i {
        font-size: 40px;
    }

    .dz-message p {
        font-size: 14px;
    }

    .dz-note {
        font-size: 12px;
    }

    .dz-preview {
        margin: 10px !important;
    }
}
