/**
 * PickSMS - Professional Dashboard Design
 * Modern, clean, and professional UI
 */

:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --secondary: #8B5CF6;
    --accent: #06B6D4;
    --text: #1F2937;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    --bg: #F9FAFB;
    --bg-light: #F3F4F6;
    --bg-card: #FFFFFF;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Professional shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Modern Colorful Gradients */
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #EC4899 0%, #F472B6 50%, #F59E0B 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #34D399 50%, #059669 100%);
    --gradient-warm: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #F97316 100%);
    --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #1D4ED8 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
    --gradient-rainbow: linear-gradient(135deg, #6366F1 0%, #8B5CF6 25%, #EC4899 50%, #F59E0B 75%, #10B981 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    font-size: 14px;
}

/* Hide dashboard elements on login/register pages */
body:has(.login-container) .sidebar,
body:has(.login-container) .app-container,
body:has(.login-container) .mobile-menu-toggle,
body:has(.login-container) .mobile-overlay,
body:has(.login-container) .content-wrapper,
body:has(.login-container) .top-header,
body:has(.register-container) .sidebar,
body:has(.register-container) .app-container,
body:has(.register-container) .mobile-menu-toggle,
body:has(.register-container) .mobile-overlay,
body:has(.register-container) .content-wrapper,
body:has(.register-container) .top-header {
    display: none !important;
}

body:has(.login-container) .main-content,
body:has(.register-container) .main-content {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Neumorphic Sidebar */
.sidebar {
    width: 280px;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease, width 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.sidebar.collapsed {
    width: 80px;
}

.sidebar.collapsed .sidebar-header .logo,
.sidebar.collapsed .nav-item span,
.sidebar.collapsed .user-details,
.sidebar.collapsed .user-name,
.sidebar.collapsed .user-email {
    display: none;
}

.sidebar.collapsed .nav-item {
    justify-content: center;
    padding: 14px;
}

.sidebar.collapsed .nav-icon {
    margin: 0;
}

.sidebar.collapsed .sidebar-footer {
    padding: 20px 10px;
}

.sidebar.collapsed .user-avatar {
    margin: 0 auto;
}

.sidebar.collapsed .badge-admin {
    display: none;
}

.sidebar.collapsed .sidebar-header {
    flex-direction: column;
    gap: 10px;
}

.sidebar.collapsed .sidebar-header > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.sidebar-toggle {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: all 0.2s;
    padding: 0;
}

.sidebar-toggle:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.sidebar-toggle i {
    font-size: 14px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo::before {
    content: '\f1d8';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.badge-admin {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: var(--neu-shadow-card);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 15px;
    margin: 4px 12px;
    border-radius: 12px;
    position: relative;
}

.nav-item:hover {
    background: var(--bg-light);
    color: var(--primary);
    transform: translateX(4px);
    box-shadow: var(--neu-shadow-inset);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(108, 99, 255, 0.1) 100%);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
    box-shadow: var(--neu-shadow-inset);
}

.nav-icon {
    margin-right: 14px;
    font-size: 14px;
    width: 20px;
    text-align: center;
    display: inline-block;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
}

.user-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.user-action-btn {
    flex: 1;
    padding: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.user-action-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--neu-shadow-inset);
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 12px;
    box-shadow: var(--neu-shadow-card);
}

.user-avatar.admin {
    background: var(--gradient-secondary);
}

.user-details {
    flex: 1;
}

.user-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.user-email {
    font-size: 12px;
    color: var(--text-light);
}

.logout-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--neu-shadow-card);
    border: none;
    cursor: pointer;
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--neu-shadow-hover);
}

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1001;
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--neu-shadow-card);
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle i {
    color: white;
}

.content-wrapper {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    transition: margin-left 0.3s ease;
}

/* Adjust content when sidebar is collapsed */
.sidebar.collapsed + .content-wrapper {
    margin-left: 80px;
}

.sidebar.collapsed ~ .content-wrapper {
    margin-left: 80px;
}

