/* ============================================
   SUPPORT PAGE
   ============================================ */

.support-cta {
    display: flex;
    margin: auto;
    align-items: center;
    align-content: center;
}

/* ------------------
   SEARCH SECTION
------------------- */
.search {
    max-width: 520px;
    margin: 80px auto;
    text-align: center;
}

.search h3 {
    margin-bottom: 8px;
    font-size: 26px;
}

.search p {
    margin-bottom: 20px;
    color: #777;
}

.ticket-search {
    display: flex;
    gap: 12px;
}

.ticket-search input {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--primary);
}
/* ------------------
   TICKET FORM PAGE
------------------- */
.ticket-header {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 0 1rem;
}

.ticket-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #132442;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.ticket-header p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.ticket-card {
    max-width: 600px;
    margin: 2rem auto 4rem;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
}

.ticket-form .form-group {
    margin-bottom: 1.25rem;
}

.ticket-form label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6b7280;
    margin-bottom: 0.4rem;
}

.ticket-form input,
.ticket-form textarea,
.ticket-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    font-size: 0.95rem;
    font-family: inherit;
    color: #111827;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.ticket-form input:focus,
.ticket-form textarea:focus,
.ticket-form select:focus {
    outline: none;
    border-color: #3551A4;
    box-shadow: 0 0 0 3px rgba(53, 81, 164, 0.1);
}

.ticket-form textarea {
    min-height: 120px;
    resize: vertical;
}

.ticket-submit-btn {
    width: 100%;
    padding: 0.875rem;
    border-radius: 10px;
    background: #132442;
    color: #D6E264;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.ticket-submit-btn:hover {
    background: #3551A4;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(53, 81, 164, 0.25);
}

/* ------------------
   FILE DROPZONE
------------------- */
.upload-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6b7280;
    margin-bottom: 0.5rem;
    display: block;
}

.dropzone {
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropzone:hover {
    border-color: #3551A4;
    background: #f0f4ff;
}

.dropzone.dragover {
    border-color: #3551A4;
    background: #e8eeff;
}

.dropzone p {
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}

.dropzone .muted {
    color: #9ca3af;
    font-size: 0.82rem;
    margin-top: 4px;
}

.file-list {
    margin-top: 12px;
    padding-left: 0;
    list-style: none;
}

.file-list li {
    background: #f0f4ff;
    border: 1px solid #c7d2fe;
    color: #3551A4;
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 0.82rem;
    font-weight: 500;
}

/* ------------------
   SUCCESS PAGE
------------------- */
.success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 480px;
    margin: 5rem auto;
    text-align: center;
    padding: 0 1.5rem;
    gap: 1.5rem;
}

.success-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.success-text h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #132442;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.success-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.ticket-body {
    width: 100%;
    border-radius: 14px;
    background: white;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ticket-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
}

.ticket-id {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #132442;
    margin: 0.25rem 0;
    letter-spacing: -0.02em;
    line-height: 1;
}

.ticket-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.ticket-action-btn {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
    font-family: inherit;
}

.ticket-action-btn.primary {
    background: #132442;
    color: #D6E264;
}

.ticket-action-btn.primary:hover {
    background: #3551A4;
    color: #fff;
}

.ticket-action-btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1.5px solid #e5e7eb;
}

.ticket-action-btn.secondary:hover {
    background: #e5e7eb;
}

@media (max-width: 640px) {
    .success-container {
        margin: 3rem auto;
    }

    .ticket-actions {
        flex-direction: column;
    }

    .ticket-id {
        font-size: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .ticket-card {
        margin: 1.5rem 1rem 3rem;
        padding: 1.5rem;
    }

    .ticket-header {
        margin-top: 2rem;
    }

    .ticket-header h2 {
        font-size: 1.5rem;
    }
}

/* ------------------
   ADMIN
------------------- */

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}


/* ===================================================================== */
/* DASHBOARD HEADER */
/* ===================================================================== */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    margin: 0;
    font-size: 2rem;
    color: var(--text-dark);
}

