/* LOURA - Luxury Investment & Construction Platform */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;900&family=Playfair+Display:wght@400;700;900&display=swap');

:root {
    --gold: #C9A84C;
    --gold-light: #E8C87A;
    --gold-dark: #9A7A30;
    --dark: #0A0A0F;
    --dark-2: #111118;
    --dark-3: #1A1A24;
    --dark-4: #222230;
    --white: #FFFFFF;
    --gray: #8A8A9A;
    --light: #F5F5F0;
    --border: rgba(201,168,76,0.2);
    --shadow: 0 20px 60px rgba(0,0,0,0.5);
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Playfair Display', serif;
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-ar);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    direction: rtl;
}

/* =================== PRELOADER =================== */
#preloader {
    position: fixed; inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.logo-text {
    font-family: var(--font-en);
    font-size: 4rem; font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.3em;
    animation: pulse 1.5s ease-in-out infinite;
}
.loader-bar {
    width: 200px; height: 2px;
    background: rgba(201,168,76,0.2);
    margin: 20px auto 0; border-radius: 2px; overflow: hidden;
}
.loader-fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    animation: load 2s ease forwards;
}
@keyframes load { to { width: 100%; } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* =================== NAVBAR =================== */
#mainNav {
    padding: 20px 0;
    transition: var(--transition);
    z-index: 1000;
}
#mainNav.scrolled {
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.navbar-brand { text-decoration: none; display: flex; flex-direction: column; align-items: flex-start; }
.brand-logo {
    font-family: var(--font-en);
    font-size: 2rem; font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.15em;
    line-height: 1;
}
.brand-sub { font-size: 0.6rem; color: var(--gray); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500; font-size: 0.9rem;
    padding: 8px 16px !important;
    position: relative; transition: var(--transition);
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; right: 16px;
    width: 0; height: 1px; background: var(--gold);
    transition: var(--transition);
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { width: calc(100% - 32px); }
.btn-contact {
    border: 1px solid var(--gold) !important;
    border-radius: 30px !important;
    color: var(--gold) !important;
    padding: 8px 24px !important;
    margin-right: 8px;
}
.btn-contact:hover { background: var(--gold) !important; color: var(--dark) !important; }
.navbar-toggler { border: none; padding: 8px; }
.toggler-icon {
    display: block; width: 25px; height: 2px;
    background: var(--gold); margin: 5px 0;
    transition: var(--transition);
}

/* =================== HERO / SLIDER =================== */
#heroSlider { height: 100vh; min-height: 700px; }
.slide-item {
    height: 100vh; min-height: 700px;
    position: relative; overflow: hidden;
}
.slide-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0A0A0F 0%, #1A1A24 50%, #0D0D15 100%);
    background-size: cover; background-position: center;
}
.slide-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to left, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.7) 100%);
}
.slide-bg-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.4;
    filter: grayscale(30%);
}
/* Geometric decorations */
.slide-geo {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.slide-geo::before {
    content: ''; position: absolute;
    width: 600px; height: 600px;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 50%;
    left: -150px; bottom: -150px;
}
.slide-geo::after {
    content: ''; position: absolute;
    width: 300px; height: 300px;
    border: 1px solid rgba(201,168,76,0.15);
    top: 10%; right: 10%;
    transform: rotate(45deg);
}
.slide-content {
    position: relative; z-index: 2;
    height: 100%;
    display: flex; align-items: center;
}
.slide-text { max-width: 700px; }
.slide-badge {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase;
    border: 1px solid var(--border);
    padding: 6px 20px; border-radius: 30px;
    margin-bottom: 24px;
    background: rgba(201,168,76,0.05);
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease both;
}
.slide-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900; line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInRight 0.8s 0.2s ease both;
}
.slide-title span { color: var(--gold); }
.slide-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.7);
    margin-bottom: 40px; line-height: 1.8;
    animation: fadeInRight 0.8s 0.4s ease both;
}
.slide-btns { animation: fadeInUp 0.8s 0.6s ease both; display: flex; gap: 16px; flex-wrap: wrap; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark); border: none;
    padding: 14px 36px; border-radius: 50px;
    font-weight: 700; font-size: 0.95rem;
    font-family: var(--font-ar);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(201,168,76,0.4); color: var(--dark); }