.top-header {
    background: var(--bg-card);
    padding: 16px 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.header-logo i {
    color: var(--primary);
    font-size: 16px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-btn {
    padding: 10px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.currency-selector:hover {
    background: var(--bg-card);
}

.btn-add-money {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    border: none;
    cursor: pointer;
}

.btn-add-money i {
    font-size: 14px;
}

.btn-add-money:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.balance-display {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.balance-display i {
    font-size: 14px;
}

.header-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-light);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 14px;
}

.header-icon-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.user-profile-dropdown {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.user-profile-dropdown:hover {
    background: var(--bg-card);
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.user-name-header {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.user-profile-dropdown {
    position: relative;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 13px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.main-content {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.page-header {
    margin-bottom: 32px;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* Neumorphic Cards */
.card {
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--neu-shadow-card);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    box-shadow: var(--neu-shadow-hover);
    transform: translateY(-2px);
}

.card-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    font-size: 20px;
    margin: 0;
    color: var(--text);
}

.card-body {
    padding: 24px;
}

/* Neumorphic Stat Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--neu-shadow-card);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-shadow-hover);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 16px;
    background: var(--bg-light);
    box-shadow: var(--neu-shadow-inset);
    color: var(--primary);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.5;
    box-shadow: var(--neu-shadow-card);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
}

.btn-gradient-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gradient-green::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;
}

.btn-gradient-green:hover::before {
    left: 100%;
}

.btn-gradient-green:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
}

.btn-gradient-orange {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
    box-shadow: var(--neu-shadow-card);
}

.btn-gradient-orange:hover {
    transform: translateY(-2px);
    box-shadow: var(--neu-shadow-hover);
}

.btn-gradient-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    box-shadow: var(--neu-shadow-card);
}

.btn-gradient-purple:hover {
    transform: translateY(-2px);
    box-shadow: var(--neu-shadow-hover);
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gradient-primary::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;
}

.btn-gradient-primary:hover::before {
    left: 100%;
}

.btn-gradient-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
}

.btn-gradient-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--neu-shadow-card);
}

.btn-gradient-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--neu-shadow-hover);
}

.btn i {
    margin-right: 6px;
    font-size: 13px;
}

.btn-outline {
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text);
    box-shadow: var(--neu-shadow-inset);
}

.btn-outline:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.form-control,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--bg-card);
    box-shadow: var(--neu-shadow-inset);
}

.form-control:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--neu-shadow-card);
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table thead {
    background: var(--bg-light);
}

.data-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border);
}

.data-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.data-table tbody tr {
    transition: all 0.2s ease;
}

.data-table tbody tr:hover {
    background: var(--bg-light);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: var(--neu-shadow-inset);
}

.badge-success {
    background: #D1FAE5;
    color: #065F46;
}

.badge-warning {
    background: #FEF3C7;
    color: #92400E;
}

.badge-error {
    background: #FEE2E2;
    color: #991B1B;
}

.badge-info {
    background: #DBEAFE;
    color: #1E40AF;
}

.badge-pending {
    background: #FEF3C7;
    color: #92400E;
}

.badge-active {
    background: #D1FAE5;
    color: #065F46;
}

.badge-completed {
    background: #D1FAE5;
    color: #065F46;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--neu-shadow-card);
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-shadow-hover);
}

/* Flaticon Service Icons - Very Small */
.service-icon-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.service-icon-img:hover {
    transform: scale(1.2);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 12px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--bg-light);
    box-shadow: var(--neu-shadow-inset);
}

.service-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.2);
}

.service-icon i {
    font-size: 32px;
    color: var(--primary);
}

.service-name {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state::before {
    content: '\f07b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
    opacity: 0.3;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    overflow: auto;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bg-card);
    margin: 5% auto;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--neu-shadow-hover);
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    border-radius: 24px 24px 0 0;
}

.modal-close {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text);
}

.modal-body {
    padding: 24px;
}

/* Mobile Menu */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sidebar {
        width: 260px;
        transform: translateX(-100%);
    }
    
    .sidebar.mobile-visible {
        transform: translateX(0);
    }
    
    .content-wrapper {
        margin-left: 0 !important;
        width: 100%;
        overflow-x: hidden;
    }
    
    .sidebar.collapsed + .content-wrapper {
        margin-left: 0 !important;
    }
    
    .main-content {
        margin-left: 0;
        padding: 16px;
        padding-top: 70px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .sidebar.collapsed {
        width: 260px;
        transform: translateX(-100%);
    }
    
    .sidebar.collapsed.mobile-visible {
        transform: translateX(0);
    }
    
    .top-header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .header-right {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .page-header h1 {
        font-size: 22px;
        margin-bottom: 6px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .card {
        margin-bottom: 16px;
        border-radius: 12px;
    }
    
    .card-header {
        padding: 16px;
    }
    
    .card-header h2 {
        font-size: 18px;
    }
    
    .card-body {
        padding: 16px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    
    .data-table {
        font-size: 13px;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px 8px;
    }
    
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 12px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .form-control,
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .balance-display {
        font-size: 12px;
        padding: 8px 12px;
        gap: 4px;
    }
    
    .balance-display i {
        font-size: 12px;
    }
    
    .header-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .header-btn i {
        font-size: 12px;
    }
    
    .btn-add-money {
        padding: 8px 14px;
        font-size: 12px;
        gap: 4px;
    }
    
    .btn-add-money i {
        font-size: 12px;
    }
    
    .header-icon-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .currency-selector {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .currency-selector i {
        font-size: 12px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .user-name {
        font-size: 14px;
    }
    
    .user-email {
        font-size: 11px;
    }
}

/* Landing Page Styles - Professional & Modern */
html {
    scroll-behavior: smooth;
}

.landing-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-header:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.landing-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-nav-logo {
    font-size: 26px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-nav-logo i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 15px;
    position: relative;
}

.landing-nav-links a:hover {
    color: var(--primary);
}

.landing-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.landing-nav-links a:hover::after {
    width: 100%;
}

.landing-nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.landing-nav-toggle {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    color: var(--text);
    padding: 10px 12px;
    transition: all 0.2s ease;
}

.landing-nav-toggle:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.landing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.landing-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.landing-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.landing-hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.landing-hero-badge:hover::before {
    left: 100%;
}

.landing-hero-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.4);
}

.landing-hero-badge i {
    color: #FBBF24;
}

.landing-hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 30%, #EC4899 60%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.landing-hero-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.landing-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.landing-hero-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-item {
    padding: 10px 18px;
    background: var(--bg-card);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--neu-shadow-inset);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: var(--primary);
}

.landing-hero-visual {
    position: relative;
}

.hero-card-gradient {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--neu-shadow-hover);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 24px;
    justify-content: space-around;
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-logo-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    min-height: 50px;
}

.service-logo-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.service-logo-card:hover .service-logo-icon img {
    transform: scale(1.2) rotate(5deg);
}

.service-logo-icon i {
    font-size: 20px;
    color: var(--primary);
}

.service-logo-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.landing-section {
    margin-bottom: 80px;
}

.landing-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.landing-section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.landing-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.landing-column {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--neu-shadow-card);
    transition: all 0.3s ease;
}

