/* ============================================
   锐澜玩具检测中心 - 主样式表
   Theme: TIC Wanju JianCe
   Design: 温暖安全风 - 大圆角卡片流 + 波浪分隔
   Prefix: .wj- (wanju)
   ============================================ */

/* CSS Variables */
:root {
    --wj-coral: #FF6B6B;
    --wj-coral-light: #FF8E8E;
    --wj-coral-dark: #E55A5A;
    --wj-mint: #4ECDC4;
    --wj-mint-light: #6ED8D0;
    --wj-mint-dark: #3DBDB5;
    --wj-cream: #FFF8F0;
    --wj-cream-dark: #FFF0E0;
    --wj-yellow: #FFD93D;
    --wj-yellow-light: #FFE566;
    --wj-dark: #2C3E50;
    --wj-dark-light: #3D5068;
    --wj-white: #FFFFFF;
    --wj-off-white: #FAFAFA;
    --wj-gray: #7F8C8D;
    --wj-gray-light: #ECF0F1;
    --wj-radius: 24px;
    --wj-radius-sm: 12px;
    --wj-radius-lg: 30px;
    --wj-radius-xl: 40px;
    --wj-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --wj-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --wj-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --wj-font: 'Segoe UI', Tahoma, Geneva, Verdana, -apple-system, BlinkMacSystemFont, sans-serif;
    --wj-header-height: 70px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--wj-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--wj-dark);
    background-color: var(--wj-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Skip Link */
.wj-skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--wj-coral);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 var(--wj-radius-sm) 0;
    transition: top 0.2s;
}

.wj-skip-link:focus {
    top: 0;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ============================================
   Container
   ============================================ */
.wj-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Typography
   ============================================ */
a {
    color: var(--wj-coral);
    text-decoration: none;
    transition: color var(--wj-transition);
}

a:hover, a:focus {
    color: var(--wj-coral-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--wj-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Buttons (Pill Shapes)
   ============================================ */
.wj-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--wj-font);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--wj-transition);
    text-decoration: none;
    white-space: nowrap;
}

.wj-btn-pill {
    border-radius: 50px;
}

.wj-btn-coral {
    background: var(--wj-coral);
    color: var(--wj-white);
    border-color: var(--wj-coral);
}

.wj-btn-coral:hover, .wj-btn-coral:focus {
    background: var(--wj-coral-dark);
    border-color: var(--wj-coral-dark);
    color: var(--wj-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
}

.wj-btn-white {
    background: var(--wj-white);
    color: var(--wj-coral);
    border-color: var(--wj-white);
}

.wj-btn-white:hover, .wj-btn-white:focus {
    background: var(--wj-cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.35);
    color: var(--wj-coral);
}

.wj-btn-outline-white {
    background: transparent;
    color: var(--wj-white);
    border-color: var(--wj-white);
}

.wj-btn-outline-white:hover, .wj-btn-outline-white:focus {
    background: var(--wj-white);
    color: var(--wj-coral);
    transform: translateY(-2px);
}

.wj-btn-mint {
    background: var(--wj-mint);
    color: var(--wj-white);
    border-color: var(--wj-mint);
}

.wj-btn-mint:hover {
    background: var(--wj-mint-dark);
    border-color: var(--wj-mint-dark);
    color: var(--wj-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.35);
}

/* ============================================
   Header - Sticky White with Coral Line
   ============================================ */
.wj-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--wj-white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--wj-coral), var(--wj-yellow), var(--wj-mint)) 1;
    transition: all var(--wj-transition);
}

.wj-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--wj-header-height);
    gap: 20px;
}

/* Logo */
.wj-logo {
    flex-shrink: 0;
}

.wj-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--wj-dark);
    text-decoration: none;
}

.wj-logo-link:hover {
    color: var(--wj-dark);
}

.wj-logo-icon {
    display: flex;
    flex-shrink: 0;
}

.wj-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.wj-logo-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--wj-dark);
}

