/* ==========================================================================
   EB-SOD (Erzurum Belediyesi Şoför - Operatör Dayanışma ve Yardımlaşma Derneği)
   Master Stylesheet - Replicating Design Mockups Identically
   ========================================================================== */

:root {
    --primary-dark: #061326;
    --primary-navy: #0a192f;
    --primary-blue: #0f2744;
    --gold: #c88a35;
    --gold-hover: #b3782b;
    --gold-light: #fef8ee;
    --gold-subtle: rgba(200, 138, 53, 0.12);
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(6, 19, 38, 0.08);
    --shadow-lg: 0 10px 25px rgba(6, 19, 38, 0.12);
    --transition: all 0.25s ease-in-out;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
    background-color: #071527;
    color: #cbd5e1;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.topbar-item i {
    color: var(--gold);
    font-size: 13px;
}

.topbar-item a {
    color: #ffffff;
}

.topbar-item a:hover {
    color: var(--gold);
}

.topbar-divider {
    color: rgba(255, 255, 255, 0.2);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-hours {
    color: #cbd5e1;
    font-size: 12.5px;
    font-weight: 500;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 11.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.topbar-social a:hover {
    border-color: var(--gold);
    background-color: var(--gold);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ==========================================================================
   MAIN HEADER & NAVBAR
   ========================================================================== */
.main-header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 990;
    box-shadow: 0 2px 10px rgba(6, 19, 38, 0.05);
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                backdrop-filter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 28px rgba(6, 19, 38, 0.09);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    transition: min-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.main-header.scrolled .header-inner {
    min-height: 74px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    padding: 2px 0;
    overflow: visible;
}

.logo-img {
    height: auto;
    max-height: 74px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s ease;
}

.header-logo:hover .logo-img {
    transform: none;
}

.main-header.scrolled .logo-img {
    max-height: 60px;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1e293b;
    padding: 10px 2px;
    position: relative;
    transition: color 0.2s ease;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #b58842 0%, #d4a359 100%);
    border-radius: 3px;
    transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-arrow {
    font-size: 10px;
    margin-left: 2px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
    opacity: 0.65;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: #b58842;
}

.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
    color: #b58842;
    opacity: 1;
}

/* ==========================================================================
   ULTRA-LUXURY CORPORATE DROPDOWN MENU
   ========================================================================== */
.has-dropdown {
    position: relative;
}

/* Hover bridge so cursor transitioning from nav-link to dropdown doesn't flicker */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 14px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 285px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(212, 163, 89, 0.28);
    box-shadow: 0 24px 54px -8px rgba(6, 19, 38, 0.20), 
                0 6px 18px -2px rgba(0, 0, 0, 0.05), 
                0 0 0 1px rgba(212, 163, 89, 0.10);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.97);
    transform-origin: top left;
    transition: opacity 0.24s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.24s ease;
    z-index: 1050;
    pointer-events: none;
}

/* Luminous Gold Hairline on top */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 2.5px;
    background: linear-gradient(90deg, transparent 0%, #b58842 20%, #fae6bd 50%, #b58842 80%, transparent 100%);
    border-radius: 4px;
    z-index: 2;
}

/* Top Pointer Arrow (Tooltip Caret) */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 28px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top: 1px solid rgba(212, 163, 89, 0.35);
    border-left: 1px solid rgba(212, 163, 89, 0.35);
    transform: rotate(45deg);
    border-radius: 2px;
    z-index: 1;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-menu li {
    margin: 3px 0;
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    background: transparent;
    border: 1px solid transparent;
}

/* Left Icon Container Badge */
.dropdown-item-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.12) 0%, rgba(212, 163, 89, 0.04) 100%);
    border: 1px solid rgba(212, 163, 89, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b58842;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.dropdown-item-icon i {
    transition: transform 0.25s ease;
}

/* Text Content Wrapper */
.dropdown-item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.dropdown-item-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0b1a2d;
    line-height: 1.25;
    transition: color 0.2s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.dropdown-item-desc {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.35;
    margin-top: 2px;
    transition: color 0.2s ease;
}

/* Right Chevron Arrow */
.dropdown-item-arrow {
    font-size: 10px;
    color: #d4a359;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.22s ease;
    margin-left: auto;
}

/* Hover State */
.dropdown-menu li a:hover {
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.09) 0%, rgba(11, 26, 45, 0.03) 100%);
    border-color: rgba(212, 163, 89, 0.28);
    transform: translateX(3px);
}

.dropdown-menu li a:hover .dropdown-item-icon {
    background: linear-gradient(135deg, #d4a359 0%, #b58842 100%);
    color: #ffffff;
    border-color: #d4a359;
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(181, 136, 66, 0.35);
}

.dropdown-menu li a:hover .dropdown-item-icon i {
    transform: scale(1.1);
}

.dropdown-menu li a:hover .dropdown-item-title {
    color: #b58842;
}

.dropdown-menu li a:hover .dropdown-item-desc {
    color: #334155;
}

.dropdown-menu li a:hover .dropdown-item-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Active State (Current Page) */
.dropdown-menu li a.active {
    background: linear-gradient(90deg, rgba(212, 163, 89, 0.14) 0%, rgba(212, 163, 89, 0.04) 100%);
    border-color: rgba(212, 163, 89, 0.4);
}

.dropdown-menu li a.active .dropdown-item-icon {
    background: linear-gradient(135deg, #d4a359 0%, #b58842 100%);
    color: #ffffff;
    border-color: #d4a359;
    box-shadow: 0 3px 10px rgba(181, 136, 66, 0.3);
}

.dropdown-menu li a.active .dropdown-item-title {
    color: #92400e;
    font-weight: 800;
}

.dropdown-menu li a.active .dropdown-item-arrow {
    opacity: 0.8;
    transform: translateX(0);
}

/* Header Action Buttons & CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-search-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-search-toggle:hover {
    background: #061326;
    color: #ffffff;
    border-color: #061326;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 19, 38, 0.15);
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #b58842 0%, #d4a359 100%);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 11px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(181, 136, 66, 0.32);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}

.btn-header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -85%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 136, 66, 0.45);
    color: #ffffff;
}

.btn-header-cta:hover::before {
    left: 140%;
}

.btn-header-cta i {
    font-size: 13px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 6px;
    border-radius: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background-color: #061326;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: #061326;
    border-color: #061326;
}

.mobile-toggle:hover span {
    background-color: #ffffff;
}

/* Mobile Nav Drawer Internals (Default Desktop: Hidden) */
.mobile-nav-header,
.mobile-nav-footer {
    display: none;
}

/* ==========================================================================
   SEARCH MODAL - LUXURY FLOATING HIGH-CONTRAST DIALOG
   ========================================================================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.search-modal.active {
    display: flex !important;
    opacity: 1 !important;
}

.search-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 10, 24, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.search-modal-dialog {
    position: relative;
    width: 92%;
    max-width: 660px;
    z-index: 2;
    transform: translateY(-20px) scale(0.96);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal.active .search-modal-dialog {
    transform: translateY(0) scale(1);
}

.search-modal-card {
    background: linear-gradient(180deg, #0d223f 0%, #071527 100%) !important;
    border: 2px solid #d4a359 !important;
    border-radius: 20px !important;
    padding: 28px 32px !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 45px rgba(212, 163, 89, 0.25) !important;
    position: relative;
}

.search-modal-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 22px !important;
    padding-bottom: 16px !important;
    border-bottom: 1px solid rgba(212, 163, 89, 0.25) !important;
}

.search-modal-title {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    letter-spacing: 0.4px !important;
}

.search-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(212, 163, 89, 0.18);
    border: 1px solid rgba(212, 163, 89, 0.45);
    border-radius: 8px;
    color: #d4a359 !important;
    font-size: 15px;
}

.search-modal-close-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 16px !important;
    transition: all 0.22s ease !important;
}

.search-modal-close-btn:hover {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
    transform: rotate(90deg) scale(1.08);
}

.search-modal-form {
    display: flex !important;
    gap: 12px !important;
    align-items: stretch !important;
    margin-bottom: 22px !important;
    width: 100% !important;
}

.search-input-box {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: #08172c !important;
    border: 2px solid rgba(212, 163, 89, 0.4) !important;
    border-radius: 14px !important;
    padding: 12px 18px !important;
    transition: all 0.25s ease !important;
}

.search-input-box:focus-within {
    border-color: #d4a359 !important;
    box-shadow: 0 0 22px rgba(212, 163, 89, 0.35) !important;
    background: #0b1f3b !important;
}

.search-input-icon {
    color: #d4a359 !important;
    font-size: 17px !important;
    flex-shrink: 0 !important;
}

.search-input-box input,
#searchModalInput,
#searchModal input[type="text"] {
    flex: 1 !important;
    width: 100% !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
}

.search-input-box input:focus,
#searchModalInput:focus,
#searchModal input[type="text"]:focus {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
}

.search-input-box input::placeholder,
#searchModalInput::placeholder {
    color: #94a3b8 !important;
    opacity: 1 !important;
}

.search-kbd-chip {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #e2e8f0 !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    letter-spacing: 0.5px !important;
    flex-shrink: 0 !important;
}

.search-submit-btn {
    background: linear-gradient(135deg, #d4a359 0%, #b8863b 100%) !important;
    color: #061326 !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    padding: 0 24px !important;
    border-radius: 14px !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    letter-spacing: 0.8px !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 16px rgba(212, 163, 89, 0.35) !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.search-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 22px rgba(212, 163, 89, 0.55) !important;
    background: #e2b36c !important;
    color: #061326 !important;
}

.search-modal-suggestions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 22px !important;
}

.suggestions-label {
    font-size: 11.5px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    color: #d4a359 !important;
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
}

.suggestions-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.sug-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid rgba(212, 163, 89, 0.35) !important;
    color: #f1f5f9 !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    padding: 7px 14px !important;
    border-radius: 20px !important;
    transition: all 0.22s ease !important;
    text-decoration: none !important;
}

.sug-tag i {
    color: #d4a359 !important;
    font-size: 12px !important;
    transition: color 0.2s ease !important;
}

.sug-tag:hover {
    background: #d4a359 !important;
    border-color: #d4a359 !important;
    color: #061326 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 14px rgba(212, 163, 89, 0.35) !important;
}

.sug-tag:hover i {
    color: #061326 !important;
}

.search-modal-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 12px !important;
    color: #cbd5e1 !important;
}

.search-modal-footer kbd {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    padding: 3px 8px !important;
    border-radius: 5px !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    font-family: inherit !important;
    font-weight: 700 !important;
    font-size: 11px !important;
}

/* ==========================================================================
   HERO AREA (HOME)
   ========================================================================== */
.home-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
    background-color: #051020;
}

.hero-slides-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: right center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    z-index: 1;
    transform: none !important;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: none !important;
    animation: none !important;
}

@keyframes heroKenBurns {
    0%, 100% {
        transform: none !important;
    }
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(5, 16, 32, 0.96) 0%,
        rgba(5, 16, 32, 0.88) 36%,
        rgba(5, 16, 32, 0.48) 60%,
        rgba(5, 16, 32, 0.15) 80%,
        rgba(5, 16, 32, 0.05) 100%
    );
    z-index: 1;
}

.hero-container,
.hero-fluid-wrap {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
    padding: 72px 0 64px 0;
    text-align: left;
}

.hero-badge-wrap {
    margin-bottom: 22px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: rgba(181, 136, 66, 0.22);
    border: 1px solid rgba(212, 163, 89, 0.55);
    padding: 8px 22px;
    border-radius: 999px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.hero-tag:hover {
    border-color: var(--gold);
    background: rgba(181, 136, 66, 0.35);
    box-shadow: 0 6px 25px rgba(212, 163, 89, 0.45);
    transform: translateY(-1px);
}

.hero-tag-pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px #4ade80, 0 0 20px rgba(74, 222, 128, 0.6);
    display: inline-block;
    animation: pulseActiveDot 2s infinite ease-in-out;
}

@keyframes pulseActiveDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.hero-title {
    font-size: clamp(34px, 4.4vw, 54px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-desc {
    font-size: 16.5px;
    color: #f1f5f9;
    line-height: 1.75;
    margin-bottom: 34px;
    max-width: 600px;
    background: rgba(5, 16, 32, 0.55);
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    border-radius: 0 12px 12px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4a359 0%, #b58842 100%);
    color: #061326 !important;
    font-weight: 800;
    font-size: 14px;
    padding: 15px 32px;
    border-radius: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(181, 136, 66, 0.45);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary-gold i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.btn-primary-gold:hover {
    background: linear-gradient(135deg, #e5b369 0%, #c99342 100%);
    color: #061326 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(181, 136, 66, 0.65);
}

.btn-primary-gold:hover i {
    transform: translateX(4px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 15px 32px;
    border-radius: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.btn-outline-white i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #061326 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover i {
    transform: translateX(4px);
    color: #061326;
}

/* Hero Trust & Verification Badges */
.hero-trust-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 100%;
}

.hero-trust-card,
.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(6, 19, 38, 0.82);
    border: 1px solid rgba(212, 163, 89, 0.45);
    padding: 8px 16px 8px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #f1f5f9 !important;
    text-decoration: none !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    flex: 0 0 auto;
}

.hero-trust-card:hover,
.hero-trust-item:hover {
    background: rgba(11, 26, 45, 0.92);
    border-color: var(--gold);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 163, 89, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-trust-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.28) 0%, rgba(181, 136, 66, 0.16) 100%);
    border: 1px solid rgba(212, 163, 89, 0.6);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 163, 89, 0.3);
}

