/* ===================================
   Page Header Styles
   =================================== */
.page-header {
    padding: 80px 0 60px;
    background: var(--bg-secondary);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   Domain Prices Table
   =================================== */
.domain-prices {
    padding: 60px 0;
    background: var(--bg-primary);
}

.price-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 24px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.filter-search-input {
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    color: var(--text-primary);
    min-width: 250px;
    transition: all 0.2s ease;
}

.filter-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.price-table {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.price-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px 24px;
    background: var(--bg-secondary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border-color);
}

.price-table-body {
    display: flex;
    flex-direction: column;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px 24px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.price-row:hover {
    background: var(--bg-secondary);
}

.price-row.featured {
    background: rgba(37, 99, 235, 0.05);
}

.price-row:last-child {
    border-bottom: none;
}

.price-col-extension {
    display: flex;
    align-items: center;
    gap: 12px;
}

.extension-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.featured-badge {
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.price-col-register,
.price-col-renew,
.price-col-transfer {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.price-action-btn {
    padding: 10px 24px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.price-action-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===================================
   Extra Services
   =================================== */
.extra-services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    margin-bottom: 20px;
}

.price-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--success);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.price-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

/* ===================================
   FAQ Quick Section
   =================================== */
.faq-quick {
    padding: 80px 0;
    background: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    padding: 30px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===================================
   Responsive Design for Pages
   =================================== */
@media (max-width: 1024px) {
    .price-table-header,
    .price-row {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }

    .price-col-transfer {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .price-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-search-input {
        width: 100%;
    }

    .price-table-header {
        display: none;
    }

    .price-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }

    .price-row.featured {
        border-left: 4px solid var(--primary);
    }

    .price-col-extension {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .extension-name {
        font-size: 24px;
    }

    .price-col-register::before {
        content: 'Registratie: ';
        color: var(--text-secondary);
        font-weight: 400;
    }

    .price-col-renew::before {
        content: 'Verlenging: ';
        color: var(--text-secondary);
        font-weight: 400;
    }

    .price-col-action {
        margin-top: 10px;
    }

    .price-action-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .filter-tabs {
        width: 100%;
    }

    .filter-tab {
        flex: 1;
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }
}
