/* =============================================
   HEG Gençliği - Ana CSS
   ============================================= */

:root {
    --primary: #1B5E20;
    --primary-dark: #0a3d0a;
    --primary-light: #2E7D32;
    --secondary: #FFD700;
    --accent: #4CAF50;
    --text-dark: #1a1a2e;
    --text-mid: #333;
    --text-light: #666;
    --bg-light: #f8fdf8;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all .3s ease;
    --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-arabic: 'Amiri', 'Noto Naskh Arabic', serif;
}

/* ===== TOPBAR ===== */
.tb{background:#0f2819;color:rgba(255,255,255,.7);font-size:12.5px;padding:8px 0}
.tb .ctr{width:100%;max-width:1240px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.tb-left{display:flex;align-items:center;gap:18px}
.tb-left a{color:rgba(255,255,255,.65);display:flex;align-items:center;gap:5px;transition:color .2s}
.tb-left a:hover{color:#d4a42a}
.tb-left i{color:#d4a42a;font-size:11px}
.tb-right{display:flex;align-items:center;gap:12px}
.tb-soc{display:flex;gap:8px}
.tb-soc a{color:rgba(255,255,255,.45);font-size:13px;transition:color .2s}
.tb-soc a:hover{color:#d4a42a}
.tb-lang{display:flex;gap:4px}
.tb-lang a{padding:2px 10px;border-radius:20px;font-size:11px;font-weight:700;border:1px solid rgba(255,255,255,.15);color:rgba(255,255,255,.55);letter-spacing:.04em;transition:all .2s}
.tb-lang a.on,.tb-lang a:hover{background:#d4a42a;color:#0f2819;border-color:#d4a42a}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.rtl {
    direction: rtl;
    font-family: var(--font-arabic);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; padding: 0 20px; }

/* ===================== TOPBAR ===================== */
.topbar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left a { color: rgba(255,255,255,.85); }
.topbar-left a:hover { color: var(--secondary); }
.topbar-left i { margin-right: 5px; }

.topbar-right { display: flex; gap: 10px; align-items: center; }
.lang-switch { display: flex; gap: 6px; }
.lang-switch a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,.8);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid rgba(255,255,255,.2);
    transition: var(--transition);
}
.lang-switch a:hover, .lang-switch a.active {
    background: var(--secondary);
    color: var(--primary-dark);
    border-color: var(--secondary);
}
.lang-switch .flag { font-size: 14px; }

.social-icons { display: flex; gap: 8px; }
.social-icons a {
    color: rgba(255,255,255,.75);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    font-size: 12px;
    transition: var(--transition);
}
.social-icons a:hover { background: var(--secondary); color: var(--primary-dark); border-color: var(--secondary); }

/* ===================== HEADER ===================== */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 55px; width: auto; object-fit: contain; }
.logo-text h1 { font-size: 18px; color: var(--primary); font-weight: 700; line-height: 1.2; }
.logo-text span { font-size: 12px; color: var(--text-light); }

/* NAV */
nav ul { display: flex; gap: 4px; align-items: center; }
nav ul li { position: relative; }
nav ul li a {
    display: block;
    padding: 8px 14px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14.5px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: var(--transition);
}
nav ul li a:hover, nav ul li a.active {
    color: var(--primary);
    background: rgba(27,94,32,.07);
}
nav ul li a i { font-size: 11px; margin-left: 4px; }

/* Dropdown */
nav ul li:hover > ul,
nav ul li ul.open { display: block; }
nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    min-width: 200px;
    z-index: 100;
    border-top: 3px solid var(--primary);
    animation: dropDown .2s ease;
}
.rtl nav ul li ul { left: auto; right: 0; }
@keyframes dropDown { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
nav ul li ul li a {
    border-radius: 0;
    padding: 10px 18px;
    font-size: 13.5px;
    border-bottom: 1px solid var(--border);
}
nav ul li ul li:last-child a { border-bottom: none; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 25px; height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Member Nav */
.member-nav { display: flex; align-items: center; gap: 8px; }
.btn-login {
    background: var(--primary);
    color: #fff !important;
    padding: 7px 16px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
}
.btn-login:hover { background: var(--primary-dark) !important; }

/* ===================== ANNOUNCEMENT BAR ===================== */
.announcement-bar {
    background: #FFF9C4;
    border-bottom: 2px solid var(--secondary);
    padding: 8px 0;
    font-size: 13.5px;
}
.announcement-bar .container {
    display: flex;
    align-items: center;
    gap: 12px;
}
.announcement-bar .ann-label {
    background: var(--primary);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}
.announcement-bar .ann-text { flex: 1; }
.announcement-bar a { color: var(--primary); font-weight: 600; }

/* ===================== SLIDER ===================== */
.hero-slider { position: relative; overflow: hidden; background: #000; }
.slider-wrapper { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}
.slide img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    opacity: .85;
}
.slide video {
    width: 100%;
    height: 560px;
    object-fit: cover;
}
.slide iframe {
    width: 100%;
    height: 560px;
    border: none;
    pointer-events: none;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
    display: flex;
    align-items: center;
}
.rtl .slide-overlay {
    background: linear-gradient(to left, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.slide-content {
    max-width: 600px;
    padding: 0 60px;
    color: #fff;
}
.slide-content h2 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 2px 2px 8px rgba(0,0,0,.4);
    margin-bottom: 16px;
}
.slide-content p {
    font-size: clamp(14px, 2vw, 20px);
    opacity: .9;
    margin-bottom: 28px;
    text-shadow: 1px 1px 4px rgba(0,0,0,.3);
}
.slide-content .btn { display: inline-flex; align-items: center; gap: 8px; }

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}
.slider-btn {
    pointer-events: all;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active { background: var(--secondary); transform: scale(1.3); }

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27,94,32,.3);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--primary-dark);
    border-color: var(--secondary);
}
.btn-secondary:hover { background: #e6c200; border-color: #e6c200; transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.btn-white:hover { background: var(--secondary); border-color: var(--secondary); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }

/* ===================== SECTION STYLES ===================== */
section { padding: 70px 0; }
.section-alt { background: var(--bg-light); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tag {
    display: inline-block;
    background: rgba(27,94,32,.1);
    color: var(--primary);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-header h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}
.section-header p { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 16px auto 0; }

/* ===================== CARDS ===================== */
.card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-img { overflow: hidden; height: 220px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.07); }

.card-body { padding: 22px; }
.card-category {
    display: inline-block;
    background: rgba(27,94,32,.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-dark);
    line-height: 1.4;
}
.card-title a:hover { color: var(--primary); }
.card-text {
    color: var(--text-light);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,.02);
}
.card-meta { display: flex; gap: 14px; align-items: center; }
.card-meta span { font-size: 12.5px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.card-meta i { color: var(--primary); }

/* ===================== GRID ===================== */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

/* ===================== NEWS SECTION ===================== */
.news-featured .card-img { height: 320px; }
.news-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}
.rtl .news-tag { left: auto; right: 16px; }

/* ===================== EVENTS ===================== */
.event-card {
    display: flex;
    gap: 0;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.event-date-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    min-width: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    text-align: center;
}
.event-date-box .day { font-size: 32px; font-weight: 800; line-height: 1; }
.event-date-box .month { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; opacity: .85; }
.event-date-box .year { font-size: 12px; opacity: .7; }

.event-info { padding: 18px; flex: 1; }
.event-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.event-title a:hover { color: var(--primary); }
.event-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.event-meta span { display: flex; align-items: center; gap: 5px; }
.event-meta i { color: var(--primary); }
.event-status { display: flex; gap: 6px; align-items: center; }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
}
.badge-primary { background: rgba(27,94,32,.12); color: var(--primary); }
.badge-success { background: #e8f5e9; color: #2E7D32; }
.badge-secondary { background: #f0f0f0; color: #666; }
.badge-warning { background: #fff8e1; color: #f57f17; }
.badge-danger { background: #ffebee; color: #c62828; }
.badge-info { background: #e3f2fd; color: #1565c0; }

/* Event Tabs */
.event-tabs { display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.event-tab-btn {
    padding: 9px 22px;
    border: 2px solid var(--border);
    border-radius: 25px;
    background: #fff;
    color: var(--text-mid);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.event-tab-btn.active, .event-tab-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===================== QUICK LINKS ===================== */
.quick-links-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 18px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    min-width: 120px;
    text-align: center;
    cursor: pointer;
}
.quick-link-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.quick-link-item img { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; }
.quick-link-item .ql-icon { width: 52px; height: 52px; background: rgba(27,94,32,.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); }
.quick-link-item span { font-size: 12.5px; font-weight: 600; color: var(--text-dark); }

/* ===================== TEAM ===================== */
.team-card {
    text-align: center;
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 30px 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card .avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid var(--primary);
    padding: 3px;
    background: var(--bg-white);
}
.team-card .avatar-placeholder {
    width: 100px; height: 100px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    color: #fff;
    font-weight: 700;
}
.team-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.team-card .position { color: var(--primary); font-size: 13.5px; font-weight: 600; }
.team-card .bio { color: var(--text-light); font-size: 13px; margin-top: 10px; }
.team-tabs { display: flex; gap: 8px; margin-bottom: 35px; flex-wrap: wrap; justify-content: center; }
.team-tab {
    padding: 9px 22px;
    border-radius: 25px;
    border: 2px solid var(--border);
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}
.team-tab.active, .team-tab:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===================== STATS ===================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1B6E2B 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::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='%23ffffff' 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");
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.stat-item { text-align: center; }
.stat-item .stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
    opacity: .85;
}
.stat-item .stat-count {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    line-height: 1;
    color: var(--secondary);
}
.stat-item .stat-label {
    font-size: 15px;
    opacity: .85;
    margin-top: 6px;
}

/* ===================== ADS ===================== */
.ad-zone { text-align: center; overflow: hidden; }
.ad-zone img { max-width: 100%; margin: 0 auto; }
.ad-top { margin: 15px 0; }
.ad-sidebar { margin-bottom: 20px; }

/* ===================== GALLERY ===================== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; }
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    position: relative;
    height: 200px;
    cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,94,32,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 28px; }

/* ===================== PAGE HEADER ===================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 55px 0 35px;
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--bg-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; margin-bottom: 10px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; opacity: .8; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { opacity: .5; }

/* ===================== SIDEBAR ===================== */
.content-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 35px; align-items: start; }
.rtl .content-sidebar { grid-template-columns: 300px 1fr; }
.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}
.widget-title {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
}
.widget-title i { margin-right: 8px; }
.widget-body { padding: 18px; }

.recent-news-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.recent-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-news-item img { width: 65px; height: 55px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.recent-news-item .rn-title { font-size: 13.5px; font-weight: 600; line-height: 1.35; margin-bottom: 5px; }
.recent-news-item .rn-title a:hover { color: var(--primary); }
.recent-news-item .rn-date { font-size: 12px; color: var(--text-light); }

/* ===================== ABOUT SECTION ===================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 25px; }
.about-card {
    background: linear-gradient(135deg, rgba(27,94,32,.06) 0%, rgba(27,94,32,.02) 100%);
    border: 1px solid rgba(27,94,32,.15);
    border-radius: var(--radius-sm);
    padding: 18px;
    text-align: center;
    transition: var(--transition);
}
.about-card:hover { background: var(--primary); color: #fff; transform: translateY(-4px); }
.about-card:hover .about-card-icon, .about-card:hover p { color: rgba(255,255,255,.85); }
.about-card-icon { font-size: 28px; color: var(--primary); margin-bottom: 8px; }
.about-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.about-card p { font-size: 12.5px; color: var(--text-light); line-height: 1.5; }

/* ===================== FOOTER ===================== */
.pre-footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 0;
    color: #fff;
}
.pre-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 35px; }
.footer-widget h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,.15);
    position: relative;
}
.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--secondary);
}
.footer-about p { font-size: 14px; opacity: .8; line-height: 1.7; margin-top: 12px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.75); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }
.footer-links i { font-size: 11px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; opacity: .8; }
.footer-contact i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: var(--primary-dark); border-color: var(--secondary); }