.wj-logo-tagline {
    font-size: 11px;
    color: var(--wj-coral);
    font-weight: 500;
}

/* Navigation */
.wj-nav {
    display: flex;
    align-items: center;
}

.wj-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.wj-menu li {
    position: relative;
}

.wj-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--wj-dark);
    border-radius: var(--wj-radius-sm);
    transition: all var(--wj-transition);
}

.wj-menu a:hover,
.wj-menu .current-menu-item > a,
.wj-menu .current_page_parent > a {
    color: var(--wj-coral);
    background: rgba(255, 107, 107, 0.08);
}

/* Mobile Menu Toggle */
.wj-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.wj-menu-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--wj-dark);
    border-radius: 2px;
    transition: all var(--wj-transition);
}

/* Header CTA */
.wj-header-cta .wj-btn-pill {
    padding: 8px 20px;
    font-size: 14px;
    gap: 6px;
}

/* ============================================
   Hero Section
   ============================================ */
.wj-hero {
    position: relative;
    background: linear-gradient(135deg, var(--wj-coral) 0%, var(--wj-yellow) 100%);
    padding: 100px 20px 120px;
    text-align: center;
    overflow: hidden;
    border-radius: 0 0 var(--wj-radius-xl) var(--wj-radius-xl);
}

.wj-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.wj-hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--wj-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wj-hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wj-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero decorative circles */
.wj-hero-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.wj-hero-circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    top: -100px;
    right: -50px;
}

.wj-hero-circle-2 {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.06);
    bottom: -50px;
    left: 5%;
}

.wj-hero-circle-3 {
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    top: 30%;
    left: 10%;
}

.wj-hero-dot-pattern {
    width: 250px;
    height: 250px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    top: 15%;
    right: 8%;
}

/* Hero bottom curve */
.wj-hero-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--wj-cream);
    border-radius: var(--wj-radius-xl) var(--wj-radius-xl) 0 0;
}

/* ============================================
   Wave Dividers
   ============================================ */
.wj-wave-divider {
    line-height: 0;
    margin: -2px 0;
}

.wj-wave-divider svg {
    width: 100%;
    height: auto;
    display: block;
}

.wj-wave-flip svg {
    transform: rotate(180deg);
}

/* ============================================
   Section Common
   ============================================ */
.wj-section {
    padding: 80px 0;
}

.wj-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.wj-section-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--wj-dark);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.wj-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--wj-coral), var(--wj-mint));
    border-radius: 2px;
}

.wj-section-desc {
    font-size: 16px;
    color: var(--wj-gray);
    max-width: 600px;
    margin: 16px auto 0;
}

.wj-section-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   Service Cards (4 Column)
   ============================================ */
.wj-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wj-svc {
    padding: 36px 28px;
    border-radius: var(--wj-radius);
    transition: all var(--wj-transition);
    position: relative;
    overflow: hidden;
}

.wj-svc:hover {
    transform: translateY(-6px);
    box-shadow: var(--wj-shadow-lg);
}

.wj-svc-coral {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 107, 107, 0.15));
    border: 2px solid rgba(255, 107, 107, 0.2);
}

.wj-svc-mint {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08), rgba(78, 205, 196, 0.15));
    border: 2px solid rgba(78, 205, 196, 0.2);
}

.wj-svc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.8);
    box-shadow: var(--wj-shadow);
}

.wj-svc-coral .wj-svc-icon svg {
    color: var(--wj-coral);
}

.wj-svc-mint .wj-svc-icon svg {
    color: var(--wj-mint);
}

.wj-svc-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--wj-dark);
}

.wj-svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.wj-svc-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--wj-dark-light);
    line-height: 1.5;
}

.wj-svc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.wj-svc-coral .wj-svc-list li::before {
    background: var(--wj-coral);
}

.wj-svc-mint .wj-svc-list li::before {
    background: var(--wj-mint);
}