.hero-trust-card:hover .hero-trust-icon-box {
    background: linear-gradient(135deg, #d4a359 0%, #b58842 100%);
    color: #061326;
    border-color: #d4a359;
    box-shadow: 0 0 14px rgba(212, 163, 89, 0.6);
}

.hero-trust-label {
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.hero-trust-arrow {
    font-size: 10px;
    color: var(--gold);
    opacity: 0.5;
    transition: all 0.25s ease;
    margin-left: 2px;
}

.hero-trust-card:hover .hero-trust-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.hero-trust-sep {
    display: none;
}

/* Hero Carousel Navigation Arrows */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(5, 16, 32, 0.65);
    border: 1px solid rgba(212, 163, 89, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.hero-nav-arrow:hover {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(212, 163, 89, 0.6);
    transform: translateY(-50%);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

@media (min-width: 1440px) {
    .hero-prev {
        left: calc((100% - 1320px) / 2 - 28px);
    }
    .hero-next {
        right: calc((100% - 1320px) / 2 - 28px);
    }
}

@media (max-width: 768px) {
    .hero-nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }
}

/* Hero Carousel Dots */
.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
    background-color: var(--gold);
    width: 28px;
    box-shadow: 0 0 10px rgba(212, 163, 89, 0.6);
    border-color: var(--gold);
}

/* ==========================================================================
   PAGE HERO BANNER (SUBPAGES)
   ========================================================================== */
.page-hero-banner {
    position: relative;
    background: #061326 url('../images/hero-erzurum-alt.jpg') center center / cover no-repeat;
    padding: 50px 0;
    color: #ffffff;
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(6, 19, 38, 0.95) 0%, rgba(6, 19, 38, 0.85) 50%, rgba(6, 19, 38, 0.6) 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.page-hero-text {
    max-width: 650px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 12px;
}

.breadcrumbs a {
    color: var(--gold);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-title {
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.15;
}

.page-hero-desc {
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Header Stats Box (Lüks Cam Kart & Sayaç Rozetleri) */
.header-stats-box {
    background: linear-gradient(145deg, rgba(6, 19, 38, 0.95) 0%, rgba(13, 27, 62, 0.88) 100%);
    border: 1px solid rgba(212, 163, 89, 0.32);
    border-radius: 18px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    box-shadow: 0 20px 42px -10px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 0 30px rgba(212, 163, 89, 0.06) inset;
    position: relative;
    flex-shrink: 0;
    min-width: 0;
}

.header-stats-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a359 50%, transparent);
    border-radius: 99px;
}

.header-stat-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4px 10px;
    position: relative;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header-stat-item:hover {
    transform: translateY(-3px);
}

.header-stat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.18) 0%, rgba(212, 163, 89, 0.06) 100%);
    border: 1px solid rgba(212, 163, 89, 0.32);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header-stat-icon-wrap i {
    font-size: 19px;
    color: var(--gold);
    filter: drop-shadow(0 2px 6px rgba(212, 163, 89, 0.45));
    transition: transform 0.28s ease;
    margin-bottom: 0;
}

.header-stat-item:hover .header-stat-icon-wrap {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.3) 0%, rgba(212, 163, 89, 0.14) 100%);
    border-color: rgba(212, 163, 89, 0.65);
    box-shadow: 0 6px 20px rgba(212, 163, 89, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.header-stat-item:hover .header-stat-icon-wrap i {
    transform: none;
}

.header-stat-num {
    font-size: clamp(19px, 2vw, 25px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    display: inline-block;
}

.header-stat-lbl {
    font-size: 11px;
    color: #cbd5e1;
    margin-top: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.92;
}

.header-stat-sep {
    flex: 0 0 1px;
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, rgba(212, 163, 89, 0.35) 50%, transparent);
    margin: 0 4px;
}

/* Canlı Konum Vurgusu için Yanıp Sönen Yeşil/Altın Nokta */
.stat-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    display: inline-block;
    animation: statPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes statPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ==========================================================================
   HOME SECTION: HAKKIMIZDA (3-Column Layout)
   ========================================================================== */
.home-about-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.section-kicker {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.section-heading-dark {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.15;
    margin-bottom: 0;
    text-transform: uppercase;
}

.about-title-line {
    width: 38px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    margin: 12px 0 18px;
}

.about-intro-text {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #061326;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-read-more:hover {
    background-color: #0f2744;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Feature mini-boxes */
.about-features-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-mini-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 2px 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: none;
}

.feature-mini-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 6px;
    border: 1.5px solid #d4a359;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a359;
    font-size: 19px;
    background: #ffffff;
}

.feature-mini-content h4 {
    font-size: 13.5px;
    font-weight: 800;
    color: #061326;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.feature-mini-content p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

/* Video Card on Home */
.about-video-card {
    background: #061326;
    border-radius: 12px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(6, 19, 38, 0.16);
    border: 1px solid rgba(212, 163, 89, 0.25);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(6, 19, 38, 0.28);
    border-color: rgba(212, 163, 89, 0.65);
}

.video-card-thumb {
    position: relative;
    aspect-ratio: 16/10;
    min-height: 170px;
    overflow: hidden;
    background: #061326;
}

.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-video-card:hover .video-card-thumb img {
    transform: scale(1.06);
}

.video-thumb-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(6, 19, 38, 0.88);
    color: #ffffff;
    border: 1px solid rgba(212, 163, 89, 0.45);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.video-thumb-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(6, 19, 38, 0.55);
    border: 2px solid #d4a359;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-gold-ring 2.4s infinite cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

@keyframes pulse-gold-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 163, 89, 0.7);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(212, 163, 89, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 163, 89, 0);
    }
}

.video-play-overlay i {
    margin-left: 3px;
}

.video-play-overlay:hover {
    background: rgba(212, 163, 89, 0.85);
    color: #061326;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-body {
    padding: 16px 18px 20px;
}

.video-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.video-card-body h3 {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.video-card-body p {
    font-size: 12.5px;
    color: #cbd5e1;
    line-height: 1.55;
    margin: 0;
}

.video-card-body .highlight {
    color: #d4a359;
    font-weight: 600;
}

/* ==========================================================================
   SERVICES SECTION (HİZMETLERİMİZ)
   ========================================================================== */
.services-section {
    padding: 70px 0;
    background-color: var(--bg-light);
}

.section-center-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-center-head h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-center-head h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--gold);
    color: #ffffff;
}

.service-card h3 {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.service-link {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.service-card:hover .service-link {
    color: var(--gold);
}

/* ==========================================================================
/* ==========================================================================
   STATS COUNTER RIBBON (WITH ERZURUM SKYLINE ARTWORK)
   ========================================================================== */
/* ==========================================================================
   STATS COUNTER RIBBON (COMPACT ULTRA-LUXURY REDESIGN)
   ========================================================================== */
.stats-ribbon {
    background: linear-gradient(180deg, rgba(4, 13, 27, 0.90) 0%, rgba(7, 20, 38, 0.94) 50%, rgba(3, 10, 22, 0.97) 100%),
                url('../images/hero-erzurum.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 24px 0 22px;
    position: relative;
    border-top: 1px solid rgba(212, 163, 89, 0.35);
    border-bottom: 1px solid rgba(212, 163, 89, 0.35);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stats-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 163, 89, 0.9) 50%, transparent 100%);
    z-index: 1;
}

.stats-ribbon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 163, 89, 0.7) 50%, transparent 100%);
    z-index: 1;
}

/* Erzurum Skyline Watermark Backdrop */
.stats-skyline-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.22;
    mix-blend-mode: screen;
}

.stats-skyline-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Section Header - Ultra Sleek & Compact */
.stats-section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
}

.stats-ribbon-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 163, 89, 0.12);
    border: 1px solid rgba(212, 163, 89, 0.32);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #f7e1b5;
    text-transform: uppercase;
    margin-bottom: 5px;
    backdrop-filter: blur(8px);
}

.badge-pulse-gold {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4a359;
    box-shadow: 0 0 8px #d4a359;
    animation: badgePulse 2s infinite;
}

.stats-ribbon-title {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 3px;
    letter-spacing: -0.2px;
}

.stats-ribbon-sub {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
    max-width: 620px;
    margin: 0 auto;
}

/* 4-Card Luxury Grid - Equal Dimensions & Symmetrical Balance */
.stats-grid-ultra,
.stats-items-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}

/* Ultra Luxury Equal Stat Card */
.stat-card-ultra,
.stat-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 18px 20px;
    height: 100%;
    min-height: 165px;
    border-radius: 16px;
    background: rgba(6, 19, 38, 0.82);
    border: 1.5px solid rgba(212, 163, 89, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: default;
}

.stat-card-ultra::before,
.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #d4a359 50%, transparent 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.stat-card-ultra:hover,
.stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 163, 89, 0.85);
    background: rgba(9, 25, 48, 0.92);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 163, 89, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-card-ultra:hover::before,
.stat-box:hover::before {
    opacity: 1;
}

.stat-card-ambient {
    display: none !important;
}

/* Emblem Icon Container - Uniform Size */
.stat-emblem-wrap {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.22) 0%, rgba(6, 19, 38, 0.85) 100%);
    border: 1.5px solid rgba(212, 163, 89, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), inset 0 0 8px rgba(212, 163, 89, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.stat-emblem-icon {
    color: #e2b968;
    font-size: 20px;
    filter: drop-shadow(0 2px 5px rgba(212, 163, 89, 0.4));
    transition: all 0.3s ease;
}

.stat-card-ultra:hover .stat-emblem-wrap,
.stat-box:hover .stat-emblem-wrap {
    transform: scale(1.08);
    border-color: #fae6bd;
    box-shadow: 0 6px 18px rgba(212, 163, 89, 0.5), inset 0 0 12px rgba(212, 163, 89, 0.35);
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.35) 0%, rgba(6, 19, 38, 0.95) 100%);
}

.stat-card-ultra:hover .stat-emblem-icon,
.stat-box:hover .stat-emblem-icon {
    color: #ffffff;
    filter: drop-shadow(0 0 10px #d4a359);
}

/* Data Column Wrap - Uniform Centered Flow */
.stat-info-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    flex: 1;
    z-index: 2;
}

/* Metallic Gold Typography - Equal, Bold & Prominent */
.stat-number-ultra,
.stat-number {
    font-size: 32px;
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-variant-numeric: tabular-nums;
    display: block;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 15%, #fae6bd 60%, #d4a359 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.stat-card-ultra:hover .stat-number-ultra,
.stat-card-ultra:hover .stat-number,
.stat-box:hover .stat-number-ultra,
.stat-box:hover .stat-number {
    transform: scale(1.05);
}

/* Luxury Label Badge - Full Width, No Truncation, Equal Height */
.stat-label-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 163, 89, 0.25);
    border-radius: 10px;
    padding: 6px 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #e2e8f0;
    text-transform: uppercase;
    white-space: normal;
    text-align: center;
    width: 100%;
    max-width: 100%;
    min-height: 38px;
    line-height: 1.35;
    transition: all 0.3s ease;
}

.stat-label-text {
    display: inline-block;
    word-break: normal;
    overflow-wrap: break-word;
}

.stat-label-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d4a359;
    box-shadow: 0 0 6px #d4a359;
    flex-shrink: 0;
}

.stat-card-ultra:hover .stat-label-badge,
.stat-box:hover .stat-label-badge {
    background: rgba(212, 163, 89, 0.18);
    border-color: rgba(212, 163, 89, 0.65);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(212, 163, 89, 0.25);
}

/* ==========================================================================
   LOCAL HTML5 VIDEO MODAL
   ========================================================================== */
.local-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 12, 24, 0.88);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.local-video-modal.active {
    display: flex;
    opacity: 1;
}

.local-video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212, 163, 89, 0.35);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.local-video-modal.active .local-video-container {
    transform: scale(1);
}

.local-video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000000;
    outline: none;
}

.local-video-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: #061326;
    border: 2px solid #ffffff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

.local-video-close:hover {
    background: #ffffff;
    color: #dc2626;
    transform: rotate(90deg) scale(1.1);
}

/* ==========================================================================
   MODERN FAQ (S.S.S.) INTERACTIVE COMPONENTS
   ========================================================================== */
.faq-search-wrap {
    position: relative;
    margin-bottom: 28px;
}

.faq-search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14.5px;
    font-family: inherit;
    color: #0f172a;
    transition: all 0.25s ease;
}

.faq-search-input:focus {
    background: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 163, 89, 0.18);
    outline: none;
}

.faq-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 18px;
    pointer-events: none;
}

.faq-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.faq-pill {
    padding: 8px 16px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12.5px;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-pill:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.faq-pill.active {
    background: #061326;
    color: #d4a359;
    border-color: #061326;
    box-shadow: 0 2px 8px rgba(6, 19, 38, 0.15);
}

.faq-accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-accordion-item:hover {
    border-color: rgba(212, 163, 89, 0.5);
    box-shadow: 0 4px 14px rgba(6, 19, 38, 0.04);
}

.faq-accordion-item.active {
    border-color: var(--gold);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(212, 163, 89, 0.12);
}

.faq-accordion-header {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.faq-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-badge-num {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(212, 163, 89, 0.12);
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-badge-num {
    background: var(--gold);
    color: #ffffff;
}

.faq-title-text {
    font-size: 15px;
    font-weight: 700;
    color: #061326;
    margin: 0;
}

.faq-toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    background: var(--gold);
    color: #ffffff;
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
    color: #475569;
    font-size: 13.5px;
    line-height: 1.7;
    border-top: 1px solid transparent;
}

.faq-accordion-item.active .faq-accordion-body {
    max-height: 500px;
    padding: 14px 22px 20px 22px;
    border-top-color: #f1f5f9;
}

/* ==========================================================================
   FOOTER DYNAMIC ANNOUNCEMENT WIDGET
   ========================================================================== */
.footer-announcements-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-announcement-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-announcement-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-announcement-date {
    background: rgba(212, 163, 89, 0.15);
    border: 1px solid rgba(212, 163, 89, 0.3);
    color: var(--gold);
    border-radius: 6px;
    padding: 4px 6px;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    min-width: 44px;
    line-height: 1.2;
    flex-shrink: 0;
}

.footer-announcement-title {
    font-size: 12.5px;
    color: #cbd5e1;
    line-height: 1.4;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-announcement-title:hover {
    color: var(--gold);
}

/* ==========================================================================
   HOME 3-COLUMN CONTENT BLOCK: DUYURULAR / ETKİNLİKLER / HIZLI ERİŞİM
   ========================================================================== */
/* ==========================================================================
   HOMEPAGE TRIO SECTION (DUYURULAR / ETKİNLİKLER / HIZLI ERİŞİM)
   Balanced Equal-Height Grid & Polished Micro-Interactions
   ========================================================================== */
.home-trio-section {
    padding: 50px 0 65px;
    background-color: #f8fafc;
    border-bottom: 1px solid #edf2f7;
}

.home-trio-grid {
    display: grid;
    grid-template-columns: 1.08fr 1.32fr 0.82fr;
    gap: 26px;
    align-items: stretch;
}

.trio-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trio-col-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 18px;
    padding-bottom: 4px;
    min-height: 54px;
}

.trio-title-wrap {
    display: flex;
    flex-direction: column;
}

.trio-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #b58842;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.trio-title {
    font-size: 21px;
    font-weight: 800;
    color: #061326;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    line-height: 1.15;
    text-transform: uppercase;
}

.trio-title-line {
    width: 50px;
    height: 3.5px;
    background: linear-gradient(90deg, #b58842 0%, #d4a359 100%);
    border-radius: 2px;
}

.trio-view-all {
    font-size: 11px;
    font-weight: 800;
    color: #08172c;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.trio-view-all:hover {
    background: #08172c;
    color: #ffffff;
    border-color: #08172c;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(8, 23, 44, 0.15);
}

/* Col 1: Announcements List - Equal Height Stretch */
.announcements-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.announcement-item-home {
    flex: 1;
    display: flex;
    align-items: stretch;
    gap: 14px;
    padding: 15px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(6, 19, 38, 0.03);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 145px;
}

.announcement-item-home:hover {
    border-color: #d4a359;
    box-shadow: 0 8px 24px rgba(6, 19, 38, 0.08);
    transform: translateY(-2px);
}

.date-badge-box {
    min-width: 58px;
    width: 58px;
    background: linear-gradient(180deg, #071527 0%, #0d223d 100%);
    color: #ffffff;
    border-radius: 8px;
    border-top: 3px solid #b58842;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    padding: 6px 2px;
    box-shadow: 0 3px 8px rgba(7, 21, 39, 0.15);
}

.date-badge-day {
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
}

.date-badge-sub.month {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #fae6bd;
    line-height: 1.1;
    margin-top: 4px;
}

.date-badge-sub.year {
    font-size: 9px;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.1;
    margin-top: 2px;
}

.announcement-item-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.announcement-cat-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(181, 136, 66, 0.1);
    color: #9a6f27;
    margin-bottom: 4px;
}

.announcement-item-content h4 {
    font-size: 14.5px;
    font-weight: 800;
    color: #061326;
    margin-bottom: 4px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.announcement-item-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.announcement-item-home:hover .announcement-item-content h4 a {
    color: #b58842;
}

.announcement-item-content p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.announcement-link {
    font-size: 11px;
    font-weight: 800;
    color: #061326;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.announcement-link:hover {
    color: #b58842;
}

.announcement-link:hover i {
    transform: translateX(3px);
}

/* Col 2: Event Cards - Equal Height Stretch */
.events-list-home {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.event-card-home {
    flex: 1;
    display: flex;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    padding: 14px 16px;
    gap: 16px;
    align-items: stretch;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(6, 19, 38, 0.04);
    min-height: 145px;
}

.event-card-home:hover {
    border-color: #b58842;
    box-shadow: 0 12px 30px rgba(6, 19, 38, 0.10);
    transform: translateY(-2px);
}

.event-card-thumb {
    width: 160px;
    min-width: 160px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.event-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.event-card-home:hover .event-card-thumb img {
    transform: scale(1.06);
}

.event-thumb-date-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(6, 19, 38, 0.88);
    backdrop-filter: blur(6px);
    color: #ffffff;
    border-radius: 6px;
    padding: 3px 7px;
    text-align: center;
    border: 1px solid rgba(212, 163, 89, 0.4);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.etd-day {
    display: block;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
}

.etd-month {
    display: block;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #d4a359;
    line-height: 1.1;
    margin-top: 2px;
}

.event-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-meta-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #b58842;
    font-weight: 700;
    margin-bottom: 6px;
}

.event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(181, 136, 66, 0.08);
    padding: 2px 7px;
    border-radius: 4px;
}

.event-card-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: #061326;
    margin-bottom: 4px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.event-card-info h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-card-home:hover .event-card-info h4 a {
    color: #b58842;
}

.event-card-info p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: #08172c;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.event-read-more-btn:hover {
    color: #b58842;
    transform: translateX(3px);
}

/* Col 3: Quick Access List - Equal Height Stretch with 6 Items */
.quick-access-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.quick-link-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background-color: #ffffff;
    border: 1px solid #e8eef5;
    border-radius: 10px;
    color: #1e293b;
    transition: all 0.22s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    min-height: 44px;
}

.quick-link-card:hover {
    background: #08172c;
    border-color: #08172c;
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(8, 23, 44, 0.18);
}

.quick-link-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-link-left span {
    font-size: 12.5px;
    font-weight: 700;
    color: inherit;
    transition: color 0.2s ease;
}

.quick-link-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 7px;
    border: 1.2px solid rgba(212, 163, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b58842;
    font-size: 13px;
    background: rgba(212, 163, 89, 0.1);
    flex-shrink: 0;
    transition: all 0.22s ease;
}

.quick-link-card:hover .quick-link-icon {
    background: #b58842;
    color: #ffffff;
    border-color: #b58842;
}

.quick-link-card i.fa-arrow-right {
    color: #94a3b8;
    font-size: 11px;
    transition: all 0.2s ease;
}

.quick-link-card:hover i.fa-arrow-right {
    color: #d4a359;
    transform: translateX(3px);
}

/* Empty states */
.trio-empty-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border: 1.5px dashed #cbd5e1;
    border-radius: 12px;
    color: #64748b;
    font-size: 13px;
    gap: 8px;
    min-height: 280px;
}

