/* Remove Line Breaks Tool Styles - Professional Orange/Purple Theme */

/* Reset for our tool only */
.remove-line-breaks-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Tool Description Section - Header Only */
.tool-description-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa62e 100%);
    color: white;
    padding: 50px 0 30px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.tool-description-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" opacity="0.1"><path d="M0,50 Q250,0 500,50 T1000,50 V100 H0 Z" fill="white"/></svg>');
    background-size: cover;
}

.tool-description-section .remove-line-breaks-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tool-main-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tool-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Container */
.remove-line-breaks-container {
    background: linear-gradient(180deg, #f9f7ff 0%, #ffffff 100%);
    padding: 30px 0 50px;
    width: 100%;
    min-height: calc(100vh - 200px);
}

.remove-line-breaks-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Layout - Tool and Sidebar */
.tool-layout {
    display: flex;
    gap: 30px;
    position: relative;
    margin-top: 30px;
}

.main-content-area {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-area {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Input Section - Professional Design */
.input-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
    padding: 30px;
    width: 100%;
    border: 1px solid #ffe5d9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.input-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.input-section h2 {
    color: #ff6b35;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #fff0eb;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.section-icon {
    font-size: 1.6rem;
}

/* Textareas - Professional */
#lineBreakTextInput, #cleanedTextOutput {
    width: 100%;
    min-height: 220px;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    resize: vertical;
}

#lineBreakTextInput:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

#cleanedTextOutput {
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    border-color: #d6bcfa;
    color: #2d3748;
    font-size: 15px;
}

/* Privacy Notice */
.privacy-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0 25px;
    padding: 15px;
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
    border: 1px solid #b3e0ff;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0066cc;
    animation: fadeIn 0.5s ease;
}

.privacy-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.privacy-text {
    line-height: 1.5;
    font-weight: 500;
}

/* Text Controls */
.text-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border: 1px dashed #dee2e6;
}

