/* =========================================================
   FoxSMM - Unified Red Orange Theme
   ========================================================= */

/* =========================
   Root Variables
   ========================= */
:root {
    --fox-red: #ef3d23;
    --fox-red-dark: #d9341d;
    --fox-orange: #ff7a18;
    --fox-orange-dark: #ea6a0f;
    --fox-yellow: #ffb547;

    --fox-dark: #1f2937;
    --fox-dark-soft: #374151;
    --fox-text: #4b5563;
    --fox-muted: #6b7280;

    --fox-white: #ffffff;
    --fox-light: #fff7f3;
    --fox-soft: #fff1ea;
    --fox-soft-2: #fff5ef;
    --fox-bg: #fffaf7;

    --fox-border: #f1d6ca;
    --fox-border-strong: #f0c7b3;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.10), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.10), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.10), 0 10px 10px -5px rgba(0,0,0,0.04);

    --fox-gradient: linear-gradient(135deg, var(--fox-red), var(--fox-orange));
    --fox-gradient-soft: linear-gradient(135deg, #fff6f2 0%, #fff1ea 45%, #fff8f4 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--fox-white);
    color: var(--fox-dark);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: var(--fox-red);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--fox-orange);
}

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

.hidden {
    display: none !important;
}

.nowrap {
    white-space: nowrap;
}

/* =========================
   Navbar
   ========================= */
.navbar {
    background: var(--fox-white) !important;
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--fox-red) !important;
}

.navbar-brand span {
    color: var(--fox-dark);
}

.nav-link {
    color: var(--fox-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--fox-red) !important;
    background: rgba(239, 61, 35, 0.10);
}

/* =========================
   Buttons
   ========================= */
