/* ===============================================
   SNT Hostings WHMCS Theme V4
   Minimalistic, User-Focused Design
   Version: 4.0.0
================================================ */

/* ========== VARIABLES ========== */
:root {
  --cta: #ff6a00;
  --cta-hover: #e35a00;
  --cta-light: #ff8c3c;
  --text: #0b1b2b;
  --text-light: #2a3b4b;
  --muted: #5b6b7a;
  --bg: #FCFEFF;
  --bg-light: #f9fbfc;
  --border: #e6edf3;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(11, 29, 50, 0.08);
  --shadow-hover: 0 12px 40px rgba(255, 106, 0, 0.12);
  --container: 1200px;
  --sidebar-width: 280px;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========== HEADER ========== */
.snt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  z-index: 1000;
}

.snt-header-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.snt-logo img {
  height: 38px;
  width: auto;
}

.snt-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-light) 100%);
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 18px;
}

/* Header Actions */
.snt-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.snt-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-light);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.snt-user-info:hover {
  background: #e9ecef;
}

.snt-user-info svg {
  color: var(--cta);
}

/* User Dropdown Menu */
.snt-user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.snt-user-info:hover .snt-user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.snt-user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
}

.snt-user-dropdown a:hover {
  background: var(--bg-light);
  color: var(--cta);
  padding-left: 18px;
}

.snt-user-dropdown a svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.snt-user-dropdown a:hover svg {
  color: var(--cta);
}

/* Buttons - Client Area (Subtle for Management) */
.snt-btn-cta,
.snt-btn-cta-full {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  margin-left:10px;
  background: var(--cta);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(255, 106, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.snt-btn-cta::before,
.snt-btn-cta-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.snt-btn-cta:hover::before,
.snt-btn-cta-full:hover::before {
  left: 100%;
}

.snt-btn-cta:hover,
.snt-btn-cta-full:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.25);
}

.snt-btn-cta-full {
  width: 100%;
  justify-content: center;
}

.snt-btn-secondary {
  padding: 10px 20px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.snt-btn-secondary:hover {
  border-color: var(--cta);
  color: var(--cta);
  transform: translateY(-2px);
}


.snt-btn-secondary-full {
  width: 100%;
  padding: 14px 24px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-align: center;
}

.snt-btn-secondary-full:hover {
  border-color: var(--cta);
  color: var(--cta);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.snt-btn-secondary-full svg {
  flex-shrink: 0;
}

.snt-btn-logout {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s ease;
}

.snt-btn-logout:hover {
  border-color: #dc3545;
  color: #dc3545;
}

/* Mobile Button - LEFT SIDE */
.snt-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-right: 10px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1001;
}

.snt-mobile-btn span {
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.snt-mobile-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.snt-mobile-btn.active span:nth-child(2) {
  opacity: 0;
}

.snt-mobile-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ========== GRADIENT BACKGROUND ========== */
.snt-gradient-bg {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 140, 60, 0.12) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* ========== LAYOUT ========== */
.snt-layout {
  display: flex;
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  position: relative;
  background: transparent;
}

/* ========== SIDEBAR ========== */
.snt-sidebar {
  width: var(--sidebar-width);
  background: #fff;
  border-right: 1px solid var(--border);
  padding: 30px 20px;
  position: fixed;
  left: 0;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
  z-index: 100;
}

.snt-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.snt-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
  cursor: pointer;
}

.snt-nav-item svg {
  flex-shrink: 0;
  color: var(--muted);
  transition: all 0.3s ease;
}

.snt-nav-item span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.snt-nav-item:hover {
  background: var(--bg-light);
  color: var(--cta);
}

.snt-nav-item:hover svg {
  color: var(--cta);
}

.snt-nav-item.active {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 106, 0, 0.2);
}

.snt-nav-item.active svg {
  color: #fff;
}

