/*
  Crystal Technology - Help Center Master Stylesheet
  Brand Colors: Purple (#5b21b6)
*/

:root {
    --ct-primary: #5b21b6;
    --ct-primary-dark: #4c1d95;
    --ct-bg: #ffffff;
    --ct-border: #e5e7eb;
    --ct-text: #111827;
    --ct-text-muted: #4b5563;
}

/* --- 1. HEADER NAVIGATION & NEW TICKET BUTTON --- */

/* Ensures the list item aligns with other tabs */
.Header__tabsTab {
    display: inline-flex;
    align-items: center;
}

.header-ticket-btn {
    background-color: var(--ct-primary);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.header-ticket-btn:hover {
    background-color: var(--ct-primary-dark);
    text-decoration: none;
    color: #ffffff !important;
}

.header-ticket-btn:active {
    transform: translateY(1px);
}

/* --- 2. FOOTER GLOBAL STYLING --- */

.Footer__siteFooter {
    margin-top: 2rem;
    border-top: 1px solid var(--ct-border);
    background: var(--ct-bg);
    color: var(--ct-text);
    font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
}

.Footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem 1.2rem;
}

.Footer__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1.4fr 1fr 1fr;
}

/* --- 3. FOOTER CONTENT & TYPOGRAPHY --- */

.Footer__brand {
    color: var(--ct-text);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.Footer__tagline {
    color: var(--ct-text-muted);
    margin: 0.35rem 0 0;
}

.Footer__company,
.Footer__address {
    color: var(--ct-text-muted);
    margin: 0.7rem 0 0;
    font-size: 0.93rem;
    line-height: 1.55;
}

.Footer__heading {
    color: var(--ct-text);
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
}

/* --- 4. FOOTER LINKS (The Fix for SMS/Phone/Email) --- */

.Footer__links {
    margin: 0.7rem 0 0;
    padding: 0;
    list-style: none;
}

.Footer__links li + li {
    margin-top: 0.45rem;
}

/* Targets all links in the lists AND the address/contact block */
.Footer__links a,
.Footer__address a,
.Footer__footerLink {
    color: var(--ct-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Hover state for all footer links */
.Footer__links a:hover,
.Footer__address a:hover,
.Footer__footerLink:hover {
    color: var(--ct-primary);
    text-decoration: underline;
}

/* --- 5. FOOTER META & RESPONSIVENESS --- */

.Footer__meta {
    margin-top: 1.2rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--ct-border);
    color: #6b7280;
    font-size: 0.88rem;
}

@media (max-width: 880px) {
    .Footer__grid {
        grid-template-columns: 1fr;
    }
}