.btn-primary,
.fox-btn-primary {
    background: var(--fox-gradient);
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 0.75rem;
    box-shadow: 0 12px 24px rgba(239, 61, 35, 0.18);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.fox-btn-primary:hover {
    background: linear-gradient(135deg, var(--fox-red-dark), var(--fox-orange));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.btn-outline-primary,
.fox-btn-outline {
    color: var(--fox-red);
    border: 1.5px solid var(--fox-red);
    background: transparent;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.fox-btn-outline:hover {
    background: var(--fox-red);
    border-color: var(--fox-red);
    color: #fff;
    transform: translateY(-2px);
}

.btn-gradient {
    background: var(--fox-gradient);
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
}

.btn-gradient:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* =========================
   Hero
   ========================= */
.hero-section,
.fox-hero {
    background: var(--fox-gradient-soft);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-section::before,
.fox-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(239, 61, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after,
.fox-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(239, 61, 35, 0.08);
    color: var(--fox-red);
    border: 1px solid rgba(239, 61, 35, 0.15);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--fox-dark);
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--fox-text);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 640px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fox-dark);
    font-weight: 500;
}

.trust-item i {
    color: var(--fox-red);
}

/* =========================
   Cards / Panels
   ========================= */
.login-card,
.feature-card,
.service-card,
.testimonial-card,
.profile-card,
.api-card,
.order-form,
.dash-card,
.ticket-card,
.fox-card,
.fox-auth-card,
.fox-table-card,
.fox-filter-card,
.fox-info-card,
.fox-cta-card,
.fox-page-content,
.fox-faq-bottom-card {
    background: var(--fox-white);
    border: 1px solid var(--fox-border);
    border-radius: 1.25rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.login-card {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.login-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-card,
.testimonial-card,
.ticket-card {
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover,
.service-card:hover,
.ticket-card:hover,
.dash-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.dash-card {
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.order-form,
.api-card,
.profile-card {
    padding: 2rem;
}

.fox-filter-card {
    padding: 24px;
}

.fox-table-card {
    padding: 10px 10px 0;
    overflow: hidden;
}

.fox-info-card,
.fox-page-content,
.fox-faq-bottom-card,
.fox-cta-card {
    padding: 28px;
}

/* =========================
   Forms
   ========================= */
.form-control,
.form-select {
    border: 2px solid var(--fox-border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--fox-red);
    box-shadow: 0 0 0 4px rgba(239, 61, 35, 0.10);
}

.form-label {
    font-weight: 600;
    color: var(--fox-dark);
    margin-bottom: 0.5rem;
}

.input-group-text {
    background: var(--fox-light);
    border: 2px solid var(--fox-border);
    border-right: none;
    color: var(--fox-red);
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-color: var(--fox-border);
}

.fox-input-group .input-group-text {
    background: var(--fox-light);
    border-color: var(--fox-border);
    color: var(--fox-red);
}

.fox-input-group .form-control {
    border-color: var(--fox-border);
    min-height: 50px;
}

.fox-input-group .form-control:focus {
    border-color: var(--fox-red);
    box-shadow: 0 0 0 0.2rem rgba(239, 61, 35, 0.10);
}

/* =========================
   Sections
   ========================= */
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--fox-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--fox-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.services-section {
    padding: 6rem 0;
    background: var(--fox-light);
}

.stats-section,
.fox-stats-section {
    background: var(--fox-gradient);
    padding: 5rem 0;
    color: #fff;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.92;
}

.cta-section,
.fox-cta-section {
    background: linear-gradient(135deg, #fff7f3 0%, #ffe9dd 100%);
    padding: 5rem 0;
    text-align: center;
}

/* =========================
   Feature Icons
   ========================= */
.feature-icon,
.dash-card-icon,
.service-icon,
.fox-service-icon,
.fox-info-icon,
.fox-auth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-green {
    background: linear-gradient(135deg, rgba(239, 61, 35, 0.18), rgba(239, 61, 35, 0.08));
    color: var(--fox-red);
}

.icon-blue {
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.18), rgba(255, 122, 24, 0.08));
    color: var(--fox-orange);
}

.icon-purple {
    background: linear-gradient(135deg, rgba(255, 181, 71, 0.22), rgba(255, 181, 71, 0.10));
    color: #d98a00;
}

.icon-orange {
    background: linear-gradient(135deg, rgba(239, 61, 35, 0.18), rgba(255, 122, 24, 0.10));
    color: var(--fox-red);
}

.icon-pink {
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.16), rgba(239, 61, 35, 0.10));
    color: var(--fox-orange);
}

.icon-cyan {
    background: linear-gradient(135deg, rgba(255, 181, 71, 0.16), rgba(255, 122, 24, 0.10));
    color: #d98a00;
}

.fox-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.fox-icon-red {
    background: rgba(239, 61, 35, 0.12);
    color: var(--fox-red);
}

.fox-icon-orange {
    background: rgba(255, 122, 24, 0.12);
    color: var(--fox-orange);
}

.fox-icon-yellow {
    background: rgba(255, 181, 71, 0.15);
    color: #d98a00;
}

.dash-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.75rem;
    font-size: 1.25rem;
    background: rgba(239, 61, 35, 0.10);
    color: var(--fox-red);
}

.fox-service-icon,
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.25rem;
}

.fox-info-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(239,61,35,0.12), rgba(255,122,24,0.16));
    color: var(--fox-red);
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.fox-auth-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(239,61,35,0.12), rgba(255,122,24,0.14));
    color: var(--fox-red);
    font-size: 1.9rem;
}

/* =========================
   Service / Pricing
   ========================= */
.service-card {
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-body {
    padding: 0 1.5rem 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fox-red);
}

.service-price span {
    font-size: 0.875rem;
    color: var(--fox-muted);
    font-weight: 400;
}