.file-info {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Buttons - Professional Design */
.remove-line-breaks-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.remove-line-breaks-buttons .btn {
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.remove-line-breaks-buttons .btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.remove-line-breaks-buttons .btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

.btn-icon {
    font-size: 1.2rem;
}

.remove-line-breaks-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.remove-line-breaks-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #ff5a20 0%, #ff7b3a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.remove-line-breaks-buttons .btn-secondary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.remove-line-breaks-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #9461f8 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.remove-line-breaks-buttons .btn-clear {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.remove-line-breaks-buttons .btn-clear:hover {
    background: linear-gradient(135deg, #dc2626 0%, #f05252 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

/* Results Section */
.results-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
    padding: 30px;
    width: 100%;
    border: 1px solid #e9d8fd;
}

.results-section h2 {
    color: #8b5cf6;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f5f3ff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

/* Cleaned Text Container */
.cleaned-text-container {
    position: relative;
    margin-bottom: 25px;
}

/* Text Stats Bar */
.text-stats-bar {
    display: flex;
    gap: 30px;
    background: linear-gradient(135deg, #f5f3ff 0%, #faf9ff 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid #e9d8fd;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 150px;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-weight: 800;
    color: #8b5cf6;
    font-size: 1.8rem;
    line-height: 1;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.action-buttons .btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.action-buttons .btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #9461f8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

/* Processing Options */
.processing-options {
    background: linear-gradient(135deg, #fff7ed 0%, #fffaf0 100%);
    border-radius: 14px;
    padding: 25px;
    margin-top: 25px;
    border: 2px solid #fed7aa;
}

.processing-options h3 {
    color: #ea580c;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.option-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.option-checkbox:hover {
    background: #fff7ed;
    border-color: #fed7aa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.option-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #d1d5db;
    appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.option-checkbox input[type="checkbox"]:checked {
    background: #ff6b35;
    border-color: #ff6b35;
}

.option-checkbox input[type="checkbox"]:checked:after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

/* Tool Description Content */
.tool-description-content {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-top: 25px;
}

.tool-description-content .tool-description {
    margin-bottom: 40px;
}

.tool-description-content .tool-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
    text-align: justify;
}

.tool-description-content .tool-features {
    margin-top: 30px;
}

.tool-description-content .tool-features h3 {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.features-list {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.features-list li {
    padding: 20px;
    background: linear-gradient(135deg, #f5f3ff 0%, #faf9ff 100%);
    border-radius: 12px;
    border-left: 5px solid #8b5cf6;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: transform 0.3s ease;
}

.features-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
}

.features-list li strong {
    color: #8b5cf6;
    font-weight: 700;
}

/* How to Use Section */
.how-to-use-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 3px solid #f5f3ff;
}

.how-to-use-section h2 {
    color: #ff6b35;
    margin-bottom: 35px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.step-content h3 {
    margin: 0 0 12px 0;
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content p {
    margin: 0;
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Ad Container Styles */
.ad-container {
    margin: 30px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ad-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.ad-unit {
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.ad-top-sidebar {
    margin-top: 0;
}

/* Hide mobile ads on desktop */
@media (min-width: 769px) {
    .ad-mobile {
        display: none !important;
    }
}

/* Show mobile ads on mobile */
@media (max-width: 768px) {
    .ad-desktop {
        display: none !important;
    }
    
    .ad-container {
        margin: 20px 0;
        padding: 15px;
    }
}

/* Sidebar Styles */
.sidebar-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sticky-ad {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: white;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.sidebar-widget h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f3ff;
}

.tips-list, .tools-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.tips-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f3ff;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-list li:before {
    content: '✓';
    color: #8b5cf6;
    font-weight: bold;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tools-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f3ff;
}

.tools-list li:last-child {
    border-bottom: none;
}

.tools-list a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.tools-list a:hover {
    color: #ff6b35;
    background: #f5f3ff;
    padding-left: 15px;
}

.stats-widget .stats-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f3ff;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row .stat-label {
    color: #718096;
    font-size: 0.9rem;
}

.stat-row .stat-value {
    color: #ff6b35;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Related Tools Section - Fixed Design */
.related-tools-section {
    background: linear-gradient(135deg, #ffffff 0%, #faf9ff 100%);
    border-radius: 16px;
    padding: 40px 30px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
    border: 2px solid #f5f3ff;
}

.related-tools-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tool-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    border-color: #8b5cf6;
}

.tool-card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #ff6b35;
}

.tool-card-title {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.tool-card-desc {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.tool-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-tag {
    background: linear-gradient(135deg, #f5f3ff 0%, #e9d8fd 100%);
    color: #8b5cf6;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #ddd6fe;
}

.tool-card-link {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.tool-card-link:hover {
    background: linear-gradient(135deg, #ff5a20 0%, #ff7b3a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* FAQ Section - Fixed Design */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    border-radius: 16px;
    padding: 40px 30px;
    margin-top: 40px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
    border: 2px solid #fed7aa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 800;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    text-align: left;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
    color: #ff6b35;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #ff6b35;
    display: inline-block;
    line-height: 0;
}

.faq-question.active {
    background: white;
    color: #ff6b35;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    opacity: 0;
    visibility: hidden;
}

.faq-question.active + .faq-answer {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.7s ease-in-out, opacity 0.3s ease 0.1s, visibility 0.3s ease 0.1s;
}

.faq-answer p {
    padding: 25px;
    margin: 0;
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.98rem;
    border-top: 1px solid #f5f3ff;
}

/* Breadcrumb Navigation - Fixed for single line */
.breadcrumb-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 2px solid #f0f0f0;
    padding: 15px 0;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb-inline {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    white-space: nowrap;
    overflow-x: auto;
    padding: 5px 0;
}

.breadcrumb-inline::-webkit-scrollbar {
    display: none;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8b5cf6;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: #f5f3ff;
    border: 1px solid #e9d8fd;
}

.breadcrumb-link:hover {
    background: #8b5cf6;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.2);
}

.breadcrumb-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: #ff6b35;
    font-weight: 700;
    background: #fff7ed;
    border-radius: 8px;
    border: 1px solid #fed7aa;
}

.breadcrumb-separator {
    color: #cbd5e0;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 0 2px;
}

.breadcrumb-icon {
    font-size: 0.9rem;
}

/* CTA with Icon */
.start-cleaning-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px 0 30px 0;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.cta-icon {
    font-size: 1.8rem;
    color: #4cd964;
    animation: bounce 2s infinite;
}

.cta-text {
    font-size: 1.4rem;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .tool-layout {
        flex-direction: column;
    }
    
    .sidebar-area {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        order: 2;
    }
    
    .sticky-ad {
        position: static;
    }
    
    .main-content-area {
        order: 1;
    }
    
    .tool-main-title {
        font-size: 2.2rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .text-stats-bar {
        gap: 20px;
    }
}

/* Mobile Styles (max 767px) */
@media (max-width: 767px) {
    .tool-description-section {
        padding: 40px 0 25px;
    }
    
    .tool-main-title {
        font-size: 1.8rem;
    }
    
    .tool-subtitle {
        font-size: 1rem;
    }
    
    .input-section,
    .results-section,
    .tool-description-content,
    .related-tools-section,
    .faq-section {
        padding: 25px 20px;
    }
    
    .input-section h2,
    .results-section h2,
    .tool-description-content h2,
    .related-tools-section h2,
    .faq-section h2 {
        font-size: 1.3rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .text-stats-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .remove-line-breaks-buttons {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-area {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .file-upload {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    #lineBreakTextInput, #cleanedTextOutput {
        min-height: 180px;
        padding: 15px;
        font-size: 15px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .tool-description-content .tool-description p {
        font-size: 1rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    
    .breadcrumb-inline {
        flex-wrap: wrap;
        white-space: normal;
        gap: 5px;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .stat-card {
        padding: 15px;
    }
    
    .tool-card {
        padding: 20px;
    }
    
    .tool-card-title {
        font-size: 1.2rem;
    }
    
    .ad-container {
        padding: 15px 10px;
    }
    
    .tool-main-title {
        font-size: 1.5rem;
    }
    
    .section-icon {
        font-size: 1.3rem;
    }
    
    .tool-subtitle {
        font-size: 0.9rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* Large Desktop (min 1200px) */
@media (min-width: 1200px) {
    .remove-line-breaks-wrapper {
        padding: 0;
    }
}

/* Print Styles */
@media print {
    .ad-container,
    .sidebar-area,
    .remove-line-breaks-buttons .btn,
    .action-buttons,
    .related-tools-section,
    .faq-section {
        display: none !important;
    }
    
    .remove-line-breaks-container {
        background: white;
        padding: 0;
    }
    
    .tool-description-section {
        background: white !important;
        color: black !important;
        padding: 20px 0 !important;
    }
}