/* YTLDER Professional Association Web Portal Styling System */

/* Reset & Global Color Tokens */
:root {
    --bg-dark: #f5f8fc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --primary: #0A2540; /* Logo Primary Navy */
    --primary-glow: rgba(10, 37, 64, 0.15);
    --accent: #0077b6; /* Accent Cobalt */
    --accent-glow: rgba(0, 119, 182, 0.12);
    --text-main: #0B1E33;
    --text-muted: #5c6f84;
    --text-light: #ffffff;
    --border-color: rgba(10, 37, 64, 0.08);
    --border-hover: rgba(0, 119, 182, 0.25);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Grids */
.mesh-gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: -2;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(65px);
    opacity: 0.85;
    animation: drift 15s infinite alternate ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #93c5fd 0%, transparent 75%);
    top: -10%;
    left: -10%;
    animation-duration: 20s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #c7d2fe 0%, transparent 75%);
    bottom: -15%;
    right: -10%;
    animation-duration: 25s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #99f6e4 0%, transparent 75%);
    top: 35%;
    right: 15%;
    animation-duration: 18s;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(10, 37, 64, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 37, 64, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(120px, -80px) scale(1.2); }
    100% { transform: translate(-60px, 90px) scale(0.85); }
}

/* Page Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loader-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    animation: loaderTitlePulse 1.5s infinite alternate ease-in-out;
}

.progress-bar-container {
    width: 240px;
    height: 6px;
    background: rgba(10, 37, 64, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.8rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    transition: width 0.1s linear;
}

.loader-percentage {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

@keyframes loaderTitlePulse {
    0% { transform: scale(0.97); opacity: 0.8; }
    100% { transform: scale(1.03); opacity: 1; text-shadow: 0 0 15px rgba(10, 37, 64, 0.15); }
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.align-items-center { align-items: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-size: 0.95rem;
    border: none;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow), 0 0 15px rgba(0, 119, 182, 0.35);
}

.btn-glow {
    animation: btnPulse 2s infinite alternate;
}

@keyframes btnPulse {
    0% { box-shadow: 0 4px 15px var(--primary-glow); }
    100% { box-shadow: 0 4px 25px rgba(0, 119, 182, 0.5); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(0, 119, 182, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 990;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    background: rgb(243, 246, 250);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgb(255, 255, 255);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
}

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

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition-smooth);
}

.nav-link i {
    font-size: 0.7rem;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover i {
    transform: translateY(2px);
}

/* Dropdown Menu styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 220px;
    box-shadow: 0 15px 45px rgba(10, 37, 64, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.dropdown-menu a:hover {
    background: rgba(0, 119, 182, 0.05);
    color: var(--accent);
    padding-left: 1.8rem;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: -15px 0 45px rgba(10, 37, 64, 0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    transition: var(--transition-smooth);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-logo {
    height: 40px;
}

.drawer-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    overflow-y: auto;
}

.drawer-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.drawer-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-submenu {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border-color);
}

.drawer-submenu.active {
    display: flex;
}

.drawer-submenu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

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

.drawer-link-single {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-main);
    text-decoration: none;
}

.drawer-cta {
    margin-top: 1.5rem;
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    height: 100vh;
    width: 100%;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: stretch;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-text-side {
    flex: 0 0 45%;
    background: linear-gradient(135deg, #ffffff 0%, #f4f6fa 100%);
    display: flex;
    align-items: center;
    padding: 0 6rem;
    position: relative;
    z-index: 2;
    box-shadow: 10px 0 30px rgba(10, 37, 64, 0.05);
    box-sizing: border-box;
}

.slide-image-side-wrapper {
    flex: 0 0 55%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.08);
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: cover !important;
    background-position: center center !important;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-content {
    max-width: 680px;
    text-align: left;
    color: var(--text-main);
}

.slide-badge {
    background: rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.15);
    color: var(--accent);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.slide-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary);
    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.slide-content p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

.slide-text-side .btn-secondary {
    background: rgba(10, 37, 64, 0.05);
    color: var(--primary);
    border: 1px solid rgba(10, 37, 64, 0.15);
}

.slide-text-side .btn-secondary:hover {
    background: rgba(10, 37, 64, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.slide.active .slide-badge,
.slide.active .slide-content h2,
.slide.active .slide-content p,
.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 37, 64, 0.05);
    border: 1px solid rgba(10, 37, 64, 0.1);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 15px var(--primary-glow);
    border-color: var(--primary);
}

.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }

.slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dots .dot {
    width: 25px;
    height: 4px;
    background: rgba(10, 37, 64, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background: var(--accent);
    width: 45px;
    box-shadow: 0 0 8px var(--accent-glow);
}

/* Section Common Titles */
.section-title-badge {
    background: rgba(0, 90, 141, 0.08);
    border: 1px solid rgba(0, 90, 141, 0.12);
    color: var(--accent);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
    text-align: center;
}

