/*
Theme Name: Mimoza Bilişim CRM
Theme URI: https://mimozabilisim.com
Description: Profesyonel müşteri yönetim ve dashboard sistemi. Mimoza Sarısı & Siyah elegant tema.
Version: 2.0.0
Author: Onur Kalafat - Mimoza Bilişim
Author URI: https://mimozabilisim.com
Text Domain: mimoza-crm
Domain Path: /languages
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: crm, client-management, dashboard, business, custom-colors, custom-logo, elementor
*/

/* ============================================
   CSS RESET
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   RENK PALETİ - Mimoza Sarısı & Siyah
   ============================================ */
:root {
    /* Mimoza Sarısı Tonları */
    --mimoza-gold: #FFD700;        /* Ana Mimoza Sarısı */
    --mimoza-yellow: #F4C430;      /* Açık Mimoza */
    --mimoza-dark: #E6B800;        /* Koyu Mimoza */
    --mimoza-light: #FFF4CC;       /* Çok Açık Mimoza */
    --mimoza-pale: #FFFAEB;        /* Soluk Mimoza (arka plan) */

    /* Siyah Tonları */
    --black: #000000;              /* Ana Siyah */
    --black-soft: #1a1a1a;         /* Yumuşak Siyah */
    --black-light: #2d2d2d;        /* Açık Siyah */
    --black-overlay: rgba(0, 0, 0, 0.85);  /* Overlay */

    /* Gri Tonları (Nötr) */
    --gray-lightest: #f8f8f8;
    --gray-light: #e5e5e5;
    --gray: #999999;
    --gray-dark: #666666;
    --gray-darker: #333333;

    /* Yardımcı Renkler */
    --white: #FFFFFF;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Gölgeler */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    --shadow-mimoza: 0 4px 12px rgba(255, 215, 0, 0.3);
    --shadow-gold: 0 6px 20px rgba(244, 196, 48, 0.4);

    /* Gradient'ler */
    --gradient-mimoza: linear-gradient(135deg, var(--mimoza-gold) 0%, var(--mimoza-yellow) 100%);
    --gradient-black: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    --gradient-hero: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--mimoza-dark) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--mimoza-gold);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--mimoza-gold);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-mimoza);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-mimoza);
    position: relative;
}

.logo-icon::before {
    content: '🔍';
    font-size: 28px;
    position: absolute;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .site-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin: 0;
}

.logo-text .site-tagline {
    font-size: 0.875rem;
    color: var(--mimoza-gold);
    font-weight: 600;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    font-weight: 600;
    color: var(--black);
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mimoza-gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.current-menu-item::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--mimoza-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-mimoza);
    color: var(--black);
    box-shadow: var(--shadow-mimoza);
}

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

.btn-secondary {
    background: var(--gradient-black);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--fenerbahce-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--mimoza-gold);
    color: var(--black);
}

.btn-outline:hover {
    background: var(--mimoza-gold);
    color: var(--black);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .mimoza-accent {
    color: var(--mimoza-gold);
    font-weight: 900;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   MIMOZA MOTIF DECORATIONS
   ============================================ */
.mimoza-flower {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--mimoza-gold);
    border-radius: 50%;
    position: relative;
}

.mimoza-flower::before,
.mimoza-flower::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--mimoza-yellow);
    border-radius: 50%;
}

.mimoza-flower::before {
    top: -8px;
    left: 8px;
}

.mimoza-flower::after {
    top: 8px;
    left: -8px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-title .subtitle {
    color: var(--mimoza-gold);
    font-size: 1.125rem;
    font-weight: 600;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 4px solid var(--mimoza-gold);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--mimoza-gold);
    margin-bottom: 1.5rem;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-widget a:hover {
    color: var(--mimoza-gold);
    padding-left: 5px;
    transform: translateX(3px);
}

.footer-widget a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--mimoza-gold);
}

.footer-widget a:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info strong {
    display: block;
    color: var(--mimoza-gold);
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--mimoza-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--mimoza-gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-mimoza);
}