/* Badge - TINY COMPACT SIZE */
.snt-badge {
  background: rgba(255, 106, 0, 0.15);
  color: var(--cta);
  padding: 0px 5px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
  margin-left: 8px;
  flex-shrink: 0;
  min-width: 18px;
  max-width: 28px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.snt-nav-item.active .snt-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.snt-badge-alert {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  animation: pulse 2s infinite;
}

.snt-nav-item.active .snt-badge-alert {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

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

/* Ticket Status Badges */
.snt-ticket-status {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
}

.status-unread {
  background: #ff6a00;
  color: #fff;
  animation: pulse 2s infinite;
}

.status-open { background: #3b82f6; color: #fff; }
.status-answered { background: #10b981; color: #fff; }
.status-customer { background: #f59e0b; color: #fff; }
.status-customer-reply { background: #f59e0b; color: #fff; }
.status-closed { background: #6c757d; color: #fff; }
.status-default { background: #e5e7eb; color: #374151; }

/* Navigation Chevron (dropdown indicator) */
.snt-nav-chevron {
  margin-left: auto;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.snt-nav-has-submenu:hover .snt-nav-chevron {
  opacity: 1;
  transform: rotate(180deg);
}

.snt-nav-has-submenu.active .snt-nav-chevron {
  color: #fff;
  opacity: 0.8;
}

/* Navigation Groups with Submenus */
.snt-nav-group {
  position: relative;
}

.snt-nav-submenu {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
  margin-left: 32px;
  padding-left: 16px;
  border-left: 2px solid var(--border);
  animation: slideDown 0.3s ease;
}

.snt-nav-group:hover .snt-nav-submenu {
  display: flex;
}


.snt-submenu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.snt-submenu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--cta);
  transition: width 0.3s ease;
}

.snt-submenu-item:hover::before {
  width: 4px;
}

.snt-submenu-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--muted);
  transition: all 0.3s ease;
}

.snt-submenu-item:hover {
  background: var(--bg-light);
  color: var(--cta);
  padding-left: 16px;
}

.snt-submenu-item:hover svg {
  color: var(--cta);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sidebar CTA */
.snt-sidebar-cta {
  padding-top: 20px;
}

/* ========== MAIN CONTENT ========== */
.snt-content {
    flex: 1;
    padding: 40px;
    max-width: 1500px; /* instead of width */
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
    margin: 0 auto; /* center the container */
}

.verification-banner {
margin:25px 0px 15px 0px;
}

.snt-content-full {
  margin-left: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  left: 0;
}

.snt-page-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px 0px;
  box-shadow: var(--shadow);
  max-width: 1400px;
  width: 100%;
}
}

/* ========== ALERTS ========== */
.snt-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.snt-alert svg {
  flex-shrink: 0;
}

.snt-alert-success {
  background: #d4edda;
  border: 2px solid #28a745;
  color: #155724;
}

.snt-alert-error {
  background: #f8d7da;
  border: 2px solid #dc3545;
  color: #721c24;
}

.snt-alert-info {
  background: #d1ecf1;
  border: 2px solid #17a2b8;
  color: #0c5460;
}

/* ========== CARDS ========== */
.snt-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.snt-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 106, 0, 0.1);
  transform: translateY(-4px);
}

.snt-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--bg-light);
}

.snt-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

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

.snt-stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.snt-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--cta);
  box-shadow: var(--shadow-hover);
}

.snt-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-light) 100%);
  flex-shrink: 0;
}

.snt-stat-icon svg {
  color: #fff;
}

.snt-stat-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.snt-stat-content p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ========== TABLES ========== */
.table-responsive {
  overflow-x: auto;
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

thead th {
  background: var(--bg-light);
  padding: 16px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

tbody td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}

tbody tr {
  transition: all 0.2s ease;
}

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

/* Status Badges */
.label {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.label-success {
  background: #28a745;
  color: #fff;
}

.label-warning {
  background: #ffc107;
  color: #000;
}

.label-danger {
  background: #dc3545;
  color: #fff;
}

.label-info {
  background: #17a2b8;
  color: #fff;
}

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 0px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.form-control:focus {
  outline: none;
  border-color: var(--cta);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235b6b7a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-light) 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
}

.btn-default {
  background: #fff;
  color: var(--text);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-default:hover {
  border-color: var(--cta);
  color: var(--cta);
}

/* ========== FOOTER ========== */
.snt-footer {
  background: var(--text);
  color: #fff;
  padding: 50px 0 20px;
}

.snt-footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px;
}

/* Trust Bar */
.snt-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding-bottom: 40px;
}