.section-title.text-left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.text-highlight {
    font-weight: 500;
    color: var(--primary);
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
    font-style: italic;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* President Greeting Section */
.president-section {
    padding: 100px 0;
}

.president-img-area {
    display: flex;
    justify-content: center;
}

.president-card-frame {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.05);
    text-align: center;
}

.president-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f2fe, #c7d2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 4.5rem;
    color: var(--primary);
    border: 5px solid #ffffff;
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.08);
    overflow: hidden;
}

.president-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.president-badge h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.president-badge span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.president-signature {
    margin-top: 2rem;
}

.sig-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.sig-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(5px);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    gap: 2.5rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
}

.stat-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Commissions Section */
.commissions-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.commission-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.03);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.commission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.commission-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
}

.commission-card:hover::before {
    transform: scaleX(1);
}

.comm-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 119, 182, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1.8rem;
    transition: var(--transition-smooth);
}

.commission-card:hover .comm-icon {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.commission-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.commission-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.comm-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
}

.comm-link i {
    transition: var(--transition-smooth);
}

.commission-card:hover .comm-link {
    color: var(--primary);
}

.commission-card:hover .comm-link i {
    transform: translateX(4px);
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.3);
    border-top: 1px solid var(--border-color);
}

.news-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
}

.news-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: #ffffff;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 30px;
    z-index: 1;
}

.bg-accent-tag {
    background: var(--accent);
}

.news-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.news-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.news-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1.8rem;
    flex-grow: 1;
    line-height: 1.5;
}

.btn-text-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
}

.btn-text-link i {
    transition: var(--transition-smooth);
}

.news-card:hover .btn-text-link {
    color: var(--primary);
}

.news-card:hover .btn-text-link i {
    transform: translateX(4px);
}

.news-action-area {
    text-align: center;
    margin-top: 3.5rem;
}

/* Infinite Scrolling Logobar */
.logobar-section {
    padding: 60px 0 80px;
    border-bottom: 1px solid var(--border-color);
}

.logobar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.logobar-header h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.infinite-logobar-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
}

.infinite-logobar-wrapper::before,
.infinite-logobar-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.infinite-logobar-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}

.infinite-logobar-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-dark) 0%, transparent 100%);
}

.logobar-track {
    display: flex;
    width: max-content;
    animation: scrollLogobar 28s linear infinite;
}

.logo-slide {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.5rem;
}

.logo-slide span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    opacity: 0.45;
    transition: var(--transition-smooth);
    cursor: default;
}

.logo-slide:hover span {
    opacity: 0.95;
    color: var(--primary);
    transform: scale(1.05);
}

@keyframes scrollLogobar {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer Section */
.footer {
    background: #08121e;
    color: #e2e8f0;
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid-container {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 5px;
}

.footer-about p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 119, 182, 0.4);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-links h4::before,
.footer-contact h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 0.4rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    background: #050b13;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-container p {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: #94a3b8;
}

