/* Support Center Styles matching ItziGroup Brand */
:root {
    --black: #000000;
    --black-rich: #0a0a0a;
    --black-card: #141414;
    --white: #ffffff;
    --orange: #E87A2E;
    --orange-light: #FF9B50;
    --grey: #888888;
    --grey-light: #b0b0b0;
    --grey-border: #222222;
    --gradient-text: linear-gradient(135deg, #E87A2E 0%, #FF9B50 40%, #FFD4A8 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--black-rich);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-img {
    height: 32px;
    mix-blend-mode: lighten;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--grey-light);
    border-left: 1px solid var(--grey-border);
    padding-left: 12px;
}

.nav-link {
    color: var(--grey-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover { color: var(--white); }

/* Header */
.header {
    margin-top: 64px;
    padding: 100px 0 60px;
    position: relative;
}

.header-bg-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 122, 46, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.text-center { text-align: center; }

.header-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.search-bar {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-bar svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey);
}

.search-bar input {
    width: 100%;
    padding: 20px 20px 20px 56px;
    background: var(--black-card);
    border: 1px solid var(--grey-border);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 122, 46, 0.1);
}

/* Categories */
.main-content { padding-bottom: 100px; }

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

.category-card {
    background: var(--black-card);
    border: 1px solid var(--grey-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, border-color 0.3s;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 122, 46, 0.3);
}

.category-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 122, 46, 0.1);
    color: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 14px;
    color: var(--grey-light);
}

/* FAQ */
.faq-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--black-card);
    border: 1px solid var(--grey-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-question svg {
    color: var(--orange);
    transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--grey-light);
    font-size: 15px;
}

/* Contact Box */
.contact-box {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(232, 122, 46, 0.05), transparent);
    border: 1px solid rgba(232, 122, 46, 0.2);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.contact-box h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-box p {
    color: var(--grey-light);
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #E87A2E, #FF9B50);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 122, 46, 0.3);
}

/* Footer */
.footer {
    border-top: 1px solid var(--grey-border);
    padding: 32px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    height: 24px;
    mix-blend-mode: lighten;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--grey);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--grey-light);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover { color: var(--orange); }

@media (max-width: 768px) {
    .header { padding: 60px 0 40px; }
    .contact-box { padding: 32px 20px; }
    .footer-content { flex-direction: column; text-align: center; }
}