.trio-empty-box i {
    font-size: 28px;
    color: #d4a359;
    margin-bottom: 4px;
}

/* Responsive Breakpoints for Trio Section */
@media (max-width: 1100px) {
    .home-trio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .trio-col:last-child {
        grid-column: span 2;
    }
    .quick-access-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .home-trio-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .trio-col:last-child {
        grid-column: auto;
    }
    .quick-access-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .event-card-home {
        flex-direction: column;
    }
    .event-card-thumb {
        width: 100%;
        min-width: 100%;
        height: 180px;
    }
}



/* ==========================================================================
   HOME GALLERY HIGHLIGHTS (GALERİDEN KARELER)
   ========================================================================== */
.home-gallery-section {
    padding: 50px 0 55px;
    background: #ffffff;
    position: relative;
    border-top: 1px solid #edf2f7;
}

.home-gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 26px;
    gap: 20px;
}

.home-gallery-head-left {
    max-width: 650px;
}

.section-sub-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-top: 6px;
}

.home-gallery-head-right {
    flex-shrink: 0;
    margin-bottom: 4px;
}

.btn-outline-navy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    font-size: 12.5px;
    font-weight: 750;
    color: #061326;
    background: #ffffff;
    border: 1.5px solid #061326;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(6, 19, 38, 0.05);
}

.btn-outline-navy:hover {
    background: #061326;
    color: #ffffff;
    border-color: #061326;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 19, 38, 0.2);
}

.btn-outline-navy i.fa-arrow-right {
    transition: transform 0.2s ease;
}

.btn-outline-navy:hover i.fa-arrow-right {
    transform: translateX(3px);
}

.home-gallery-counter-pill {
    background: rgba(212, 163, 89, 0.16);
    color: #b8863b;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 99px;
    letter-spacing: 0.3px;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
}

.home-gallery-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(6, 19, 38, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.home-gallery-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 24px -4px rgba(6, 19, 38, 0.1), 0 0 0 1px rgba(212, 163, 89, 0.3);
    transform: translateY(-4px);
}

.home-gallery-card .photo-card-img {
    height: 160px;
    overflow: hidden;
    position: relative;
    background: #0b192e;
}

.home-gallery-card .photo-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-gallery-card:hover .photo-card-img img,
.photo-card-item:hover .photo-card-img img {
    transform: scale(1.08);
}

.photo-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 19, 38, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    z-index: 2;
}

.home-gallery-card:hover .photo-hover-overlay,
.photo-card-item:hover .photo-hover-overlay {
    opacity: 1;
}

.photo-zoom-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #061326;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
    transform: scale(0.85);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease;
}

.home-gallery-card:hover .photo-zoom-btn,
.photo-card-item:hover .photo-zoom-btn {
    transform: scale(1);
}

.photo-zoom-btn:hover {
    background: var(--gold);
    color: #061326;
}

.home-gallery-card .photo-card-body {
    padding: 11px 14px 13px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.photo-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.home-gallery-card-title {
    font-size: 13.5px;
    font-weight: 750;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.home-gallery-card:hover .home-gallery-card-title {
    color: var(--gold);
}

.home-gallery-mobile-more {
    display: none;
}

/* ==========================================================================
   CTA RIBBON: SİZ DE ARAMIZA KATILIN
   ========================================================================== */
.cta-ribbon-section {
    position: relative;
    background: #06162a url('../images/hero-truck.jpg') center 28% / cover no-repeat;
    padding: 65px 0;
    color: #ffffff;
    overflow: hidden;
}

.cta-ribbon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 163, 89, 0.15) 0%, transparent 60%),
                linear-gradient(180deg, rgba(6, 22, 42, 0.88) 0%, rgba(4, 12, 24, 0.94) 100%);
}

.cta-ribbon-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 163, 89, 0.35), transparent);
}

.cta-ribbon-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.cta-ribbon-left {
    max-width: 540px;
}

.cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(212, 163, 89, 0.12);
    border: 1px solid rgba(212, 163, 89, 0.3);
    border-radius: 99px;
}

.cta-title {
    font-size: 32px;
    font-weight: 850;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.cta-desc {
    font-size: 14.5px;
    color: #e2e8f0;
    line-height: 1.65;
    margin-bottom: 26px;
}

.cta-ribbon-left .btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px -4px rgba(212, 163, 89, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-ribbon-left .btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(212, 163, 89, 0.6);
}

.cta-ribbon-right {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.cta-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 155px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 163, 89, 0.22);
    border-radius: 16px;
    padding: 22px 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 163, 89, 0.12);
    border-color: rgba(212, 163, 89, 0.5);
    box-shadow: 0 16px 30px -5px rgba(0, 0, 0, 0.35), 0 0 20px rgba(212, 163, 89, 0.2);
}

.cta-feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    border-radius: 50%;
    border: 1.5px solid #d4a359;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a359;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.2) 0%, rgba(212, 163, 89, 0.05) 100%);
    box-shadow: 0 0 14px rgba(212, 163, 89, 0.2);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.cta-feature-icon i {
    color: #d4a359;
    font-size: 22px;
    line-height: 1;
    display: inline-block;
    transition: color 0.3s ease;
}

.cta-feature-item:hover .cta-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold);
    color: #061326;
    box-shadow: 0 0 20px rgba(212, 163, 89, 0.6);
}

.cta-feature-item:hover .cta-feature-icon i {
    color: #061326;
}

.cta-feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
}

.cta-feature-title {
    font-size: 14.5px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.cta-feature-sub {
    font-size: 11.5px;
    color: #cbd5e1;
    line-height: 1.45;
}



/* ==========================================================================
   HAKKIMIZDA PAGE SPECIFICS
   ========================================================================== */
.about-top-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    margin: 50px 0;
    align-items: center;
}

.president-message-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.president-header-row {
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.president-content-flex {
    display: flex;
    gap: 24px;
    align-items: center;
}

.president-photo-circle {
    width: 140px;
    height: 140px;
    min-width: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-light);
}

.president-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.president-text-block p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.president-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-dark);
}

.president-title {
    font-size: 12px;
    color: var(--text-muted);
}

.president-signature-img {
    height: 44px;
    margin-top: 10px;
    object-fit: contain;
}

/* Mission & Vision summary cards */
.mission-vision-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.mv-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mv-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.mv-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--gold);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.mv-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Amaçlarımız & Değerlerimiz 6-Card Grid (Genişletilmiş ve Büyütülmüş Modern Çerçeve & Tipografi) */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 45px 0 65px;
}

.goal-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-top: 4px solid var(--gold);
    border-radius: 16px;
    padding: 38px 28px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 16px rgba(6, 19, 38, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.goal-card:hover {
    border-color: var(--gold);
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.16);
    transform: translateY(-6px);
}

.goal-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.14) 0%, rgba(212, 163, 89, 0.04) 100%);
    border: 1.5px solid rgba(212, 163, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.goal-card:hover .goal-icon-wrap {
    background: var(--primary-dark);
    border-color: var(--gold);
    transform: scale(1.08) rotate(4deg);
}

.goal-icon {
    font-size: 28px;
    color: var(--gold);
    margin: 0;
    transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
    color: #ffffff;
}

.goal-card h4 {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.45;
}

.goal-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   HAKKIMIZDA PAGE SPECIFICS (MODERN LUXURY REDESIGN)
   ========================================================================== */
.about-profile-section {
    padding: 65px 0 60px;
    background: #ffffff;
    position: relative;
}

.about-top-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 48px;
    margin: 0;
    align-items: start;
}

.about-badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(212, 163, 89, 0.10);
    border: 1px solid rgba(212, 163, 89, 0.35);
    border-radius: 99px;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-main-title {
    font-size: 30px;
    font-weight: 850;
    color: #061326;
    line-height: 1.3;
    margin-bottom: 12px;
}

.about-title-line {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #d4a359, transparent);
    border-radius: 2px;
    margin-bottom: 20px;
}

.about-intro-text {
    font-size: 15px;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 22px;
}

.about-key-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.about-key-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.25s ease;
}

.about-key-pill:hover {
    border-color: rgba(212, 163, 89, 0.5);
    background: rgba(212, 163, 89, 0.06);
}

.about-key-pill i {
    color: var(--gold);
    font-size: 14px;
}

.about-action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* Executive President Card for Hakkımızda (Luxury Sapphire & Gold Theme - Ana Sayfa Vitrini Kalitesinde) */
.about-exec-president-card {
    background: linear-gradient(150deg, #071b36 0%, #061326 60%, #030c18 100%);
    border: 1.5px solid rgba(212, 163, 89, 0.42);
    border-radius: 20px;
    padding: 30px 28px 24px;
    box-shadow: 0 16px 40px -8px rgba(6, 19, 38, 0.38), 0 0 25px rgba(212, 163, 89, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-exec-president-card:hover {
    box-shadow: 0 22px 48px -6px rgba(6, 19, 38, 0.5), 0 0 32px rgba(212, 163, 89, 0.25);
    border-color: rgba(212, 163, 89, 0.7);
    transform: translateY(-4px);
}

.about-exec-bg-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 163, 89, 0.16) 0%, rgba(212, 163, 89, 0) 70%);
    pointer-events: none;
}

.about-exec-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 163, 89, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
    pointer-events: none;
}

.about-exec-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 163, 89, 0.25);
    position: relative;
    z-index: 2;
}

.exec-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 850;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.exec-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 750;
    color: #4ade80;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.35);
    padding: 3px 10px;
    border-radius: 99px;
}

.about-exec-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.about-exec-portrait-wrap {
    position: relative;
    width: 115px;
    height: 115px;
    min-width: 115px;
}

.about-exec-deco-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px dashed rgba(212, 163, 89, 0.45);
    animation: rotateDecoRing 35s linear infinite;
    pointer-events: none;
}

.about-exec-avatar {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 24px rgba(6, 19, 38, 0.4), 0 0 16px rgba(212, 163, 89, 0.3);
    background: #061326;
    position: relative;
    z-index: 2;
}

.about-exec-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    transition: transform 0.4s ease;
}

.about-exec-president-card:hover .about-exec-avatar img {
    transform: scale(1.05);
}

.about-exec-portrait-badge {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4a359 0%, #b88628 100%);
    color: #061326;
    font-size: 9.5px;
    font-weight: 900;
    letter-spacing: 0.6px;
    padding: 2px 9px;
    border-radius: 99px;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.about-exec-identity {
    flex: 1;
}

.about-exec-name {
    font-size: 21px;
    font-weight: 850;
    color: #ffffff;
    margin: 0 0 3px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.about-exec-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.about-exec-role-sub {
    font-size: 11.5px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.about-exec-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(212, 163, 89, 0.12);
    border: 1px solid rgba(212, 163, 89, 0.35);
    color: #f1f5f9;
    font-size: 12px;
    font-weight: 750;
    padding: 5px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.about-exec-phone-btn:hover {
    background: var(--gold);
    color: #061326;
    border-color: var(--gold);
}

.about-exec-phone-btn:hover i {
    color: #061326 !important;
}

.about-exec-quote-wrap {
    position: relative;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(212, 163, 89, 0.22);
    border-left: 3.5px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 16px 18px 16px 20px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.about-exec-quote-icon {
    font-size: 22px;
    color: var(--gold);
    opacity: 0.45;
    margin-bottom: 4px;
}

.about-exec-headline {
    font-size: 14.5px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 8px;
}

.about-exec-quote {
    font-size: 13px;
    line-height: 1.7;
    color: #e2e8f0;
    margin: 0;
}

.about-exec-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.about-exec-pillar-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 163, 89, 0.18);
    border-radius: 8px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    transition: all 0.25s ease;
}

.about-exec-pillar-item:hover {
    background: rgba(212, 163, 89, 0.1);
    border-color: rgba(212, 163, 89, 0.4);
    transform: translateY(-2px);
}

.about-exec-pillar-item i {
    font-size: 13px;
}

.about-exec-pillar-item span {
    font-size: 10.5px;
    font-weight: 750;
    color: #f1f5f9;
    line-height: 1.25;
}

.about-exec-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 163, 89, 0.2);
    position: relative;
    z-index: 2;
}