/* Animations CSS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .btn-nav-cta {
        display: none;
    }
    
    .mobile-toggle-btn {
        display: block;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .president-img-area {
        margin-bottom: 3rem;
    }
    
    .footer-grid-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    /* Responsive Split Slider */
    .slide {
        flex-direction: column;
    }
    
    .slide-text-side {
        flex: 0 0 60%;
        padding: 6rem 3rem 3rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .slide-image-side-wrapper {
        flex: 0 0 40%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }
    
    .blob {
        opacity: 0.4;
        filter: blur(50px);
    }
    
    .blob-1 { width: 250px; height: 250px; }
    .blob-2 { width: 280px; height: 280px; }
    .blob-3 { width: 180px; height: 180px; }

    .logo-img {
        height: 38px;
    }
    
    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev { left: 1rem; }
    .slider-arrow.next { right: 1rem; }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-grid-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile Split Slider Tweaks */
    .slide-text-side {
        flex: 0 0 65%;
        padding: 5rem 1.5rem 2rem;
    }
    
    .slide-image-side-wrapper {
        flex: 0 0 35%;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

/* Commissions Quote Banner */
.commissions-quote {
    margin-top: 4rem;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.03) 0%, rgba(10, 37, 64, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.commissions-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    color: var(--primary);
    font-weight: 600;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
    font-style: italic;
}

/* Instagram Section */
.instagram-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(5px);
    border-top: 1px solid var(--border-color);
}

.instagram-grid {
    gap: 1.5rem;
}

.instagram-post-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.03);
    transition: var(--transition-smooth);
}

.instagram-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
    border-color: var(--border-hover);
}

.instagram-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 4s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-post-card:hover .instagram-img {
    transform: scale(1.08);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(3px);
}

.instagram-post-card:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.instagram-stats i {
    font-size: 1.25rem;
}

.instagram-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 60px 0;
    }
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Hero Banner (for Single Pages like Faaliyetlerimiz) */
.page-hero-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.03) 0%, rgba(0, 119, 182, 0.03) 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Activities List Page */
.activities-list-section {
    padding: 80px 0 100px;
}

.activities-list-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.activity-list-card {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.03);
    transition: var(--transition-smooth);
}

.activity-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    border-color: var(--border-hover);
}

.activity-card-img-wrapper {
    flex: 0 0 38%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.activity-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.activity-list-card:hover .activity-card-img {
    transform: scale(1.06);
}

.activity-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-card-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.activity-card-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.activity-list-card:hover .activity-card-title {
    color: var(--accent);
}

.activity-card-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 350;
    margin-bottom: 2rem;
}

.activity-card-btn {
    align-self: flex-start;
}

/* Tablet & Mobile Overrides for Activities List */
@media (max-width: 992px) {
    .activity-card-content {
        padding: 2.5rem;
    }
    .activity-card-img-wrapper {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 130px 0 60px;
    }
    .activity-list-card {
        flex-direction: column;
    }
    .activity-card-img-wrapper {
        width: 100%;
        height: 240px;
        flex: none;
    }
    .activity-card-content {
        padding: 2rem 1.5rem;
    }
    .activity-card-title {
        font-size: 1.4rem;
    }
}

/* ==========================================
   NEW CORPORATE PAGES STYLING (ADDITIONAL)
   ========================================== */

/* Timeline styling (for Hakkımızda) */
.timeline-section {
    padding: 80px 0 100px;
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent) 0%, var(--primary) 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: transparent;
    width: 50%;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    top: 15px;
    background: #fff;
    border: 4px solid var(--accent);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 119, 182, 0.3);
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -12px;
    right: auto;
}

.timeline-item:hover .timeline-badge {
    background: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 119, 182, 0.6);
}

.timeline-content {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.02);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.06);
    border-color: var(--border-hover);
}

.timeline-year {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-container::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    .timeline-badge {
        left: 20px !important;
        right: auto !important;
    }
}

/* Values Grid Layout */
.values-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.2);
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.06);
    border-color: var(--border-hover);
}

