.seopro-guest-posting-wrapper {
    --primary-navy: #1a365d;
    --secondary-orange: #ff6b35;
    --accent-gray: #f7fafc;
    --text-charcoal: #2d3748;
    --success-green: #38a169;
    --warning-amber: #d69e2e;
}

/* Header Section */
.seopro-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    padding: 6rem 0 4rem;
    color: white;
    text-align: center;
}

.seopro-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.seopro-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.seopro-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

/* Filter Section */
.seopro-filters {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0,0.1);
}

.filter-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-box {
    position: relative;
    max-width: 500px;
}

#seopro-search {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
}

#seopro-search:focus {
    border-color: var(--secondary-orange);
    box-shadow: 0 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.filter-groups {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--text-charcoal);
}

.filter-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-chip {
    background: var(--secondary-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.filter-chip:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.filter-chip.active {
    background: var(--primary-navy);
}

/* Table Section */
.seopro-table-section {
    background: #f8fafc;
    padding: 4rem 0;
}

.table-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.table-container {
    overflow-x: auto;
}

.seopro-table {
    width: 100%;
    border-collapse: collapse;
}

.seopro-table thead {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2d5a87 100%);
    color: white;
}

.seopro-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.seopro-table th:hover {
    color: var(--secondary-orange);
}

.seopro-table td {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.seopro-table tbody tr:hover {
    background-color: rgba(255, 107, 53, 0.05);
    transform: scale(1.01);
    transition: all 0.2s;
}

.da-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.da-high { background: #c6f6d5; color: #22543d; }
.da-medium { background: #fed7d7; color: #742a2a; }
.da-low { background: #e2e8f0; color: #4a5568; }

.order-btn {
    background: var(--secondary-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.order-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.pagination-controls {
    display: flex;
    gap: 0.5rem;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    background: var(--secondary-orange);
    color: white;
    border-color: var(--secondary-orange);
}

.page-btn.active {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
}

/* Modal */
.seopro-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.seopro-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-close {
    font-size: 2rem;
    cursor: pointer;
    color: #9ca3af;
    background: none;
    border: none;
}

/* Features */
.seopro-features {
    background: white;
    padding: 4rem 0;
}

.seopro-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8fafc;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float a {
    display: block;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Loading */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .seopro-title {
        font-size: 2rem;
    }

    .filter-groups {
        flex-direction: column;
        gap: 1rem;
    }

    .seopro-table {
        font-size: 14px;
    }

    .seopro-table th,
    .seopro-table td {
        padding: 12px 8px;
    }
}