.snt-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.snt-trust-item svg {
  color: var(--cta);
  flex-shrink: 0;
}

/* Footer Links */
.snt-footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.snt-footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}

.snt-footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.snt-footer-col a:hover {
  color: var(--cta);
  padding-left: 5px;
}

.snt-footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

/* Footer Bottom */
.snt-footer-bottom {
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ========== MOBILE MENU ========== */
.snt-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 27, 43, 0.9);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.snt-mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.snt-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  padding: 30px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.snt-mobile-overlay.active .snt-mobile-menu {
  transform: translateX(0);
}

.snt-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--bg-light);
  transition: all 0.3s ease;
}

.snt-mobile-close:hover {
  background: var(--cta);
  color: #fff;
}

.snt-mobile-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 16px;
  margin-bottom: 30px;
}

.snt-mobile-user svg {
  color: var(--cta);
}

.snt-mobile-user span {
  font-weight: 700;
  color: var(--text);
}


/* Mobile Submenu Groups */
.snt-mobile-submenu-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 32px;
  margin-top: -4px;
  margin-bottom: 4px;
}

.snt-mobile-submenu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--bg-light);
}

.snt-mobile-submenu-item:hover {
  background: #fff;
  color: var(--cta);
  padding-left: 18px;
}

.snt-mobile-submenu-item svg {
  flex-shrink: 0;
  color: var(--muted);
  transition: color 0.3s ease;
}

.snt-mobile-submenu-item:hover svg {
  color: var(--cta);
}

.snt-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.snt-mobile-nav a {
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.snt-mobile-nav a svg {
  flex-shrink: 0;
  color: var(--muted);
  transition: color 0.3s ease;
}

.snt-mobile-nav a:hover {
  background: var(--bg-light);
  color: var(--cta);
  padding-left: 24px;
}

.snt-mobile-nav a:hover svg {
  color: var(--cta);
}


.snt-mobile-ticket-btn {
  background: #fff !important;
  color: var(--text) !important;
  border: 2px solid var(--border);
  text-align: center;
  margin-top: 10px;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.snt-mobile-ticket-btn:hover {
  border-color: var(--cta);
  color: var(--cta) !important;
  transform: scale(1.02);
  background: #fff !important;
}

.snt-mobile-ticket-btn svg {
  color: var(--text);
  transition: color 0.3s ease;
}

.snt-mobile-ticket-btn:hover svg {
  color: var(--cta);
}

.snt-mobile-cta {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-light) 100%);
  color: #fff !important;
  text-align: center;
  margin-top: 10px;
}

.snt-mobile-cta:hover {
  transform: scale(1.02);
  padding-left: 16px !important;
}

