/* ========================================
   AYUDA CSS - SalonBookIt
   Estilos ESPECIFICOS de la pagina del centro de ayuda
   ======================================== */

/* === HELP SEARCH === */
.help-search {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
}

.help-search input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.125rem;
    font-family: inherit;
}

.help-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.help-search input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.help-search svg {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.5);
}

/* === HELP CATEGORIES === */
.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.help-category {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.help-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.help-category-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.help-category-icon svg {
    width: 28px;
    height: 28px;
}

.help-category-icon.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.help-category-icon.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.help-category-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.help-category-icon.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.help-category-icon.pink { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.help-category-icon.gold { background: rgba(212, 175, 55, 0.1); color: var(--gold); }

.help-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.help-category-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.help-category-count {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

/* === POPULAR ARTICLES === */
.popular-articles {
    margin-top: 2rem;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.2s ease;
}

.article-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.article-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.article-content {
    flex: 1;
}

.article-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.article-meta {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.article-arrow {
    color: rgba(255, 255, 255, 0.4);
}

.article-item:hover .article-arrow {
    color: var(--gold);
}

/* === CONTACT OPTIONS === */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.contact-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.contact-card .btn {
    width: 100%;
}

/* === STATUS BANNER === */
.status-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    color: #10b981;
    font-weight: 600;
}

.status-link {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.status-link a {
    color: var(--primary);
}
