/* Persian Elegance - Light Theme */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #faf9f6;
    --bg-secondary: #f5f4f0;
    --bg-tertiary: #efeee9;
    --surface: #ffffff;
    --surface-hover: #fefefe;
    
    --accent-primary: #0d9488;
    --accent-primary-light: #14b8a6;
    --accent-primary-dark: #0f766e;
    --accent-secondary: #d97706;
    --accent-secondary-light: #f59e0b;
    
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;
    
    --border: #e2e1dc;
    --border-light: #f0efea;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
    
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: var(--text-inverse);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary-dark);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.navbar-brand img {
    height: 44px;
    width: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px !important;
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-primary) !important;
    background: rgba(13, 148, 136, 0.08);
}

.nav-link.active {
    color: var(--accent-primary) !important;
    background: rgba(13, 148, 136, 0.1);
}

.nav-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-primary);
}

.menu-toggle svg {
    width: 20px;
    height: 20px;
    fill: var(--text-primary);
}

/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    background: var(--surface);
    padding: 8px;
    min-width: 200px;
}

.dropdown-item {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(13, 148, 136, 0.08);
    color: var(--accent-primary);
}

.dropdown-divider {
    margin: 8px 0;
    border-color: var(--border-light);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface);
    z-index: 1001;
    padding: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: var(--accent-primary);
    color: var(--text-inverse);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links .nav-link {
    padding: 14px 16px !important;
    border-radius: var(--radius-sm);
    font-size: 15px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(13, 148, 136, 0.05) 100%);
    top: 10%;
    right: 10%;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12) 0%, rgba(217, 119, 6, 0.04) 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-dark) 100%);
    color: var(--text-inverse);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
    color: var(--text-inverse);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-secondary-light) 100%);
    color: var(--text-inverse);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
    color: var(--text-inverse);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(13, 148, 136, 0.05);
}

.btn-outline-primary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-outline-primary:hover {
    background: var(--accent-primary);
    color: var(--text-inverse);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-sm);
}

/* ===== CARDS ===== */
.card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 24px;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--border-light);
    background: var(--surface);
}

.feature-card:hover {
    border-color: var(--accent-primary);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.05) 100%);
    border-radius: var(--radius);
    color: var(--accent-primary);
    transition: var(--transition);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Team Card */
.team-card {
    text-align: center;
    overflow: hidden;
}

.team-card .card-img-top {
    height: 280px;
    transition: var(--transition);
}

.team-card:hover .card-img-top {
    transform: scale(1.05);
}

.team-card .card-body {
    padding: 24px;
}

.team-placeholder {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-dark) 100%);
}

.team-placeholder svg {
    width: 80px;
    height: 80px;
    fill: rgba(255, 255, 255, 0.7);
}

/* Birthday Card */
.birthday-card {
    text-align: center;
    position: relative;
    overflow: visible;
}

.birthday-card::before {
    content: '🎂';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    z-index: 10;
}

.birthday-card.today {
    border: 2px solid var(--accent-secondary);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

.birthday-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: -50px auto 16px;
    border: 4px solid var(--surface);
    box-shadow: var(--shadow);
}

.birthday-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: -50px auto 16px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--surface);
    box-shadow: var(--shadow);
}

.birthday-placeholder svg {
    width: 40px;
    height: 40px;
    fill: var(--text-muted);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===== FORMS ===== */
.form-control, .form-select {
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Form Card */
.form-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-card-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-primary);
    color: var(--text-inverse);
    padding: 60px 0 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 48px;
    width: 48px;
    border-radius: var(--radius-sm);
}

.footer-brand span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-inverse);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-secondary-light);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-secondary-light);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-inverse);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-primary);
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ===== ALERTS ===== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    border: none;
    font-weight: 500;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.alert-info {
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(13, 148, 136, 0.2);
}

/* ===== STATS ===== */
.stats-section {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-dark) 100%);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-secondary-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-inverse);
    margin-bottom: 4px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ===== QUICK ACCESS ===== */
.quick-access-card {
    text-align: center;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quick-access-card .feature-icon {
    margin-bottom: 20px;
}

.quick-access-card .feature-title {
    margin-bottom: 8px;
}

.quick-access-card .feature-text {
    margin-bottom: 24px;
    flex-grow: 1;
}

/* ===== NEWS ===== */
.news-card .card-img-top {
    height: 220px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.news-meta svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* News Detail */
.news-detail-header {
    margin-bottom: 32px;
}

.news-detail-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--text-secondary);
    font-size: 14px;
}

.news-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-detail-meta svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-primary);
}

.news-detail-content {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-primary);
}

.news-detail-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.page-link {
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(13, 148, 136, 0.05);
}

.page-item.active .page-link {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--text-inverse);
}

/* ===== SUCCESS PAGE ===== */
.success-card {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    fill: #10b981;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ===== DASHBOARD ===== */
.dashboard-stat {
    text-align: center;
    padding: 24px;
}

.dashboard-stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.05) 100%);
    border-radius: var(--radius);
}

.dashboard-stat-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-primary);
}

.dashboard-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.dashboard-stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Profile Card */
.profile-card {
    text-align: center;
    padding: 32px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 4px solid var(--bg-secondary);
}

.profile-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-placeholder svg {
    width: 50px;
    height: 50px;
    fill: rgba(255, 255, 255, 0.9);
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-role {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

/* ===== CONTACT INFO ===== */
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-primary);
}

.contact-info-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-info-content span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== COOPERATION CEO ===== */
.ceo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
}

@media (min-width: 768px) {
    .ceo-card {
        flex-direction: row;
        text-align: right;
        gap: 32px;
    }
}

.ceo-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--bg-secondary);
}

@media (min-width: 768px) {
    .ceo-avatar {
        margin-bottom: 0;
    }
}

.ceo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .ceo-placeholder {
        margin-bottom: 0;
    }
}

.ceo-placeholder svg {
    width: 60px;
    height: 60px;
    fill: rgba(255, 255, 255, 0.9);
}

.ceo-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ceo-position {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.ceo-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.ceo-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-primary);
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 24px;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--bg-secondary);
    border-radius: 50%;
}

.empty-state-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--text-muted);
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.empty-state-description {
    color: var(--text-muted);
}

/* ===== TABLE ===== */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
    padding: 14px 16px;
    border: none;
}

.table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.table-responsive {
    border-radius: var(--radius);
    overflow: hidden;
}

/* ===== BADGE ===== */
.badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.bg-success {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #059669 !important;
}

.bg-warning {
    background: rgba(245, 158, 11, 0.15) !important;
    color: #d97706 !important;
}

/* ===== VIDEO ===== */
.video-card .card-img-top {
    position: relative;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.video-card:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-primary);
    margin-right: -3px;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== UTILITIES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--text-muted) !important;
}

.mb-0 { margin-bottom: 0 !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-none { display: none !important; }
.flex-column { flex-direction: column !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.flex-wrap { flex-wrap: wrap !important; }

.text-center { text-align: center !important; }
.text-start { text-align: right !important; }
.text-end { text-align: left !important; }

.fw-bold { font-weight: 700 !important; }
.fw-medium { font-weight: 500 !important; }

.rounded { border-radius: var(--radius) !important; }
.rounded-circle { border-radius: 50% !important; }

.border-0 { border: none !important; }
.border { border: 1px solid var(--border) !important; }

.img-fluid {
    max-width: 100%;
    height: auto;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .form-card {
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Hide elements on mobile */
@media (max-width: 991.98px) {
    .d-lg-none { display: block !important; }
    .d-lg-block { display: none !important; }
}

@media (min-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-block { display: block !important; }
}

