/*
 * Hayata Destek Derneği - Özel Tasarım CSS Sistemi
 * Renkler: #005da6 (Dominant Mavi) & #77c55a (Yeşil)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #005da6;
    --primary-dark: #004882;
    --primary-light: #e6f0f8;
    --accent: #77c55a;
    --accent-dark: #61a847;
    --accent-light: #eff8eb;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #ffffff;
    --bg-soft: #f8fafc;
    --bg-dark: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-soft);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Düzen Elemanları */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buton Tasarımları */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #white;
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 93, 166, 0.3);
    transform: translateY(-1px);
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    box-shadow: 0 4px 12px rgba(119, 197, 90, 0.3);
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
}

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

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: #fff;
}

/* Üst Menü (Header) */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: var(--shadow-sm);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-menu {
    display: flex;
    list-style: none;
    gap: 16px;
    align-items: center;
}

.top-bar-menu > li {
    position: relative;
}

.top-bar-menu > li > a {
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 0;
    display: block;
    letter-spacing: 0.5px;
}

.top-bar-menu > li > a:hover {
    color: #fff;
}

/* Dropdown */
.top-bar-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 8px 0;
    z-index: 1010;
}

.top-bar-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-bar-menu .dropdown-menu a {
    color: var(--text-dark);
    padding: 10px 20px;
    display: block;
    font-size: 13px;
    font-weight: 500;
}

.top-bar-menu .dropdown-menu a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Social & Language Bar */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    list-style: none;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.social-links a:hover {
    color: #fff;
}

.lang-switch {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
}

/* Main Nav Bar */
.main-nav {
    padding: 15px 0;
    background-color: #fff;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.nav-contact-info a {
    color: var(--text-dark);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 540px;
    background-color: var(--primary);
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 100%;
    width: 100%;
}

.slide-text-side {
    background: linear-gradient(135deg, var(--primary) 60%, var(--primary-dark));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px 0 100px;
    position: relative;
    z-index: 5;
}

.slide-text-side::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    height: 100%;
    width: 100px;
    background: var(--primary);
    transform: skewX(-10deg);
    z-index: -1;
}

.slide-tag {
    background-color: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    align-self: flex-start;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.slide-image-side {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slide-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Quick Action Cards */
.quick-actions {
    margin-top: -40px;
    position: relative;
    z-index: 30;
    margin-bottom: 60px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.action-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    overflow: hidden;
    border-top: 5px solid var(--primary);
    transition: var(--transition);
}

.action-card-accent {
    border-top-color: var(--accent);
}

.action-card:hover {
    transform: translateY(-5px);
}

.action-card-icon {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background-color: var(--primary-light);
    color: var(--primary);
}

.action-card-accent .action-card-icon {
    background-color: var(--accent-light);
    color: var(--accent);
}

.action-card-content {
    padding: 30px;
    flex: 1;
}

.action-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.action-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Section Common */
.section {
    padding: 80px 0;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
}

/* Scope of Work Grid (Faaliyet Alanları) */
.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.scope-card {
    background-color: #fff;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.scope-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 28px;
    transition: var(--transition);
}

.scope-card:hover .scope-icon {
    background-color: var(--accent);
    color: #fff;
}

.scope-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.scope-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* Statistics Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-title {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* News & Stories Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Page Sub headers */
.page-header {
    background: linear-gradient(rgba(0, 93, 166, 0.85), rgba(10, 28, 42, 0.95)), url('../images/pattern.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.8;
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info-panel {
    background-color: #fff;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-info-text p, .contact-info-text a {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-info-text a:hover {
    color: var(--primary);
}

.hotline-box {
    margin-top: 40px;
    padding: 24px;
    background-color: var(--accent-light);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
}

.hotline-box h5 {
    color: var(--accent-dark);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Forms */
.form-card {
    background-color: #fff;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 93, 166, 0.1);
}

.alert {
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #e6f6ec;
    color: #15803d;
    border-left: 4px solid #22c55e;
}

.alert-danger {
    background-color: #fef2f2;
    color: #b91c1c;
    border-left: 4px solid #ef4444;
}

/* Donate Page Details */
.donate-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.donate-option-btn {
    border: 1.5px solid var(--border-color);
    padding: 15px;
    text-align: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.donate-option-btn.active, .donate-option-btn:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
}

.iban-card {
    background-color: var(--bg-soft);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iban-details h5 {
    font-weight: 700;
    font-size: 14px;
}

.iban-code {
    font-family: monospace;
    font-size: 15px;
    color: var(--primary);
    margin: 5px 0;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
}

.copy-btn:hover {
    color: var(--accent);
}

/* Footer Section */
.footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 80px 0 30px 0;
    border-top: 5px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-desc p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 16px;
}

.footer-newsletter p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    flex: 1;
    font-size: 13px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Admin Dashboard CSS */
.admin-login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-soft);
}

.admin-login-card {
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-top: 5px solid var(--primary);
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.admin-logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-logo span {
    color: var(--accent);
}

.admin-menu {
    list-style: none;
    flex: 1;
}

.admin-menu li {
    margin-bottom: 8px;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.admin-menu a:hover, .admin-menu li.active a {
    color: #fff;
    background-color: var(--primary);
}

.admin-content {
    background-color: var(--bg-soft);
    padding: 40px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header-title {
    font-size: 28px;
    font-weight: 800;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background-color: #fff;
    border-radius: var(--radius-sm);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.admin-stat-title {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 5px;
}

.admin-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.admin-table th, .admin-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
}

.admin-table tr {
    border-bottom: 1px solid var(--border-color);
}

.admin-table tr:last-child {
    border-bottom: none;
}

.admin-table tr:hover {
    background-color: var(--bg-soft);
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-pending { background-color: #fef3c7; color: #d97706; }
.badge-approved { background-color: #d1fae5; color: #059669; }
.badge-rejected { background-color: #fee2e2; color: #dc2626; }
.badge-unread { background-color: #dbeafe; color: #2563eb; }
.badge-read { background-color: #f1f5f9; color: #64748b; }

/* Responsive styles */
@media (max-width: 992px) {
    .slide-content-wrapper {
        grid-template-columns: 1fr;
    }
    .slide-text-side {
        padding: 40px;
    }
    .slide-text-side::after {
        display: none;
    }
    .hero-slider {
        height: auto;
        min-height: 480px;
    }
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        display: none; /* simple mobile dashboard layout can toggled */
    }
}

@media (max-width: 768px) {
    .top-bar {
        position: relative;
        padding: 12px 0;
    }
    .top-bar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary);
        padding: 20px;
        z-index: 999;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(255,255,255,0.15);
    }
    .top-bar-menu.active {
        display: flex;
    }
    .top-bar-menu > li {
        width: 100%;
        position: relative;
    }
    .top-bar-menu > li > a {
        padding: 10px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .top-bar-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.15);
        border-radius: var(--radius-sm);
        margin-top: 5px;
        padding: 5px 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .top-bar-menu li:hover .dropdown-menu,
    .top-bar-menu li.active .dropdown-menu {
        display: block;
    }
    .top-bar-menu .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9);
        padding: 8px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .social-links {
        display: none;
    }
    .top-bar-right {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
        margin-right: 15px;
    }
    .nav-contact-info {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
        color: #fff;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