.instagram-bg { background: linear-gradient(135deg, #e1306c, #f77737); }
.youtube-bg { background: linear-gradient(135deg, #ff0000, #ff5f57); }
.tiktok-bg { background: linear-gradient(135deg, #111111, #333333); }
.x-bg { background: linear-gradient(135deg, #111827, #374151); }

.pricing-table {
    background: var(--fox-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table thead {
    background: var(--fox-gradient);
    color: #fff;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--fox-border);
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(239, 61, 35, 0.04);
}

/* =========================
   Dashboard / Sidebar
   ========================= */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: var(--fox-white);
    border-right: 1px solid var(--fox-border);
    padding: 1.5rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--fox-red);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--fox-border);
}

.sidebar-brand span {
    color: var(--fox-dark);
}

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

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    color: var(--fox-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(239, 61, 35, 0.08);
    color: var(--fox-red);
}

.sidebar-nav a i {
    width: 20px;
    text-align: center;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    background: var(--fox-bg);
    min-height: 100vh;
}

.dash-card-title {
    font-size: 0.875rem;
    color: var(--fox-muted);
    margin-bottom: 0.5rem;
}

.dash-card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--fox-dark);
}

/* =========================
   Tables
   ========================= */
.custom-table {
    background: var(--fox-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.custom-table thead {
    background: var(--fox-light);
}

.custom-table th {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--fox-dark);
    border-bottom: 1px solid var(--fox-border);
}

.custom-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--fox-border);
}

.custom-table tbody tr:hover {
    background: rgba(239, 61, 35, 0.03);
}

/* Services table */
.fox-services-page {
    background: linear-gradient(135deg, #fff8f4 0%, #fff4ee 50%, #fffaf7 100%);
}

.fox-page-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(239, 61, 35, 0.10);
    color: var(--fox-red);
    border: 1px solid rgba(239, 61, 35, 0.15);
    font-weight: 600;
}

.fox-label-icon {
    color: var(--fox-red);
}

.fox-control {
    min-height: 50px;
    border-color: var(--fox-border);
    box-shadow: none;
}

.fox-control:focus {
    border-color: var(--fox-red);
    box-shadow: 0 0 0 0.2rem rgba(239, 61, 35, 0.10);
}

.fox-filter-note {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
    background: var(--fox-soft-2);
    color: #9a3412;
    font-weight: 500;
    border: 1px dashed #f0b8a4;
}

.fox-services-table thead th {
    font-weight: 700;
    color: #7c2d12;
    border-bottom: 1px solid #f1ddd4;
    background: var(--fox-light);
}

.fox-services-table .category-row td {
    background: linear-gradient(135deg, var(--fox-soft), var(--fox-light));
    font-weight: 700;
    color: #9a3412;
    border-top: 1px solid #f4d7ca;
    border-bottom: 1px solid #f4d7ca;
}

.fox-category-row-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fox-category-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--fox-gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.fox-services-table tbody tr.service-row:hover {
    background: #fff7f2;
}

.fox-service-name {
    color: var(--fox-dark);
}

.fox-price-text {
    color: var(--fox-red);
}

.fox-id-badge {
    background: #fff3ec;
    color: #9a3412;
    border: 1px solid var(--fox-border-strong);
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 10px;
}

.services-table thead th {
    font-weight: 700;
    color: #7c2d12;
}

.services-table .category-row td {
    background: var(--fox-soft);
    font-weight: 700;
    color: #9a3412;
    border-top: 1px solid var(--fox-border);
    border-bottom: 1px solid var(--fox-border);
}

.services-table tbody tr.service-row:hover {
    background: #fff8f4;
}

/* =========================
   Modal
   ========================= */
.fox-service-modal .modal-content,
.service-modal .modal-content {
    background: #1f1720;
    color: #f3f4f6;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.fox-service-modal .modal-header,
.service-modal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fox-service-modal .modal-title,
.service-modal .modal-title {
    color: #fff;
    font-weight: 700;
}

.fox-service-modal .modal-body,
.service-modal .modal-body {
    color: #e5e7eb;
    line-height: 1.8;
}

.fox-service-modal .btn-close,
.service-modal .btn-close {
    filter: invert(1);
}

/* =========================
   Status Badges
   ========================= */
.badge-status {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-pending {
    background: rgba(255, 181, 71, 0.15);
    color: #b56c00;
}

.badge-processing {
    background: rgba(255, 122, 24, 0.15);
    color: var(--fox-orange-dark);
}

.badge-completed {
    background: rgba(239, 61, 35, 0.12);
    color: var(--fox-red);
}

.badge-cancelled {
    background: rgba(127, 29, 29, 0.10);
    color: #b91c1c;
}

/* =========================
   Ticket / API / Profile
   ========================= */
.ticket-id {
    font-weight: 600;
    color: var(--fox-red);
}

.ticket-subject {
    font-weight: 600;
    color: var(--fox-dark);
    margin: 0.5rem 0;
}

.ticket-meta {
    font-size: 0.875rem;
    color: var(--fox-muted);
}

.api-endpoint {
    background: var(--fox-light);
    border-radius: 0.75rem;
    padding: 1rem;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.code-block {
    background: #1F2937;
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: #E5E7EB;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    overflow-x: auto;
}

.code-block .keyword {
    color: #f59e0b;
}

.code-block .string {
    color: #ff8b3d;
}

.code-block .number {
    color: #ffd166;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--fox-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

/* =========================
   Footer
   ========================= */
.footer {
    background: var(--fox-white);
    border-top: 1px solid var(--fox-border);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--fox-red);
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--fox-dark);
}

.footer-links h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--fox-dark);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--fox-muted);
}

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

.footer-bottom {
    border-top: 1px solid var(--fox-border);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: var(--fox-muted);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--fox-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fox-muted);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--fox-red);
    color: #fff;
}

/* =========================
   Testimonials
   ========================= */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-rating {
    color: var(--fox-yellow);
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--fox-yellow);
    margin-right: 2px;
}