.mimoza-flower-decoration {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.mimoza-flower {
    width: 12px;
    height: 12px;
    background: var(--mimoza-gold);
    border-radius: 50%;
    display: inline-block;
    animation: flowerPulse 2s ease-in-out infinite;
}

.mimoza-flower:nth-child(2) {
    animation-delay: 0.3s;
}

.mimoza-flower:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes flowerPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        width: 100%;
        order: 3;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid var(--gray-light);
    }

    .main-navigation a {
        display: block;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* ============================================
   HOMEPAGE GRIDS
   ============================================ */
.services-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card,
.portfolio-item {
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-mimoza);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mimoza-gold);
    font-weight: bold;
}

.service-link,
.portfolio-link {
    color: var(--mimoza-gold);
    font-weight: 600;
    margin-top: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--mimoza-gold);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    display: flex;
    flex-direction: column;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

/* ============================================
   DASHBOARD STYLES
   ============================================ */
.mimoza-dashboard {
    background: var(--gray-light);
    min-height: 100vh;
    padding-bottom: 4rem;
}

.dashboard-header {
    background: var(--white);
    border-bottom: 3px solid var(--mimoza-gold);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.dashboard-header .container-wide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-welcome h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.company-name {
    color: var(--gray);
    font-size: 1.125rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.premium-badge {
    background: var(--gradient-mimoza);
    color: var(--black);
}

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

.dashboard-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-button:hover {
    background: var(--gray-light);
}

.tab-button.active {
    background: var(--gradient-mimoza);
    color: var(--black);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
}

.stat-change {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.stat-change.positive {
    color: var(--success);
}

.stat-change.negative {
    color: var(--error);
}

.charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.chart-card {
    padding: 2rem;
}

.chart-card h3 {
    margin-bottom: 1.5rem;
}

.chart-container {
    position: relative;
    height: 300px;
    margin-top: 1.5rem;
}

.dashboard-section {
    margin-bottom: 2rem;
}

.dashboard-section h3 {
    margin-bottom: 1rem;
}

.section-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.website-info {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 8px;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
}

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

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

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

.data-table th {
    background: var(--gray-light);
    font-weight: 600;
    color: var(--black);
}

.data-table tbody tr:hover {
    background: var(--gray-light);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-active {
    background: var(--success);
    color: white;
}

.status-paused {
    background: var(--gray);
    color: white;
}

.platform-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.platform-tab {
    padding: 0.5rem 1rem;
    background: var(--gray-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.platform-tab.active {
    background: var(--black);
    color: white;
}

.manual-data-form {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mimoza-gold);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.report-item {
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 8px;
}

.report-item h4 {
    margin-bottom: 0.5rem;
}

.report-item p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* ============================================
   CHATBOX
   ============================================ */
.mimoza-chatbox {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 400px;
    max-width: calc(100vw - 40px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
    flex-direction: column;
    max-height: 600px;
}

.mimoza-chatbox.active {
    display: flex;
}

.chatbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gradient-black);
    color: white;
    border-radius: 12px 12px 0 0;
}

.chatbox-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.chatbox-icon {
    font-size: 1.5rem;
}

.chatbox-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbox-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    min-height: 300px;
    max-height: 400px;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bot-message {
    align-items: flex-start;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-mimoza);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: var(--gradient-black);
}

.message-content {
    background: var(--gray-light);
    padding: 0.75rem;
    border-radius: 12px;
    max-width: 70%;
}

.user-message .message-content {
    background: var(--black);
    color: white;
}

.chatbox-footer {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--gray-light);
}

.chatbox-footer input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
}

.chatbox-footer input:focus {
    outline: none;
    border-color: var(--mimoza-gold);
}

.chatbox-footer .btn {
    padding: 0.75rem 1.5rem;
}

.chatbox-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background: var(--gradient-mimoza);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbox-trigger:hover {
    transform: scale(1.1);
}

.trigger-icon {
    font-size: 2rem;
}

.trigger-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--black);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .dashboard-tabs {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .stats-row,
    .charts-row,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .mimoza-chatbox {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