.about-exec-sign-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.about-exec-sign {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.about-exec-sign-label {
    font-size: 10.5px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

/* Misyon & Vizyon Section */
.about-mv-section {
    padding: 65px 0 70px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 36px;
}

.about-mv-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-top: 4px solid var(--gold);
    border-radius: 18px;
    padding: 34px 28px;
    box-shadow: 0 6px 20px rgba(6, 19, 38, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.about-mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 16px 36px rgba(212, 163, 89, 0.16);
}

.about-mv-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.18) 0%, rgba(6, 19, 38, 0.06) 100%);
    border: 1.5px solid rgba(212, 163, 89, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-mv-card:hover .about-mv-icon-wrap {
    background: #061326;
    color: #ffffff;
    border-color: var(--gold);
    transform: scale(1.06);
}

.about-mv-title {
    font-size: 19px;
    font-weight: 850;
    color: #061326;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-mv-lead {
    font-size: 14.5px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.65;
    margin-bottom: 12px;
}

.about-mv-text {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Amaçlarımız Section */
.about-goals-section {
    padding: 65px 0 75px;
    background: #ffffff;
}

.about-goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 38px;
}

.about-goal-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 24px 26px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(6, 19, 38, 0.03);
    display: flex;
    flex-direction: column;
}

.about-goal-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 14px 30px rgba(6, 19, 38, 0.08);
}

.about-goal-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.about-goal-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.15) 0%, rgba(212, 163, 89, 0.04) 100%);
    border: 1.2px solid rgba(212, 163, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.about-goal-card:hover .about-goal-icon-wrap {
    background: #061326;
    color: #ffffff;
    border-color: var(--gold);
    transform: scale(1.08);
}

.about-goal-num {
    font-size: 13px;
    font-weight: 850;
    color: rgba(212, 163, 89, 0.55);
    letter-spacing: 1px;
}

.about-goal-title {
    font-size: 15px;
    font-weight: 800;
    color: #061326;
    line-height: 1.45;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-goal-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 992px) {
    .about-top-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-mv-grid {
        grid-template-columns: 1fr;
    }
    .about-goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-goals-grid {
        grid-template-columns: 1fr;
    }
    .about-exec-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .about-key-pills {
        flex-direction: column;
    }
    .about-key-pill {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-exec-president-card {
        padding: 22px 18px 20px;
        border-radius: 16px;
    }
    .about-exec-profile {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .about-exec-identity {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-exec-name {
        font-size: 19px;
    }
    .about-exec-pillars {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .about-exec-pillar-item {
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px 14px;
        gap: 12px;
        text-align: left;
    }
    .about-exec-pillar-item i {
        font-size: 15px;
    }
    .about-exec-pillar-item span {
        font-size: 12px;
    }
    .about-exec-footer {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }
    .about-exec-sign-wrap {
        align-items: center;
    }
    .about-exec-footer .btn-primary-gold {
        width: 100%;
        justify-content: center;
    }
}


/* ==========================================================================
   MİSYON & VİZYON PAGE SPECIFICS
   ========================================================================== */
.principles-dark-card {
    background-color: var(--primary-dark);
    border-radius: var(--radius-md);
    padding: 40px;
    color: #ffffff;
    margin: 50px 0;
}

.principles-title {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.principle-icon {
    font-size: 20px;
    color: var(--gold);
    min-width: 24px;
    margin-top: 2px;
}

.principle-item h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
}

.principle-item p {
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.5;
}

.join-banner-bar {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 60px;
}

.join-banner-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.join-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.join-banner-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-dark);
}

.join-banner-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   YÖNETİM KURULU PAGE SPECIFICS
   ========================================================================== */
.board-section-wrap {
    padding: 50px 0;
}

.board-group-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.board-group-sub {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
}

.board-execs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.board-member-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.board-member-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.role-badge-top {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--gold);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.board-photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 20px auto 16px;
    overflow: hidden;
    border: 3px solid var(--border-light);
}

.board-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.board-title {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.board-contact-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
    font-size: 11px;
    color: var(--text-muted);
}

.board-contact-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.board-contact-row a:hover {
    color: var(--gold);
}

/* Regular board members row */
.board-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.board-member-simple {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}

.board-member-simple:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.btn-member-mail {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}

.btn-member-mail:hover {
    background-color: var(--gold);
}

/* ==========================================================================
   MEMBERS PAGE (ÜYELERİMİZ) SPECIFICS
   ========================================================================== */
.filter-bar-wrap {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 40px 0 20px;
    box-shadow: var(--shadow-sm);
}

.filter-form-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.filter-input-wrap {
    flex: 1.5;
    position: relative;
    min-width: 240px;
}

.filter-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.filter-input-wrap input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.filter-select {
    flex: 1;
    min-width: 140px;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    background: #ffffff;
    color: var(--text-dark);
}

.btn-filter-submit {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-filter-submit:hover {
    background: var(--gold);
}

/* Alphabet Filter Bar */
.alphabet-filter-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.alphabet-filter-bar a {
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.alphabet-filter-bar a.active,
.alphabet-filter-bar a:hover {
    background: var(--primary-dark);
    color: #ffffff;
    border-color: var(--primary-dark);
}

/* Two-column layout with sidebar */
.layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
    margin-bottom: 60px;
}

/* Member Directory List */
.members-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.member-row-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.member-row-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.member-photo-square {
    width: 90px;
    height: 100px;
    min-width: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-light);
}

.member-photo-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info-col {
    flex: 1.2;
}

.member-info-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.member-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(212, 163, 89, 0.12);
    border: 1px solid rgba(212, 163, 89, 0.3);
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.member-info-address {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.member-logo-col {
    width: 120px;
    text-align: center;
}

.member-logo-col img {
    max-height: 44px;
    margin: 0 auto;
    object-fit: contain;
}

.member-contact-col {
    flex: 1;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.member-contact-col a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.member-contact-col a:hover {
    color: var(--gold);
}

.member-action-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.status-badge-active {
    background: #e6f7ec;
    color: #10b981;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.btn-card-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-dark);
    transition: var(--transition);
}

.btn-card-detail:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-light);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 18px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--gold);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
}

.benefit-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 11px;
}

/* Sidebar Dark CTA Box */
.sidebar-dark-cta {
    background: var(--primary-dark);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.sidebar-dark-cta h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sidebar-dark-cta p {
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* Pagination */
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-num {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    transition: var(--transition);
}

.page-num:hover,
.page-num.active {
    background: var(--primary-dark);
    color: #ffffff;
    border-color: var(--primary-dark);
}

/* ==========================================================================
   ÜYELİK BAŞVURU FORMU SPECIFICS
   ========================================================================== */
.form-card-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.form-header-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.form-header-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-dark);
    background: #ffffff;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-subtle);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Photo Upload Zone */
.photo-upload-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}

.upload-dropzone {
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.upload-dropzone:hover {
    border-color: var(--gold);
    background: var(--gold-light);
}

.dropzone-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 8px;
}

.dropzone-text {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.btn-browse {
    display: inline-block;
    background: var(--primary-dark);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
}

.upload-hint {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 8px;
}

.preview-box-wrap {
    text-align: center;
}

.preview-box-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: block;
}

.photo-preview-box {
    width: 120px;
    height: 150px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.photo-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-remove-preview {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ef4444;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0 26px;
    font-size: 13px;
    color: var(--text-dark);
}

.checkbox-wrap input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

/* Sidebar Conditions Box (Dark Navy) */
.conditions-navy-box {
    background: var(--primary-dark);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.conditions-navy-box h4 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.conditions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #cbd5e1;
}

.condition-item i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 3px;
}

/* Help Contact Box */
.help-contact-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.help-contact-box h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.help-contact-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.help-contact-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
}

.help-contact-items a:hover {
    color: var(--gold);
}

.help-contact-items i {
    color: var(--gold);
    width: 18px;
}

/* ==========================================================================
   DUYURULAR PAGE SPECIFICS
   ========================================================================== */
.duyurular-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.duyuru-card-horizontal {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.duyuru-card-horizontal:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.duyuru-thumb-box {
    width: 170px;
    height: 110px;
    min-width: 170px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.duyuru-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.duyuru-card-body {
    flex: 1;
}

.duyuru-badge-tag {
    display: inline-block;
    background: var(--gold-subtle);
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.duyuru-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.duyuru-card-title:hover {
    color: var(--gold);
}

.duyuru-card-excerpt {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.duyuru-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    color: var(--text-light);
}

.duyuru-card-meta i {
    color: var(--gold);
}

.duyuru-big-date-col {
    min-width: 90px;
    text-align: center;
    border-left: 1px solid var(--border-light);
    padding-left: 20px;
}

.big-date-day {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.big-date-month {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
}

.big-date-year {
    font-size: 11px;
    color: var(--text-light);
}

.duyuru-arrow-link {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 10px;
    display: inline-block;
    transition: var(--transition);
}

.duyuru-card-horizontal:hover .duyuru-arrow-link {
    color: var(--gold);
    transform: translateX(4px);
}

/* Featured Duyuru in Sidebar */
.featured-duyuru-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
}

.featured-duyuru-thumb {
    position: relative;
    height: 140px;
}

.featured-duyuru-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-date-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 800;
    font-size: 11px;
    line-height: 1.1;
    color: var(--primary-dark);
}

.featured-duyuru-body {
    padding: 16px;
}

/* Category count list */
.category-count-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-count-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition);
}

.category-count-item:hover,
.category-count-item.active {
    background: var(--primary-dark);
    color: #ffffff;
}

.category-count-item .count-badge {
    background: rgba(0, 0, 0, 0.08);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.category-count-item:hover .count-badge {
    background: var(--gold);
    color: #ffffff;
}

/* ==========================================================================
   GALERİ PAGE SPECIFICS
   ========================================================================== */
.gallery-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 30px;
    border-bottom: 2px solid var(--border-light);
}

.gallery-tabs-left {
    display: flex;
    gap: 30px;
}

.gallery-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-tab-btn.active,
.gallery-tab-btn:hover {
    color: var(--gold);
}

.gallery-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
}

.gallery-photos-grid,
.gallery-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .gallery-photos-grid,
    .gallery-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .gallery-photos-grid,
    .gallery-videos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.photo-card-item,
.video-card-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.photo-card-item:hover,
.video-card-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.photo-card-img {
    height: 240px;
    overflow: hidden;
}

.photo-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-card-item:hover .photo-card-img img {
    transform: scale(1.05);
}

.photo-card-body {
    padding: 14px;
}

.gallery-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 3px 8px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #475569;
    margin-bottom: 8px;
}

.photo-card-body h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.photo-card-body .card-date {
    font-size: 11px;
    color: var(--text-light);
}

.video-thumb-wrap {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.video-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   FAALİYETLERİMİZ PAGE SPECIFICS
   ========================================================================== */
.featured-activity-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.featured-activity-img {
    height: 280px;
}

.featured-activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-activity-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* ==========================================================================
   MAIN FOOTER
   ========================================================================== */
.main-footer {
    background: #040d1a linear-gradient(180deg, #071527 0%, #030a14 100%);
    color: #cbd5e1;
    padding: 55px 0 0;
    font-size: 13.5px;
    border-top: 2px solid rgba(212, 163, 89, 0.25);
    position: relative;
    overflow: hidden;
}

/* Pre-Footer Quick Highlight Bar */
.pre-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 28px;
    margin-bottom: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 163, 89, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pre-footer-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pre-footer-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 163, 89, 0.12);
    border: 1px solid rgba(212, 163, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #d4a359;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
}

.pre-footer-item:hover .pre-footer-icon-wrap {
    background: #d4a359;
    color: #061326;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 163, 89, 0.4);
}

.pre-footer-info {
    display: flex;
    flex-direction: column;
}

.pre-footer-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    margin-bottom: 2px;
}

.pre-footer-val {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pre-footer-val:hover {
    color: #d4a359;
}

.pre-footer-sep {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a359 0%, #b8863b 100%);
    color: #061326 !important;
    font-size: 13px;
    font-weight: 800;
    padding: 11px 22px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(212, 163, 89, 0.35);
    text-decoration: none;
    white-space: nowrap;
}

.btn-footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(212, 163, 89, 0.55);
    background: #e2b36c;
    color: #061326 !important;
}

.btn-footer-cta i {
    transition: transform 0.25s ease;
}

.btn-footer-cta:hover i {
    transform: translateX(4px);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.45fr 0.95fr 1.35fr 0.95fr 1.3fr;
    gap: 28px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: start;
}

.footer-col {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.col-brand {
    min-width: 0;
}

.col-contact {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-logo-img {
    height: auto;
    max-height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.45)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-title {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1.5px;
    line-height: 1.1;
    font-family: var(--font-title, inherit);
}

.footer-logo-sub {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold, #d4a359);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.footer-brand-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 380px;
}

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(212, 163, 89, 0.1);
    border: 1px solid rgba(212, 163, 89, 0.32);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 18px;
}

.footer-trust-badge i {
    font-size: 13px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13.5px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social a:hover {
    background: var(--gold);
    color: #061326;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #d4a359;
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #94a3b8;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}

.footer-links li a:hover {
    color: #d4a359;
    transform: translateX(4px);
}

.link-arrow {
    font-size: 8.5px;
    margin-right: 7px;
    color: #d4a359;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.footer-links li a:hover .link-arrow {
    transform: translateX(3px);
    opacity: 1;
}

.footer-mini-tag {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    background: #10b981;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 7px;
    letter-spacing: 0.5px;
}

/* Footer Newsletter Column */
.footer-newsletter-col {
    display: flex;
    flex-direction: column;
}

.footer-newsletter-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-newsletter-form {
    width: 100%;
}

.footer-newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 4px;
    transition: all 0.25s ease;
}

.footer-newsletter-input-group:focus-within {
    border-color: var(--gold, #d4a359);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 163, 89, 0.18);
}

.footer-newsletter-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 12px;
    font-family: inherit;
}

.footer-newsletter-input::placeholder {
    color: #64748b;
}

.footer-newsletter-btn {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: var(--gold, #d4a359);
    color: #061326;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.footer-newsletter-btn:hover {
    background: #e5b56d;
    transform: scale(1.04);
}

.footer-newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.footer-newsletter-trust {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 12px;
    line-height: 1.4;
}

.footer-newsletter-trust i {
    font-size: 12px;
    flex-shrink: 0;
}

.footer-newsletter-msg {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.45;
}

.footer-newsletter-msg.msg-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
}

.footer-newsletter-msg.msg-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #f87171;
}

/* Footer Announcements Widget */
.footer-announcements-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.22s ease;
}

.footer-announcement-item:hover {
    background: rgba(212, 163, 89, 0.08);
    border-color: rgba(212, 163, 89, 0.35);
    transform: translateX(4px);
}

.footer-announcement-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #0b1a2f;
    border: 1px solid rgba(212, 163, 89, 0.35);
    border-radius: 8px;
    flex-shrink: 0;
    line-height: 1.1;
}

.fd-day {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
}