.fox-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fox-avatar-red {
    background: linear-gradient(135deg, var(--fox-red), #ff6b57);
}

.fox-avatar-orange {
    background: linear-gradient(135deg, var(--fox-orange), #ff9f43);
}

.fox-avatar-yellow {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* =========================
   Auth
   ========================= */
.fox-auth-section {
    background: var(--fox-gradient-soft);
    min-height: calc(100vh - 76px);
}

.fox-auth-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(239, 61, 35, 0.10);
    color: var(--fox-red);
    border: 1px solid rgba(239, 61, 35, 0.15);
    font-weight: 600;
}

.fox-auth-title {
    font-size: 2.7rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--fox-dark);
}

.fox-auth-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--fox-muted);
    margin-top: 18px;
    max-width: 560px;
}

.fox-auth-points,
.fox-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fox-auth-point,
.fox-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--fox-dark-soft);
    font-weight: 500;
}

.fox-auth-point i,
.fox-list-item i {
    color: var(--fox-red);
}

.fox-mini-box {
    background: var(--fox-white);
    border: 1px solid var(--fox-border);
    border-radius: 16px;
    padding: 20px 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.fox-mini-box i {
    font-size: 1.8rem;
    background: var(--fox-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fox-link {
    color: var(--fox-red);
}

.fox-link:hover {
    color: var(--fox-orange);
}

/* =========================
   FAQ
   ========================= */
.fox-faq-page {
    background: linear-gradient(135deg, #fff8f4 0%, #fff3ec 50%, #fffaf7 100%);
}

.fox-faq .accordion-item,
.fox-faq-accordion .accordion-item {
    border: 1px solid var(--fox-border);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--fox-white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.fox-faq .accordion-button,
.fox-faq-accordion .accordion-button {
    font-weight: 700;
    color: var(--fox-dark);
    background: var(--fox-white);
    box-shadow: none;
    padding: 18px 20px;
}

.fox-faq .accordion-button:not(.collapsed),
.fox-faq-accordion .accordion-button:not(.collapsed) {
    background: #fff4ee;
    color: #9a3412;
    box-shadow: none;
}

.fox-faq .accordion-button:focus,
.fox-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.fox-faq .accordion-body,
.fox-faq-accordion .accordion-body {
    color: var(--fox-muted);
    line-height: 1.8;
    padding: 18px 20px 22px;
}

/* =========================
   Utility
   ========================= */
.bg-gradient-green {
    background: var(--fox-gradient);
}

.alert-success-custom {
    background: rgba(239, 61, 35, 0.08);
    border: 1px solid var(--fox-red);
    color: var(--fox-red-dark);
    border-radius: 0.75rem;
}

.form-switch .form-check-input {
    width: 3rem;
    height: 1.5rem;
}

.form-switch .form-check-input:checked {
    background-color: var(--fox-red);
    border-color: var(--fox-red);
}

.progress {
    height: 0.5rem;
    border-radius: 1rem;
    background: var(--fox-light);
}

.progress-bar {
    background: var(--fox-gradient);
    border-radius: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--fox-muted);
}

.breadcrumb-item a {
    color: var(--fox-muted);
}

.breadcrumb-item.active {
    color: var(--fox-red);
}

/* =========================
   Old description block fix
   ========================= */
.form-group.fields#description {
    background: var(--fox-white);
    border: 1px solid var(--fox-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(239, 61, 35, 0.05);
    transition: all 0.2s ease-in-out;
}

.form-group.fields#description:hover {
    box-shadow: 0 6px 18px rgba(239, 61, 35, 0.10);
    transform: translateY(-2px);
}

.form-group.fields#description > label.control-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .95rem;
    color: #9a3412;
    margin-bottom: .6rem;
}

.form-group.fields#description .panel-body,
.form-group.fields#description #service_description {
    background: var(--fox-light);
    border: 1px solid var(--fox-border) !important;
    border-radius: 10px !important;
    padding: .85rem 1rem;
    font-size: .92rem;
    color: var(--fox-dark-soft);
    line-height: 1.5;
}

.form-group.fields#description .border-solid,
.form-group.fields#description .border-rounded {
    border: 0 !important;
}