.value-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.08) 0%, rgba(10, 37, 64, 0.08) 100%);
    color: var(--accent);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: #fff;
    transform: scale(1.05);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Management Board Profile Cards (for Yönetim Kurulu) */
.board-message-container {
    padding: 80px 0 50px;
}

.board-msg-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
}

.board-grid-section {
    padding: 40px 0 100px;
}

.board-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.member-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
    transition: var(--transition-smooth);
    text-align: center;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.07);
    border-color: var(--border-hover);
}

.member-photo-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.05) 0%, rgba(0, 119, 182, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo-fallback {
    font-size: 4rem;
    color: rgba(10, 37, 64, 0.15);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 4s cubic-bezier(0.16, 1, 0.3, 1);
}

.member-card:hover .member-photo {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.member-company {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 1200px) {
    .member-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .member-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .member-grid {
        grid-template-columns: 1fr;
    }
    .board-msg-card {
        padding: 2rem 1.5rem;
    }
}

/* Reading (Charter) Layout (for Dernek Tüzüğü) */
.charter-section {
    padding: 80px 0 100px;
}

.charter-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.charter-sidebar {
    position: sticky;
    top: 110px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
}

.charter-sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.charter-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.charter-nav-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.charter-nav-link:hover {
    background: rgba(0, 119, 182, 0.05);
    color: var(--accent);
    padding-left: 1.3rem;
}

.charter-nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}

.charter-content-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
}

.charter-chapter {
    margin-bottom: 4rem;
    scroll-margin-top: 130px;
}

.charter-chapter:last-child {
    margin-bottom: 0;
}

.charter-chapter h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.charter-article {
    margin-bottom: 2rem;
}

.charter-article:last-child {
    margin-bottom: 0;
}

.charter-article h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.charter-article p {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.charter-article ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.charter-article li {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .charter-layout {
        grid-template-columns: 1fr;
    }
    .charter-sidebar {
        display: none; /* Hide sticky sidebar on tablet/mobile for simplicity or move to top */
    }
    .charter-content-box {
        padding: 2rem 1.5rem;
    }
}

/* Commission Detail Cards (for Çalışma Komisyonları) */
.commissions-detail-section {
    padding: 80px 0 100px;
}

.comm-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
    transition: var(--transition-smooth);
}

.comm-detail-card:last-child {
    margin-bottom: 0;
}

.comm-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.07);
    border-color: var(--border-hover);
}

.comm-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.comm-detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.2);
}

.comm-detail-title h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.comm-detail-title span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comm-detail-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.comm-detail-desc p {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.comm-detail-desc h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.comm-detail-desc ul {
    padding-left: 1.5rem;
}

.comm-detail-desc li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.comm-detail-meta {
    background: rgba(10, 37, 64, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.comm-meta-item {
    margin-bottom: 1.5rem;
}

.comm-meta-item:last-child {
    margin-bottom: 0;
}

.comm-meta-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.comm-meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.comm-meta-value i {
    color: var(--accent);
    margin-right: 0.4rem;
}

@media (max-width: 992px) {
    .comm-detail-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .comm-detail-card {
        padding: 2rem 1.5rem;
    }
}

/* About page custom image styling (medium balanced size) */
.about-card-frame {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 400px; /* Medium width */
    width: 100%;
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.05);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.about-card-frame:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
}

.about-photo {
    width: 230px; /* In-between size (between 180px and 280px) */
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* contain since it's an icon logo */
}

/* ==========================================
   NEW MEMBERSHIP PAGES STYLING (ADDITIONAL)
   ========================================== */

/* Pricing / Dues Cards (for Üyelik Şartları & Aidatlar) */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 480px));
    gap: 3rem;
    justify-content: center;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.07);
    border-color: var(--border-hover);
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    box-shadow: 0 15px 35px rgba(0, 119, 182, 0.06);
}

.pricing-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.25);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2.5rem;
    background: rgba(10, 37, 64, 0.02);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.98rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li i {
    color: var(--accent);
    font-size: 1.1rem;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

/* Step-by-Step Process Flow */
.process-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.25);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 50px;
    position: relative;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.06);
    border-color: var(--border-hover);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.2);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Search, Filter & Member Directory (for Üye Rehberi) */