.fd-mon {
    font-size: 9px;
    font-weight: 700;
    color: #d4a359;
    text-transform: uppercase;
}

.footer-announcement-title {
    font-size: 12px;
    font-weight: 600;
    color: #cbd5e1;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.footer-announcement-item:hover .footer-announcement-title {
    color: #ffffff;
}

.footer-empty-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #64748b;
    font-size: 12px;
}

/* Contact Items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #94a3b8;
    line-height: 1.5;
    min-width: 0;
}

.footer-c-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(212, 163, 89, 0.12);
    border: 1px solid rgba(212, 163, 89, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a359;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.footer-contact-item:hover .footer-c-icon {
    background: #d4a359;
    color: #061326;
    border-color: #d4a359;
}

.footer-c-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-c-lbl {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #64748b;
    margin-bottom: 2px;
}

.footer-c-val {
    font-size: 12.5px;
    font-weight: 600;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
    overflow-wrap: break-word;
}

.footer-c-val:hover {
    color: #d4a359;
}

.contact-icon {
    color: var(--gold);
    margin-top: 4px;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 16px;
    color: #64748b;
}

.footer-bottom a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

.footer-bottom-center {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-copy {
    margin: 0;
    font-size: 12.5px;
    color: #64748b;
    font-weight: 500;
}

.norby-signature {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.norby-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 15px;
    border-radius: 99px;
    text-decoration: none;
    white-space: nowrap !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    line-height: 1;
}

.norby-badge-prefix,
.norby-badge-suffix {
    font-size: 11.5px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.2px;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.norby-badge-logo {
    height: 19px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.norby-badge-icon {
    font-size: 9.5px;
    color: var(--gold);
    opacity: 0.7;
    transition: all 0.25s ease;
    margin-left: 2px;
}

.norby-badge:hover {
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.14) 0%, rgba(212, 163, 89, 0.04) 100%);
    border-color: rgba(212, 163, 89, 0.5);
    box-shadow: 0 4px 16px rgba(212, 163, 89, 0.25);
    transform: translateY(-2px);
}

.norby-badge:hover .norby-badge-prefix,
.norby-badge:hover .norby-badge-suffix {
    color: #ffffff;
}

.norby-badge:hover .norby-badge-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 6px rgba(212, 163, 89, 0.5));
}

.norby-badge:hover .norby-badge-icon {
    opacity: 1;
    transform: translate(2px, -2px);
}

.btn-scroll-top {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.btn-scroll-top:hover {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

.footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #d4a359;
}

.footer-legal-links .sep {
    color: #475569;
}

/* Text helpers */
.text-gold {
    color: var(--gold) !important;
}

.alert-box {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 20px;
}

.alert-success {
    background: #e6f7ec;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ==========================================================================
   CORPORATE PROFESSIONAL EFFECTS & MICRO-INTERACTIONS
   ========================================================================== */

/* Reading Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #b58842 0%, #d4a359 50%, #f7d794 100%);
    z-index: 10005;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(212, 163, 89, 0.5);
    pointer-events: none;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Button Shimmer Effect */
.btn-primary-gold {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: none;
    pointer-events: none;
}

.btn-primary-gold:hover::after {
    left: 140%;
    transition: all 0.85s ease-in-out;
}

.btn-primary-gold:active,
.btn-outline-white:active,
.btn-uye-girisi:active {
    transform: scale(0.98);
}

/* Material Ripple Wave */
.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(3.5);
        opacity: 0;
    }
}

/* Card Lift & Image Zoom Micro-Interactions */
.event-card-home {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
}

.event-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(6, 19, 38, 0.09);
    border-color: #d4a359;
}

.event-card-thumb {
    overflow: hidden;
}

.event-card-thumb img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card-home:hover .event-card-thumb img {
    transform: scale(1.08);
}

.about-video-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(6, 19, 38, 0.2);
}

.about-video-card .video-card-thumb img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-video-card:hover .video-card-thumb img {
    transform: scale(1.06);
}

/* Announcement hover handled by core styles */

.quick-link-card {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.25s ease,
                box-shadow 0.25s ease;
}

.quick-link-card:hover {
    transform: translateX(6px);
    border-color: #d4a359;
    box-shadow: 0 4px 14px rgba(212, 163, 89, 0.12);
}

.quick-link-card:hover .quick-link-icon {
    background-color: #d4a359;
    color: #ffffff;
    border-color: #d4a359;
}

.feature-mini-card {
    transition: transform 0.25s ease;
}

.feature-mini-card:hover {
    transform: translateX(5px);
}

.feature-mini-card:hover .feature-mini-icon {
    background-color: #d4a359;
    color: #ffffff;
    box-shadow: 0 0 14px rgba(212, 163, 89, 0.35);
}

/* Interactive FAQ Accordion styles defined in dedicated SSS section at end of stylesheet */

/* Hero Badge Ambient Glow */
.hero-tag {
    box-shadow: 0 0 16px rgba(212, 163, 89, 0.3);
    animation: badge-glow 3.5s infinite alternate ease-in-out;
}

@keyframes badge-glow {
    from {
        box-shadow: 0 0 8px rgba(212, 163, 89, 0.2);
    }
    to {
        box-shadow: 0 0 20px rgba(212, 163, 89, 0.55);
    }
}

/* Back to Top Button Modernization */
.btn-scroll-top {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(212, 163, 89, 0.35);
}

/* ==========================================================================
   ULTRA-LUXURY CORPORATE VISUAL EFFECTS & SPOTLIGHT
   ========================================================================== */

/* 1. Hero Dynamic Timer Progress Bar */
.hero-progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: rgba(255, 255, 255, 0.14);
    z-index: 15;
    overflow: hidden;
    pointer-events: none;
}

.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #9f7530 0%, #d4a359 45%, #f7d794 80%, #ffffff 100%);
    box-shadow: 0 0 12px rgba(212, 163, 89, 0.8), 0 0 4px rgba(255, 255, 255, 0.9);
    will-change: width;
}

/* 2. Interactive Cursor Spotlight (Card Illumination) */
.trio-col,
.event-card-home,
.quick-link-card,
.home-about-card,
.service-card,
.featured-box,
.duyuru-card-home {
    position: relative;
    isolation: isolate;
}

.trio-col::after,
.event-card-home::after,
.quick-link-card::after,
.home-about-card::after,
.service-card::after,
.featured-box::after,
.duyuru-card-home::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(360px circle at var(--spotlight-x, -999px) var(--spotlight-y, -999px), rgba(212, 163, 89, 0.13), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

.trio-col:hover::after,
.event-card-home:hover::after,
.quick-link-card:hover::after,
.home-about-card:hover::after,
.service-card:hover::after,
.featured-box:hover::after,
.duyuru-card-home:hover::after {
    opacity: 1;
}

/* Keep card content above spotlight */
.trio-col > *,
.event-card-home > *,
.quick-link-card > *,
.home-about-card > *,
.service-card > *,
.featured-box > *,
.duyuru-card-home > * {
    position: relative;
    z-index: 2;
}

/* 3. Floating Luxury Back-to-Top Button */
.floating-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0a1f3a 0%, #061326 100%);
    border: 1.5px solid rgba(212, 163, 89, 0.45);
    color: #d4a359;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 9995;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.88);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(6, 19, 38, 0.4), 0 0 15px rgba(212, 163, 89, 0.15);
    outline: none;
}

.floating-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-back-to-top:hover {
    background: linear-gradient(135deg, #d4a359 0%, #b58842 100%);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 14px 30px rgba(212, 163, 89, 0.45), 0 0 20px rgba(212, 163, 89, 0.3);
}

.floating-back-to-top:active {
    transform: translateY(-2px) scale(0.98);
}

@media (max-width: 991px) {
    .floating-back-to-top {
        bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
        right: 16px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 15px !important;
    }
}

/* 4. Gold Periodic Ambient Light Sweep */
@keyframes goldLightSweepPeriodic {
    0% {
        left: -100%;
    }
    18%, 100% {
        left: 150%;
    }
}

.btn-primary-gold::after {
    animation: goldLightSweepPeriodic 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.btn-primary-gold:hover::after {
    animation: none;
    left: 150%;
    transition: left 0.75s ease-in-out;
}

/* 5. Header Scrolled Luxury Gold Accent Border */
.main-header.scrolled {
    border-bottom: 1px solid rgba(212, 163, 89, 0.22);
}

/* 6. Gold Text Gradient Vibrant Depth */
.text-gold-gradient {
    filter: drop-shadow(0 2px 8px rgba(212, 163, 89, 0.3));
}

/* 7. Image Depth Zoom on Interactive Cards */
.gallery-grid-item img,
.news-card-thumb img {
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-grid-item:hover img,
.news-card-home:hover .news-card-thumb img {
    transform: scale(1.06);
}

/* ==========================================================================
   ANNOUNCEMENT DETAIL (DUYURU DETAY) PAGE REDESIGN
   ========================================================================== */
.duyuru-hero-section {
    position: relative;
    background: linear-gradient(135deg, #061326 0%, #0a1f3a 60%, #0d284a 100%);
    padding: 55px 0 45px;
    color: #ffffff;
    border-bottom: 3px solid #d4a359;
    overflow: hidden;
}

.duyuru-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 163, 89, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.duyuru-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 960px;
}

/* Breadcrumbs */
.detail-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #94a3b8;
}

.detail-breadcrumbs a {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.detail-breadcrumbs a:hover {
    color: #d4a359;
}

.detail-breadcrumbs i.fa-chevron-right {
    font-size: 10px;
    color: #64748b;
}

.detail-breadcrumbs .active-crumb {
    color: #d4a359;
    font-weight: 700;
}

/* Header Badges */
.detail-header-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.detail-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #d4a359;
    color: #061326;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(212, 163, 89, 0.3);
}

.detail-read-time {
    font-size: 12px;
    font-weight: 600;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Main Title */
.detail-main-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.4px;
    margin-bottom: 22px;
}

/* Meta Bar */
.detail-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-wrap: wrap;
}

.detail-meta-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #cbd5e1;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.meta-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 14px;
}

.detail-meta-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-detail-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-detail-action:hover {
    background: #d4a359;
    color: #061326;
    border-color: #d4a359;
}

/* Content Section */
.duyuru-content-section {
    padding: 55px 0 80px;
    background-color: #f8fafc;
}

.duyuru-article-wrap {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(6, 19, 38, 0.04);
}

/* Featured Media */
.article-featured-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    max-height: 480px;
    box-shadow: 0 8px 24px rgba(6, 19, 38, 0.08);
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-verified-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(6, 19, 38, 0.85);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(212, 163, 89, 0.4);
}

.media-verified-badge i {
    color: #d4a359;
}

/* Lead Excerpt Callout */
.article-lead-callout {
    position: relative;
    background: #f1f5f9;
    border-left: 4px solid #d4a359;
    border-radius: 0 10px 10px 0;
    padding: 22px 28px 22px 60px;
    margin-bottom: 30px;
}

.lead-quote-mark {
    position: absolute;
    top: 20px;
    left: 18px;
    font-size: 26px;
    color: #d4a359;
    opacity: 0.7;
}

.lead-text {
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.7;
    color: #1e293b;
    margin: 0;
}

/* Editorial Body */
.article-content-body {
    font-size: 15px;
    line-height: 1.85;
    color: #334155;
    margin-bottom: 32px;
}

.article-content-body p {
    margin-bottom: 18px;
}

.article-content-body strong {
    color: #061326;
}

/* Highlights Box */
.article-highlights-box {
    background: #fcfaf6;
    border: 1.5px solid rgba(212, 163, 89, 0.35);
    border-radius: 10px;
    padding: 22px 24px;
    margin-bottom: 32px;
}

.highlights-header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
}

.highlights-header i {
    color: #d4a359;
    font-size: 17px;
}

.highlights-header h4 {
    font-size: 13.5px;
    font-weight: 800;
    color: #061326;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlights-list li {
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.highlights-list li i {
    color: #10b981;
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Official Signature Block */
.article-official-sign {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 28px;
}

.sign-seal {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #061326;
    color: #d4a359;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 2px solid #d4a359;
}

.sign-text h5 {
    font-size: 14px;
    font-weight: 800;
    color: #061326;
    margin-bottom: 2px;
}

.sign-text span {
    font-size: 12px;
    color: #64748b;
}

/* Tags */
.article-tags-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.tags-label {
    font-size: 12px;
    font-weight: 800;
    color: #061326;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tags-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.article-tag-pill {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.article-tag-pill:hover {
    background: #061326;
    color: #ffffff;
    border-color: #061326;
}

/* Social Share Bar */
.article-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 14px;
}

.share-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #061326;
}

.share-bar-left i {
    color: #d4a359;
}