.welcome-text {
    margin: 0.5rem 0 0 0;
    color: var(--text-muted);
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.btn-action {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.btn-superadmin {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-support {
    background: #F59E0B;
    color: white;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-pending {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #EF4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.alert-info {
    background: #DBEAFE;
    border-left: 4px solid #3B82F6;
    color: #1E40AF;
}

.alert-link {
    color: #1E3A8A;
    font-weight: 700;
    text-decoration: underline;
}

/* ===================================================================== */
/* STATS CARDS */
/* ===================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-content h5 {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.stat-content h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.pending-card { border-left: 4px solid #F59E0B; }
.process-card { border-left: 4px solid #3B82F6; }
.resolved-card { border-left: 4px solid #22C55E; }
.escalated-card { border-left: 4px solid #EF4444; }

/* ===================================================================== */
/* FILTERS */
/* ===================================================================== */
.filters-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.filters-section h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.filters-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-select {
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.btn-filter,
.btn-clear {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-filter {
    background: var(--primary);
    color: white;
}

.btn-filter:hover {
    background: var(--primary-dark);
}

.btn-clear {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-clear:hover {
    background: #E5E7EB;
}

/* ===================================================================== */
/* EXPORT SECTION */
/* ===================================================================== */
.export-section {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.export-section h3 {
    margin: 0;
    font-size: 1.125rem;
}

.export-buttons {
    display: flex;
    gap: 1rem;
}

.btn-export {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-export:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===================================================================== */
/* TICKETS TABLE */
/* ===================================================================== */
.tickets-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.tickets-section h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.table-responsive {
    overflow-x: auto;
}

.tickets-table {
    width: 100%;
    border-collapse: collapse;
}

.tickets-table thead {
    background: var(--bg-light);
}

.tickets-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tickets-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s;
}

.tickets-table tbody tr:hover {
    background: var(--bg-light);
}

.tickets-table td {
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.ticket-id {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--primary);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pending { background: #FEF3C7; color: #92400E; }
.status-in-process { background: #DBEAFE; color: #1E40AF; }
.status-resolved { background: #D1FAE5; color: #065F46; }
.status-escalated { background: #FEE2E2; color: #991B1B; }

.btn-view {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-view:hover {
    background: var(--primary-dark);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state p {
    margin: 0.5rem 0;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.empty-state small {
    color: var(--text-muted);
}

/* ===================================================================== */
/* PAGINATION */
/* ===================================================================== */
.pagination-section {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.page-link {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-light);
}

.page-info {
    padding: 0.5rem 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===================================================================== */
/* RESPONSIVE */
/* ===================================================================== */
@media (max-width: 1024px) {
    .filters-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem;
    }


    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .filters-form {
        grid-template-columns: 1fr;
    }

    .export-section {
        flex-direction: column;
        gap: 1rem;
    }

    .export-buttons {
        width: 100%;
        flex-direction: column;
    }
}
.admin-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 60px auto;
    gap: 0.5rem;
}

.admin-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stats .card {
    padding: 25px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.dashboard-subtitle p {
    color: var(--text-muted);
}

/* ------------------
   ADMIN TABLE
------------------- */
.filters {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.filters select {
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 0.85rem;
}

.admin-container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.admin-container thead th {
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 10px 16px;
}

.admin-container tbody tr {
    background: white;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.admin-container tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.admin-container tbody td {
    padding: 16px;
    font-size: 14px;
    vertical-align: middle;
}

.admin-container tbody td:first-child {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    font-weight: 600;
}

.admin-container tbody td:last-child {
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

td a {
    color: var(--primary);
    font-weight: 500;
}

td a:hover {
    color: inherit;
    font-weight: 500;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 14px;
    overflow: hidden;
}

thead {
    background: #f9fafb;
}

th, td {
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
    text-align: left;
}

tbody tr {
    border-top: 1px solid #f1f5f9;
    cursor: pointer;
}

tbody tr:hover {
    background: #f9fafb;
}

td select {
    border-radius: 999px;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
}

/* ------------------
   TICKET DETAIL
------------------- */
.ticket-detail-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.ticket {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.pending {
    background: #fef3c7;
    color: #92400e;
}

.status.in-process {
    background: #dbeafe;
    color: #1e40af;
}

.status.resolved {
    background: #dcfce7;
    color: #166534;
}

.status.escalated {
    background: #fee2e2;
    color: #991b1b;
}

.ticket-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.ticket-box > p {
    font-weight: 600;
    margin-bottom: 1rem;
}

.ticket-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1rem;
    margin-bottom: 1.5rem;
}

.ticket-info p {
    font-size: 0.9rem;
    color: #374151;
}

.ticket-info strong {
    color: #111827;
}

.ticket-box h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.summary {
    background: #f9fafb;
    border-radius: 10px;
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #374151;
}

.ticket-detail-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.ticket-detail-left {
    display: flex;
    gap: 0.75rem;
}

.btn-action {
    display: inline-block;
    text-decoration: none;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    /* Reset any inherited link styles */
    color: unset;
}

.btn-action.back {
    background: #f3f4f6;
    color: #374151 !important;
}

.btn-action.back:hover {
    background: #e5e7eb;
}

.btn-action.delete {
    background: #fee2e2;
    color: #991b1b !important;
}

.btn-action.delete:hover {
    background: #ef4444;
    color: white !important;
}

.btn-action.respond {
    background: #3551A4;
    color: white !important;
}

.btn-action.respond:hover {
    background: #132442;
}

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.actions .back {
    background: #f3f4f6;
    color: #111827;
}

.actions .delete {
    background: #ef4444;
    color: #ffffff;
}

.actions .btn {
    background: #4f46e5;
    color: #ffffff;
}

.detail-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
}

/* ------------------
   SUPPORT HOME
------------------- */
.support-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 14px;
    display: block;
}

/* ---- FAQ ---- */
.faq-list {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question.open {
    color: #3551A4;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 400;
    color: #9ca3af;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-question.open .faq-icon {
    transform: rotate(45deg);
    color: #3551A4;
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    background: #f9fafb;
}

.faq-answer p {
    margin: 0;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
}

.faq-answer.open {
    display: block;
}

/* ---- Video Cards ---- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.video-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.video-thumb {
    background: #132442;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play {
    font-size: 1.5rem;
    color: #D6E264;
    opacity: 0.9;
}

.video-meta {
    padding: 0.75rem;
    background: white;
}

.video-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px;
    line-height: 1.3;
}

.video-duration {
    font-size: 0.72rem;
    color: #9ca3af;
    font-weight: 500;
}

/* ---- Support Cards ---- */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-bottom: 1rem;
}

.support-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.support-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #c7d2fe;
}

.support-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 12px;
}

.support-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.support-card-desc {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ---- CTA Buttons ---- */
@media (max-width: 640px) {
    /* Support cards — horizontal layout */
    .support-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .support-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 14px;
    }

    .support-icon {
        font-size: 1.4rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .support-card-title {
        margin-bottom: 2px;
    }

    .support-card-desc {
        font-size: 0.75rem;
    }

    /* Video grid — single column */
    .video-grid {
        grid-template-columns: 1fr;
    }

    /* CTA buttons — stack vertically */
    .d-flex.flex-md-row {
        flex-direction: column !important;
        align-items: stretch;
    }

    .d-flex.flex-md-row .btn {
        width: 100%;
        text-align: center;
    }

    /* Ticket search — stack on mobile */
    .ticket-search {
        flex-direction: column;
    }

    .search {
        margin: 40px auto;
        padding: 0 1rem;
    }
}


@media (max-width: 640px) {
    .d-flex.flex-md-row .btn {
        width: auto;
        align-self: center;
    }
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}

.video-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    overflow:hidden;
    transition:all 0.2s ease;
}

.video-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.video-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.video-thumb{
    position:relative;
    overflow:hidden;
}

.video-thumb img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    
    width:60px;
    height:60px;

    border-radius:50%;
    background:rgba(0,0,0,0.7);

    color:#fff;
    font-size:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    backdrop-filter:blur(4px);
}

.video-meta{
    padding:16px;
}

.video-title{
    font-size:1rem;
    font-weight:600;
    margin-bottom:8px;
    line-height:1.4;
}

.video-duration{
    font-size:0.9rem;
    color:#6b7280;
}