.wj-svc-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--wj-coral);
    transition: all var(--wj-transition);
}

.wj-svc-link:hover {
    color: var(--wj-coral-dark);
    padding-left: 4px;
}

/* ============================================
   Credentials (3 Badges)
   ============================================ */
.wj-credentials {
    background: var(--wj-white);
}

.wj-cred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.wj-cred-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 248, 240, 0.6);
    border-radius: var(--wj-radius);
    transition: all var(--wj-transition);
}

.wj-cred-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--wj-shadow-lg);
}

.wj-cred-badge {
    margin-bottom: 16px;
}

.wj-cred-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--wj-dark);
}

.wj-cred-desc {
    font-size: 14px;
    color: var(--wj-gray);
}

/* ============================================
   Standards Grid (4 Column Icons)
   ============================================ */
.wj-standards {
    background: var(--wj-cream);
}

.wj-std-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wj-std-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--wj-white);
    border-radius: var(--wj-radius);
    transition: all var(--wj-transition);
}

.wj-std-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--wj-shadow-lg);
}

.wj-std-icon {
    margin-bottom: 16px;
}

.wj-std-code {
    font-size: 18px;
    font-weight: 700;
    color: var(--wj-dark);
    margin-bottom: 8px;
}

.wj-std-desc {
    font-size: 13px;
    color: var(--wj-gray);
}

/* ============================================
   Process Flow (5 Steps Horizontal)
   ============================================ */
.wj-process {
    background: var(--wj-white);
}

.wj-process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

.wj-process-step {
    display: flex;
    align-items: flex-start;
    flex: 1;
    max-width: 200px;
    position: relative;
}

.wj-process-num {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: var(--wj-coral);
    color: var(--wj-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.wj-process-step:nth-child(2) .wj-process-num {
    background: var(--wj-mint);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.wj-process-step:nth-child(3) .wj-process-num {
    background: var(--wj-yellow);
    color: var(--wj-dark);
    box-shadow: 0 4px 12px rgba(255, 217, 61, 0.4);
}

.wj-process-step:nth-child(4) .wj-process-num {
    background: var(--wj-coral);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.wj-process-step:nth-child(5) .wj-process-num {
    background: var(--wj-mint);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.wj-process-card {
    background: var(--wj-cream);
    border-radius: var(--wj-radius);
    padding: 30px 16px 20px;
    text-align: center;
    width: 100%;
    transition: all var(--wj-transition);
}

.wj-process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wj-shadow-lg);
}

.wj-process-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.wj-process-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--wj-dark);
}

.wj-process-desc {
    font-size: 13px;
    color: var(--wj-gray);
}

.wj-process-arrow {
    display: flex;
    align-items: center;
    padding: 20px 6px 0;
    flex-shrink: 0;
    opacity: 0.6;
}

/* ============================================
   Blog Cards (2x2 Grid)
   ============================================ */
.wj-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.wj-post-card {
    background: var(--wj-white);
    border-radius: var(--wj-radius);
    overflow: hidden;
    box-shadow: var(--wj-shadow);
    transition: all var(--wj-transition);
}

.wj-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wj-shadow-lg);
}

.wj-post-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--wj-gray-light);
}

.wj-post-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.wj-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wj-post-card:hover .wj-post-img {
    transform: scale(1.05);
}

.wj-post-body {
    padding: 20px 24px 24px;
}

.wj-post-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--wj-gray);
    margin-bottom: 10px;
}

.wj-post-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.wj-post-title a {
    color: var(--wj-dark);
}

.wj-post-title a:hover {
    color: var(--wj-coral);
}

.wj-post-excerpt {
    font-size: 14px;
    color: var(--wj-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.wj-post-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--wj-coral);
    transition: gap var(--wj-transition);
}

.wj-post-more:hover {
    gap: 8px;
    color: var(--wj-coral-dark);
}

/* ============================================
   Trust Bar (Stats)
   ============================================ */