.share-bar-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.share-btn.whatsapp { background-color: #25d366; }
.share-btn.whatsapp:hover { background-color: #1eb856; }
.share-btn.facebook { background-color: #1877f2; }
.share-btn.facebook:hover { background-color: #1462c9; }
.share-btn.twitter { background-color: #0f1419; }
.share-btn.twitter:hover { background-color: #272c30; }
.share-btn.linkedin { background-color: #0a66c2; }
.share-btn.linkedin:hover { background-color: #084e96; }
.share-btn.telegram { background-color: #229ed9; }
.share-btn.telegram:hover { background-color: #1a82b3; }

.share-btn.copy-btn {
    background-color: #ffffff;
    color: #061326;
    border: 1.5px solid #cbd5e1;
}

.share-btn.copy-btn:hover {
    border-color: #d4a359;
    color: #d4a359;
}

.share-btn.copy-btn.copy-success {
    background-color: #10b981 !important;
    border-color: #10b981 !important;
    color: #ffffff !important;
}

@media (max-width: 640px) {
    .article-share-bar {
        flex-direction: column;
        align-items: stretch !important;
        padding: 16px 14px;
        gap: 12px;
    }
    .share-bar-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .share-btn {
        justify-content: center;
        padding: 9px 8px;
        font-size: 11.5px;
    }
    .share-btn.copy-btn {
        grid-column: 1 / -1;
    }
}

/* Previous / Next Grid */
.article-prev-next-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 10px;
}

.pn-card {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pn-card:hover {
    border-color: #d4a359;
    box-shadow: 0 8px 24px rgba(212, 163, 89, 0.12);
    transform: translateY(-3px);
}

.pn-direction {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #d4a359;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pn-card.next-card {
    text-align: right;
}

.pn-card.next-card .pn-direction {
    justify-content: flex-end;
}

.pn-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #061326;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pn-date {
    font-size: 11.5px;
    color: #94a3b8;
    margin-top: auto;
}

/* Sidebar Specifics */
.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(6, 19, 38, 0.03);
}

.sidebar-widget-header {
    margin-bottom: 20px;
}

.sidebar-widget-header h4 {
    font-size: 15px;
    font-weight: 800;
    color: #061326;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.widget-header-line {
    width: 32px;
    height: 3px;
    background-color: #d4a359;
    border-radius: 2px;
}

/* Sidebar Duyuru List */
.sidebar-duyuru-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-duyuru-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-duyuru-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-duyuru-item:hover .sd-title {
    color: #d4a359;
}

.sd-thumb {
    width: 68px;
    min-width: 68px;
    height: 68px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-duyuru-item:hover .sd-thumb img {
    transform: scale(1.08);
}

.sd-content {
    display: flex;
    flex-direction: column;
}

.sd-category {
    font-size: 10px;
    font-weight: 800;
    color: #d4a359;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.sd-title {
    font-size: 13px;
    font-weight: 700;
    color: #061326;
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.sd-date {
    font-size: 11px;
    color: #94a3b8;
}

/* Sidebar Category List */
.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
    transition: all 0.2s ease;
}

.sidebar-category-list li a:hover {
    background: #061326;
    color: #ffffff;
    border-color: #061326;
}

.cat-chevron {
    font-size: 10px;
    margin-right: 6px;
    color: #d4a359;
}

.cat-count-badge {
    background: rgba(212, 163, 89, 0.15);
    color: #d4a359;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.sidebar-category-list li a:hover .cat-count-badge {
    background: #d4a359;
    color: #061326;
}

/* Fast Links */
.sidebar-fast-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fast-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.fast-link-item:hover {
    transform: translateX(5px);
    border-color: #d4a359;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(212, 163, 89, 0.1);
}

.fast-link-item i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #061326;
    color: #d4a359;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.fast-link-item:hover i {
    background: #d4a359;
    color: #061326;
}

.fast-link-item h6 {
    font-size: 13px;
    font-weight: 700;
    color: #061326;
    margin-bottom: 2px;
}

.fast-link-item p {
    font-size: 11px;
    color: #64748b;
    margin: 0;
}

/* Contact CTA Card */
.sidebar-contact-card {
    background: linear-gradient(135deg, #061326 0%, #0c2342 100%);
    border: 1.5px solid rgba(212, 163, 89, 0.4);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(6, 19, 38, 0.15);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 163, 89, 0.15);
    border: 2px solid #d4a359;
    color: #d4a359;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.sidebar-contact-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.sidebar-contact-card p {
    font-size: 12.5px;
    line-height: 1.55;
    color: #cbd5e1;
    margin-bottom: 18px;
}

.btn-sidebar-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    background: #d4a359;
    color: #061326;
    font-size: 13.5px;
    font-weight: 800;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-sidebar-phone:hover {
    background: #ffffff;
    color: #061326;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Detail Responsive */
@media (max-width: 900px) {
    .detail-main-title {
        font-size: 25px;
    }
    .detail-meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .article-prev-next-grid {
        grid-template-columns: 1fr;
    }
    .pn-card.next-card {
        text-align: left;
    }
    .pn-card.next-card .pn-direction {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   MODERN CORPORATE EFFECTS & MICRO-INTERACTIONS
   ========================================================================== */

/* 1. Keyframes */
@keyframes goldGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(212, 163, 89, 0.25);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 163, 89, 0.55);
    }
}

@keyframes pulseLive {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes shimmerSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* 2. Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
}

/* Modifiers for direction/zoom */
.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.92) translateY(15px);
}

.reveal-fade {
    transform: translateY(0);
}

/* Stagger Delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* 3. Material Ripple Effect for Buttons */
.btn-primary-gold, .btn-uye-girisi, .btn-outline-white, .btn-header-cta, .btn-read-more, .btn-filter-submit {
    position: relative;
    overflow: hidden;
}

.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.38);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

/* 4. Interactive Card Elevate & Golden Accent Shadows */
.feature-mini-card,
.about-video-card,
.announcement-item-home,
.event-card-home,
.quick-link-card,
.stat-box,
.president-message-card,
.mv-card,
.goal-card,
.board-member-card,
.board-member-simple,
.member-row-card,
.duyuru-card-horizontal,
.photo-card-item,
.video-card-item,
.service-card,
.sidebar-widget,
.fast-link-item,
.principles-dark-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-mini-card:hover,
.service-card:hover,
.about-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px -4px rgba(6, 19, 38, 0.10), 0 0 0 1px rgba(212, 163, 89, 0.3);
    border-color: rgba(212, 163, 89, 0.5);
}

.president-message-card:hover {
    box-shadow: 0 16px 36px -4px rgba(6, 19, 38, 0.12), 0 0 0 1px rgba(212, 163, 89, 0.35);
    border-color: rgba(212, 163, 89, 0.5);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -4px rgba(6, 19, 38, 0.12), 0 0 0 1.5px rgba(212, 163, 89, 0.6);
}

.goal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px -4px rgba(6, 19, 38, 0.10), 0 0 0 1px rgba(212, 163, 89, 0.5);
}

.board-member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -4px rgba(6, 19, 38, 0.14), 0 0 0 1px rgba(212, 163, 89, 0.5);
}

.board-member-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px -4px rgba(6, 19, 38, 0.10), 0 0 0 1px rgba(212, 163, 89, 0.4);
}

.member-row-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -4px rgba(6, 19, 38, 0.10), 0 0 0 1.5px rgba(212, 163, 89, 0.5);
}

.duyuru-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px -4px rgba(6, 19, 38, 0.10), 0 0 0 1px rgba(212, 163, 89, 0.4);
}

.photo-card-item:hover,
.video-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px -4px rgba(6, 19, 38, 0.14), 0 0 0 1px rgba(212, 163, 89, 0.4);
}

/* Image Zoom on hover inside cards */
.duyuru-thumb-box,
.photo-card-img,
.event-card-thumb,
.video-card-thumb,
.president-photo-circle,
.board-photo-wrap {
    overflow: hidden;
}

.duyuru-thumb-box img,
.photo-card-img img,
.event-card-thumb img,
.video-card-thumb img,
.president-photo-circle img,
.board-photo-wrap img {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.duyuru-card-horizontal:hover .duyuru-thumb-box img,
.photo-card-item:hover .photo-card-img img,
.event-card-home:hover .event-card-thumb img,
.about-video-card:hover .video-card-thumb img,
.board-member-card:hover .board-photo-wrap img,
.president-message-card:hover .president-photo-circle img {
    transform: scale(1.07);
}

/* 5. Button Shimmer & Icon Nudge */
.btn-primary-gold {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    transition: none;
}

.btn-primary-gold:hover::before {
    animation: shimmerSweep 0.85s ease-out;
}

.btn-primary-gold i,
.btn-read-more i,
.btn-outline-white i {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-gold:hover i,
.btn-read-more:hover i,
.btn-outline-white:hover i {
    transform: translateX(4px);
}

/* 6. Form Fields Glow */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: #d4a359 !important;
    box-shadow: 0 0 0 3px rgba(212, 163, 89, 0.18) !important;
    background-color: #ffffff !important;
}

/* 7. Live Pulse Badge Indicator */
.status-indicator-live {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulseLive 2s infinite;
}

/* 8. Scrolled Main Header Polish (Bottom yellow line removed per user request) */
.main-header.scrolled {
    border-bottom: none !important;
}

/* ==========================================================================
   9. KURUMSAL 404 HATA SAYFASI STİLLERİ
   ========================================================================== */
.error-main-section {
    padding: 70px 0 90px;
    background: #f8fafc;
}

.error-card-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(6, 19, 38, 0.06);
    padding: 60px 40px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.error-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.error-badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
    box-shadow: 0 0 10px #dc2626;
    animation: pulseActiveDot 1.8s infinite ease-in-out;
}

.error-big-number {
    font-size: clamp(80px, 12vw, 125px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: #061326;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    user-select: none;
}

.error-big-number .num-icon {
    color: var(--gold);
    font-size: 0.85em;
    display: inline-flex;
    animation: compassSpin 20s linear infinite;
}

@keyframes compassSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-card-title {
    font-size: clamp(22px, 3.2vw, 30px);
    font-weight: 800;
    color: #061326;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.error-card-text {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 35px;
}

.error-search-container {
    max-width: 580px;
    margin: 0 auto 40px;
}

.error-search-form {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 6px 8px 6px 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.error-search-form:focus-within {
    background: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 6px 24px rgba(212, 163, 89, 0.22);
}

.search-input-icon {
    color: var(--gold);
    font-size: 16px;
    margin-right: 12px;
}

.error-search-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    font-size: 14.5px;
    color: #061326;
    padding: 6px 0;
}

.btn-error-search {
    padding: 10px 22px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
}

.error-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: left;
}

.error-quick-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.error-quick-card:hover {
    background: #ffffff;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 19, 38, 0.08);
}

.error-quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(212, 163, 89, 0.14);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.error-quick-card:hover .error-quick-icon {
    background: var(--gold);
    color: #061326;
}

.error-quick-info {
    flex: 1;
}

.error-quick-title {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: #061326;
    margin-bottom: 2px;
}

.error-quick-sub {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.error-quick-arrow {
    color: #cbd5e1;
    font-size: 12px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.error-quick-card:hover .error-quick-arrow {
    transform: translateX(4px);
    color: var(--gold);
}

.error-support-ribbon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: #061326;
    border-radius: 12px;
    padding: 18px 24px;
    color: #ffffff;
    font-size: 13.5px;
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.support-ribbon-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-ribbon-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 7px 14px;
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.support-badge:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #061326 !important;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .error-card-wrapper {
        padding: 40px 20px;
    }
    .error-quick-grid {
        grid-template-columns: 1fr;
    }
    .error-support-ribbon {
        flex-direction: column;
        text-align: center;
    }
    .support-ribbon-text {
        justify-content: center;
    }
    .support-ribbon-actions {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================================================
   LOCAL HTML5 VIDEO MODAL (POPUP ONLY)
   ========================================================================== */
.local-video-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(6, 19, 38, 0.94) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    z-index: 9999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.local-video-modal.active {
    display: flex !important;
    animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.local-video-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 163, 89, 0.35);
}

.local-video-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.local-video-close:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
    transform: scale(1.1);
}

.local-video-player {
    width: 100%;
    max-height: 75vh;
    display: block;
    outline: none;
    background: #000000;
}

/* ==========================================================================
   MODERN FULLSCREEN GALLERY LIGHTBOX (High-End Glassmorphism Slider)
   ========================================================================== */
.modern-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: none;
    opacity: 0;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    visibility: hidden;
}

.modern-lightbox.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modern-lb-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 10, 24, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.modern-lb-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 30px;
    box-sizing: border-box;
    pointer-events: none;
}

.modern-lb-topbar,
.modern-lb-stage,
.modern-lb-footer {
    pointer-events: auto;
}

/* Topbar */
.modern-lb-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 16px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.modern-lb-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding-left: 6px;
}

.modern-lb-cat-badge {
    background: rgba(212, 163, 89, 0.2);
    border: 1px solid rgba(212, 163, 89, 0.5);
    color: #d4a359;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.modern-lb-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.2px;
}

.modern-lb-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.modern-lb-action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.modern-lb-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.05);
}

.modern-lb-close-btn:hover {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
    color: #ffffff !important;
}

/* Stage & Main Image */
.modern-lb-stage {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 12px auto;
    min-height: 0;
}

.modern-lb-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: min(92vw, 1200px);
    max-height: 82vh;
    height: 100%;
}

.modern-lb-img {
    max-width: 100%;
    max-height: 82vh;
    width: auto;
    height: auto;
    min-width: min(85vw, 780px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.modern-lb-loader {
    position: absolute;
    color: var(--gold);
    font-size: 32px;
    display: none;
}

/* Prev / Next Nav Buttons */
.modern-lb-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.modern-lb-prev { left: 10px; }
.modern-lb-next { right: 10px; }

.modern-lb-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #061326;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(212, 163, 89, 0.4);
}

/* Footer Bar */
.modern-lb-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 18px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.modern-lb-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modern-lb-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 99px;
}

.modern-lb-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11.5px;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modern-lb-container {
        padding: 12px 10px;
    }
    .modern-lb-topbar {
        border-radius: 12px;
        padding: 8px 12px;
    }
    .modern-lb-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .modern-lb-title {
        font-size: 13px;
        max-width: 200px;
    }
    .modern-lb-image-wrapper {
        max-width: 100%;
        max-height: 72vh;
    }
    .modern-lb-img {
        min-width: 0;
        width: 100%;
        max-height: 72vh;
        border-radius: 8px;
    }
    .modern-lb-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    .modern-lb-prev { left: 4px; }
    .modern-lb-next { right: 4px; }
    .modern-lb-footer {
        border-radius: 12px;
        padding: 8px 12px;
        flex-direction: column;
        gap: 6px;
    }
    .modern-lb-hint {
        display: none;
    }
}

/* ==========================================================================
   MOBILE STICKY CTA BAR (Sabit Mobil İletişim Çubuğu)
   ========================================================================== */
.mobile-sticky-cta-bar {
    display: none;
}

@media (max-width: 991px) {
    body:not(.admin-body) {
        padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)) !important;
    }
    .mobile-sticky-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: rgba(6, 19, 38, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(200, 138, 53, 0.35);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
        padding: 8px 12px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        justify-content: space-around;
        align-items: center;
        gap: 8px;
    }

    .sticky-cta-item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 9px 6px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 700;
        text-align: center;
        transition: transform 0.15s ease, background 0.15s ease;
        text-decoration: none;
    }

    .sticky-cta-item:active {
        transform: scale(0.96);
    }

    .sticky-cta-call {
        background: #c88a35;
        color: #ffffff !important;
        box-shadow: 0 2px 8px rgba(200, 138, 53, 0.4);
    }

    .sticky-cta-whatsapp {
        background: #25d366;
        color: #ffffff !important;
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
    }

    .sticky-cta-apply {
        background: rgba(255, 255, 255, 0.12);
        color: #f1f5f9 !important;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    body {
        padding-bottom: 64px !important;
    }
}

/* ==========================================================================
   404 UPPER CTA & QUICK ACTIONS
   ========================================================================== */
.error-upper-cta .btn-primary-gold {
    box-shadow: 0 4px 14px rgba(200, 138, 53, 0.4);
}
.error-upper-cta .btn-outline-white {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    transition: all 0.2s ease;
}
.error-upper-cta .btn-outline-white:hover {
    background: #ffffff;
    color: var(--primary-dark);
}

/* ==========================================================================
   HOMEPAGE PRESIDENT EXECUTIVE SECTION & DIRECT HOTLINE (PREMIUM REDESIGN)
   ========================================================================== */