.btn-outline-gold {
    background: transparent;
    color: var(--gold); border: 1px solid var(--gold);
    padding: 14px 36px; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    font-family: var(--font-ar);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

/* Slider Controls */
.carousel-control-prev, .carousel-control-next {
    width: 50px; height: 50px;
    background: rgba(201,168,76,0.2);
    border: 1px solid var(--border);
    border-radius: 50%;
    top: 50%; transform: translateY(-50%);
    bottom: auto; opacity: 1;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.carousel-control-prev { left: 30px; }
.carousel-control-next { right: 30px; }
.carousel-control-prev:hover, .carousel-control-next:hover { background: var(--gold); }
.carousel-indicators [data-bs-target] {
    width: 30px; height: 3px; border-radius: 3px;
    background: rgba(255,255,255,0.3); border: none;
    transition: var(--transition);
}
.carousel-indicators .active { background: var(--gold); width: 50px; }

/* Stats Bar */
.stats-bar {
    background: var(--dark-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
    margin-top: -1px;
}
.stat-item { text-align: center; padding: 10px; }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--gray); margin-top: 5px; }

/* =================== SECTIONS =================== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 16px; position: relative;
}
.section-badge::before, .section-badge::after {
    content: '─────';
    color: rgba(201,168,76,0.4);
    margin: 0 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    margin: 16px auto 0; border-radius: 3px;
}
.section-desc { color: var(--gray); font-size: 1rem; line-height: 1.8; max-width: 600px; margin: 20px auto 0; }

/* About Section */
.about-section { background: var(--dark-2); }
.about-img-wrap { position: relative; }
.about-img {
    width: 100%; height: 500px; object-fit: cover;
    border-radius: var(--radius); border: 1px solid var(--border);
    filter: grayscale(20%);
}
.about-badge-float {
    position: absolute; bottom: 30px; right: -20px;
    background: var(--gold);
    color: var(--dark); padding: 20px 25px;
    border-radius: var(--radius); text-align: center;
    box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}
.about-badge-float .num { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-badge-float .lbl { font-size: 0.75rem; font-weight: 600; }
.about-text { padding-right: 40px; }
.about-text h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; }
.about-text p { color: var(--gray); line-height: 1.9; margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 30px 0; }
.feature-item { display: flex; align-items: center; gap: 10px; }
.feature-item i { color: var(--gold); font-size: 1.2rem; }
.feature-item span { font-size: 0.9rem; font-weight: 500; }

/* Vision / Mission Cards */
.vision-section { background: var(--dark-3); }
.vmc-card {
    background: var(--dark-4); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
    height: 100%; transition: var(--transition);
    position: relative; overflow: hidden;
}
.vmc-card::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: var(--transition);
}
.vmc-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.5); }
.vmc-card:hover::before { opacity: 1; }
.vmc-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: rgba(201,168,76,0.1); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--gold); margin-bottom: 24px;
}
.vmc-card h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }
.vmc-card p { color: var(--gray); line-height: 1.8; font-size: 0.95rem; }

/* Services */
.services-section { background: var(--dark); }
.service-card {
    background: var(--dark-3); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 35px;
    height: 100%; transition: var(--transition);
    position: relative; overflow: hidden; cursor: pointer;
}
.service-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
    opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(201,168,76,0.15); }
.service-card:hover::after { opacity: 1; }
.service-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--dark); margin-bottom: 24px;
    position: relative; z-index: 1;
}
.service-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; position: relative; z-index: 1; }