.wj-trust-bar {
    background: linear-gradient(135deg, var(--wj-dark) 0%, var(--wj-dark-light) 100%);
    padding: 60px 0;
    border-radius: var(--wj-radius-xl) var(--wj-radius-xl) 0 0;
}

.wj-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wj-trust-item {
    text-align: center;
    padding: 20px;
}

.wj-trust-icon {
    color: var(--wj-mint);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.wj-trust-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--wj-white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.wj-trust-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ============================================
   Footer
   ============================================ */
.wj-footer {
    position: relative;
    background: var(--wj-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.wj-footer-curve {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--wj-cream);
    border-radius: 0 0 var(--wj-radius-xl) var(--wj-radius-xl);
}

.wj-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-top: 20px;
}

.wj-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--wj-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.wj-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--wj-coral);
    border-radius: 2px;
}

.wj-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.wj-footer-sitename {
    font-size: 18px;
    font-weight: 700;
    color: var(--wj-white);
}

.wj-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.wj-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wj-footer-menu li {
    margin-bottom: 10px;
}

.wj-footer-menu a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all var(--wj-transition);
}

.wj-footer-menu a:hover {
    color: var(--wj-mint);
    padding-left: 6px;
}

.wj-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wj-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.wj-footer-contact svg {
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--wj-mint);
}

.wj-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.wj-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}

.wj-icp {
    font-size: 12px;
}

.wj-icp a {
    color: rgba(255,255,255,0.4);
}

.wj-icp a:hover {
    color: var(--wj-mint);
}

/* ============================================
   Floating CTA (Pulse Animation)
   ============================================ */
.wj-floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: var(--wj-coral);
    color: var(--wj-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    transition: all var(--wj-transition);
    text-decoration: none;
}

.wj-floating-cta:hover {
    transform: scale(1.1);
    background: var(--wj-coral-dark);
    color: var(--wj-white);
}

.wj-floating-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--wj-coral);
    animation: wj-pulse 2s ease-out infinite;
}

.wj-floating-icon {
    position: relative;
    z-index: 1;
    display: flex;
}

@keyframes wj-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ============================================
   Breadcrumb
   ============================================ */
.wj-breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: var(--wj-gray);
}

.wj-breadcrumb a {
    color: var(--wj-coral);
}

.wj-breadcrumb a:hover {
    color: var(--wj-coral-dark);
}

.wj-breadcrumb-sep {
    margin: 0 8px;
    color: var(--wj-gray);
}

.wj-breadcrumb-current {
    color: var(--wj-dark);
    font-weight: 500;
}

/* ============================================
   Page Layout
   ============================================ */
.wj-page-wrap {
    padding: 0 0 60px;
}

.wj-page-layout,
.wj-single-layout,
.wj-archive-layout,
.wj-search-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.wj-page-header {
    margin-bottom: 30px;
}

.wj-page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.wj-page-thumb {
    margin-bottom: 24px;
    border-radius: var(--wj-radius);
    overflow: hidden;
}

.wj-page-featured {
    width: 100%;
    border-radius: var(--wj-radius);
}

/* Content area */
.wj-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--wj-dark);
}

.wj-content h2 { font-size: 26px; margin: 32px 0 16px; }
.wj-content h3 { font-size: 22px; margin: 24px 0 12px; }
.wj-content h4 { font-size: 18px; margin: 20px 0 10px; }
.wj-content p { margin-bottom: 16px; }
.wj-content ul, .wj-content ol { margin: 0 0 16px 20px; }
.wj-content li { margin-bottom: 8px; }
.wj-content blockquote {
    margin: 20px 0;
    padding: 16px 24px;
    border-left: 4px solid var(--wj-coral);
    background: rgba(255,107,107,0.05);
    border-radius: 0 var(--wj-radius-sm) var(--wj-radius-sm) 0;
    font-style: italic;
}
.wj-content img {
    border-radius: var(--wj-radius-sm);
    margin: 20px 0;
}
.wj-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--wj-radius-sm);
    overflow: hidden;
}
.wj-content th {
    background: var(--wj-coral);
    color: var(--wj-white);
    padding: 12px 16px;
    text-align: left;
}
.wj-content td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--wj-gray-light);
}