.form-group.fields#description .panel-body a,
.form-group.fields#description #service_description a {
    color: var(--fox-red);
    text-decoration: none;
    font-weight: 600;
}

.form-group.fields#description .panel-body a:hover,
.form-group.fields#description #service_description a:hover {
    text-decoration: underline;
    color: var(--fox-orange);
}

/* =========================
   Tooltip
   ========================= */
.tooltip5 {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: .25rem;
    cursor: pointer;
}

.tooltip5 .fa,
.tooltip5 i {
    color: var(--fox-red);
    font-size: 1rem;
}

.tooltip5 .tooltiptext5 {
    visibility: hidden;
    opacity: 0;
    width: 280px;
    background: #111827;
    color: #fff;
    text-align: left;
    border-radius: 10px;
    padding: 10px 12px;
    position: absolute;
    z-index: 9999;
    bottom: 135%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity .2s ease, transform .2s ease;
    font-size: 0.82rem;
    line-height: 1.35;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.tooltip5 .tooltiptext5::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: #111827 transparent transparent transparent;
}

.tooltip5:hover .tooltiptext5 {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .sidebar {
        transform: translateX(-100%);
        z-index: 1000;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .fox-auth-title {
        font-size: 2.1rem;
    }

    .fox-auth-content {
        text-align: center;
    }

    .fox-auth-points {
        align-items: center;
    }
}

@media (max-width: 767px) {
    .hero-section,
    .fox-hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .fox-services-table thead,
    .services-table thead {
        display: none;
    }

    .fox-services-table,
    .fox-services-table tbody,
    .fox-services-table tr,
    .fox-services-table td,
    .services-table,
    .services-table tbody,
    .services-table tr,
    .services-table td {
        display: block;
        width: 100%;
    }

    .fox-services-table tr.service-row,
    .services-table tr.service-row {
        background: #fff;
        border: 1px solid #f0ddd3;
        margin-bottom: 14px;
        padding: 12px;
        border-radius: 14px;
        box-shadow: 0 6px 14px rgba(239, 61, 35, 0.05);
    }

    .fox-services-table td,
    .services-table td {
        border: none !important;
        display: flex !important;
        gap: 10px;
        padding: 7px 8px !important;
        overflow-wrap: anywhere;
    }

    .fox-services-table td:before,
    .services-table td:before {
        content: attr(data-label);
        flex: 0 0 42%;
        font-weight: 700;
        color: #9a3412;
    }

    .fox-services-table tr.category-row td,
    .services-table tr.category-row td {
        border: none !important;
        border-radius: 10px;
        padding: 10px 12px !important;
    }

    .fox-services-table tr.category-row td:before,
    .services-table tr.category-row td:before {
        content: "";
    }

    .cta-title {
        font-size: 1.6rem;
    }
}

.fox-welcome-card {
    background: linear-gradient(135deg, #fff4ee 0%, #fff9f6 100%);
    border: 1px solid #f2d9ce;
    border-radius: 20px;
    padding: 28px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.fox-mini-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(239, 61, 35, 0.10);
    color: #ef3d23;
    border: 1px solid rgba(239, 61, 35, 0.15);
    font-weight: 600;
    font-size: 0.92rem;
}

.fox-welcome-card h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1f2937;
}

.fox-welcome-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ef3d23, #ff7a18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 12px 24px rgba(239, 61, 35, 0.18);
}