.snt-mobile-logout {
  color: #dc3545 !important;
  border: 2px solid #dc3545;
  text-align: center;
  margin-top: 10px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1440px) {
  :root {
    --sidebar-width: 220px;
  }
  
  .snt-page-content {
    padding: 30px 25px;
  }
  
  .snt-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
@media (max-width: 1900px) {
  .snt-content {
  margin-left: var(--sidebar-width);
  }
}

@media (max-width: 1440px) {
  .snt-sidebar {
    display: none;
  }
  
  .snt-content {
    margin-left: 0;
    left: 0;
    padding: 20px 15px;
  }
  
  .snt-header-container {
    padding: 0 0px;
  }
  
  .snt-user-info {
    display: none;
  }
  
  
.snt-btn-secondary-full {
  width: 100%;
  padding: 14px 24px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-align: center;
}

.snt-btn-secondary-full:hover {
  border-color: var(--cta);
  color: var(--cta);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.snt-btn-secondary-full svg {
  flex-shrink: 0;
}

.snt-btn-logout {
    display: none;
  }
  
  .snt-mobile-btn {
    display: flex;
  }
  
  .snt-page-content {
    padding: 24px 20px;
  }
  
  .snt-trust-bar {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .snt-footer-links {
    grid-template-columns: 1fr;
  }
  
  .snt-stat-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== UTILITIES ========== */
.hidden {
  display: none !important;
}

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

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

.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 20px !important; }
.mt-2 { margin-top: 20px !important; }
.p-0 { padding: 0 !important; }

/* ========== TEXT CONTENT RULES ========== */
/* No bare <p> tags - all text must be in styled divs */
.snt-text-content,
.snt-alert-message,
.snt-alert-title,
.snt-table-text,
.snt-stat-label,
.snt-section-title,
.snt-header-subtitle {
  /* Styled text containers - never use bare <p> tags */
}


/* ========== MINIMALISTIC FOOTER ========== */
.snt-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.snt-footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px;
}

.snt-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.snt-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.snt-footer-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.snt-footer-logo-text .logo-icon {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-light) 100%);
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 18px;
}

.snt-footer-tagline {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.snt-footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.snt-footer-links a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.snt-footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cta);
  transition: width 0.3s ease;
}

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

.snt-footer-links a:hover::after {
  width: 100%;
}

.snt-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.snt-footer-copyright {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.snt-footer-social {
  display: flex;
  gap: 16px;
}

.snt-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
}

.snt-footer-social a:hover {
  background: var(--cta);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .snt-footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }

  .snt-footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding-bottom: 30px;
  }

  .snt-footer-brand {
    flex-direction: column;
  }

  .snt-footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .snt-footer-bottom {
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
  }
}

/* ========== SERVICE SELECTION MODAL ========== */
.snt-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 27, 43, 0.8);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.snt-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.snt-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.snt-modal-overlay.active .snt-modal {
  transform: scale(1);
}

.snt-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.snt-modal-close:hover {
  background: var(--cta);
  color: #fff;
  transform: rotate(90deg);
}

.snt-modal-header {
  padding: 60px 40px 30px;
  text-align: center;
}

.snt-modal-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.snt-modal-subtitle {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

.snt-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 40px 50px;
}

.snt-service-card {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.snt-service-card:hover {
  background: #fff;
  border-color: var(--cta);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.15);
}

.snt-service-icon {
  font-size: 48px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.snt-service-card:hover .snt-service-icon {
  transform: scale(1.1);
}

.snt-service-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.snt-service-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* Modal Responsive */
@media (max-width: 768px) {
  .snt-modal-header {
    padding: 50px 20px 20px;
  }

  .snt-modal-title {
    font-size: 24px;
  }

  .snt-modal-subtitle {
    font-size: 14px;
  }

  .snt-modal-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 30px;
    gap: 16px;
  }

  .snt-service-card {
    padding: 30px 20px;
  }

  .snt-service-icon {
    font-size: 40px;
  }

  .snt-service-name {
    font-size: 18px;
  }
}

a:hover{
	color:#fff;
text-decoration:unset;
}
/* ========== CLIENT AREA SIDEBAR - MINIMALISTIC ========== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-sidebar {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-sidebar:hover {
  border-color: rgba(255, 106, 0, 0.15);
}

.card-sidebar .card-header {
  background: transparent;
  padding: 24px 24px 16px;
  border-bottom: none;
}

.card-sidebar .card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-sidebar .card-title i:first-child {
  color: var(--cta);
  font-size: 16px;
}

.card-minimise {
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--muted);
  font-size: 12px;
  opacity: 0.5;
}

.card-minimise:hover {
  opacity: 1;
}

.collapsable-card-body {
  transition: all 0.3s ease;
}

.card-sidebar .card-body {
  padding: 0 24px 24px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.card-sidebar .card-body strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.card-sidebar .card-footer {
  padding: 20px 24px;
  background: transparent;
  border-top: 1px solid var(--border);
}

/* List Group - Clean & Minimal */
.list-group-flush {
  border: none;
}