/* Page links */
.wj-page-links {
    margin-top: 30px;
    padding: 16px 0;
    border-top: 1px solid var(--wj-gray-light);
    font-size: 14px;
}

/* ============================================
   Single Post
   ============================================ */
.wj-single-wrap {
    padding: 0 0 60px;
}

.wj-single-header {
    margin-bottom: 24px;
}

.wj-single-cats {
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.wj-single-cat {
    display: inline-block;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--wj-white);
    background: var(--wj-coral);
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--wj-transition);
}

.wj-single-cat:hover {
    background: var(--wj-coral-dark);
    color: var(--wj-white);
}

.wj-single-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.35;
}

.wj-single-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--wj-gray);
    flex-wrap: wrap;
}

.wj-single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wj-single-thumb {
    margin-bottom: 30px;
    border-radius: var(--wj-radius);
    overflow: hidden;
}

.wj-single-featured {
    width: 100%;
    border-radius: var(--wj-radius);
}

.wj-single-body {
    margin-bottom: 30px;
}

.wj-single-tags {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--wj-gray-light);
    border-bottom: 1px solid var(--wj-gray-light);
    margin-bottom: 30px;
}

.wj-tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--wj-dark);
}

.wj-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    color: var(--wj-coral);
    background: rgba(255,107,107,0.08);
    border-radius: 50px;
    transition: all var(--wj-transition);
}

.wj-tag:hover {
    background: var(--wj-coral);
    color: var(--wj-white);
}

/* Related Posts */
.wj-related {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--wj-cream-dark);
}

.wj-related-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.wj-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wj-related-item {
    background: var(--wj-white);
    border-radius: var(--wj-radius-sm);
    overflow: hidden;
    box-shadow: var(--wj-shadow);
    transition: all var(--wj-transition);
}

.wj-related-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--wj-shadow-lg);
}

.wj-related-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.wj-related-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wj-related-item:hover .wj-related-img {
    transform: scale(1.05);
}

.wj-related-post-title {
    font-size: 15px;
    font-weight: 600;
    padding: 12px 14px 4px;
}

.wj-related-post-title a {
    color: var(--wj-dark);
}

.wj-related-post-title a:hover {
    color: var(--wj-coral);
}

.wj-related-date {
    font-size: 12px;
    color: var(--wj-gray);
    padding: 0 14px 12px;
    display: block;
}

/* ============================================
   Archive
   ============================================ */
.wj-archive-wrap {
    padding: 0 0 60px;
}

.wj-archive-header {
    margin-bottom: 30px;
}

.wj-archive-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wj-archive-desc {
    font-size: 15px;
    color: var(--wj-gray);
}

.wj-archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ============================================
   Search
   ============================================ */
.wj-search-wrap {
    padding: 0 0 60px;
}

.wj-search-header {
    margin-bottom: 30px;
}

.wj-search-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.wj-search-query {
    color: var(--wj-coral);
}

.wj-search-count {
    font-size: 14px;
    color: var(--wj-gray);
    margin-top: 8px;
}

.wj-search-form-wrap {
    max-width: 500px;
}

.wj-search-form {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--wj-shadow);
    background: var(--wj-white);
}

.wj-search-input {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
    font-family: var(--wj-font);
    border: 2px solid transparent;
    border-right: none;
    outline: none;
    background: transparent;
    color: var(--wj-dark);
    min-width: 0;
}

.wj-search-input:focus {
    border-color: var(--wj-coral);
}

.wj-search-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0 50px 50px 0 !important;
    flex-shrink: 0;
    gap: 6px;
}