.home-president-section {
    padding: 44px 0 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.president-master-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 36px -4px rgba(6, 19, 38, 0.08), 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1.5px solid rgba(212, 163, 89, 0.35);
    border-top: 4px solid var(--gold);
    overflow: hidden;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.president-master-card:hover {
    box-shadow: 0 16px 44px -4px rgba(6, 19, 38, 0.12), 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* Sol Kolon: Profil & İletişim */
.president-sidebar-col {
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    border-right: 1px solid #e2e8f0;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
}

.president-profile-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.president-badge-chip {
    background: linear-gradient(135deg, rgba(212, 163, 89, 0.2) 0%, rgba(184, 134, 59, 0.12) 100%);
    border: 1px solid rgba(212, 163, 89, 0.45);
    color: var(--primary-dark);
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(212, 163, 89, 0.15);
}

.president-portrait-frame {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 14px;
    padding: 4px;
    background: #ffffff;
    border: 2.5px solid var(--gold);
    box-shadow: 0 8px 22px rgba(212, 163, 89, 0.28);
    flex-shrink: 0;
}

.president-portrait-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.president-portrait-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.president-portrait-frame:hover .president-portrait-inner img {
    transform: scale(1.05);
}

.president-status-badge {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.president-executive-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 3px 0;
    letter-spacing: -0.2px;
}

.president-executive-title {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
}

.president-executive-sub {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Başkanlık Direkt Hattı Kutusu */
.president-hotline-card {
    width: 100%;
    background: linear-gradient(135deg, #071528 0%, #0d223f 100%);
    border-radius: 12px;
    padding: 16px 16px 14px;
    border: 1px solid rgba(212, 163, 89, 0.3);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 6px 18px rgba(6, 19, 38, 0.18);
}

.hotline-card-header {
    font-size: 10px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.hotline-phone {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    letter-spacing: 0.4px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.hotline-phone i {
    color: var(--gold);
    font-size: 15px;
}

.hotline-phone:hover {
    color: var(--gold);
    transform: scale(1.03);
}

.hotline-btns-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.btn-hotline-call {
    background: linear-gradient(135deg, var(--gold) 0%, #b8863b 100%);
    color: #061326;
    font-weight: 800;
    font-size: 11.5px;
    padding: 8px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(212, 163, 89, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hotline-call:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(212, 163, 89, 0.45);
    color: #061326;
}

.btn-hotline-wa {
    background: #10b981;
    color: #ffffff;
    font-weight: 800;
    font-size: 11.5px;
    padding: 8px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hotline-wa:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(16, 185, 129, 0.45);
    color: #ffffff;
}

.hotline-note {
    font-size: 9.5px;
    color: #94a3b8;
    line-height: 1.35;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
}

/* Sağ Kolon: Başkanın Mesajı & Vizyon */
.president-message-col {
    padding: 36px 42px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
}

.president-watermark-quote {
    position: absolute;
    right: 28px;
    top: 10px;
    font-size: 130px;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1;
    color: rgba(212, 163, 89, 0.08);
    pointer-events: none;
    user-select: none;
    font-weight: 900;
}

.president-message-header {
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.president-speech-heading {
    font-size: 21px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    color: var(--primary-dark) !important;
    margin: 8px 0 10px 0 !important;
    letter-spacing: -0.3px;
}

.president-title-accent {
    width: 60px;
    height: 3.5px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(212, 163, 89, 0.2) 100%);
    border-radius: 3px;
    margin-bottom: 16px;
}

.president-message-body {
    font-size: 14px;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.president-message-body p {
    margin-bottom: 12px;
}

.president-message-body p:last-child {
    margin-bottom: 0;
}

.president-salutation {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    font-style: italic;
    margin-bottom: 12px;
}

/* 3 Güven & Dayanışma İlkesi */
.president-pillars-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.pillar-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.pillar-chip:hover {
    background: #ffffff;
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(212, 163, 89, 0.15);
}

/* İmza ve Resmi Temsil Alt Bilgisi */
.president-signoff-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #e2e8f0;
    padding-top: 18px;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.signoff-signature-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.president-sign-img {
    height: 42px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.signoff-meta {
    display: flex;
    flex-direction: column;
}

.signoff-name {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.25;
}

.signoff-title {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.signoff-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(16, 185, 129, 0.1);
}

@media (max-width: 992px) {
    .president-master-card {
        grid-template-columns: 1fr;
    }
    .president-sidebar-col {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 28px 20px;
    }
    .president-message-col {
        padding: 28px 22px;
    }
    .president-watermark-quote {
        display: none;
    }
}

/* ==========================================================================
   HOMEPAGE DEDICATED FAQ (SSS) SECTION
   ========================================================================== */
.home-faq-section {
    padding: 60px 0 65px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.faq-section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 36px;
}

.faq-badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 163, 89, 0.12);
    border: 1px solid rgba(212, 163, 89, 0.35);
    color: #9f6f21;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.faq-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #061326;
    line-height: 1.3;
    margin-bottom: 10px;
}

.faq-section-sub {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

.faq-container-centered {
    max-width: 900px;
    margin: 0 auto;
}

.seo-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seo-faq-item {
    background: #ffffff;
    border: 1.2px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(6, 19, 38, 0.03);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.seo-faq-item:hover {
    border-color: rgba(212, 163, 89, 0.55);
    box-shadow: 0 6px 18px rgba(6, 19, 38, 0.06);
    transform: translateY(-1px);
}

.seo-faq-item.active {
    border-color: #d4a359;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(212, 163, 89, 0.14);
}

.seo-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    user-select: none;
}

.faq-q-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.faq-q-num {
    font-size: 11px;
    font-weight: 800;
    color: #d4a359;
    background: rgba(212, 163, 89, 0.12);
    border: 1px solid rgba(212, 163, 89, 0.25);
    padding: 4px 8px;
    border-radius: 8px;
    flex-shrink: 0;
    line-height: 1;
}

.faq-q-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #061326;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.seo-faq-item.active .faq-q-title {
    color: #0b1a2d;
    font-weight: 800;
}

.faq-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #64748b;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.seo-faq-item:hover .faq-toggle-icon {
    border-color: rgba(212, 163, 89, 0.5);
    color: #d4a359;
}

.seo-faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    background: #d4a359;
    color: #ffffff;
    border-color: #d4a359;
    box-shadow: 0 2px 8px rgba(212, 163, 89, 0.35);
}

.seo-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease,
                margin-top 0.25s ease;
    font-size: 13.5px;
    line-height: 1.7;
    color: #475569;
    padding: 0 4px 2px 42px;
    margin-top: 0;
}

.seo-faq-answer p {
    margin-bottom: 0;
}

.seo-faq-item.active .seo-faq-answer {
    max-height: 600px;
    opacity: 1;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
}

/* FAQ Bottom Help Card */
.faq-bottom-help-card {
    margin-top: 30px;
    background: linear-gradient(135deg, #071528 0%, #0d223f 100%);
    border-radius: 16px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(212, 163, 89, 0.35);
    box-shadow: 0 10px 30px rgba(6, 19, 38, 0.15);
    color: #ffffff;
}

.faq-help-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-help-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(212, 163, 89, 0.15);
    border: 1.2px solid rgba(212, 163, 89, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a359;
    font-size: 20px;
    flex-shrink: 0;
}

.faq-help-text h4 {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3px;
}

.faq-help-text p {
    font-size: 12.5px;
    color: #94a3b8;
    margin-bottom: 0;
}

.faq-help-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.faq-help-actions .btn-primary-gold {
    padding: 10px 18px;
    font-size: 12.5px;
    border-radius: 8px;
}

.btn-outline-gold-light {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    font-size: 12.5px;
    font-weight: 700;
    color: #f7e1b5;
    border: 1.2px solid rgba(212, 163, 89, 0.5);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    background: rgba(212, 163, 89, 0.08);
}

.btn-outline-gold-light:hover {
    background: var(--gold);
    color: #061326;
    border-color: var(--gold);
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .home-president-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .president-speech-col {
        padding: 22px 18px;
    }
}

@media (max-width: 768px) {
    .faq-section-title {
        font-size: 21px;
    }
    .faq-section-sub {
        font-size: 12.5px;
    }
    .seo-faq-item {
        padding: 14px 16px;
    }
    .faq-q-title {
        font-size: 13.5px;
    }
    .seo-faq-answer {
        font-size: 12.5px;
        padding-left: 0;
    }
    .faq-bottom-help-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
        gap: 16px;
    }
    .faq-help-content {
        flex-direction: column;
        text-align: center;
    }
    .faq-help-actions {
        width: 100%;
        flex-direction: column;
    }
    .faq-help-actions a {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   UNIVERSAL AVATAR HOLDER & HUMAN ICON FALLBACK
   ========================================================================== */
.avatar-holder {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
}

.avatar-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar-holder.is-fallback-avatar,
.avatar-holder.has-avatar-icon {
    background: linear-gradient(135deg, #061326 0%, #1e293b 100%) !important;
    border: 1.5px solid rgba(212, 163, 89, 0.35);
}

.avatar-icon-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a359;
    font-size: 2.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.member-row-card:hover .avatar-icon-box,
.board-member-card:hover .avatar-icon-box {
    color: #f7e1b5;
    transform: scale(1.1);
}

/* Specific Sizes for Members & Board */
.member-photo-square.avatar-holder {
    width: 90px;
    height: 100px;
    min-width: 90px;
    border-radius: var(--radius-sm, 8px);
}

.member-photo-square .avatar-icon-box {
    font-size: 34px;
}

.board-photo-wrap.avatar-holder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 20px auto 16px;
    border: 3px solid var(--border-light, #e2e8f0);
}

.board-photo-wrap.avatar-holder.is-fallback-avatar {
    border-color: rgba(212, 163, 89, 0.45) !important;
    box-shadow: 0 4px 18px rgba(6, 19, 38, 0.15);
}

.board-photo-wrap .avatar-icon-box {
    font-size: 42px;
}

.board-member-simple .board-photo-wrap.avatar-holder {
    width: 100px;
    height: 100px;
    margin: 10px auto 14px;
}

.board-member-simple .board-photo-wrap .avatar-icon-box {
    font-size: 36px;
}

/* Membership Application dropzone avatar preview */
.avatar-preview-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
}

.avatar-preview-frame {
    width: 72px;
    height: 86px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(6, 19, 38, 0.08);
}

.avatar-preview-info {
    flex: 1;
}

.avatar-preview-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #061326;
    margin-bottom: 3px;
}

.avatar-preview-hint {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* ==========================================================================
   MODERN SITE TOAST NOTIFICATION SYSTEM
   ========================================================================== */
.site-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: 420px;
    width: calc(100% - 48px);
}

.site-toast {
    pointer-events: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 14px 38px -4px rgba(6, 19, 38, 0.18), 0 4px 14px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.85);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    position: relative;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.site-toast.toast-show {
    transform: translateX(0);
    opacity: 1;
}

.site-toast.toast-hide {
    transform: translateX(120%);
    opacity: 0;
}

.site-toast-accent {
    width: 6px;
    flex-shrink: 0;
}

.site-toast.toast-success .site-toast-accent {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.site-toast.toast-error .site-toast-accent {
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

.site-toast.toast-info .site-toast-accent {
    background: linear-gradient(180deg, #d4a359 0%, #b45309 100%);
}

.site-toast-inner {
    padding: 16px 18px 16px 14px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
}

.site-toast-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.site-toast.toast-success .site-toast-icon {
    background: #ecfdf5;
    color: #10b981;
}

.site-toast.toast-error .site-toast-icon {
    background: #fef2f2;
    color: #ef4444;
}

.site-toast.toast-info .site-toast-icon {
    background: #fffbeb;
    color: #d4a359;
}

.site-toast-content {
    flex: 1;
}

.site-toast-title {
    font-size: 14.5px;
    font-weight: 800;
    color: #061326;
    margin: 0 0 4px;
    line-height: 1.3;
}

.site-toast-desc {
    font-size: 12.5px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.site-toast-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    margin: -4px -4px 0 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.site-toast-close:hover {
    color: #061326;
}

.site-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(16, 185, 129, 0.4);
    width: 100%;
    transform-origin: left;
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

@media (max-width: 480px) {
    .site-toast-container {
        top: 14px;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
    }
}









/* ==========================================================================
   EBSOD MODERN CORPORATE UNIFIED DESIGN SYSTEM (2026 UPDATE)
   Harmonized Section Tokens, Cohesive Badges, Elevated Cards & Hover States
   ========================================================================== */

/* Universal Section Kicker Pill */
.section-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(200, 138, 53, 0.08);
    border: 1px solid rgba(200, 138, 53, 0.28);
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 800;
    color: #b58842;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(200, 138, 53, 0.06);
    transition: all 0.25s ease;
}

.section-badge-pill:hover {
    background: rgba(200, 138, 53, 0.14);
    border-color: rgba(200, 138, 53, 0.45);
    transform: translateY(-1px);
}

.section-badge-pill i {
    color: var(--gold);
    font-size: 12.5px;
}

/* Universal Section Title Divider */
.section-divider-line {
    width: 48px;
    height: 3.5px;
    background: linear-gradient(90deg, #b58842 0%, #d4a359 100%);
    border-radius: 2px;
    margin: 12px 0 16px;
}

.section-divider-line.centered {
    margin: 12px auto 16px;
}

/* Dual-Tone Gold Gradient Text Accent */
.text-gold-gradient {
    background: linear-gradient(135deg, #b58842 0%, #e2b968 50%, #c4944b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Sub-description styling */
.section-sub-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    max-width: 680px;
}

/* ==========================================================================
   HOME ACTIVITIES SECTION (FAALİYETLERİMİZ & SAHA ÇALIŞMALARI - COMPACT)
   ========================================================================== */
.home-activities-section {
    padding: 34px 0 38px;
    background: #f8fafc;
    position: relative;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.home-activities-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.home-activities-head .section-heading-dark {
    font-size: 23px;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 3px;
}

.home-activities-head .section-divider-line {
    margin: 6px 0 8px;
    width: 32px;
    height: 2.5px;
}

.home-activities-head .section-sub-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    max-width: 640px;
    margin: 0;
}

.home-activities-head-right .btn-outline-navy {
    padding: 8px 16px;
    font-size: 12px;
}

.home-activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-activity-card {
    background: #ffffff;
    border: 1px solid rgba(6, 19, 38, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 3px 12px rgba(6, 19, 38, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
}

.home-activity-card-inner {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.activity-card-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #c88a35, #e2b968, #c88a35);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    z-index: 10;
}

.home-activity-card:hover .activity-card-top-line {
    transform: scaleX(1);
}

.home-activity-card:hover {
    border-color: rgba(200, 138, 53, 0.4);
    box-shadow: 0 10px 24px rgba(6, 19, 38, 0.08);
    transform: translateY(-4px);
}

.home-activity-thumb {
    position: relative;
    aspect-ratio: 16 / 9.5;
    max-height: 135px;
    overflow: hidden;
    background: #061326;
}

.home-activity-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(6, 19, 38, 0.55) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.home-activity-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
}

.home-activity-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-activity-card:hover .home-activity-thumb img {
    transform: scale(1.05);
}

.home-activity-cat-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(6, 19, 38, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #e2b968;
    border: 1px solid rgba(226, 185, 104, 0.4);
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.home-activity-pdf-pill {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(239, 68, 68, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 8.5px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.35);
    z-index: 3;
}

.home-activity-body {
    padding: 12px 14px 8px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-activity-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10.5px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 5px;
}

.home-activity-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.home-activity-saha-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.home-activity-title {
    font-size: 13.5px;
    font-weight: 750;
    color: #061326;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.2px;
    transition: color 0.25s ease;
}

.home-activity-title a {
    color: inherit;
    text-decoration: none;
}

.home-activity-card:hover .home-activity-title {
    color: #b58842;
}

.home-activity-excerpt {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
    flex-grow: 1;
}

.home-activity-footer {
    padding: 9px 14px 10px;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-activity-link {
    font-size: 11px;
    font-weight: 800;
    color: #061326;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.home-activity-link i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(200, 138, 53, 0.12);
    color: #b58842;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    transition: all 0.25s ease;
}

.home-activity-card:hover .home-activity-link {
    color: #b58842;
}

.home-activity-card:hover .home-activity-link i {
    background: #b58842;
    color: #ffffff;
    transform: translateX(2px);
}

.home-activity-dl-btn {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.home-activity-dl-btn:hover {
    background: #ef4444;
    color: #ffffff;
}

.home-activities-mobile-more {
    display: none;
    text-align: center;
    margin-top: 20px;
}

/* ==========================================================================
   HARMONIZED ABOUT SECTION REFINEMENTS
   ========================================================================== */
.home-about-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.about-features-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-mini-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px !important;
    background: #ffffff !important;
    border: 1px solid #edf2f7 !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(6, 19, 38, 0.03) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.feature-mini-card:hover {
    border-color: rgba(200, 138, 53, 0.4) !important;
    transform: translateX(4px) !important;
    box-shadow: 0 6px 20px rgba(6, 19, 38, 0.07) !important;
}

.feature-mini-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    background: rgba(200, 138, 53, 0.1) !important;
    border: 1px solid rgba(200, 138, 53, 0.2) !important;
    color: #b58842 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
    transition: all 0.25s ease !important;
}

.feature-mini-card:hover .feature-mini-icon {
    background: #061326 !important;
    color: #e2b968 !important;
    border-color: #061326 !important;
}

.feature-mini-content h4 {
    font-size: 13.5px !important;
    font-weight: 800 !important;
    color: #061326 !important;
    margin: 0 0 3px !important;
    letter-spacing: 0.3px !important;
}

.feature-mini-content p {
    font-size: 12px !important;
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.45 !important;
}

.about-video-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(6, 19, 38, 0.06);
    transition: all 0.3s ease;
}

.about-video-card:hover {
    border-color: rgba(200, 138, 53, 0.4);
    box-shadow: 0 14px 34px rgba(6, 19, 38, 0.1);
    transform: translateY(-4px);
}

/* ==========================================================================
   HARMONIZED RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .home-activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .home-activities-section {
        padding: 26px 0 30px;
    }
    .home-activities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .home-activities-head {
        margin-bottom: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .home-activities-head-right {
        display: none;
    }
    .home-activities-mobile-more {
        display: block;
    }
}

/* ==========================================================================
   HOME SECTION: DERNEK BAŞKANINDAN MESAJ (Tam Genişlik Prestijli Kurumsal Tasarım)
   ========================================================================== */
.home-baskan-fullwidth-section {
    padding: 70px 0 80px;
    background: linear-gradient(145deg, #061326 0%, #0a1d38 40%, #0d2644 100%);
    position: relative;
    overflow: hidden;
    border-top: 3px solid #c88a35;
}

.baskan-fw-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(200, 138, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 138, 53, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(6, 19, 38, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.baskan-fw-bg-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 138, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.baskan-fw-wrapper {
    position: relative;
    z-index: 1;
}

.baskan-fw-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.baskan-fw-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #e2b968;
    background: rgba(200, 138, 53, 0.12);
    border: 1px solid rgba(200, 138, 53, 0.3);
    padding: 5px 14px;
    border-radius: 6px;
    text-transform: uppercase;
}

.baskan-fw-badge i {
    color: #c88a35;
    font-size: 12px;
}

.baskan-fw-header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 138, 53, 0.4) 0%, rgba(200, 138, 53, 0.05) 100%);
    min-width: 60px;
}

.baskan-fw-location {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.baskan-fw-location i {
    color: #c88a35;
}

.baskan-fw-main-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: stretch;
}

.baskan-fw-portrait-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 30px 30px 30px 10px;
    border-right: 1px solid rgba(200, 138, 53, 0.15);
}

.baskan-fw-portrait-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.baskan-fw-portrait-deco-ring {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: 12px;
    border-radius: 50%;
    border: 2px dashed rgba(200, 138, 53, 0.2);
    animation: baskanRingRotate 20s linear infinite;
}

@keyframes baskanRingRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.baskan-fw-portrait-frame {
    position: relative;
    width: 200px;
    height: 200px;
    min-width: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 0 3px #c88a35,
        0 0 0 7px rgba(200, 138, 53, 0.15),
        0 20px 50px rgba(0, 0, 0, 0.3);
    background: #061326;
    flex-shrink: 0;
}

.baskan-fw-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.baskan-fw-portrait-frame:hover .baskan-fw-portrait-img {
    transform: scale(1.06);
}

.baskan-fw-portrait-badge {
    margin-top: -16px;
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, #c88a35 0%, #e2b968 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-align: center;
    padding: 4px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(200, 138, 53, 0.3);
}

.baskan-fw-portrait-badge i {
    font-size: 11px;
}

.baskan-fw-identity {
    width: 100%;
    text-align: center;
}

.baskan-fw-name {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 3px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.baskan-fw-role {
    font-size: 14px;
    font-weight: 700;
    color: #e2b968;
    margin: 0 0 3px;
    line-height: 1.3;
}

.baskan-fw-org {
    font-size: 11.5px;
    font-weight: 500;
    color: #94a3b8;
    display: block;
    line-height: 1.3;
}

.baskan-fw-phone-btn {
    width: 100%;
    max-width: 280px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 138, 53, 0.12);
    color: #ffffff !important;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none !important;
    border: 1px solid rgba(200, 138, 53, 0.3);
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.baskan-fw-phone-btn:hover {
    background: rgba(200, 138, 53, 0.22);
    border-color: #e2b968;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 138, 53, 0.2);
}

.baskan-fw-phone-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(200, 138, 53, 0.25);
    color: #e2b968;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.baskan-fw-phone-btn:hover .baskan-fw-phone-icon {
    background: #c88a35;
    color: #ffffff;
}

.baskan-fw-phone-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.baskan-fw-phone-info small {
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.baskan-fw-phone-info strong {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.baskan-fw-signature {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(200, 138, 53, 0.12);
    margin-top: auto;
}

.baskan-fw-sig-img {
    height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.6);
}

.baskan-fw-sig-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.baskan-fw-sig-name {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.baskan-fw-sig-title {
    font-size: 10.5px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.3;
}

.baskan-fw-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 20px 0;
}

.baskan-fw-quote-mark {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 80px;
    color: rgba(200, 138, 53, 0.06);
    pointer-events: none;
    line-height: 1;
}

.baskan-fw-headline {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 18px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 2;
}

.baskan-fw-message {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.baskan-fw-message p {
    font-size: 16px;
    line-height: 1.75;
    color: #cbd5e1;
    margin: 0;
    font-weight: 400;
}

.baskan-fw-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c88a35, #e2b968);
    border-radius: 2px;
    margin-bottom: 24px;
}

.baskan-fw-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.baskan-fw-pillar-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 138, 53, 0.15);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.25s ease;
}

.baskan-fw-pillar-item:hover {
    background: rgba(200, 138, 53, 0.08);
    border-color: rgba(200, 138, 53, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.baskan-fw-pillar-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(200, 138, 53, 0.15);
    color: #e2b968;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.baskan-fw-pillar-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.baskan-fw-pillar-text strong {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
}

.baskan-fw-pillar-text span {
    font-size: 11.5px;
    color: #94a3b8;
    line-height: 1.3;
}

.baskan-fw-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.baskan-fw-team-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c88a35 0%, #e2b968 100%);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(200, 138, 53, 0.3);
}

.baskan-fw-team-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 138, 53, 0.4);
    filter: brightness(1.08);
}

.baskan-fw-btn-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.baskan-fw-team-btn:hover .baskan-fw-btn-arrow {
    transform: translateX(4px);
}

.baskan-fw-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e2b968 !important;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none !important;
    border: 1px solid rgba(200, 138, 53, 0.3);
    transition: all 0.25s ease;
    background: transparent;
}

.baskan-fw-about-btn:hover {
    background: rgba(200, 138, 53, 0.1);
    border-color: #e2b968;
    transform: translateY(-2px);
}

.baskan-fw-about-btn i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.baskan-fw-about-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .home-baskan-fullwidth-section {
        padding: 50px 0 60px;
    }
    .baskan-fw-main-grid {
        grid-template-columns: 280px 1fr;
        gap: 35px;
    }
    .baskan-fw-portrait-frame {
        width: 170px;
        height: 170px;
        min-width: 170px;
    }
    .baskan-fw-headline {
        font-size: 24px;
    }
    .baskan-fw-pillars {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .home-baskan-fullwidth-section {
        padding: 40px 0 50px;
    }
    .baskan-fw-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .baskan-fw-portrait-side {
        border-right: none;
        border-bottom: 1px solid rgba(200, 138, 53, 0.15);
        padding: 0 0 30px 0;
    }
    .baskan-fw-portrait-frame {
        width: 180px;
        height: 180px;
        min-width: 180px;
    }
    .baskan-fw-headline {
        font-size: 22px;
    }
    .baskan-fw-message p {
        font-size: 15px;
    }
    .baskan-fw-phone-btn {
        max-width: 300px;
        margin: 0 auto;
    }
    .baskan-fw-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .baskan-fw-team-btn {
        justify-content: center;
    }
    .baskan-fw-about-btn {
        justify-content: center;
    }
    .baskan-fw-section-header {
        margin-bottom: 28px;
    }
    .baskan-fw-header-line {
        display: none;
    }
}

/* ==========================================================================
   Modern Image & Layout Performance Optimizations (Core Web Vitals)
   ========================================================================== */
.home-gallery-grid,
.activities-grid,
.gallery-photos-grid,
.home-activities-grid,
.events-public-grid,
.duyurular-list-wrap {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

img[loading="lazy"] {
    image-rendering: auto;
}

.logo-img,
.footer-logo-img,
.mobile-nav-logo {
    image-rendering: -webkit-optimize-contrast;
}

/* SSS - Sıkça Sorulan Sorular Akordeon Kartları */
.faq-accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-accordion-item[open] {
    border-color: rgba(200, 138, 53, 0.45);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(6, 19, 38, 0.06);
}

.faq-accordion-item summary {
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    color: #061326;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.faq-accordion-item summary::-webkit-details-marker {
    display: none;
}

.faq-accordion-item summary:hover {
    color: #c88a35;
    background: #fcfaf6;
}

.faq-accordion-item summary i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.faq-accordion-item[open] summary i {
    transform: rotate(180deg);
}

.faq-accordion-body {
    padding: 16px 22px 22px 22px;
    font-size: 14px;
    line-height: 1.75;
    color: #475569;
    border-top: 1px solid #f1f5f9;
    background: #fbfcfe;
}

/* ==========================================================================
   EBSOD CORPORATE SITE PRELOADER
   ========================================================================== */
.site-preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #061326;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-preloader.preloader-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    max-width: 440px;
}
.preloader-logo-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: preloaderLogoPulse 2s ease-in-out infinite;
}
@keyframes preloaderLogoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(200, 138, 53, 0.35)); }
    50% { transform: scale(1.06); filter: drop-shadow(0 0 18px rgba(200, 138, 53, 0.75)); }
}
.preloader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(200, 138, 53, 0.15);
    border-top-color: #c88a35;
    animation: preloaderSpin 1.1s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
}
.preloader-ring-outer {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px dashed rgba(200, 138, 53, 0.35);
    border-bottom-color: #e2b968;
    animation: preloaderSpinRev 2.6s linear infinite;
}
@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}
@keyframes preloaderSpinRev {
    to { transform: rotate(-360deg); }
}
.preloader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.preloader-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #e2b968 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.preloader-sub {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.preloader-bar {
    width: 150px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    margin-top: 6px;
}
.preloader-bar-progress {
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #c88a35, #e2b968, #c88a35);
    border-radius: 3px;
    position: absolute;
    animation: preloaderBarSlide 1.3s ease-in-out infinite;
}
@keyframes preloaderBarSlide {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* ==========================================================================
   EBSOD 404 NOT FOUND PAGE STYLES
   ========================================================================== */
.error-page-banner {
    background: linear-gradient(135deg, #061326 0%, #0d2340 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 50px 0;
    border-bottom: 1px solid rgba(200, 138, 53, 0.2);
}
.error-page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(200, 138, 53, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.error-upper-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-primary-gold {
    background: linear-gradient(135deg, #c88a35, #e2b968);
    color: #061326 !important;
    border: none;
    box-shadow: 0 4px 14px rgba(200, 138, 53, 0.35);
}
.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 138, 53, 0.45);
    color: #061326 !important;
}
.btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffffff;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.error-main-section {
    padding: 70px 0 90px 0;
    background: #f8fafc;
    min-height: 600px;
}
.error-card-wrapper {
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px -10px rgba(6, 19, 38, 0.07);
    padding: 50px 45px;
}
.error-visual-area {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px auto;
}
.error-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}
.error-badge-pulse {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: errorPulse 1.8s infinite;
}
@keyframes errorPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.error-big-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
    color: #061326;
    margin-bottom: 20px;
    font-family: inherit;
}
.error-big-number .num-digit {
    background: linear-gradient(135deg, #061326 30%, #c88a35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.error-big-number .num-icon {
    font-size: 75px;
    color: #c88a35;
    animation: compassWiggle 4s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
}
@keyframes compassWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(18deg); }
    75% { transform: rotate(-18deg); }
}
.error-card-title {
    font-size: 26px;
    font-weight: 800;
    color: #061326;
    margin-bottom: 12px;
}
.error-card-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* In-Page Search Box */
.error-search-container {
    max-width: 620px;
    margin: 0 auto 50px auto;
}
.error-search-form {
    display: flex;
    align-items: center;
    position: relative;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 6px 8px 6px 18px;
    transition: all 0.25s ease;
}
.error-search-form:focus-within {
    border-color: #c88a35;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(200, 138, 53, 0.15);
}
.search-input-icon {
    color: #94a3b8;
    font-size: 16px;
    margin-right: 12px;
}
.error-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #061326;
    outline: none;
    padding: 10px 0;
}
.error-search-input::placeholder {
    color: #94a3b8;
}
.btn-error-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    font-size: 12.5px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
}

