/* =========================================================
   MOVIXIT CONSULTATION SYSTEM - BASE STYLES
   Version: 5.0
========================================================= */

/* CSS Variables */
:root {
    --primary: #0B5CFF;
    --primary-dark: #0645d9;
    --primary-light: #2EA0FF;
    --secondary: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f1f5f9;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 0.5rem;
    --radius-lg: 1rem;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p {
    color: var(--gray);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.mcs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.mcs-btn-primary {
    background: var(--primary);
    color: var(--white);
}

.mcs-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.mcs-btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.mcs-btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--dark);
}

.mcs-btn-outline:hover {
    background: var(--light);
}

.mcs-btn-danger {
    background: var(--danger);
    color: var(--white);
}

/* Forms */
.mcs-form-group {
    margin-bottom: 1.25rem;
}

.mcs-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.mcs-form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.mcs-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 92, 255, 0.1);
}

.mcs-form-control:disabled {
    background: var(--light);
    cursor: not-allowed;
}

/* Cards */
.mcs-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* Consultation Page Styles */
.mcs-consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.mcs-consultation-header {
    text-align: center;
    margin-bottom: 40px;
}

.mcs-consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.mcs-benefits-list {
    list-style: none;
    padding: 0;
}

.mcs-benefits-list li {
    padding: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mcs-price-card {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 20px;
}

.mcs-price {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
}

.mcs-price-note {
    font-size: 14px;
    color: var(--gray);
}

.mcs-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.mcs-step {
    text-align: center;
}

.mcs-step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

/* Services Page Styles */
.mcs-services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.mcs-services-header {
    text-align: center;
    margin-bottom: 40px;
}

.mcs-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.mcs-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mcs-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mcs-service-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.mcs-service-card .price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    margin: 15px 0;
}

.mcs-service-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.mcs-service-card ul li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mcs-info-box {
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-top: 40px;
}

.mcs-info-box ol {
    margin: 15px 0 0 20px;
}

.mcs-info-box li {
    margin: 8px 0;
}

/* Dashboard Styles */
.mcs-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.mcs-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.mcs-empty-state {
    text-align: center;
    padding: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

/* Notification Badge */
.mcs-notification-badge {
    position: relative;
}

.notification-icon {
    font-size: 24px;
    cursor: pointer;
}

.notification-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--danger);
    color: var(--white);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: bold;
}

/* Alert Messages */
.mcs-alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.mcs-alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.mcs-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.mcs-alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.mcs-alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* Pagination */
.mcs-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.mcs-pagination a,
.mcs-pagination span {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--dark);
    transition: all 0.2s;
}

.mcs-pagination a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.mcs-pagination .current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Tooltips */
.mcs-tooltip {
    position: relative;
    cursor: help;
}

.mcs-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 4px 8px;
    border-radius: var(--radius);
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}

/* Responsive */
@media (max-width: 992px) {
    .mcs-consultation-grid {
        grid-template-columns: 1fr;
    }
    
    .mcs-services-grid {
        grid-template-columns: 1fr;
    }
    
    .mcs-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    
    .mcs-steps {
        grid-template-columns: 1fr;
    }
    
    .mcs-card {
        padding: 16px;
    }
}

.mcs-consultation-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 30px;
}

.mcs-hero {
    text-align: center;
    margin-bottom: 40px;
}

.mcs-hero h1 {
    font-size: 32px;
}

.mcs-hero .sub {
    margin: 15px 0;
    color: #666;
}

.mcs-btn-primary {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.mcs-btn-primary.large {
    font-size: 16px;
}

.mcs-section {
    margin: 40px 0;
}

.mcs-warning-list {
    color: #c00;
    margin: 20px 0;
}

.mcs-highlight {
    background: #f5f5f5;
    padding: 15px;
    border-left: 4px solid #000;
}

.mcs-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mcs-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.mcs-steps {
    display: grid;
    gap: 10px;
}

.mcs-cta {
    text-align: center;
    margin-top: 50px;
}

@media(max-width: 900px) {
    .mcs-grid-3 {
        grid-template-columns: 1fr;
    }
}

.mcs-dashboard {
    max-width: 1000px;
    margin: auto;
    padding: 30px;
}

.mcs-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.mcs-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #333;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.mcs-btn-primary {
    background: #000;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
}

.mcs-status {
    list-style: none;
    padding: 0;
}

.mcs-status li {
    padding: 8px;
    border-left: 4px solid #ccc;
    margin-bottom: 5px;
}

.mcs-status li.active {
    border-color: #000;
    font-weight: bold;
}

.mcs-highlight {
    background: #f5f5f5;
}