/* Projects Gallery */
.projects-section { background: var(--dark-2); }
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
    padding: 8px 24px; border-radius: 30px;
    border: 1px solid var(--border);
    background: transparent; color: var(--gray);
    font-family: var(--font-ar); font-size: 0.85rem;
    cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.gallery-item {
    border-radius: var(--radius); overflow: hidden;
    position: relative; aspect-ratio: 4/3;
    cursor: pointer; border: 1px solid var(--border);
    transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); filter: brightness(0.7); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    padding: 20px; display: flex; flex-direction: column;
    justify-content: flex-end; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h5 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.gallery-overlay span { font-size: 0.8rem; color: var(--gold); }
.gallery-zoom {
    position: absolute; top: 15px; left: 15px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(201,168,76,0.9);
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); font-size: 1rem;
    opacity: 0; transform: scale(0.5); transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: 'LOURA'; position: absolute;
    font-family: var(--font-en); font-size: 20rem; font-weight: 900;
    color: rgba(201,168,76,0.03);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    white-space: nowrap; pointer-events: none;
}

/* Contact */
.contact-section { background: var(--dark); }
.contact-card {
    background: var(--dark-3); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
}
.contact-info-item {
    display: flex; align-items: flex-start; gap: 20px;
    margin-bottom: 30px;
}
.contact-icon {
    width: 55px; height: 55px; border-radius: 50%; flex-shrink: 0;
    background: rgba(201,168,76,0.1); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--gold);
}
.contact-info-text h6 { font-size: 0.85rem; color: var(--gray); margin-bottom: 4px; }
.contact-info-text p { font-weight: 500; }
.form-control, .form-select {
    background: var(--dark-4); border: 1px solid var(--border);
    color: var(--white); border-radius: 8px;
    padding: 14px 18px; font-family: var(--font-ar);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    background: var(--dark-4); border-color: var(--gold);
    color: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-control::placeholder { color: var(--gray); }
.form-select option { background: var(--dark-4); }

/* =================== FOOTER =================== */
.site-footer { background: var(--dark-2); border-top: 1px solid var(--border); }
.footer-top { padding: 70px 0 50px; }
.footer-logo {
    font-family: var(--font-en); font-size: 2.5rem; font-weight: 900;
    color: var(--gold); letter-spacing: 0.15em; line-height: 1;
}
.footer-tagline { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; }
.footer-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--dark-4); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray); text-decoration: none;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; right: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '←'; color: var(--gold); font-size: 0.7rem; opacity: 0; transform: translateX(-5px); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-right: 10px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 30px; left: 30px;
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--gold); color: var(--dark);
    border: none; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; visibility: hidden;
    transition: var(--transition); z-index: 999;
    box-shadow: 0 5px 20px rgba(201,168,76,0.4);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); }

/* =================== PAGE HERO =================== */
.page-hero {
    min-height: 350px;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    display: flex; align-items: flex-end;
    border-bottom: 1px solid var(--border);
    padding-top: 100px; padding-bottom: 60px;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: 3rem; font-weight: 900; }
.breadcrumb-item { font-size: 0.85rem; }
.breadcrumb-item a { color: var(--gold); text-decoration: none; }
.breadcrumb-item.active { color: var(--gray); }
.breadcrumb-item+.breadcrumb-item::before { color: var(--gray); }

/* =================== MEETINGS =================== */
.meeting-card {
    background: var(--dark-3); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 30px;
    transition: var(--transition); height: 100%;
}
.meeting-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.meeting-status {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 14px; border-radius: 30px;
    font-size: 0.75rem; font-weight: 600;
}
.status-scheduled { background: rgba(59,130,246,0.15); color: #60a5fa; }
.status-live { background: rgba(34,197,94,0.15); color: #4ade80; }
.status-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: blink 1s infinite; }
.status-ended { background: rgba(239,68,68,0.15); color: #f87171; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.meeting-title { font-size: 1.2rem; font-weight: 700; margin: 16px 0 8px; }
.meeting-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--gray); font-size: 0.85rem; }
.meeting-meta i { color: var(--gold); }