.landing-column:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-shadow-hover);
}

.column-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    box-shadow: var(--neu-shadow-inset);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    box-shadow: var(--neu-shadow-inset);
    margin: 0 auto 16px;
}

.landing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.landing-step {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--neu-shadow-card);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.landing-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-shadow-hover);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--neu-shadow-card);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary);
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    box-shadow: var(--neu-shadow-inset);
    margin: 0 auto 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366F1, #8B5CF6, #EC4899);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    font-size: 32px;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing Section */
.landing-pricing {
    background: var(--bg-light);
    padding: 60px 24px;
    border-radius: 24px;
    margin: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6366F1, #8B5CF6, #EC4899);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.pricing-card.featured {
    border: 3px solid;
    border-image: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899) 1;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.pricing-card.featured::before {
    transform: scaleX(1);
    height: 6px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.price-period {
    font-size: 16px;
    color: var(--text-light);
    display: block;
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    font-size: 18px;
}

.landing-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.landing-testimonial {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--neu-shadow-card);
    transition: all 0.3s ease;
}

.landing-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-shadow-hover);
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 16px;
    color: #FBBF24;
}

.testimonial-stars i {
    margin-right: 4px;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

.landing-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}

.landing-contact-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--neu-shadow-card);
}

.contact-info-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--neu-shadow-card);
}

.contact-info-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

.landing-cta-section {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    margin: 80px 0;
    box-shadow: var(--neu-shadow-hover);
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-light);
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.landing-footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.landing-footer-links a:hover {
    color: var(--primary);
}

.paypal-pill {
    padding: 6px 14px;
    border-radius: 50px;
    background: #003087;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Mobile Navigation Toggle Script Support */
.landing-nav {
    position: relative;
}

.landing-nav-links.active,
.landing-nav-actions.active {
    display: flex !important;
}

@media (max-width: 900px) {
    .landing-hero {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 60px;
        padding: 20px 0;
    }
    
    .landing-nav {
        flex-wrap: wrap;
        padding: 16px 20px;
    }
    
    .landing-nav-toggle {
        display: block;
        order: 2;
    }
    
    .landing-nav-logo {
        order: 1;
        font-size: 22px;
    }
    
    .landing-nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
        border-top: 1px solid var(--border);
        margin-top: 12px;
        order: 3;
    }
    
    .landing-nav-links.active {
        display: flex;
    }
    
    .landing-nav-actions {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
        order: 4;
    }
    
    .landing-nav-actions.active {
        display: flex;
    }
    
    .landing-hero-visual {
        order: -1;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .landing {
        padding: 30px 16px;
    }
    
    .landing-hero {
        margin-bottom: 50px;
        padding: 20px 0;
    }
    
    .landing-hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .landing-hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .landing-hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .landing-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .landing-hero-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .meta-item {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
    }
    
    .landing-hero-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .landing-section {
        margin-bottom: 60px;
    }
    
    .landing-section-header {
        margin-bottom: 32px;
    }
    
    .landing-section-header h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .landing-section-header p {
        font-size: 16px;
    }
    
    .landing-columns,
    .landing-steps,
    .landing-testimonial-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .landing-contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .landing-contact-card {
        padding: 24px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .landing-cta-section {
        padding: 50px 24px;
        margin: 60px 0;
        border-radius: 20px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .price-period {
        font-size: 14px;
    }
    
    .landing-pricing {
        padding: 40px 16px;
        margin: 40px 0;
        border-radius: 20px;
    }
    
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .service-logo-card {
        padding: 16px 12px;
    }
    
    .service-logo-icon {
        min-height: 40px;
        margin-bottom: 8px;
    }
    
    .service-logo-icon i {
        font-size: 18px;
    }
    
    .service-logo-name {
        font-size: 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .landing-footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-top: 30px;
    }
    
    .landing-footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .landing-footer-right {
        text-align: center;
    }
    
    .feature-card,
    .landing-step,
    .landing-column {
        padding: 24px 20px;
    }
    
    .feature-icon,
    .step-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 16px;
        right: 16px;
    }
    
    .testimonial-stars {
        font-size: 16px;
    }
    
    .service-logo-icon img,
    .service-icon img,
    .account-logo img {
        width: 14px !important;
        height: 14px !important;
    }
    
    .account-logo {
        height: 28px;
        margin-bottom: 10px;
    }
    
    .account-logo i {
        font-size: 18px;
    }
    
    .account-name {
        font-size: 18px;
    }
    
    .price-inr {
        font-size: 20px;
    }
    
    .buy-account-container {
        padding: 16px;
    }
    
    .accounts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .search-bar input {
        padding: 12px 16px 12px 48px;
        font-size: 14px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .landing {
        padding: 20px 12px;
    }
    
    .landing-nav {
        padding: 12px 16px;
    }
    
    .landing-nav-logo {
        font-size: 20px;
    }
    
    .landing-hero-title {
        font-size: 28px;
    }
    
    .landing-hero-description {
        font-size: 15px;
    }
    
    .landing-section-header h2 {
        font-size: 24px;
    }
    
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .service-logo-card {
        padding: 12px 8px;
    }
    
    .service-logo-name {
        font-size: 11px;
    }
    
    .pricing-card {
        padding: 20px 16px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .landing-cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .hero-card-gradient {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}