.fox-stat-card {
    background: #fff;
    border: 1px solid #f2d9ce;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.fox-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.fox-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.fox-stat-icon-red {
    background: rgba(239, 61, 35, 0.12);
    color: #ef3d23;
}

.fox-stat-icon-orange {
    background: rgba(255, 122, 24, 0.12);
    color: #ff7a18;
}

.fox-stat-icon-yellow {
    background: rgba(255, 181, 71, 0.16);
    color: #d98a00;
}

.fox-stat-label {
    font-size: 0.92rem;
    color: #6b7280;
    margin-bottom: 6px;
    font-weight: 600;
}

.fox-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
}

.fox-stat-username {
    font-size: 1.25rem;
    word-break: break-word;
}

@media (max-width: 767px) {
    .fox-welcome-card {
        padding: 22px 20px;
    }

    .fox-welcome-card h3 {
        font-size: 1.45rem;
    }

    .fox-welcome-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .fox-stat-value {
        font-size: 1.35rem;
    }
}

:root {
    --fox-red: #ef3d23;
    --fox-orange: #ff7a18;
    --fox-dark: #1f2937;
    --fox-light: #fff7f3;
    --fox-soft: #fff1ea;
    --fox-border: #f1d6ca;
    --fox-text: #4b5563;
    --fox-yellow: #ffb547;
}

.fox-hero {
    background: linear-gradient(135deg, #fff6f2 0%, #fff1ea 45%, #fff8f4 100%);
    padding: 90px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(239, 61, 35, 0.08);
    color: var(--fox-red);
    border: 1px solid rgba(239, 61, 35, 0.15);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--fox-dark);
}

.hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--fox-text);
    max-width: 640px;
}