.list-group-item {
  border: none;
  padding: 12px 24px;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

.list-group-item:last-child {
  padding-bottom: 20px;
}

.list-group-item-action {
  cursor: pointer;
  border-radius: 0;
}

.list-group-item-action:hover {
  background: var(--bg-light);
  color: var(--text);
}

/* Sidebar Menu Item - Streamlined */
.sidebar-menu-item-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-menu-item-icon-wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.list-group-item-action:hover .sidebar-menu-item-icon-wrapper {
  transform: translateX(2px);
}

.sidebar-menu-item-icon {
  color: var(--muted);
  font-size: 16px;
  transition: all 0.3s ease;
}

.list-group-item-action:hover .sidebar-menu-item-icon {
  color: var(--cta);
}

.sidebar-menu-item-label {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
}

/* Sidebar Buttons - Refined */
.card-footer .btn-success,
.card-footer .btn-default {
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
}

.card-footer .btn-success {
  background: var(--cta);
  color: #fff;
}

.card-footer .btn-success:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.card-footer .btn-default {
  background: var(--bg-light);
  color: var(--text);
  border: 1px solid var(--border);
}

.card-footer .btn-default:hover {
  background: #fff;
  border-color: var(--cta);
  color: var(--cta);
}

.card-footer .btn i {
  font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .d-none.d-lg-block {
    display: none !important;
  }
  
  .sidebar {
    gap: 20px;
  }
  
  .card-sidebar .card-header {
    padding: 20px 20px 12px;
  }
  
  .card-sidebar .card-body {
    padding: 0 20px 20px;
    font-size: 13px;
  }
  
  .card-sidebar .card-footer {
    padding: 16px 20px;
  }
}


.container, .container-lg, .container-md, .container-sm, .container-xl {
max-width:1340px;
}

/* ========== EMAIL VERIFICATION BANNER - REFINED ========== */
.verification-banner {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: relative;
  animation: slideDown 0.4s ease;
}

.verification-banner .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px;
}

.verification-banner .row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Warning Icon & Text */
.verification-banner .fa-exclamation-triangle {
  color: var(--cta);
  font-size: 16px;
  margin-right: 10px;
  vertical-align: middle;
}

.verification-banner .text {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  vertical-align: middle;
}

/* Close Button */
.verification-banner .btn.close {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 20px;
  font-weight: 300;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  opacity: 0.5;
  cursor: pointer;
}

.verification-banner .btn.close:hover {
  background: var(--bg-light);
  opacity: 1;
}

/* Resend Button - Subtle Secondary Style */
.btn-resend-verify-email {
  background: transparent;
  color: var(--cta);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.btn-resend-verify-email:hover {
  background: var(--bg-light);
  border-color: var(--cta);
  color: var(--cta);
  transform: translateY(-1px);
}

/* Hide spinner by default */
.btn-resend-verify-email .loader {
  display: none;
}

.btn-resend-verify-email .loader:not(.w-hidden) {
  display: inline-block;
}

.btn-resend-verify-email .fa-spinner {
  font-size: 11px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* When loading, hide text and show spinner */
.btn-resend-verify-email.loading .loader {
  display: inline-block;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .verification-banner {
    padding: 16px 0;
  }

  .verification-banner .container {
    padding: 0 20px;
  }

  .verification-banner .row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .verification-banner .text {
    font-size: 12px;
    flex: 1;
  }

  .verification-banner .fa-exclamation-triangle {
    font-size: 14px;
  }

  .btn-resend-verify-email {
    width: 100%;
    margin-top: 4px;
    padding: 10px 16px;
    order: 3;
  }

  .verification-banner .btn.close {
    margin-left: auto;
  }
}

/* Slide down animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}