/* Video Room */
.video-room { background: var(--dark); min-height: 100vh; padding-top: 80px; }
.video-grid { display: grid; grid-template-columns: 1fr 300px; gap: 20px; height: calc(100vh - 180px); }
.video-main { background: var(--dark-3); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.video-sidebar { display: flex; flex-direction: column; gap: 15px; }
.chat-box {
    background: var(--dark-3); border: 1px solid var(--border);
    border-radius: var(--radius); flex: 1; display: flex; flex-direction: column;
}
.chat-messages { flex: 1; padding: 15px; overflow-y: auto; }
.chat-msg { margin-bottom: 12px; }
.chat-msg .name { font-size: 0.75rem; color: var(--gold); font-weight: 600; }
.chat-msg .text { font-size: 0.85rem; color: var(--white); margin-top: 2px; }
.chat-input-row { padding: 15px; border-top: 1px solid var(--border); display: flex; gap: 8px; }

/* Controls Bar */
.controls-bar {
    background: var(--dark-3); border: 1px solid var(--border);
    border-radius: 50px; padding: 12px 24px;
    display: flex; gap: 12px; justify-content: center; align-items: center;
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    backdrop-filter: blur(20px); z-index: 100;
}
.ctrl-btn {
    width: 50px; height: 50px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--dark-4);
    color: var(--white); font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.ctrl-btn:hover { background: var(--dark-2); border-color: var(--gold); }
.ctrl-btn.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.ctrl-btn.danger { background: rgba(239,68,68,0.2); color: #f87171; border-color: rgba(239,68,68,0.3); }
.ctrl-btn.danger:hover { background: #ef4444; color: white; }

/* =================== ADMIN =================== */
.admin-body { background: #0F0F18; }
.admin-sidebar {
    width: 260px; min-height: 100vh;
    background: var(--dark-2); border-left: 1px solid var(--border);
    position: fixed; top: 0; right: 0; z-index: 100;
    overflow-y: auto;
}
.admin-logo { padding: 24px 20px; border-bottom: 1px solid var(--border); }
.admin-logo .logo { font-family: var(--font-en); font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.admin-logo .sub { font-size: 0.7rem; color: var(--gray); }
.admin-nav { padding: 20px 0; }
.admin-nav-title { font-size: 0.65rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.15em; padding: 16px 20px 8px; }
.admin-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px; color: var(--gray);
    text-decoration: none; font-size: 0.9rem;
    transition: var(--transition); border-right: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active { color: var(--gold); background: rgba(201,168,76,0.05); border-right-color: var(--gold); }
.admin-nav a i { font-size: 1rem; width: 20px; }
.admin-main { margin-right: 260px; padding: 30px; min-height: 100vh; }
.admin-header {
    background: var(--dark-2); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px 25px;
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 30px;
}
.admin-header h1 { font-size: 1.4rem; font-weight: 700; margin: 0; }
.stat-card {
    background: var(--dark-3); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 25px;
    display: flex; align-items: center; gap: 20px;
    transition: var(--transition);
}
.stat-card:hover { border-color: var(--gold); }
.stat-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--gold); flex-shrink: 0;
}
.stat-info h3 { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-info p { font-size: 0.85rem; color: var(--gray); margin: 4px 0 0; }
.table-dark { --bs-table-bg: var(--dark-3); border-color: var(--border); }
.table-dark th { background: var(--dark-4); color: var(--gold); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; border-color: var(--border); }
.table-dark td { border-color: var(--border); color: var(--white); vertical-align: middle; font-size: 0.9rem; }
.admin-card { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); }
.admin-card .card-header { background: var(--dark-4); border-bottom: 1px solid var(--border); padding: 16px 20px; font-weight: 600; }
.admin-card .card-body { padding: 25px; }
.badge-gold { background: var(--gold); color: var(--dark); font-weight: 600; }

/* =================== ANIMATIONS =================== */
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
    section { padding: 70px 0; }
    .about-text { padding-right: 0; margin-top: 40px; }
    .about-badge-float { right: 10px; bottom: -20px; }
    .video-grid { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
    .admin-sidebar { transform: translateX(100%); transition: transform 0.3s ease; }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-right: 0; padding: 20px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