.directory-section {
    padding: 80px 0 100px;
}

.filter-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background: rgba(10, 37, 64, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.search-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 119, 182, 0.15);
}

.search-icon-btn {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
    pointer-events: none;
}

.filter-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 0.5rem;
}

.filter-tag-btn {
    background: rgba(10, 37, 64, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-tag-btn:hover {
    background: rgba(0, 119, 182, 0.05);
    color: var(--accent);
    border-color: var(--border-hover);
}

.filter-tag-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.2);
}

/* Member Grid List */
.member-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.directory-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
    transition: var(--transition-smooth);
}

.directory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.07);
    border-color: var(--border-hover);
}

.directory-card-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.05) 0%, rgba(0, 119, 182, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.directory-card:hover .directory-card-logo {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.2);
}

.directory-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.directory-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.directory-card-meta i {
    color: var(--accent);
}

.badge-tags-container {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.badge-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-tag.blue {
    background: rgba(0, 119, 182, 0.08);
    color: var(--accent);
}

.badge-tag.orange {
    background: rgba(247, 127, 0, 0.08);
    color: #f77f00;
}

.badge-tag.green {
    background: rgba(46, 196, 182, 0.08);
    color: #2ec4b6;
}

@media (max-width: 1200px) {
    .member-directory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .member-directory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .member-directory-grid {
        grid-template-columns: 1fr;
    }
    .filter-container {
        padding: 1.5rem 1rem;
    }
}

/* ==========================================
   NEW MEDIA PAGE STYLING (ADDITIONAL)
   ========================================== */

/* Gallery Grid Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 40px;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.02);
    cursor: pointer;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.65);
    backdrop-filter: blur(3px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.08);
    border-color: var(--border-hover);
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-card-img {
    transform: scale(1.08);
}

.gallery-card-overlay i {
    font-size: 1.6rem;
    margin-bottom: 0;
    color: var(--accent);
    background: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.12);
    transition: var(--transition-smooth);
    transform: scale(0.6) rotate(-45deg);
    opacity: 0;
}

.gallery-card:hover .gallery-card-overlay i {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.gallery-card-overlay:hover i {
    transform: scale(1.15) rotate(90deg);
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 119, 182, 0.4);
}

.gallery-card-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 0.8rem;
    margin-bottom: 0.3rem;
}

.gallery-card-overlay span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 37, 64, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1100;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox-img-wrapper {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh; /* Restricts the image to 70% of screen height, ensuring room for borders & caption */
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-caption {
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 1.2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Lightbox Navigation Buttons */
.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    z-index: 1110;
}

.lightbox-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.4);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .lightbox-prev {
        left: 1rem;
    }
    .lightbox-next {
        right: 1rem;
    }
}

/* Brand Assets (Download section) */
.brand-assets-section {
    padding: 80px 0 100px;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 40px;
}

.asset-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
    transition: var(--transition-smooth);
}

.asset-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.07);
    border-color: var(--border-hover);
}

.asset-card-preview {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.03) 0%, rgba(0, 119, 182, 0.03) 100%);
    border: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.asset-card-preview img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.asset-card-info {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.asset-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.asset-card-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.asset-card-btn {
    width: 100%;
}

/* ==========================================
   NEW BLOG PAGE STYLING (ADDITIONAL)
   ========================================== */

/* Featured Blog Card */
.featured-blog-section {
    padding: 80px 0 40px;
}

.featured-blog-card {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
    transition: var(--transition-smooth);
}

.featured-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.07);
    border-color: var(--border-hover);
}

.featured-blog-img-wrapper {
    flex: 0 0 50%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 10;
}

.featured-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-blog-card:hover .featured-blog-img {
    transform: scale(1.04);
}

