/* ============================================
       ZIP PASSWORD REMOVE TOOL - CUSTOM STYLES
       These styles are scoped to not affect header/footer
       ============================================ */
    
    :root {
        --zip-primary: #146c43;
        --zip-secondary: #fe015e;
        --zip-accent: #ffbd29;
        --zip-dark: #1a1a2e;
        --zip-light: #f8f9fa;
        --zip-gradient: linear-gradient(135deg, #146c43 0%, #1a8f5a 100%);
        --zip-gradient-secondary: linear-gradient(135deg, #fe015e 0%, #ff4081 100%);
        --zip-gradient-accent: linear-gradient(135deg, #ffbd29 0%, #ffd93d 100%);
    }
    
    .zip-tool-wrapper {
        font-family: 'Inter', sans-serif;
        background: linear-gradient(180deg, #f0f4f8 0%, #e8f5e9 100%);
        min-height: 100vh;
        padding: 0;
    }
    
    /* Hero Section */
    .zip-hero-section {
        background: var(--zip-gradient);
        padding: 60px 0 80px;
        position: relative;
        overflow: hidden;
    }
    
    .zip-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    
    .zip-hero-content {
        position: relative;
        z-index: 2;
    }
    
    .zip-hero-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }
    
    .zip-hero-subtitle {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .zip-rating-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        padding: 10px 20px;
        border-radius: 50px;
        color: #ffffff;
        font-weight: 600;
    }
    
    .zip-rating-badge .stars {
        color: var(--zip-accent);
        margin-right: 10px;
    }
    
    /* Main Tool Section */
    .zip-tool-main {
        padding: 60px 0;
    }
    
    .zip-tool-card {
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(20, 108, 67, 0.15);
        padding: 40px;
        margin-top: -60px;
        position: relative;
        z-index: 10;
        border: 1px solid rgba(20, 108, 67, 0.1);
    }
    
    .zip-upload-zone {
        border: 3px dashed var(--zip-primary);
        border-radius: 20px;
        padding: 60px 40px;
        text-align: center;
        background: linear-gradient(135deg, rgba(20, 108, 67, 0.03) 0%, rgba(20, 108, 67, 0.08) 100%);
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }
    
    .zip-upload-zone:hover {
        border-color: var(--zip-secondary);
        background: linear-gradient(135deg, rgba(254, 1, 94, 0.03) 0%, rgba(254, 1, 94, 0.08) 100%);
        transform: translateY(-2px);
    }
    
    .zip-upload-zone.drag-over {
        border-color: var(--zip-accent);
        background: linear-gradient(135deg, rgba(255, 189, 41, 0.1) 0%, rgba(255, 189, 41, 0.2) 100%);
        transform: scale(1.02);
    }
    
    .zip-upload-icon {
        width: 100px;
        height: 100px;
        background: var(--zip-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 40px;
        color: #ffffff;
        box-shadow: 0 10px 30px rgba(20, 108, 67, 0.3);
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .zip-upload-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--zip-dark);
        margin-bottom: 10px;
    }
    
    .zip-upload-text {
        color: #6c757d;
        margin-bottom: 20px;
    }
    
    .zip-btn-browse {
        background: var(--zip-gradient-secondary);
        color: #ffffff;
        border: none;
        padding: 14px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(254, 1, 94, 0.3);
    }
    
    .zip-btn-browse:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(254, 1, 94, 0.4);
        color: #ffffff;
    }
    
    .zip-file-info {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: 20px;
    }
    
    .zip-file-info i {
        color: var(--zip-primary);
    }
    
    /* File Preview */
    .zip-file-preview {
        display: none;
        background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
        border-radius: 16px;
        padding: 25px;
        margin-top: 25px;
        border: 1px solid rgba(20, 108, 67, 0.2);
    }
    
    .zip-file-preview.show {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .zip-file-icon {
        width: 60px;
        height: 60px;
        background: var(--zip-gradient-accent);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: var(--zip-dark);
    }
    
    .zip-file-name {
        font-weight: 600;
        color: var(--zip-dark);
        font-size: 1.1rem;
        word-break: break-all;
    }
    
    .zip-file-size {
        color: #6c757d;
        font-size: 0.9rem;
    }
    
    .zip-btn-remove {
        background: #dc3545;
        color: #ffffff;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .zip-btn-remove:hover {
        background: #c82333;
        transform: rotate(90deg);
        color: #ffffff;
    }
    
    /* Password Input */
    .zip-password-section {
        display: none;
        margin-top: 25px;
    }
    
    .zip-password-section.show {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .zip-input-group {
        position: relative;
    }
    
    .zip-input-group .form-control {
        padding: 16px 50px 16px 20px;
        border-radius: 12px;
        border: 2px solid #e9ecef;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .zip-input-group .form-control:focus {
        border-color: var(--zip-primary);
        box-shadow: 0 0 0 4px rgba(20, 108, 67, 0.1);
    }
    
    .zip-toggle-password {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #6c757d;
        cursor: pointer;
        z-index: 10;
    }
    
    .zip-toggle-password:hover {
        color: var(--zip-primary);
    }
    
    /* Action Buttons */
    .zip-action-buttons {
        display: none;
        margin-top: 30px;
        gap: 15px;
    }
    
    .zip-action-buttons.show {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        animation: fadeIn 0.3s ease;
    }
    
    .zip-btn-primary {
        background: var(--zip-gradient);
        color: #ffffff;
        border: none;
        padding: 16px 50px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(20, 108, 67, 0.3);
    }
    
    .zip-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(20, 108, 67, 0.4);
        color: #ffffff;
    }
    
    .zip-btn-primary:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }
    
    .zip-btn-secondary {
        background: #ffffff;
        color: var(--zip-primary);
        border: 2px solid var(--zip-primary);
        padding: 14px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .zip-btn-secondary:hover {
        background: var(--zip-primary);
        color: #ffffff;
    }
    
    /* Progress Bar */
    .zip-progress-section {
        display: none;
        margin-top: 30px;
    }
    
    .zip-progress-section.show {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .zip-progress {
        height: 12px;
        border-radius: 50px;
        background: #e9ecef;
        overflow: hidden;
    }
    
    .zip-progress-bar {
        background: var(--zip-gradient);
        height: 100%;
        border-radius: 50px;
        transition: width 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .zip-progress-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        animation: shimmer 1.5s infinite;
    }
    
    @keyframes shimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }
    
    .zip-progress-text {
        text-align: center;
        margin-top: 15px;
        font-weight: 600;
        color: var(--zip-primary);
    }
    
    /* Success Section */
    .zip-success-section {
        display: none;
        text-align: center;
        padding: 40px;
        background: linear-gradient(135deg, rgba(20, 108, 67, 0.05) 0%, rgba(20, 108, 67, 0.1) 100%);
        border-radius: 20px;
        margin-top: 30px;
    }
    
    .zip-success-section.show {
        display: block;
        animation: fadeIn 0.5s ease;
    }
    
    .zip-success-icon {
        width: 100px;
        height: 100px;
        background: var(--zip-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 50px;
        color: #ffffff;
        animation: bounceIn 0.5s ease;
    }
    
    @keyframes bounceIn {
        0% { transform: scale(0); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }
    
    .zip-success-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--zip-primary);
        margin-bottom: 10px;
    }
    
    .zip-btn-download {
        background: var(--zip-gradient-accent);
        color: var(--zip-dark);
        border: none;
        padding: 16px 50px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(255, 189, 41, 0.4);
        margin-top: 20px;
    }
    
    .zip-btn-download:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 189, 41, 0.5);
        color: var(--zip-dark);
    }
    
    /* Ad Sections */
    .zip-ad-section {
        background: #ffffff;
        border-radius: 16px;
        padding: 20px;
        text-align: center;
        border: 2px dashed #dee2e6;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: #adb5bd;
        position: sticky;
        top: 20px;
    }
    
    .zip-ad-section i {
        font-size: 48px;
        margin-bottom: 15px;
        opacity: 0.5;
    }
    
    /* Features Section */
    .zip-features-section {
        padding: 80px 0;
        background: #ffffff;
    }
    
    .zip-section-title {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--zip-dark);
        margin-bottom: 15px;
        text-align: center;
    }
    
    .zip-section-subtitle {
        color: #6c757d;
        text-align: center;
        max-width: 600px;
        margin: 0 auto 50px;
        font-size: 1.1rem;
    }
    
    .zip-feature-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 20px;
        padding: 35px 25px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        height: 100%;
    }
    
    .zip-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        border-color: var(--zip-primary);
    }
    
    .zip-feature-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 36px;
        color: #ffffff;
    }
    
    .zip-feature-icon.green { background: var(--zip-gradient); }
    .zip-feature-icon.pink { background: var(--zip-gradient-secondary); }
    .zip-feature-icon.yellow { background: var(--zip-gradient-accent); color: var(--zip-dark); }
    
    .zip-feature-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--zip-dark);
        margin-bottom: 15px;
    }
    
    .zip-feature-text {
        color: #6c757d;
        line-height: 1.7;
    }
    
    /* How It Works Section */
    .zip-howto-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f0f4f8 0%, #e8f5e9 100%);
    }
    
    .zip-step-card {
        text-align: center;
        padding: 30px;
    }
    
    .zip-step-number {
        width: 70px;
        height: 70px;
        background: var(--zip-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 28px;
        font-weight: 800;
        color: #ffffff;
        box-shadow: 0 10px 30px rgba(20, 108, 67, 0.3);
    }
    
    .zip-step-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--zip-dark);
        margin-bottom: 15px;
    }
    
    .zip-step-text {
        color: #6c757d;
        line-height: 1.7;
    }
    
    .zip-step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        color: var(--zip-primary);
        opacity: 0.5;
    }
    
    /* FAQ Section */
    .zip-faq-section {
        padding: 80px 0;
        background: #ffffff;
    }
    
    .zip-accordion .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 16px !important;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .zip-accordion .accordion-button {
        padding: 25px 30px;
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--zip-dark);
        background: #ffffff;
        border: none;
    }
    
    .zip-accordion .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, rgba(20, 108, 67, 0.05) 0%, rgba(20, 108, 67, 0.1) 100%);
        color: var(--zip-primary);
        box-shadow: none;
    }
    
    .zip-accordion .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    
    .zip-accordion .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23146c43'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    
    .zip-accordion .accordion-body {
        padding: 0 30px 25px;
        color: #6c757d;
        line-height: 1.8;
    }
    
    /* Content Section */
    .zip-content-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f0f4f8 0%, #e8f5e9 100%);
    }
    
    .zip-content-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 50px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    }
    
    .zip-content-card h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--zip-dark);
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid var(--zip-primary);
        display: inline-block;
    }
    
    .zip-content-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--zip-primary);
        margin: 30px 0 15px;
    }
    
    .zip-content-card p {
        color: #4a4a4a;
        line-height: 1.9;
        margin-bottom: 20px;
        font-size: 1.05rem;
    }
    
    .zip-content-card ul {
        list-style: none;
        padding: 0;
    }
    
    .zip-content-card ul li {
        padding: 12px 0 12px 35px;
        position: relative;
        color: #4a4a4a;
        line-height: 1.7;
    }
    
    .zip-content-card ul li::before {
        content: '\f26a';
        font-family: 'bootstrap-icons';
        position: absolute;
        left: 0;
        color: var(--zip-primary);
        font-size: 1.2rem;
    }
    
    /* Related Tools */
    .zip-related-section {
        padding: 80px 0;
        background: #ffffff;
    }
    
    .zip-related-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 16px;
        padding: 25px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        text-decoration: none;
        display: block;
    }
    
    .zip-related-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-color: var(--zip-primary);
    }
    
    .zip-related-icon {
        width: 60px;
        height: 60px;
        background: var(--zip-gradient);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 26px;
        color: #ffffff;
    }
    
    .zip-related-title {
        font-weight: 600;
        color: var(--zip-dark);
        margin-bottom: 5px;
    }
    
    .zip-related-text {
        color: #6c757d;
        font-size: 0.9rem;
    }
    
    /* Toast Notification Styles */
    .zip-toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
    }
    
    .zip-toast {
        min-width: 350px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        animation: slideIn 0.3s ease;
    }
    
    @keyframes slideIn {
        from { transform: translateX(100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
    
    .zip-toast.success {
        background: linear-gradient(135deg, #146c43 0%, #1a8f5a 100%);
    }
    
    .zip-toast.error {
        background: linear-gradient(135deg, #fe015e 0%, #ff4081 100%);
    }
    
    .zip-toast.warning {
        background: linear-gradient(135deg, #ffbd29 0%, #ffd93d 100%);
    }
    
    .zip-toast.warning .toast-body {
        color: #1a1a2e !important;
    }
    
    .zip-toast .toast-body {
        padding: 20px;
        color: #ffffff;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .zip-toast .toast-body i {
        font-size: 24px;
    }
    
    .zip-toast .btn-close {
        filter: brightness(0) invert(1);
    }
    
    /* Modal Styles */
    .zip-modal .modal-content {
        border-radius: 20px;
        border: none;
        overflow: hidden;
    }
    
    .zip-modal .modal-header {
        background: var(--zip-gradient);
        color: #ffffff;
        border: none;
        padding: 25px 30px;
    }
    
    .zip-modal .modal-title {
        font-weight: 700;
    }
    
    .zip-modal .btn-close {
        filter: brightness(0) invert(1);
    }
    
    .zip-modal .modal-body {
        padding: 40px;
        text-align: center;
    }
    
    .zip-modal .modal-footer {
        border: none;
        padding: 20px 30px 30px;
        justify-content: center;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .zip-ad-section {
            display: none;
        }
        
        .zip-step-arrow {
            transform: rotate(90deg);
            margin: 20px 0;
        }
    }
    
    @media (max-width: 768px) {
        .zip-hero-title {
            font-size: 2rem;
        }
        
        .zip-hero-subtitle {
            font-size: 1rem;
        }
        
        .zip-tool-card {
            padding: 25px;
        }
        
        .zip-upload-zone {
            padding: 40px 20px;
        }
        
        .zip-section-title {
            font-size: 1.8rem;
        }
        
        .zip-content-card {
            padding: 30px;
        }
        
        .zip-content-card h2 {
            font-size: 1.5rem;
        }
    }
    
    /* Spinner Animation */
    .zip-spinner {
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255,255,255,0.3);
        border-top-color: #ffffff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        display: inline-block;
        margin-right: 10px;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }