/**
 * Admin Panel CSS
 * Modern & Clean Admin Panel Design
 */

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

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f6f9;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background: #212529;
    padding: 1rem 0;
    overflow-y: auto;
    transition: all 0.3s;
    z-index: 1000;
}

.sidebar-brand {
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.sidebar-brand .text-warning {
    color: #FFC107 !important;
}

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

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-menu li a i {
    margin-right: 0.75rem;
    width: 20px;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background: rgba(255, 193, 7, 0.1);
    color: #FFC107;
    padding-left: 2rem;
}

/* Main Content */
.main-content {
    margin-left: 250px;
    min-height: 100vh;
    transition: all 0.3s;
}

.top-bar {
    background: white;
    padding: 1.25rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-wrapper {
    padding: 0 2rem 2rem;
}

.content-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Stats Cards */
.stats-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stats-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Buttons */
.btn-warning {
    background: #FFC107;
    border: none;
    color: #1a1a1a;
}

.btn-warning:hover {
    background: #FFA000;
    color: #1a1a1a;
}

/* Feature Items - Package Form */
.feature-item {
    animation: slideIn 0.3s ease;
}

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

.feature-item .input-group-text {
    background: #f8f9fa;
    border-right: none;
}

.feature-item .feature-input {
    border-left: none;
}

.feature-item .feature-input:focus {
    border-color: #FFC107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.feature-item .remove-feature {
    transition: all 0.3s;
}

.feature-item .remove-feature:hover {
    transform: scale(1.1);
}

#add-feature {
    transition: all 0.3s;
}

#add-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

/* DataTables Custom */
.data-table {
    font-size: 0.9rem;
}

.data-table thead th {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.data-table tbody tr {
    transition: all 0.2s;
}

.data-table tbody tr:hover {
    background: #f8f9fa;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #FFC107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Image Preview */
.image-preview {
    max-width: 200px;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 8px;
}

/* Badge Styling */
.badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        margin-left: -250px;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .top-bar {
        padding: 1rem;
    }
    
    .content-wrapper {
        padding: 0 1rem 1rem;
    }
}

/* Login Page Specific */
body.login-page {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 15px;
}

.login-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFC107, #FFA000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.login-header h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.login-card .form-control {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.login-card .form-control:focus {
    border-color: #FFC107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.btn-login {
    padding: 0.75rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #FFC107, #FFA000);
    border: none;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
    color: #1a1a1a;
}

.login-card .input-group-text {
    background: transparent;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 10px 0 0 10px;
}

.login-card .input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.back-link {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link a:hover {
    color: #FFC107;
}

/* ========================================
   DASHBOARD SPECIFIC STYLES
   ======================================== */

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 20px;
    padding: 2rem;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.4);
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.welcome-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.welcome-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.welcome-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.welcome-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    border: 2px solid rgba(26, 26, 26, 0.15);
    color: #1a1a1a;
}

.welcome-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.welcome-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
    color: #2c2c2c;
}

.welcome-info {
    display: flex;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.15);
    min-width: 180px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(26, 26, 26, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    color: #1a1a1a;
}

.info-details {
    flex: 1;
}

.info-label {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    color: #2c2c2c;
}

.info-value {
    font-size: 0.938rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Modern Stats Cards */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--stat-color, #FFC107), transparent);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--stat-bg, linear-gradient(135deg, #FFC107, #FFA000));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.stat-card-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
}

.stat-card-trend.up {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.stat-card-trend.down {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.stat-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-card-label {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.813rem;
    color: #6c757d;
}

/* Dashboard Charts */
.chart-container {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    height: 100%;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.chart-actions {
    display: flex;
    gap: 0.5rem;
}

.chart-tab {
    padding: 0.375rem 0.75rem;
    border: none;
    background: transparent;
    color: #6c757d;
    font-size: 0.813rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.chart-tab.active,
.chart-tab:hover {
    background: #FFC107;
    color: #212529;
}

/* Activity Timeline */
.activity-timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #e9ecef 0%, transparent 100%);
}

.timeline-item:last-child::before {
    background: linear-gradient(180deg, #e9ecef 0%, transparent 50%);
}

.timeline-icon {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    background: white;
    border: 3px solid #e9ecef;
    z-index: 1;
}

.timeline-icon.success {
    border-color: #28a745;
    color: #28a745;
}

.timeline-icon.warning {
    border-color: #FFC107;
    color: #FFC107;
}

.timeline-icon.info {
    border-color: #17a2b8;
    color: #17a2b8;
}

.timeline-icon.danger {
    border-color: #dc3545;
    color: #dc3545;
}

.timeline-content {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid #e9ecef;
}

.timeline-item:hover .timeline-content {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline-title {
    font-weight: 600;
    color: #212529;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.timeline-text {
    color: #6c757d;
    font-size: 0.813rem;
    margin-bottom: 0.5rem;
}

.timeline-time {
    color: #adb5bd;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-action-btn {
    background: white;
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.quick-action-btn:hover {
    border-color: #FFC107;
    border-style: solid;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.quick-action-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    transition: all 0.3s;
}

.quick-action-btn:hover .quick-action-icon {
    background: white;
    color: #212529;
    transform: scale(1.1);
}

.quick-action-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.813rem;
    transition: all 0.3s;
}

.quick-action-btn:hover .quick-action-label {
    color: #212529;
}

/* Recent Items Card */
.recent-items-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    height: 100%;
}

.recent-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.recent-items-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-items-title i {
    color: #FFC107;
}

.recent-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.recent-item:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
    transform: translateX(5px);
}

.recent-item:last-child {
    margin-bottom: 0;
}

.recent-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.recent-item-content {
    flex: 1;
    min-width: 0;
}

.recent-item-title {
    font-weight: 600;
    color: #212529;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-item-meta {
    color: #6c757d;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.recent-item-action {
    padding: 0.5rem;
    border-radius: 8px;
    background: transparent;
    border: 1px solid #e9ecef;
    color: #6c757d;
    transition: all 0.3s;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
}

.recent-item-action:hover {
    background: #FFC107;
    border-color: #FFC107;
    color: white;
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-card {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.info-card-label {
    font-size: 0.813rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.info-card-value {
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
}

.info-card.primary {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
}

.info-card.success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
}

.info-card.warning {
    background: linear-gradient(135deg, #FFB75E 0%, #ED8F03 100%);
}

.info-card.info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #adb5bd;
    margin: 0 auto 1rem;
}

.empty-state-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.empty-state-text {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* ========================================
   PACKAGES PAGE STYLES
   ======================================== */

/* Packages Header */
.packages-header {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 20px;
    padding: 2rem;
    color: #1a1a1a;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
}

.packages-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.packages-header-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    border: 2px solid rgba(26, 26, 26, 0.15);
    color: #1a1a1a;
}

.packages-header-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.packages-header-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    color: #2c2c2c;
}

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

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(26, 26, 26, 0.15);
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.header-action-btn:hover {
    background: rgba(26, 26, 26, 0.2);
    transform: translateY(-2px);
    color: #1a1a1a;
}

/* Quick Stats Cards */
.quick-stat-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.quick-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--stat-color);
}

.quick-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-stat-card.blue {
    --stat-color: #17a2b8;
}

.quick-stat-card.green {
    --stat-color: #28a745;
}

.quick-stat-card.orange {
    --stat-color: #FFC107;
}

.quick-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: white;
}

.quick-stat-card.blue .quick-stat-icon {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.quick-stat-card.green .quick-stat-icon {
    background: linear-gradient(135deg, #28a745, #218838);
}

.quick-stat-card.orange .quick-stat-icon {
    background: linear-gradient(135deg, #FFC107, #FFA000);
}

.quick-stat-details {
    flex: 1;
}

.quick-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.quick-stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Form Card */
.packages-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.form-card-header {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.form-card-title {
    margin: 0;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.25rem;
}

.modern-form {
    padding: 1.5rem;
}

.form-group-modern {
    margin-bottom: 1.5rem;
}

.modern-label {
    display: block;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.modern-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.938rem;
    transition: all 0.3s;
    background: #f8f9fa;
}

.modern-input:focus {
    outline: none;
    border-color: #FFC107;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.input-with-icon {
    position: relative;
}

.input-icon-suffix {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: #6c757d;
}

.feature-item-modern {
    position: relative;
}

.feature-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-bullet {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #28a745, #218838);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.feature-remove-btn {
    width: 35px;
    height: 35px;
    background: #dc3545;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.feature-remove-btn:hover {
    background: #c82333;
    transform: scale(1.05);
}

.add-feature-btn {
    width: 100%;
    padding: 0.75rem;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    color: #6c757d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.add-feature-btn:hover {
    background: #FFC107;
    border-color: #FFC107;
    color: #1a1a1a;
    border-style: solid;
}

.modern-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s;
}

.modern-checkbox:hover {
    background: #fff;
    border-color: #FFC107;
}

.modern-checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modern-checkbox-label {
    margin: 0;
    cursor: pointer;
    font-weight: 600;
    color: #495057;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-modern {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-modern-secondary {
    background: #6c757d;
    color: white;
}

.btn-modern-secondary:hover {
    background: #5a6268;
    color: white;
}

/* Packages List Card */
.packages-list-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.list-card-header {
    padding: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-card-title {
    margin: 0;
    font-weight: 700;
    color: #212529;
    font-size: 1.25rem;
}

.list-card-badge {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Packages Grid */
.packages-grid {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.package-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #FFC107;
}

.package-card.featured {
    border-color: #FFC107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: #1a1a1a;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.package-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #FFC107;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFC107;
}

.package-features {
    margin-bottom: 1.5rem;
}

.package-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.875rem;
}

.package-feature-item i {
    color: #28a745;
    font-size: 1rem;
}

.package-feature-more {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    font-size: 0.813rem;
    color: #6c757d;
    font-weight: 600;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.package-meta {
    font-size: 0.75rem;
    color: #6c757d;
}

.package-actions {
    display: flex;
    gap: 0.5rem;
}

.package-action-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #e9ecef;
    background: white;
}

.package-action-btn.edit {
    color: #FFC107;
}

.package-action-btn.edit:hover {
    background: #FFC107;
    color: white;
    border-color: #FFC107;
}

.package-action-btn.delete {
    color: #dc3545;
}

.package-action-btn.delete:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* Modern Alert */
.modern-alert {
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ========================================
   MESSAGES PAGE STYLES
   ======================================== */

/* Messages Header */
.messages-header {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 20px;
    padding: 2rem;
    color: #1a1a1a;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
}

.messages-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.messages-header-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    border: 2px solid rgba(26, 26, 26, 0.15);
    color: #1a1a1a;
}

.messages-header-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.messages-header-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    color: #2c2c2c;
}

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

.header-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.15);
    color: #1a1a1a;
}

.stat-badge {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.stat-text {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-stat-card.purple {
    --stat-color: #6f42c1;
}

.quick-stat-card.purple .quick-stat-icon {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

/* Messages Grid */
.messages-list-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.messages-grid {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.message-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #17a2b8;
}

.message-card.status-new {
    border-left: 4px solid #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.message-card.status-replied {
    border-left: 4px solid #6f42c1;
}

.message-new-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.message-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.message-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.message-card-info {
    flex: 1;
    min-width: 0;
}

.message-card-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-card-email {
    font-size: 0.813rem;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-status-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.message-status-icon.status-new {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.message-status-icon.status-read {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.message-status-icon.status-replied {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.message-card-preview {
    font-size: 0.938rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.message-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.message-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #6c757d;
}

.message-card-actions {
    display: flex;
    gap: 0.5rem;
}

.message-action-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #e9ecef;
    background: white;
}

.message-action-btn.view {
    color: #17a2b8;
}

.message-action-btn.view:hover {
    background: #17a2b8;
    color: white;
    border-color: #17a2b8;
}

.message-action-btn.delete {
    color: #dc3545;
}

.message-action-btn.delete:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* Modern Message Modal */
.message-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.message-modal {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.message-modal-header {
    background: linear-gradient(135deg, #17a2b8, #138496);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.modal-header-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-close-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.message-modal-body {
    padding: 2rem;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

.message-sender-info {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.sender-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.sender-details {
    flex: 1;
}

.sender-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.75rem;
}

.sender-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.sender-meta a {
    color: #17a2b8;
    text-decoration: none;
}

.sender-meta a:hover {
    text-decoration: underline;
}

.message-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.message-status-badge.status-new {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
}

.message-status-badge.status-read {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
}

.message-status-badge.status-replied {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
    color: white;
}

.message-content {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
}

.message-content-label {
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.message-content-text {
    font-size: 1rem;
    color: #495057;
    line-height: 1.8;
    white-space: pre-wrap;
}

.message-modal-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-top: 2px solid #e9ecef;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-modal {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
}

.btn-modal-success {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
}

.btn-modal-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    color: white;
}

.btn-modal-primary {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
    color: white;
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
    color: white;
}

.btn-modal-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.btn-modal-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    color: white;
}

.btn-modal-secondary {
    background: #6c757d;
    color: white;
}

.btn-modal-secondary:hover {
    background: #5a6268;
    color: white;
}

/* ========================================
   SETTINGS PAGE STYLES
   ======================================== */

/* Settings Header */
.settings-header {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 20px;
    padding: 2rem;
    color: #1a1a1a;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
}

.settings-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.settings-header-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    border: 2px solid rgba(26, 26, 26, 0.15);
    color: #1a1a1a;
    animation: rotate 20s linear infinite;
}

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

.settings-header-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.settings-header-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    color: #2c2c2c;
}

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

.stat-value-sm {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Settings Section Card */
.settings-section-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.settings-section-header {
    padding: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.section-icon.general {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.section-icon.security {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.section-icon.info {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.section-title {
    margin: 0;
    font-weight: 700;
    color: #212529;
    font-size: 1.25rem;
}

/* Settings Divider */
.settings-divider {
    margin: 2rem 0 1.5rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.settings-divider i {
    color: #6f42c1;
}

.settings-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #e9ecef 0%, transparent 100%);
}

/* Form Hint */
.form-hint {
    display: block;
    margin-top: 0.25rem;
    color: #6c757d;
    font-size: 0.813rem;
}

/* System Info List */
.system-info-list {
    padding: 1.5rem;
}

.system-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.system-info-item:last-child {
    margin-bottom: 0;
}

.system-info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.info-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.875rem;
}

.info-value {
    color: #212529;
    font-weight: 600;
    font-size: 0.938rem;
}

.info-value-small {
    color: #6c757d;
    font-size: 0.813rem;
}

.badge-version {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 700;
}

/* Help Card */
.help-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.help-card-header {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: #1a1a1a;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
}

.help-card-body {
    padding: 1.5rem;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #495057;
}

.help-item:last-child {
    margin-bottom: 0;
}

.help-item i {
    color: #28a745;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Responsive Dashboard */
@media (max-width: 992px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .welcome-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .welcome-info {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .info-item {
        flex: 1;
        min-width: 150px;
    }
    
    .packages-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .packages-header-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .header-action-btn {
        flex: 1;
        min-width: 130px;
        justify-content: center;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .messages-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .messages-header-actions {
        width: 100%;
    }
    
    .messages-grid {
        grid-template-columns: 1fr;
    }
    
    .settings-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .settings-header-actions {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .welcome-banner {
        padding: 1.5rem;
    }
    
    .welcome-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .welcome-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .welcome-subtitle {
        font-size: 0.875rem;
    }
    
    .welcome-info {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .info-item {
        width: 100%;
    }
    
    /* Packages Page Mobile */
    .packages-header {
        padding: 1.5rem;
    }
    
    .packages-header-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .packages-header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .packages-header-title {
        font-size: 1.5rem;
    }
    
    .packages-header-subtitle {
        font-size: 0.875rem;
    }
    
    .packages-header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .header-action-btn {
        width: 100%;
    }
    
    .packages-grid {
        padding: 1rem;
        grid-template-columns: 1fr;
    }
    
    /* Messages Page Mobile */
    .messages-header {
        padding: 1.5rem;
    }
    
    .messages-header-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .messages-header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .messages-header-title {
        font-size: 1.5rem;
    }
    
    .messages-header-subtitle {
        font-size: 0.875rem;
    }
    
    .messages-grid {
        padding: 1rem;
        grid-template-columns: 1fr;
    }
    
    .message-modal {
        margin: 1rem;
    }
    
    .message-sender-info {
        flex-direction: column;
    }
    
    .sender-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .message-modal-footer {
        flex-direction: column;
    }
    
    .btn-modal {
        width: 100%;
        justify-content: center;
    }
    
    /* Settings Page Mobile */
    .settings-header {
        padding: 1.5rem;
    }
    
    .settings-header-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .settings-header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .settings-header-title {
        font-size: 1.5rem;
    }
    
    .settings-header-subtitle {
        font-size: 0.875rem;
    }
    
    .settings-divider {
        font-size: 0.75rem;
    }
}

/* ========================================
   LOGO & FAVICON UPLOAD
======================================== */
.upload-area {
    background: white;
    border: 2px dashed #e1e8ed;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: #9333ea;
    background: #faf5ff;
}

.upload-preview {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.preview-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.preview-image.favicon-size {
    max-width: 64px;
    max-height: 64px;
}

.preview-placeholder {
    text-align: center;
    color: #adb5bd;
}

.preview-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.preview-placeholder p {
    margin: 0;
    font-size: 0.875rem;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.upload-label {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-input {
    padding: 0.75rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.upload-input:focus {
    outline: none;
    border-color: #9333ea;
    background: #faf5ff;
}

.btn-upload {
    background: linear-gradient(135deg, #9333ea 0%, #c026d3 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.4);
}

.upload-hint {
    color: #6c757d;
    font-size: 0.75rem;
    margin-top: -0.25rem;
}

.section-icon.brand {
    background: linear-gradient(135deg, #9333ea 0%, #c026d3 100%);
}


/* ========================================
   SEO PAGE STYLES
======================================== */

/* SEO Header */
.seo-header {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.seo-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.seo-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.seo-header-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a1a;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(26, 26, 26, 0.15);
}

.seo-header-text h3 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.seo-header-subtitle {
    color: #2c2c2c;
    margin: 0.5rem 0 0;
    font-size: 1rem;
    opacity: 0.8;
}

/* SEO Score Card */
.seo-score-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(26, 26, 26, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.score-circle {
    text-align: center;
    margin-bottom: 1rem;
}

.score-value {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.score-value span {
    font-size: 1.5rem;
}

.score-label {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.score-bar {
    height: 8px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.score-progress {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s;
}

.score-circle.success .score-progress {
    background: linear-gradient(90deg, #10b981, #059669);
}

.score-circle.warning .score-progress {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.score-circle.danger .score-progress {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.score-desc {
    color: #495057;
    font-size: 0.875rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Section Cards */
.seo-section-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid #dee2e6;
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-icon.meta {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
}

.section-icon.sitemap {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.section-icon.checklist {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.section-title h5 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #212529;
    margin: 0;
}

.section-title p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0.25rem 0 0;
}

/* Section Separator */
.section-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
}

.separator-text {
    font-size: 0.938rem;
    font-weight: 700;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form */
.seo-section-card form {
    padding: 2rem;
}

.form-hint {
    display: block;
    color: #6c757d;
    font-size: 0.813rem;
    margin-top: 0.5rem;
}

/* Save Button */
.btn-save {
    width: 100%;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
}

/* Sitemap Status */
.sitemap-status {
    padding: 1.5rem;
}

.status-success,
.status-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
}

.status-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
}

.status-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
}

.status-success i {
    font-size: 2rem;
    color: #28a745;
}

.status-warning i {
    font-size: 2rem;
    color: #ffc107;
}

.status-title {
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
}

.status-date {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Sitemap Actions */
.sitemap-actions {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.btn-sitemap {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid;
}

.btn-generate {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-color: #FFC107;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.4);
    color: white;
}

.btn-view {
    background: white;
    border-color: #dee2e6;
    color: #6c757d;
}

.btn-view:hover {
    background: #f8f9fa;
    border-color: #FFC107;
    color: #FFC107;
}

/* Checklist */
.checklist-items {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s;
}

.checklist-item:hover {
    background: white;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.item-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: white;
    color: #dee2e6;
}

.checklist-item.completed {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
}

.checklist-item.completed .item-icon {
    background: #28a745;
    color: white;
    animation: pulse 2s infinite;
}

.item-content {
    flex: 1;
}

.item-title {
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
}

.item-status {
    font-size: 0.813rem;
    color: #6c757d;
}

.checklist-item.completed .item-status {
    color: #28a745;
    font-weight: 600;
}

/* ========================================
   NEWSLETTER PAGE STYLES
======================================== */

/* Header */
.newsletter-header {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.newsletter-header-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a1a;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(26, 26, 26, 0.15);
}

.newsletter-header-text h3 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.newsletter-header-subtitle {
    color: #2c2c2c;
    margin: 0.5rem 0 0;
    font-size: 1rem;
    opacity: 0.8;
}

.newsletter-header-actions {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.header-stat-card {
    flex: 1;
    background: rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(26, 26, 26, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.header-stat-card:hover {
    background: rgba(26, 26, 26, 0.15);
    transform: translateY(-5px);
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.stat-icon-wrapper.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.stat-details {
    flex: 1;
}

.stat-label {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-number {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 0.25rem;
}

/* Analytics Cards */
.newsletter-analytics-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.newsletter-analytics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.analytics-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.analytics-icon.total .icon-circle {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
}

.analytics-icon.active .icon-circle {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.analytics-icon.inactive .icon-circle {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    opacity: 0.1;
}

.analytics-icon.total .icon-bg {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
}

.analytics-icon.active .icon-bg {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.analytics-icon.inactive .icon-bg {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.analytics-content {
    flex: 1;
}

.analytics-label {
    font-size: 0.938rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.analytics-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    line-height: 1;
}

.analytics-trend {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.analytics-trend.success {
    color: #10b981;
}

.analytics-trend i {
    font-size: 0.75rem;
}

/* List Card */
.newsletter-list-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.list-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #dee2e6;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.list-card-header .header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.header-title h5 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #212529;
    margin: 0;
}

.header-title p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0.25rem 0 0;
}

.btn-export {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-export:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.4);
}

/* Subscribers Grid */
.subscribers-grid {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subscriber-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
}

.subscriber-item:hover {
    background: white;
    border-color: #FFC107;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.15);
}

.subscriber-avatar {
    position: relative;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.status-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    border: 3px solid #f8f9fa;
}

.status-badge.active {
    background: #10b981;
}

.status-badge.inactive {
    background: #ef4444;
}

.subscriber-info {
    flex: 1;
}

.subscriber-email {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.subscriber-email i {
    color: #FFC107;
}

.subscriber-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #6c757d;
}

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

.meta-item i {
    font-size: 0.75rem;
}

.meta-divider {
    color: #dee2e6;
}

.status-active {
    color: #10b981;
    font-weight: 600;
}

.status-active i {
    animation: pulse 2s infinite;
}

.status-inactive {
    color: #ef4444;
}

.subscriber-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    background: white;
    border: 2px solid #dee2e6;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-delete {
    color: #ef4444;
    border-color: #ef4444;
}

.btn-delete:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* ========================================
   RESPONSIVE - SEO & NEWSLETTER
======================================== */
@media (max-width: 992px) {
    .seo-header,
    .newsletter-header {
        flex-direction: column;
        text-align: center;
    }
    
    .seo-header-content,
    .newsletter-header-content {
        flex-direction: column;
    }
    
    .seo-score-card {
        width: 100%;
    }
    
    .sitemap-actions,
    .newsletter-header-actions {
        flex-direction: column;
    }
    
    .subscriber-item {
        flex-direction: column;
        text-align: center;
    }
    
    .subscriber-actions {
        width: 100%;
        justify-content: center;
    }
}

/* E-posta Yanıtla Butonu */
.message-action-btn.reply {
    background: #28a745;
    color: white;
}

.message-action-btn.reply:hover {
    background: #218838;
    color: white;
}

.message-action-btn.reply i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .seo-header,
    .newsletter-header {
        padding: 1.5rem;
    }
    
    .seo-header-text h3,
    .newsletter-header-text h3 {
        font-size: 1.5rem;
    }
    
    .section-header,
    .list-card-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-left {
        flex-direction: column;
    }
}

/* ========================================
   SHARED UTILITIES
======================================== */
.gradient-text {
    background: linear-gradient(45deg, #1a1a1a, #2c2c2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