footer .footer-bottom {
    background: var(--primary-dark);
    color: rgba(255,255,255,.6);
    font-size: 13px;
    padding: 16px 0;
    text-align: center;
}
.footer-bottom a { color: var(--secondary); }

/* ===================== LIGHTBOX ===================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 25px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
}

/* ===================== MODAL ===================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
    background: #fff;
    border-radius: var(--radius);
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0,0,0,.3);
    animation: modalIn .3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(.9) translateY(30px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
}
.modal-header h3 { font-size: 17px; }
.modal-close { cursor: pointer; font-size: 22px; opacity: .8; }
.modal-close:hover { opacity: 1; }
.modal-body { padding: 25px; }

/* FORMS */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--text-dark); }
.form-control {
    width: 100%;
    padding: 11px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
    background: #fff;
    color: var(--text-dark);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,94,32,.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-text { font-size: 12.5px; color: var(--text-light); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* ALERTS */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}
.alert i { flex-shrink: 0; margin-top: 2px; }
.alert-success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.alert-danger { background: #ffebee; color: #b71c1c; border: 1px solid #ef9a9a; }
.alert-info { background: #e3f2fd; color: #0d47a1; border: 1px solid #90caf9; }
.alert-warning { background: #fff8e1; color: #e65100; border: 1px solid #ffe082; }

/* ===================== SINGLE NEWS ===================== */
.news-content { font-size: 16px; line-height: 1.85; color: var(--text-mid); }
.news-content p { margin-bottom: 18px; }
.news-content h2, .news-content h3 { color: var(--primary); margin: 25px 0 12px; }
.news-content ul, .news-content ol { padding-left: 25px; margin-bottom: 16px; }
.news-content li { margin-bottom: 7px; }
.news-content img { border-radius: var(--radius-sm); margin: 20px 0; box-shadow: var(--shadow); }
.news-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    background: rgba(27,94,32,.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    font-style: italic;
}

.share-box {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.share-box span { font-weight: 700; color: var(--text-dark); }
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
}
.share-btn:hover { opacity: .85; transform: translateY(-2px); }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }

/* ===================== BACK TO TOP ===================== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(27,94,32,.4);
    cursor: pointer;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 500;
    border: none;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ===================== PRELOADER ===================== */
.preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s, visibility .5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
    width: 60px; height: 60px;
    border: 5px solid #eee;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== RTL ADJUSTMENTS ===================== */
.rtl .topbar-left i { margin-right: 0; margin-left: 5px; }
.rtl nav ul li a i { margin-left: 0; margin-right: 4px; }
.rtl .footer-links a:hover { padding-left: 0; padding-right: 5px; }
.rtl .footer-widget h3::after { left: auto; right: 0; }
.rtl .news-content blockquote { border-left: none; border-right: 4px solid var(--primary); border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.rtl .widget-title i { margin-right: 0; margin-left: 8px; }
.rtl .content-sidebar { direction: rtl; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .pre-footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .content-sidebar { grid-template-columns: 1fr; }
    .rtl .content-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 50px 0; }
    .topbar .topbar-left { display: none; }
    .hamburger { display: flex; }
    nav {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--bg-white);
        box-shadow: 0 10px 30px rgba(0,0,0,.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }
    nav.mobile-open { max-height: 600px; }
    nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
    nav ul li a { border-radius: 0; padding: 12px 20px; border-bottom: 1px solid var(--border); }
    nav ul li ul { position: static; box-shadow: none; border: none; border-top: none; background: rgba(27,94,32,.04); }
    nav ul li ul li a { padding-left: 35px; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .slide img, .slide video, .slide iframe { height: 380px; }
    .slide-content { padding: 0 25px; }
    .pre-footer-grid { grid-template-columns: 1fr; }
    .about-cards { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .content-sidebar { grid-template-columns: 1fr; }
    .header-inner { flex-wrap: wrap; }
    .logo-text h1 { font-size: 15px; }
}

@media (max-width: 480px) {
    .slide img, .slide video, .slide iframe { height: 260px; }
    .slide-content h2 { font-size: 22px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .quick-links-grid { justify-content: flex-start; }
    .event-card { flex-direction: column; }
    .event-date-box { flex-direction: row; justify-content: flex-start; gap: 10px; padding: 12px 16px; }
}

/* =============================
   EKLENEN STILLER - EKSIK SINIFLAR
   ============================= */

/* Page Hero */
.page-hero { padding: 60px 0; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 10px; font-size: .9rem; opacity: .85; }
.breadcrumb-nav a { color: #fff; text-decoration: none; }
.breadcrumb-nav a:hover { text-decoration: underline; }

/* Section Padding */
.section-padding { padding: 60px 0; }
@media (max-width: 768px) { .section-padding { padding: 40px 0; } }

/* Section Title */
.section-title { font-size: 1.6rem; color: var(--primary); font-weight: 700; margin-bottom: 8px; padding-bottom: 12px; border-bottom: 3px solid var(--primary); display: inline-block; }

/* Empty State */
.empty-state { text-align: center; padding: 80px 20px; color: #aaa; }
.empty-state i { font-size: 4rem; display: block; margin-bottom: 16px; opacity: .3; }
.empty-state p { font-size: 1.1rem; }

/* News Grid */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.news-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: .3s; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.14); }
.news-card-img { display: block; height: 200px; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .3s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-no-img { height: 200px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--primary); opacity: .5; }
.news-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-meta { font-size: .82rem; color: #999; margin-bottom: 10px; }
.news-meta span { margin-right: 12px; }
.news-meta i { color: var(--primary); margin-right: 4px; }
.news-card-title { font-size: 1.05rem; margin: 0 0 10px; line-height: 1.4; flex: 1; }
.news-card-title a { color: #1a1a1a; text-decoration: none; }
.news-card-title a:hover { color: var(--primary); }
.news-card-excerpt { color: #666; font-size: .88rem; line-height: 1.6; margin-bottom: 12px; }
.read-more { color: var(--primary); font-weight: 600; text-decoration: none; font-size: .9rem; margin-top: auto; }
.read-more:hover { text-decoration: underline; }
.read-more i { transition: .2s; }
.read-more:hover i { transform: translateX(4px); }

/* Events Grid */
.event-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }
.event-tab { padding: 10px 24px; border-radius: 25px; border: 2px solid var(--primary); color: var(--primary); text-decoration: none; font-weight: 600; transition: .2s; }
.event-tab.active, .event-tab:hover { background: var(--primary); color: #fff; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 28px; }
.event-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: .3s; }
.event-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.14); }
.event-card-img-wrap { position: relative; height: 190px; overflow: hidden; }
.event-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.event-no-img { height: 100%; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--primary); opacity: .5; }
.event-status-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 700; }
.badge-primary { background: var(--primary); color: #fff; }
.badge-success { background: #2e7d32; color: #fff; }
.badge-secondary { background: #666; color: #fff; }
.badge-warning { background: #f57f17; color: #fff; }
.badge-danger { background: #c62828; color: #fff; }
.badge-info { background: #0277bd; color: #fff; }
.event-card-body { padding: 16px 20px; }
.event-date-box { display: flex; gap: 4px; align-items: baseline; margin-bottom: 8px; }
.event-day { font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
.event-month { font-size: .85rem; color: #888; font-weight: 600; }
.event-card-title { font-size: 1rem; margin: 0 0 8px; }
.event-card-title a { color: #1a1a1a; text-decoration: none; }
.event-card-title a:hover { color: var(--primary); }
.event-location { font-size: .85rem; color: #888; margin-bottom: 8px; }
.event-location i { color: var(--primary); margin-right: 4px; }
.event-excerpt { font-size: .87rem; color: #666; line-height: 1.5; margin-bottom: 10px; }

/* Article Layout (news/event detail) */
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .content-layout { grid-template-columns: 1fr; } }
.article-main { background: #fff; border-radius: 14px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.article-featured-img { margin: -32px -32px 28px; border-radius: 14px 14px 0 0; overflow: hidden; }
.article-featured-img img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.article-meta { display: flex; gap: 16px; font-size: .85rem; color: #888; margin-bottom: 20px; flex-wrap: wrap; }
.article-meta i { color: var(--primary); margin-right: 4px; }
.article-body { line-height: 1.9; color: #333; font-size: 1.02rem; }
.article-body img { max-width: 100%; border-radius: 8px; }
.article-body p { margin-bottom: 16px; }
.article-body h2,h3,h4 { color: var(--primary); margin: 24px 0 12px; }
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 32px; padding-top: 20px; border-top: 2px solid #f0f0f0; }
.article-share span { font-weight: 600; color: #555; }
.share-btn { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: .2s; }
.share-btn:hover { transform: scale(1.15); }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }

/* Sidebar */
.article-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget { background: #fff; border-radius: 14px; padding: 20px; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.widget-title { font-size: 1.05rem; color: var(--primary); font-weight: 700; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid #e8f5e9; }
.related-news-item { display: flex; gap: 10px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #f0f0f0; }
.related-news-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.related-news-item img { width: 70px; height: 50px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.related-news-item a { color: #333; text-decoration: none; font-size: .88rem; font-weight: 500; display: block; margin-bottom: 4px; }
.related-news-item a:hover { color: var(--primary); }
.related-news-item span { font-size: .78rem; color: #999; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Pagination */
.pagination-wrap { display: flex; justify-content: center; margin-top: 40px; }
.pagination { display: flex; gap: 6px; list-style: none; padding: 0; margin: 0; }
.pagination li a, .pagination li span { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; border: 2px solid #e0e0e0; color: #333; text-decoration: none; font-weight: 600; transition: .2s; }
.pagination li.active span, .pagination li a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Auth pages */
.auth-card { background: #fff; border-radius: 16px; padding: 36px; box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.auth-links { display: flex; justify-content: space-between; margin-top: 16px; font-size: .9rem; }
.auth-links a { color: var(--primary); text-decoration: none; }
.auth-links a:hover { text-decoration: underline; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: #333; font-size: .95rem; }
.form-control { width: 100%; padding: 12px 14px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 1rem; transition: .2s; box-sizing: border-box; font-family: inherit; background: #fff; }
.form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(27,94,32,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; }
.alert-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.alert-danger { background: #ffebee; border: 1px solid #ef9a9a; color: #c62828; }
.alert i { margin-right: 8px; }

/* Stats section */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 32px; text-align: center; }
.stat-item { }
.stat-icon { font-size: 2rem; opacity: .8; margin-bottom: 8px; }
.stat-number { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.stat-suffix { font-size: 1.2rem; font-weight: 600; }
.stat-label { font-size: .9rem; opacity: .85; margin-top: 6px; }

/* Announcements bar */
.announcement-bar { background: var(--primary); color: #fff; padding: 10px 0; font-size: .88rem; position: relative; }
.announcement-ticker { display: flex; align-items: center; gap: 12px; overflow: hidden; }
.announcement-label { background: rgba(0,0,0,.2); padding: 3px 10px; border-radius: 12px; white-space: nowrap; font-weight: 600; flex-shrink: 0; }
.announcement-text { display: flex; gap: 24px; overflow: hidden; }
.announcement-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; line-height: 1; }

/* Ad areas */
.ad-top, .ad-bottom { background: #f5f5f5; padding: 12px 0; text-align: center; }

/* Header */
.site-header { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.1); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.site-logo img { max-height: 52px; display: block; }
.site-logo-text { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.header-nav { display: flex; align-items: center; gap: 4px; }
.nav-item-wrap { position: relative; }
.nav-link { padding: 8px 14px; color: #333; text-decoration: none; font-weight: 600; border-radius: 8px; transition: .2s; display: flex; align-items: center; gap: 6px; font-size: 19px; white-space: nowrap; }
.nav-link:hover { background: #e8f5e9; color: var(--primary); }
.nav-arrow { font-size: .7rem; transition: .2s; }
.nav-item-wrap:hover .nav-arrow { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.12); border-radius: 12px; min-width: 200px; padding: 8px; display: none; z-index: 100; }
.nav-item-wrap:hover .dropdown-menu { display: block; }
.dropdown-item { display: block; padding: 8px 14px; color: #333; text-decoration: none; border-radius: 8px; font-size: .9rem; transition: .2s; }
.dropdown-item:hover { background: #e8f5e9; color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn { padding: 4px 10px; border-radius: 6px; border: 2px solid #e0e0e0; color: #555; text-decoration: none; font-size: .85rem; font-weight: 700; transition: .2s; }
.lang-btn.active, .lang-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.member-btn { padding: 8px 14px; background: var(--primary); color: #fff; border-radius: 8px; text-decoration: none; font-size: .88rem; font-weight: 600; transition: .2s; white-space: nowrap; }
.member-btn:hover { background: #145214; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: #333; border-radius: 2px; transition: .3s; }
@media (max-width: 900px) {
    .header-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.1); flex-direction: column; align-items: stretch; padding: 16px; gap: 4px; }
    .header-nav.open { display: flex; }
    .hamburger { display: flex; }
    .dropdown-menu { position: static; box-shadow: none; display: none !important; padding-left: 16px; }
}

/* Footer */
.site-footer { background: #0f2819; color: #ccc; }
.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { max-height: 56px; margin-bottom: 14px; filter: brightness(10);display:none; }
.footer-brand { color: #fff; font-size: 1.3rem; font-weight: 800; margin: 0 0 12px; }
.footer-about { font-size: .88rem; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: .2s; font-size: .9rem; }
.social-icon:hover { background: var(--primary); }
.footer-col-title { color: #fff; font-size: 1rem; font-weight: 700; margin: 0 0 18px; padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,.1); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #aaa; text-decoration: none; font-size: .88rem; transition: .2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links i { color: var(--primary); margin-right: 6px; }
.footer-news { list-style: none; padding: 0; margin: 0; }
.footer-news li { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-news a { color: #aaa; text-decoration: none; font-size: .87rem; display: block; transition: .2s; }
.footer-news a:hover { color: #fff; }
.footer-news span { font-size: .77rem; color: #666; display: block; margin-top: 2px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .87rem; align-items: flex-start; }
.footer-contact i { color: var(--primary); width: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #aaa; text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { background: rgba(0,0,0,.3); padding: 16px 0; text-align: center; font-size: .82rem; color: #666; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 8px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; font-size: .95rem; transition: .2s; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #145214; color: #fff; }
.btn-secondary { background: #666; color: #fff; }
.btn-secondary:hover { background: #444; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* Content narrow */
.content-narrow { max-width: 800px; margin: 0 auto; }