.wj-search-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wj-search-item {
    background: var(--wj-white);
    border-radius: var(--wj-radius);
    overflow: hidden;
    box-shadow: var(--wj-shadow);
    transition: all var(--wj-transition);
}

.wj-search-item:hover {
    box-shadow: var(--wj-shadow-lg);
}

.wj-search-item-inner {
    display: flex;
    gap: 20px;
}

.wj-search-thumb {
    flex-shrink: 0;
    width: 200px;
    overflow: hidden;
}

.wj-search-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.wj-search-body {
    padding: 20px 20px 20px 0;
    flex: 1;
}

.wj-search-post-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.wj-search-post-title a {
    color: var(--wj-dark);
}

.wj-search-post-title a:hover {
    color: var(--wj-coral);
}

.wj-search-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--wj-gray);
    margin-bottom: 10px;
}

.wj-search-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.wj-search-excerpt {
    font-size: 14px;
    color: var(--wj-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.wj-search-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--wj-coral);
}

.wj-search-more:hover {
    color: var(--wj-coral-dark);
}

/* ============================================
   404 Page
   ============================================ */
.wj-404-wrap {
    padding: 60px 0 80px;
}

.wj-404-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.wj-404-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.wj-404-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wj-404-desc {
    font-size: 16px;
    color: var(--wj-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.wj-404-search {
    max-width: 450px;
    margin: 0 auto 30px;
}

.wj-404-actions {
    margin-bottom: 40px;
}

.wj-404-links {
    text-align: left;
    background: var(--wj-white);
    border-radius: var(--wj-radius);
    padding: 24px;
    box-shadow: var(--wj-shadow);
}

.wj-404-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.wj-404-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wj-404-links ul li a {
    display: inline-block;
    padding: 6px 16px;
    font-size: 14px;
    color: var(--wj-coral);
    background: rgba(255,107,107,0.06);
    border-radius: 50px;
    transition: all var(--wj-transition);
}

.wj-404-links ul li a:hover {
    background: var(--wj-coral);
    color: var(--wj-white);
}

/* No results */
.wj-no-results {
    text-align: center;
    padding: 60px 20px;
}

.wj-no-results-icon {
    margin-bottom: 16px;
}

.wj-no-results h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.wj-no-results p {
    color: var(--wj-gray);
    margin-bottom: 20px;
}

.wj-no-results-suggestions {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
    background: var(--wj-cream-dark);
    border-radius: var(--wj-radius);
    padding: 20px 24px;
}

.wj-no-results-suggestions h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

.wj-no-results-suggestions ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--wj-gray);
    font-size: 14px;
}

.wj-no-results-suggestions li {
    margin-bottom: 6px;
}

.wj-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--wj-gray);
}

.wj-empty h2 {
    margin-bottom: 8px;
}

/* ============================================
   Sidebar
   ============================================ */
.wj-sidebar {
    padding-top: 30px;
}

.wj-widget {
    background: var(--wj-white);
    border-radius: var(--wj-radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--wj-shadow);
}

.wj-widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--wj-cream-dark);
    position: relative;
}

.wj-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--wj-coral);
}

/* ============================================
   Pagination
   ============================================ */
.wj-pagination {
    margin-top: 40px;
    text-align: center;
    font-size: 15px;
}

.wj-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 3px;
    border-radius: 50%;
    background: var(--wj-white);
    color: var(--wj-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--wj-transition);
    box-shadow: var(--wj-shadow);
}

.wj-pagination .page-numbers:hover {
    background: var(--wj-cream-dark);
}

.wj-pagination .page-numbers.current {
    background: var(--wj-coral);
    color: var(--wj-white);
}

.wj-pagination .prev,
.wj-pagination .next {
    width: auto;
    padding: 0 16px;
    border-radius: 50px;
}

/* ============================================
   Footer Widget
   ============================================ */
.wj-footer-widget {
    margin-bottom: 20px;
}

.wj-footer-widget a {
    color: rgba(255,255,255,0.7);
}