.featured-blog-content {
    flex: 1;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-blog-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.featured-blog-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 1.2rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.featured-blog-title:hover {
    color: var(--accent);
}

.featured-blog-desc {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 2rem;
    font-weight: 350;
}

.featured-blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.featured-blog-meta i {
    color: var(--accent);
    margin-right: 0.3rem;
}

@media (max-width: 992px) {
    .featured-blog-card {
        flex-direction: column;
    }
    .featured-blog-img-wrapper {
        flex: none;
        width: 100%;
        height: 320px;
    }
    .featured-blog-content {
        padding: 2.5rem 2rem;
    }
    .featured-blog-title {
        font-size: 1.6rem;
    }
}

/* Blog Cards Grid Layout */
.blog-section {
    padding: 40px 0 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 40px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.07);
    border-color: var(--border-hover);
}

.blog-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-category {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 0.8rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-card-title:hover {
    color: var(--accent);
}

.blog-card-desc {
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.8rem;
    font-weight: 350;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
    margin-top: auto;
}

.blog-meta-left {
    display: flex;
    gap: 1rem;
}

.blog-meta-left i {
    color: var(--accent);
    margin-right: 0.2rem;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   NEW BLOG DETAIL PAGE STYLING (ADDITIONAL)
   ========================================== */

.article-detail-section {
    padding: 60px 0 100px;
}

.article-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 15px 45px rgba(10, 37, 64, 0.03);
    margin-bottom: 3rem;
}

.article-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.article-header-meta span i {
    color: var(--accent);
    margin-right: 0.3rem;
}

.article-detail-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 2rem;
}

.article-detail-img-wrapper {
    width: 100%;
    aspect-ratio: 21 / 9;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.article-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-color);
    font-weight: 350;
}

.article-detail-body h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2.5rem 0 1.2rem;
}

.article-detail-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.article-detail-body p {
    margin-bottom: 1.5rem;
}

.article-detail-body blockquote {
    border-left: 4px solid var(--accent);
    padding: 0.5rem 0 0.5rem 1.8rem;
    margin: 2.5rem 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 400;
    background: linear-gradient(90deg, rgba(0, 119, 182, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.article-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin: 3rem 0;
}

.article-share-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.8rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.share-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.share-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.share-btn.twitter:hover {
    background: #000;
    border-color: #000;
}

.share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

@media (max-width: 992px) {
    .article-detail-card {
        padding: 2.5rem;
        border-radius: 24px;
    }
    .article-detail-title {
        font-size: 2rem;
    }
    .article-detail-img-wrapper {
        aspect-ratio: 16 / 9;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .article-detail-card {
        padding: 1.5rem;
    }
    .article-detail-title {
        font-size: 1.5rem;
    }
    .article-share-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ==========================================
   NEW CONTACT PAGE STYLING (ADDITIONAL)
   ========================================== */

.contact-section-wrapper {
    padding: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.01);
    margin-bottom: 2rem;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, #0096c7 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.2);
}

.contact-detail-text h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.contact-detail-text p {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.contact-map-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.01);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 45px rgba(10, 37, 64, 0.02);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-form-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.contact-textarea {
    resize: none;
    height: 140px;
}

/* Toast Success Alert */
.toast-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #2ec4b6;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(46, 196, 182, 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-info-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* ==========================================
   ADMIN PANEL STYLING (ADDITIONAL)
   ========================================== */

.admin-body {
    background: #f4f7fa;
    min-height: 100vh;
    color: var(--primary);
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 280px;
    background: #fff;
    border-right: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    padding-left: 0.5rem;
}

.admin-brand img {
    height: 36px;
}

.admin-brand span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    color: #5c677d;
    border-radius: 12px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.admin-menu-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.admin-menu-link:hover {
    background: rgba(0, 119, 182, 0.05);
    color: var(--accent);
}

.admin-menu-link.active {
    background: linear-gradient(135deg, var(--accent) 0%, #0096c7 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.2);
}

/* Admin Main Content */
.admin-content {
    margin-left: 280px;
    flex: 1;
    padding: 2rem 3rem;
    min-width: 0; /* Prevents flex items from overflowing */
}

/* Admin Topbar */
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.01);
}

.admin-page-title h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0;
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-profile-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #0096c7 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.admin-profile-info {
    text-align: left;
}

.admin-profile-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

.admin-profile-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Stats Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.admin-stat-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.01);
}