.fox-text-gradient {
    background: linear-gradient(135deg, var(--fox-red), var(--fox-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fox-btn-primary {
    background: linear-gradient(135deg, var(--fox-red), var(--fox-orange));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(239, 61, 35, 0.18);
}

.fox-btn-primary:hover {
    color: #fff;
    opacity: 0.95;
}

.fox-btn-outline {
    border: 1.5px solid var(--fox-red);
    color: var(--fox-red);
    background: transparent;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700;
}

.fox-btn-outline:hover {
    background: var(--fox-red);
    color: #fff;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fox-dark);
    font-weight: 500;
}

.trust-item i,
.fox-list-item i {
    color: var(--fox-red);
}

.fox-login-card,
.fox-card {
    background: #fff;
    border: 1px solid var(--fox-border);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    padding: 30px;
}

.fox-stats-section {
    background: linear-gradient(135deg, var(--fox-red), var(--fox-orange));
    padding: 55px 0;
}

.fox-stats-section .stat-number,
.fox-stats-section .stat-label {
    color: #fff;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--fox-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--fox-text);
    max-width: 720px;
    margin: 0 auto;
}

.fox-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.fox-icon-red {
    background: rgba(239, 61, 35, 0.12);
    color: var(--fox-red);
}

.fox-icon-orange {
    background: rgba(255, 122, 24, 0.12);
    color: var(--fox-orange);
}

.fox-icon-yellow {
    background: rgba(255, 181, 71, 0.15);
    color: #d98a00;
}

.fox-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-bg { background: linear-gradient(135deg, #e1306c, #f77737); }
.youtube-bg { background: linear-gradient(135deg, #ff0000, #ff5f57); }
.tiktok-bg { background: linear-gradient(135deg, #111111, #333333); }
.x-bg { background: linear-gradient(135deg, #111827, #374151); }

.fox-info-box {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fox-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fox-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--fox-dark);
    font-weight: 500;
}

.fox-step-card {
    padding: 30px 22px;
}

.testimonial-rating i {
    color: #ffb547;
    margin-right: 2px;
}

.fox-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fox-avatar-red {
    background: linear-gradient(135deg, var(--fox-red), #ff6b57);
}

.fox-avatar-orange {
    background: linear-gradient(135deg, var(--fox-orange), #ff9f43);
}

.fox-avatar-yellow {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.fox-faq .accordion-item {
    border: 1px solid var(--fox-border);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 16px;
}

.fox-faq .accordion-button:not(.collapsed) {
    background: var(--fox-soft);
    color: var(--fox-red);
    box-shadow: none;
}

.fox-cta-section {
    background: linear-gradient(135deg, #fff7f3 0%, #ffe9dd 100%);
    padding: 90px 0;
}

.fox-link {
    color: var(--fox-red);
}

.fox-link:hover {
    color: var(--fox-orange);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.9rem;
    }
}

.fox-auth-section {
    background: linear-gradient(135deg, #fff6f2 0%, #fff1ea 45%, #fff8f4 100%);
    min-height: calc(100vh - 76px);
}

.fox-auth-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(239, 61, 35, 0.10);
    color: #ef3d23;
    border: 1px solid rgba(239, 61, 35, 0.15);
    font-weight: 600;
}

.fox-auth-title {
    font-size: 2.7rem;
    line-height: 1.15;
    font-weight: 800;
    color: #1f2937;
}

.fox-auth-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6b7280;
    margin-top: 18px;
    max-width: 560px;
}

.fox-auth-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fox-auth-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-weight: 500;
}

.fox-auth-point i {
    color: #ef3d23;
}

.fox-mini-box {
    background: #fff;
    border: 1px solid #f3d8cc;
    border-radius: 16px;
    padding: 20px 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.fox-mini-box i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #ef3d23, #ff7a18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fox-auth-card {
    background: #fff;
    border: 1px solid #f3d8cc;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.fox-auth-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(239,61,35,0.12), rgba(255,122,24,0.14));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef3d23;
    font-size: 1.9rem;
}

.fox-input-group .input-group-text {
    background: #fff7f3;
    border-color: #f3d8cc;
    color: #ef3d23;
}

.fox-input-group .form-control {
    border-color: #f3d8cc;
    box-shadow: none;
    min-height: 50px;
}

.fox-input-group .form-control:focus {
    border-color: #ef3d23;
    box-shadow: 0 0 0 0.2rem rgba(239, 61, 35, 0.10);
}

.fox-btn-primary {
    background: linear-gradient(135deg, #ef3d23, #ff7a18);
    border: none;
    color: #fff;
    border-radius: 12px;
    padding: 14px 22px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(239, 61, 35, 0.18);
}

.fox-btn-primary:hover {
    color: #fff;
    opacity: 0.96;
}

.fox-link {
    color: #ef3d23;
}

.fox-link:hover {
    color: #ff7a18;
}

@media (max-width: 991px) {
    .fox-auth-title {
        font-size: 2.1rem;
    }

    .fox-auth-content {
        text-align: center;
    }

    .fox-auth-points {
        align-items: center;
    }
}