.wj-footer-widget a:hover {
    color: var(--wj-mint);
}

.wj-footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wj-footer-widget ul li {
    margin-bottom: 8px;
}

.wj-footer-widget .tagcloud a {
    display: inline-block;
    padding: 4px 12px;
    margin: 0 4px 8px 0;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    font-size: 13px !important;
}

/* ============================================
   Comments
   ============================================ */
.comments-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--wj-cream-dark);
}

.comment-reply-title,
.comments-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-body {
    background: var(--wj-white);
    border-radius: var(--wj-radius-sm);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--wj-shadow);
}

/* ============================================
   Responsive
   ============================================ */

/* Tablet: 992px */
@media (max-width: 992px) {
    :root {
        --wj-radius: 20px;
        --wj-radius-lg: 24px;
        --wj-radius-xl: 30px;
    }

    .wj-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wj-process-flow {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .wj-process-step {
        flex: 0 0 auto;
        min-width: 160px;
    }

    .wj-process-arrow {
        display: none;
    }

    .wj-page-layout,
    .wj-single-layout,
    .wj-archive-layout,
    .wj-search-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wj-sidebar {
        padding-top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .wj-sidebar .wj-widget {
        margin-bottom: 0;
    }

    .wj-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile: 768px */
@media (max-width: 768px) {
    :root {
        --wj-header-height: 60px;
        --wj-radius: 18px;
    }

    /* Header Mobile */
    .wj-menu-toggle {
        display: flex;
    }

    .wj-menu {
        display: none;
        position: absolute;
        top: var(--wj-header-height);
        left: 0;
        right: 0;
        background: var(--wj-white);
        flex-direction: column;
        padding: 16px 20px;
        box-shadow: var(--wj-shadow-lg);
        border-bottom: 3px solid var(--wj-coral);
        z-index: 999;
    }

    .wj-menu.active {
        display: flex;
    }

    .wj-menu a {
        padding: 12px 16px;
        border-radius: var(--wj-radius-sm);
    }

    .wj-header-cta {
        display: none;
    }

    /* Hero */
    .wj-hero {
        padding: 60px 16px 80px;
        border-radius: 0 0 var(--wj-radius-lg) var(--wj-radius-lg);
    }

    .wj-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Services */
    .wj-services-grid {
        grid-template-columns: 1fr;
    }

    /* Credentials */
    .wj-cred-grid {
        grid-template-columns: 1fr;
    }

    /* Standards */
    .wj-std-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Blog */
    .wj-blog-grid {
        grid-template-columns: 1fr;
    }

    .wj-archive-grid {
        grid-template-columns: 1fr;
    }

    /* Trust */
    .wj-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .wj-footer-grid {
        grid-template-columns: 1fr;
    }

    /* Search */
    .wj-search-item-inner {
        flex-direction: column;
    }

    .wj-search-thumb {
        width: 100%;
        height: 180px;
    }

    .wj-search-body {
        padding: 0 20px 20px;
    }

    /* Related */
    .wj-related-grid {
        grid-template-columns: 1fr;
    }

    /* Sidebar */
    .wj-sidebar {
        grid-template-columns: 1fr;
    }

    /* Floating CTA */
    .wj-floating-cta {
        bottom: 20px;
        right: 20px;
    }
}

/* Small Mobile: 480px */
@media (max-width: 480px) {
    .wj-std-grid {
        grid-template-columns: 1fr;
    }

    .wj-trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .wj-trust-number {
        font-size: 28px;
    }

    .wj-search-form {
        flex-direction: column;
        border-radius: var(--wj-radius);
    }

    .wj-search-btn {
        border-radius: 0 0 var(--wj-radius) var(--wj-radius) !important;
        justify-content: center;
    }

    .wj-search-input {
        border-right: 2px solid transparent;
        border-radius: var(--wj-radius) var(--wj-radius) 0 0;
    }
}
