/* ===== GLOBAL STYLES ===== */
:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #6c757d;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --dark: #212529;
    --light: #f8f9fa;
    --gray: #6c757d;
    --border: #dee2e6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #f8fafc;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #0d6efd 0%, #0050c8 100%);
    color: white;
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23ffffff" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z"></path></svg>');
    background-size: cover;
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 25px;
}

.header-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.header-badges span {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* ===== TOOL SECTION ===== */
.tool-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.card p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* Tool Tabs */
.tool-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 25px;
    gap: 10px;
}

.tool-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    min-height: auto;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: all 0.3s;
}

.tool-tab:hover {
    background: rgba(13, 110, 253, 0.05);
    color: var(--primary);
    transform: none;
    box-shadow: none;
}

.tool-tab.active {
    color: var(--primary);
    background: white;
}

.tool-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Single URL Input */
.input-section {
    margin-bottom: 25px;
}

.input-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.input-group {
    flex: 1;
    min-width: 300px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

input[type="text"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s;
}

input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

/* Bulk URL Checker */
.bulk-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    min-height: 150px;
}

textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.bulk-options {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.bulk-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.bulk-example {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--gray);
}

.bulk-example code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.bulk-actions-top {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Bulk Results Table */
.bulk-results-container {
    margin-top: 30px;
    display: none;
}

.bulk-table-container {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.bulk-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.bulk-table th {
    background: var(--light);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 2px solid var(--border);
}

.bulk-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.bulk-table tr:hover {
    background: #f8f9fa;
}

.bulk-table .status-cell {
    font-weight: 600;
    font-size: 0.9rem;
}

.bulk-table .status-200 { color: var(--success); }
.bulk-table .status-301 { color: #0d6efd; }
.bulk-table .status-302 { color: #fd7e14; }
.bulk-table .status-404 { color: var(--danger); }
.bulk-table .status-other { color: var(--gray); }

.url-cell {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bulk-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.summary-card {
    background: white;
    padding: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    text-align: center;
}

.summary-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.summary-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Bulk Actions */
.bulk-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Button Styles */
button {
    background: var(--primary);
    border: none;
    padding: 16px 30px;
    color: white;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-end;
    min-height: 56px;
}

button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
}

button:active {
    transform: translateY(0);
}

.secondary-btn {
    background: var(--secondary);
    border: none;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.secondary-btn:hover {
    background: #5a6268;
    transform: none;
    box-shadow: none;
}

.export-btn {
    background: var(--success);
}

.export-btn:hover {
    background: #157347;
}

.clear-btn {
    background: var(--danger);
}

.clear-btn:hover {
    background: #bb2d3b;
}

/* Loader */
.loader {
    display: none;
    text-align: center;
    padding: 30px;
}

.loader i {
    font-size: 2.5rem;
    color: var(--primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader p {
    margin-top: 15px;
    color: var(--primary);
    font-weight: 600;
}

/* Results */
#resultBox {
    margin-top: 25px;
    padding: 25px;
    background: #0a0a0a;
    border-radius: var(--radius-sm);
    color: #0f0;
    font-size: 15px;
    display: none;
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
    max-height: 500px;
    overflow-y: auto;
}

/* Formatted Results */
.result-container {
    display: none;
    margin-top: 30px;
    animation: fadeIn 0.5s ease;
}

.result-card {
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 20px;
}

.result-header {
    background: var(--light);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-body {
    padding: 20px;
}

.redirect-step {
    padding: 15px;
    border-left: 4px solid var(--primary);
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.redirect-step.final {
    border-left-color: var(--success);
    background: #f0fff4;
}

.redirect-step-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-301 { background: #d1e7dd; color: #0f5132; }
.status-302 { background: #fff3cd; color: #856404; }
.status-307 { background: #cfe2ff; color: #084298; }
.status-308 { background: #cfe2ff; color: #084298; }
.status-200 { background: #d1e7dd; color: #0f5132; }
.status-404 { background: #f8d7da; color: #721c24; }
.status-other { background: #e2e3e5; color: #383d41; }

.copy-btn {
    background: var(--secondary);
    padding: 8px 15px;
    font-size: 0.9rem;
    min-height: auto;
    align-self: center;
}

.copy-btn:hover {
    background: #5a6268;
}

/* Stats Cards */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Alert Box */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.alert-success {
    background: #d1e7dd;
    border: 1px solid #a3cfbb;
    color: #0f5132;
}

.alert-danger {
    background: #f8d7da;
    border: 1px solid #f1aeb5;
    color: #721c24;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 60px 0;
    background: white;
}

.content-section.bg-light {
    background: #f8fafc;
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark);
    text-align: center;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--dark);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section ul, .content-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

/* Info Grid for How It Works */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    border-top: 4px solid var(--primary);
}

.info-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.styled-list li i {
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* FAQ */
.faq-container {
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-left-color: var(--primary);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.faq-item p {
    margin-bottom: 0;
    text-align: left;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #0d6efd 0%, #0050c8 100%);
    color: white;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: transform 0.3s;
}

.back-to-home:hover {
    transform: translateX(-5px);
    color: white;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #343a40;
    color: #adb5bd;
    font-size: 0.95rem;
}

.copyright p {
    margin-bottom: 10px;
}

/* ===== BLOG STYLES ===== */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-post {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #0d6efd 0%, #0050c8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

.blog-sidebar {
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.blog-sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

/* ===== BLOG LAYOUT ===== */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

.blog-main h2 {
    text-align: left;
}

.blog-main p {
    text-align: left;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    color: var(--dark);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s;
}

.popular-post:hover {
    color: var(--primary);
}

.popular-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.popular-date {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

/* ===== CONTACT LAYOUT ===== */
.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.contact-info h2 {
    text-align: left;
}

.contact-info p {
    text-align: left;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-tip {
    background: #e7f1ff;
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 30px;
}

/* Form Message */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius-sm);
    display: none;
}

/* ===== POLICY CONTENT ===== */
.policy-content h2 {
    text-align: left;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.policy-content h3 {
    text-align: left;
    margin-top: 20px;
    color: var(--dark);
}

.policy-content p, .policy-content ul, .policy-content ol {
    text-align: left;
    max-width: 100%;
    margin-left: 0;
}

.policy-content ul, .policy-content ol {
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.category-list a {
    color: var(--dark);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list a:hover {
    color: var(--primary);
}

.category-count {
    background: var(--light);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 15px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    header p {
        font-size: 1.1rem;
    }
    
    .card {
        padding: 25px;
    }
    
    .tool-tabs {
        flex-wrap: wrap;
    }
    
    .tool-tab {
        flex: 1;
        min-width: auto;
        text-align: center;
    }
    
    .input-row {
        flex-direction: column;
    }
    
    .input-group {
        min-width: 100%;
    }
    
    button, .secondary-btn {
        width: 100%;
        align-self: stretch;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .bulk-table {
        min-width: 600px;
    }
    
    .bulk-actions-top {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .card {
        padding: 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .header-badges {
        flex-direction: column;
        align-items: center;
    }
}