/* Quick Action Grid */
.error-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 45px;
}
@media (max-width: 900px) {
    .error-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .error-card-wrapper {
        padding: 35px 22px;
    }
    .error-big-number {
        font-size: 80px;
    }
    .error-big-number .num-icon {
        font-size: 55px;
    }
}
@media (max-width: 520px) {
    .error-quick-grid {
        grid-template-columns: 1fr;
    }
}
.error-quick-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.error-quick-card:hover {
    border-color: rgba(200, 138, 53, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(6, 19, 38, 0.08);
}
.error-quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200, 138, 53, 0.1);
    color: #c88a35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.error-quick-card:hover .error-quick-icon {
    background: #c88a35;
    color: #061326;
}
.error-quick-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.error-quick-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #061326;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.error-quick-sub {
    font-size: 11px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.error-quick-arrow {
    font-size: 11px;
    color: #cbd5e1;
    transition: transform 0.2s ease, color 0.2s ease;
}
.error-quick-card:hover .error-quick-arrow {
    color: #c88a35;
    transform: translateX(3px);
}

/* Support Ribbon */
.error-support-ribbon {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border: 1px dashed #cbd5e1;
}
.support-ribbon-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}
.support-ribbon-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #061326;
    text-decoration: none;
    transition: all 0.2s ease;
}
.support-badge:hover {
    border-color: #c88a35;
    color: #c88a35;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(6, 19, 38, 0.05);
}
.support-badge i {
    color: #c88a35;
    font-size: 12px;
}