.admin-stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.admin-stat-icon.blue {
    background: rgba(0, 119, 182, 0.1);
    color: var(--accent);
}

.admin-stat-icon.green {
    background: rgba(46, 196, 182, 0.1);
    color: #2ec4b6;
}

.admin-stat-icon.purple {
    background: rgba(114, 9, 183, 0.1);
    color: #7209b7;
}

.admin-stat-icon.orange {
    background: rgba(251, 133, 0, 0.1);
    color: #fb8500;
}

.admin-stat-info h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.admin-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

/* Card layout for Lists/Tables */
.admin-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.01);
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* Table styling */
.admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.admin-table th {
    background: #f8f9fa;
    padding: 1rem 1.2rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.admin-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    vertical-align: middle;
    white-space: nowrap;
}

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

.admin-table tbody tr:hover {
    background-color: #fafbfc;
}

/* Badges */
.admin-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.admin-badge.active {
    background: rgba(46, 196, 182, 0.1);
    color: #2ec4b6;
}

.admin-badge.inactive {
    background: rgba(230, 57, 70, 0.1);
    color: #e63946;
}

.admin-badge.super-admin {
    background: rgba(114, 9, 183, 0.1);
    color: #7209b7;
}

.admin-badge.moderator {
    background: rgba(0, 119, 182, 0.1);
    color: var(--accent);
}

.admin-badge.editor {
    background: rgba(251, 133, 0, 0.1);
    color: #fb8500;
}

/* Actions buttons */
.admin-action-btns {
    display: flex;
    gap: 0.5rem;
}

.admin-btn-action {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

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

.admin-btn-action.delete:hover {
    background: #e63946;
    color: #fff;
    border-color: #e63946;
}

.admin-btn-action.password:hover {
    background: #7209b7;
    color: #fff;
    border-color: #7209b7;
}

/* Modal Popup window */
.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 37, 64, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.admin-modal-card {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 550px;
    padding: 2.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.admin-modal-overlay.active .admin-modal-card {
    transform: scale(1);
}

.admin-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-modal-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
}

.admin-modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.admin-modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* Search and Filters Area */
.admin-filters-bar {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.admin-search-input {
    min-width: 250px;
}

@media (max-width: 1200px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .admin-sidebar {
        width: 80px;
        padding: 2rem 0.5rem;
        align-items: center;
    }
    .admin-brand span {
        display: none;
    }
    .admin-menu-link span {
        display: none;
    }
    .admin-menu-link {
        justify-content: center;
        padding: 1rem;
    }
    .admin-content {
        margin-left: 80px;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    .admin-topbar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .admin-topbar .admin-profile {
        width: 100%;
        justify-content: flex-end;
    }
    .admin-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .admin-filters-bar {
        width: 100%;
    }
    .admin-search-input {
        width: 100%;
        min-width: 0;
    }
}

/* Admin Sidebar Dropdown */
.admin-menu-dropdown {
    display: flex;
    flex-direction: column;
}

.admin-menu-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    color: #5c677d;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.admin-menu-dropdown-toggle:hover {
    background: rgba(0, 119, 182, 0.05);
    color: var(--accent);
}

.admin-menu-dropdown-submenu {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-left: 2rem;
    margin-top: 0.3rem;
    margin-bottom: 0.5rem;
}

.admin-submenu-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    color: #5c677d;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.admin-submenu-link i {
    font-size: 0.45rem;
    width: 12px;
    text-align: center;
}

.admin-submenu-link:hover,
.admin-submenu-link.active {
    color: var(--accent);
    background: rgba(0, 119, 182, 0.03);
}

.admin-submenu-link.active {
    font-weight: 700;
    color: var(--accent);
}










