/* Font Face Definitions for UltrAslan Lise */
@import url('https://fonts.cdnfonts.com/css/crackhouse');
@import url('https://fonts.cdnfonts.com/css/freshman');
@import url('https://fonts.cdnfonts.com/css/marsden');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #FFC700;
    --secondary-color: #8B0000;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-image: url('../../arkaplan.jpeg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: 0;
}

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

/* Header & Navigation */
header {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 250, 240, 0.98) 50%, 
        rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15), 
                0 0 50px rgba(255, 199, 0, 0.2),
                inset 0 -3px 0 0 rgba(255, 199, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid rgba(255, 199, 0, 0.8);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 199, 0, 0.08) 0%, 
        transparent 50%, 
        rgba(255, 199, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Sol Logo (Navbar içinde) */
.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.nav-brand:hover .brand-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0 20px rgba(139, 0, 0, 0.2));
}

/* Sağ Atatürk Silüeti (Navbar içinde) */
.nav-ataturk {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.ataturk-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) 
            drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    opacity: 0.85;
    transition: all 0.3s ease;
}

.nav-ataturk:hover .ataturk-logo {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(0) 
            drop-shadow(0 3px 12px rgba(0, 0, 0, 0.4))
            drop-shadow(0 0 15px rgba(139, 0, 0, 0.3));
}

.navbar {
    padding: 1.2rem 0;
    position: relative;
    z-index: 2;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-shadow: none;
    border: 2px solid transparent;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08), rgba(255, 199, 0, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
    background: rgba(139, 0, 0, 0.05);
    border-color: rgba(139, 0, 0, 0.3);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.2);
    text-shadow: none;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a.active {
    background: linear-gradient(135deg, var(--primary-color), #ffb800);
    color: var(--text-dark);
    border-color: rgba(255, 199, 0, 0.8);
    box-shadow: 0 5px 25px rgba(255, 199, 0, 0.5),
                0 0 20px rgba(255, 199, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-shadow: none;
}

.nav-menu a.active::before {
    opacity: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(139, 0, 0, 0.1);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 10px;
    cursor: pointer;
    gap: 5px;
    padding: 10px 12px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle:hover {
    background: rgba(139, 0, 0, 0.15);
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFC700" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.since-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Hero Title - Artık resim kullanıyoruz */

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a00000 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 199, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Page Header */
.page-header {
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.75);
    margin: 2rem auto;
    border-radius: 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 1400px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.content-section h1,
.content-section h2,
.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6 {
    color: var(--text-dark);
    font-weight: 800;
    text-shadow: 0 3px 12px rgba(255, 255, 255, 1), 0 1px 4px rgba(255, 255, 255, 0.9);
}

.content-section p,
.content-section li {
    color: var(--text-dark);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 1), 0 1px 3px rgba(255, 255, 255, 0.8);
}

main {
    position: relative;
    z-index: 1;
}

/* Announcements */
.announcements {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    margin: 2rem auto;
    border-radius: 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    max-width: 1400px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.announcements h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.announcement-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.announcement-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Story/Timeline */
.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.story-intro h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
    margin: 4rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.mission-box, .vision-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.mission-box h3, .vision-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Board Members - Modern Design */
.team-page {
    background: transparent;
    min-height: 100vh;
    padding: 4rem 0;
}

.board-members-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.member-card-modern {
    background: rgba(139, 0, 0, 0.85);
    border: 2px solid rgba(255, 199, 0, 0.4);
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    position: relative;
}

.member-card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 199, 0, 0.6);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4);
    background: rgba(139, 0, 0, 0.9);
}

.member-info-modern {
    text-align: center;
    background: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

.member-name-modern {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.member-role-modern {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.member-email-box {
    background: var(--primary-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    max-width: 100%;
    overflow: hidden;
}

.member-card-modern:hover .member-email-box {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.member-email-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 800;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    max-width: 100%;
}

.btn-mail-send {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    width: 100%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.btn-mail-send:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Representatives */
.representatives-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.representatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.representative-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.representative-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.city-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.rep-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rep-contact {
    color: var(--text-light);
    font-size: 0.9rem;
}

.become-representative {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.become-representative h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.become-representative p {
    margin-bottom: 1.5rem;
}

/* Application Form */
.application-info {
    text-align: center;
    margin-bottom: 3rem;
}

.application-info h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.application-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.alert {
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    color: #155724;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.2);
}

.alert-error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

/* Products */
.products-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    background: var(--bg-light);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    color: var(--text-light);
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.product-info .btn {
    width: 100%;
}

/* Gallery - Modern Design */
.gallery-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.gallery-category-section {
    margin-bottom: 4rem;
}

.gallery-category-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    border-bottom: 4px solid var(--primary-color);
    text-shadow: 0 3px 12px rgba(139, 0, 0, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(139, 0, 0, 0.05);
    border: 3px solid rgba(255, 199, 0, 0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(255, 199, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 50px rgba(139, 0, 0, 0.4), 0 0 30px rgba(255, 199, 0, 0.3);
    border-color: rgba(255, 199, 0, 0.6);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    height: 320px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}

.gallery-placeholder {
    color: var(--text-light);
    font-weight: 600;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.95), rgba(139, 0, 0, 0.7), transparent);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.3s ease;
    overflow: auto;
    cursor: grab;
}

.lightbox-content:active {
    cursor: grabbing;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

/* Zoom Controls */
.lightbox-zoom-controls {
    position: absolute;
    top: 20px;
    left: 30px;
    display: flex;
    gap: 10px;
    z-index: 10001;
}

.lightbox-zoom-in,
.lightbox-zoom-out,
.lightbox-zoom-reset {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-zoom-in:hover,
.lightbox-zoom-out:hover,
.lightbox-zoom-reset:hover {
    background: rgba(139, 0, 0, 0.9);
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.lightbox-zoom-reset {
    font-size: 1.2rem;
}


.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(139, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev::before {
    content: '‹';
    font-size: 3rem;
    line-height: 1;
}

.lightbox-next::before {
    content: '›';
    font-size: 3rem;
    line-height: 1;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 20px 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

/* Footer İletişim Bilgileri */
.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-item span {
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Team Sections */
.team-section {
    margin-bottom: 6rem;
}

.team-page {
    padding: 80px 20px;
}

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

.team-page .section-header-team {
    margin-bottom: 3rem;
}

.team-page .section-header-team .section-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.team-page .section-header-team .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 12px rgba(255, 255, 255, 1), 0 2px 6px rgba(255, 255, 255, 0.9);
}

.team-page .section-header-team .section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 600px;
    margin: 1.5rem auto 0;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 1), 0 1px 5px rgba(255, 255, 255, 0.9);
}

/* Story Text */
.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.story-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.signature {
    text-align: right;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-style: italic;
}

.signature strong {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Regions */
.regions-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.region-section {
    background: rgba(139, 0, 0, 0.85);
    border: 3px solid rgba(255, 199, 0, 0.4);
    border-radius: 20px;
    padding: 3.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.region-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.region-section:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 199, 0, 0.6);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
    background: rgba(139, 0, 0, 0.9);
}

.region-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9), 
                 0 2px 4px rgba(0, 0, 0, 0.8), 
                 0 1px 2px rgba(0, 0, 0, 0.7);
    position: relative;
    display: inline-block;
}

.representatives-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.rep-category {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 199, 0, 0.3);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rep-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.rep-category:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 199, 0, 0.6);
}

.rep-category-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: block;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.rep-category-title::before {
    content: '📍';
    margin-right: 10px;
    font-size: 1.5rem;
    opacity: 0.8;
}

.cities-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.cities-list li {
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 10px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 200, 0.3) 100%);
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.cities-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.cities-list li:hover {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.85) 100%);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 6px 25px rgba(139, 0, 0, 0.4);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cities-list li:hover::before {
    transform: scaleY(1);
    background: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(-5px) rotate(-2deg) scale(1.1);
    }
    50% {
        transform: translateY(-8px) rotate(-3deg) scale(1.15);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* No Products */
.no-products {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.no-products h2 {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Products HTML Content */
.products-html-content {
    padding: 2rem 0;
}

.products-html-content p {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.products-html-content figure {
    margin: 2rem 0;
    text-align: center;
}

.products-html-content figure img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-html-content figure img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.products-html-content .wp-block-image {
    margin: 2rem 0;
}

.products-html-content .wp-block-image img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Story HTML Content */
.story-html-content {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.story-html-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: justify;
}

.story-html-content h1,
.story-html-content h2,
.story-html-content h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.story-html-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin: 2.5rem 0;
    display: block;
    object-fit: cover;
}

.story-html-content figure {
    margin: 2.5rem 0;
    text-align: center;
    width: 100%;
}

.story-html-content figure img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Story Content Wrapper */
.story-content-wrapper {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.story-content-wrapper.reverse {
    flex-direction: row-reverse;
}

.story-image-left,
.story-image-right {
    flex: 1;
    min-width: 400px;
    max-width: 600px;
}

.story-image-left img,
.story-image-right img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.story-text-left,
.story-text-right {
    flex: 1;
}

.story-text-full {
    width: 100%;
    margin-bottom: 2rem;
}

.story-text-full .quote-text {
    background: rgba(139, 0, 0, 0.05);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1.15rem;
    line-height: 1.9;
    margin: 2rem 0;
}

.story-html-content .signature {
    text-align: right;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-style: italic;
}

.story-html-content .signature strong {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Elementor widget sınıflarını temizle */
.story-html-content .elementor-widget-container {
    padding: 0;
}

.story-html-content .elementor-section,
.story-html-content .elementor-container,
.story-html-content .elementor-column {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.story-html-content .elementor-widget-text-editor {
    margin-bottom: 2rem;
}

.story-html-content .elementor-widget-text-editor p {
    text-align: justify;
}

/* Elementor içerik düzenlemeleri */
.story-html-content .elementor-widget-image {
    margin: 2.5rem 0;
    width: 100%;
}

.story-html-content .elementor-widget-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin: 0;
    object-fit: cover;
}

.story-html-content .elementor-column {
    width: 100% !important;
}

.story-html-content .elementor-col-50 {
    width: 100% !important;
    margin-bottom: 2rem;
}

/* İki sütunlu yerleşim düzenlemesi */
.story-html-content .elementor-inner-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.story-html-content .elementor-inner-section .elementor-column:first-child img {
    margin-bottom: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .story-content-wrapper {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .story-image-left,
    .story-image-right {
        min-width: 100%;
        max-width: 100%;
    }
    
    .story-text-left,
    .story-text-right,
    .story-text-full {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .story-text-full p {
        font-size: 1rem;
    }
    
    .quote-text {
        font-size: 1rem !important;
        padding: 1rem !important;
    }
    
    .story-html-content .elementor-col-50 {
        width: 100% !important;
    }
    
    .story-html-content img {
        margin: 2rem 0;
    }
}

/* Gallery Categories */
.gallery-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.gallery-category-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gallery-category-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 1), 0 1px 4px rgba(255, 255, 255, 0.9);
}


/* Enhanced Hero */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6B0000 50%, #000 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animasyon fadeInUp için ayrı tanımlandı */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.since-text {
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.9;
    }
}

/* Enhanced Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6B0000 50%, #000 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team-page .page-header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.team-page .page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.team-page .page-subtitle {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFC700" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.page-header h1 {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    /* Mobilde logoları küçült */
    .brand-logo {
        height: 50px;
    }
    
    .ataturk-logo {
        height: 50px;
    }
    
    .nav-ataturk {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(255, 250, 240, 0.98) 50%, 
            rgba(255, 255, 255, 0.98) 100%);
        backdrop-filter: blur(30px);
        width: 100%;
        text-align: center;
        transition: left 0.4s ease;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 199, 0, 0.3);
        padding: 2rem 0;
        gap: 0.5rem;
        border-bottom: 3px solid rgba(255, 199, 0, 0.8);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0 1rem;
    }

    .nav-menu a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 10px;
        margin: 0 auto;
        max-width: 300px;
        display: block;
        font-size: 0.9rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        padding: 60px 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .representatives-list {
        grid-template-columns: 1fr;
    }

    .region-section {
        padding: 2rem 1.5rem;
    }

    .story-text {
        font-size: 1rem;
        text-align: left;
    }

    .signature {
        text-align: center;
    }

    .board-members {
        grid-template-columns: 1fr;
    }
    
    .board-members-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .member-info-modern {
        padding: 0;
    }
    
    .member-name-modern {
        font-size: 1.5rem;
    }
    
    .member-role-modern {
        font-size: 1rem;
    }
}

/* ===================================
   LOADER SCREEN
   =================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out;
    overflow: hidden;
}

.loader-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(139, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.loader-text {
    color: var(--white);
}

.loading-title {
    font-family: 'Crackhouse', 'Freshman', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 199, 0, 0.5);
    animation: titlePulse 2s infinite;
    letter-spacing: 2px;
}

@keyframes titlePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.loading-subtitle {
    font-size: 1.2rem;
    color: var(--white);
}

.loading-hint {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-top: 1rem;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(255, 199, 0, 0.6);
    animation: hintPulse 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes hintPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.loading-dots span {
    display: inline-block;
    animation: letterBounce 1.5s infinite;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.1s; }
.loading-dots span:nth-child(3) { animation-delay: 0.2s; }
.loading-dots span:nth-child(4) { animation-delay: 0.3s; }
.loading-dots span:nth-child(5) { animation-delay: 0.4s; }
.loading-dots span:nth-child(6) { animation-delay: 0.5s; }
.loading-dots span:nth-child(7) { animation-delay: 0.6s; }
.loading-dots span:nth-child(8) { animation-delay: 0.7s; }
.loading-dots span:nth-child(9) { animation-delay: 0.8s; }
.loading-dots span:nth-child(10) { animation-delay: 0.9s; }

@keyframes letterBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px);
        opacity: 0.7;
    }
}

/* ===================================
   ENHANCED HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6B0000 50%, #000 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 199, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 199, 0, 0.15) 0%, transparent 50%);
    animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: 3rem 2rem;
}

.hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: 'Crackhouse', 'Freshman', 'Playfair Display', serif;
    text-shadow: none;
}

/* Hero Logo Resimleri */
.hero-title-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 1rem;
    animation: fadeInUp 1.2s ease;
}

.hero-logo-ultraslan {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    margin-bottom: 0;
    display: block;
}

.hero-logo-lise {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    display: block;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInCenter {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Slogan */
.hero-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1.4s ease;
}

.slogan-text {
    font-family: 'Crackhouse', 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 199, 0, 0.7),
                 0 0 30px rgba(255, 199, 0, 0.4),
                 0 3px 12px rgba(0, 0, 0, 0.8),
                 0 2px 6px rgba(0, 0, 0, 0.6);
    position: relative;
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.25) 0%, 
        rgba(0, 0, 0, 0.15) 100%);
    border-radius: 8px;
    border: 2px solid rgba(255, 199, 0, 0.25);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 199, 0, 0.15);
}

.slogan-text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 199, 0, 0.1) 50%, 
        transparent 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slogan-text:hover::before {
    opacity: 1;
}

.slogan-separator {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 12px rgba(255, 199, 0, 0.7),
                 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Hero Brand Text */
.hero-brand-text {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1.6s ease;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}

.brand-ultra {
    font-family: 'Crackhouse', 'Playfair Display', serif;
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
                 0 4px 20px rgba(0, 0, 0, 0.9),
                 0 2px 10px rgba(0, 0, 0, 0.7);
}

.brand-lise {
    font-family: 'Freshman', 'Playfair Display', serif;
    color: var(--primary-color);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9),
                 0 2px 4px rgba(0, 0, 0, 0.8),
                 0 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.btn-large svg {
    transition: transform 0.4s ease;
    width: 20px;
    height: 20px;
}

.btn-large:hover svg {
    transform: translateX(8px) scale(1.1);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollIndicator 2s infinite;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

@keyframes scrollIndicator {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes scrollDot {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    padding: 6rem 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    position: relative;
    margin-top: -50px;
    z-index: 10;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.stats-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-title {
    font-family: 'Crackhouse', 'Freshman', 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 0 3px 12px rgba(255, 255, 255, 1), 0 1px 4px rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
}

.stats-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 1), 0 1px 3px rgba(255, 255, 255, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0;
    transition: all 0.4s;
    border: 2px solid rgba(139, 0, 0, 0.4);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(8px);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 199, 0, 0.3);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.stat-item a {
    width: 100%;
}

.stat-item a:hover .stat-label {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    display: inline-block;
    line-height: 1.2;
    text-shadow: 0 3px 15px rgba(255, 255, 255, 1), 0 1px 5px rgba(255, 255, 255, 0.9);
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    display: inline-block;
    margin-left: 0.2rem;
    vertical-align: super;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 1), 0 1px 3px rgba(255, 255, 255, 0.8);
}

.stat-line {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 1.5rem;
}

/* ===================================
   SECTION STYLES
   =================================== */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.9),
        0 2px 5px rgba(0, 0, 0, 0.8),
        0 0 0 2px rgba(0, 0, 0, 0.5);
    background: rgba(139, 0, 0, 0.7);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.team-page .section-tag {
    color: var(--primary-color);
    font-weight: 700;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 1), 0 2px 10px rgba(255, 255, 255, 1), 0 1px 5px rgba(255, 255, 255, 0.95);
}

.section-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.7),
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 8px 16px rgba(0, 0, 0, 0.6),
        0 0 0 5px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 600px;
    margin: 1.5rem auto 0;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.85);
    padding: 1.2rem 2.5rem;
    border-radius: 0;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.2);
    text-shadow: 0 3px 15px rgba(255, 255, 255, 1), 0 2px 8px rgba(255, 255, 255, 1), 0 1px 4px rgba(255, 255, 255, 0.9);
}

.section-description-large {
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 
        0 0 15px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.7),
        0 3px 6px rgba(0, 0, 0, 0.8),
        0 6px 12px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 100px 20px;
    background: transparent;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    max-width: 850px;
}

.about-features {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 12px rgba(255, 255, 255, 1), 0 2px 6px rgba(255, 255, 255, 1), 0 1px 3px rgba(255, 255, 255, 0.9);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 1), 0 1px 5px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* ===================================
   ENHANCED ANNOUNCEMENTS
   =================================== */
.announcements {
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    margin: 2rem auto;
    max-width: 1400px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

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

.announcement-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.announcement-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(139, 0, 0, 0.15);
    transition: all 0.4s;
    border: 2px solid rgba(139, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
}

.announcement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 199, 0, 0.3);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
}

.announcement-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.announcement-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.announcement-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.announcement-badge.badge-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

.announcement-badge.badge-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
    color: var(--text-dark);
}

.announcement-card.announcement-open {
    border-left: 4px solid var(--primary-color);
}

.announcement-card.announcement-closed {
    border-left: 4px solid #ffc107;
    opacity: 0.9;
}

.announcement-title {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    text-shadow: none;
    position: relative;
    padding: 0;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.announcement-card-link:hover .announcement-title {
    color: #8B0000;
}

.announcement-text {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 1), 0 1px 3px rgba(255, 255, 255, 0.8);
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
    font-size: 0.95rem;
}

.announcement-link:hover {
    color: var(--primary-color);
    gap: 15px;
}

.announcement-link svg {
    transition: transform 0.3s;
}

.announcement-link:hover svg {
    transform: translateX(5px);
}

/* Duyuru Link Stilleri */
.announcement-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.announcement-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.announcement-card-link:hover .announcement-read-more {
    color: var(--primary-color);
    gap: 12px;
}

.announcement-read-more svg {
    transition: transform 0.3s;
}

.announcement-card-link:hover .announcement-read-more svg {
    transform: translateX(5px);
}

/* Duyuru Resim Stilleri */
.announcement-card.announcement-with-image {
    padding: 0;
    overflow: hidden;
}

.announcement-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    background: #f0f0f0;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.announcement-image:hover .image-overlay {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.image-overlay svg {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.announcement-image:hover .image-overlay svg {
    transform: scale(1);
}

.announcement-content {
    padding: 2.5rem;
}

.announcement-with-image .announcement-meta {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.announcement-with-image .announcement-title {
    font-size: 1.65rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.announcement-with-image .announcement-text {
    margin-bottom: 1.5rem;
}

/* Announcement Placeholder (Ana Sayfa) */
.announcement-no-image .announcement-image {
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        #6B0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-placeholder-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        #6B0000 100%);
}

.announcement-placeholder-small svg {
    color: var(--primary-color);
    opacity: 0.7;
}

/* ===================================
   MEMBERSHIP PAGE
   =================================== */
.page-header-membership {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6B0000 50%, #000 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.membership-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.membership-section {
    padding: 60px 20px;
}

/* Membership Header h1 - Loading Title gibi sistem */
.membership-title-brand {
    font-family: 'Marsden', 'Crackhouse', 'Freshman', sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: var(--white) !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 199, 0, 0.3) !important;
    position: relative;
    z-index: 1;
    text-align: center !important;
    line-height: 1.2 !important;
    text-transform: none !important; /* ultrAslan LİSE harflerini koru */
    letter-spacing: 3px !important;
}

/* Membership Header içindeki brand stilleri - Loading sistemine göre */
.page-header-membership .membership-header-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 199, 0, 0.3);
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0;
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.membership-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(180, 0, 0, 0.9) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.3);
    border: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 199, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 199, 0, 0.4);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 199, 0, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.info-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Membership Section - Premium Design */
.page-header-membership {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.85) 100%);
    padding: 6rem 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-membership::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ultrAslan LİSE Brand Fonts - Global */
.ultraslan-brand {
    font-family: 'Crackhouse', sans-serif !important;
    display: inline-block !important;
    letter-spacing: 3px !important;
    transform: scaleX(1.15) !important;
    transform-origin: left center !important;
    white-space: nowrap !important;
    font-weight: 900 !important;
    text-transform: none !important; /* ultrAslan harflerini koru */
}

.lise-brand {
    font-family: 'Freshman', sans-serif !important;
    display: inline-block !important;
    white-space: nowrap !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    text-transform: none !important;
}


/* Alert içindeki brand stilleri */
.alert-content .ultraslan-brand,
.alert-content .lise-brand {
    font-size: inherit;
    text-transform: none !important; /* ultrAslan LİSE harflerini koru */
}

/* Announcement ve Form içindeki brand - Loading sistemi gibi */
.announcement-brand,
.form-brand {
    font-family: 'Crackhouse', 'Freshman', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    display: inline-block !important;
    white-space: nowrap !important;
    text-transform: none !important; /* ultrAslan harflerini koru */
}

/* Form header içindeki brand stilleri */
.form-header .ultraslan-brand,
.form-header .lise-brand {
    font-size: inherit;
    text-transform: none !important; /* ultrAslan LİSE harflerini koru */
}

/* Info card içindeki brand stilleri */
.info-card .ultraslan-brand,
.info-card .lise-brand {
    font-size: inherit;
    text-transform: none !important; /* ultrAslan LİSE harflerini koru */
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.membership-section {
    padding: 5rem 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 240, 200, 0.3) 100%);
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.membership-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(139, 0, 0, 0.9);
    border: 3px solid rgba(255, 199, 0, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 199, 0, 0.2), transparent);
    transition: left 0.5s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 199, 0, 0.7);
    box-shadow: 0 15px 50px rgba(139, 0, 0, 0.4), 0 0 40px rgba(255, 199, 0, 0.3);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 199, 0, 0.4);
}

.info-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.info-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.membership-form-wrapper {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: none;
    position: relative;
    overflow: hidden;
}

.membership-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(139, 0, 0, 0.1);
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--secondary-color);
}

.form-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.modern-form .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.modern-form label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-form label svg {
    color: var(--secondary-color);
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.modern-form .form-group:focus-within label svg {
    transform: scale(1.2) rotate(5deg);
}

.required {
    color: var(--secondary-color);
    font-size: 1.2em;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.15), 0 5px 25px rgba(139, 0, 0, 0.2);
    transform: translateY(-2px);
}

.modern-form textarea {
    resize: vertical;
    min-height: 140px;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.form-submit {
    margin-top: 3rem;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 20px 45px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%);
    border: 3px solid rgba(255, 199, 0, 0.4);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.4), 0 0 20px rgba(255, 199, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 0, 0, 0.5), 0 0 30px rgba(255, 199, 0, 0.4);
    border-color: rgba(255, 199, 0, 0.7);
}

.btn-submit:active {
    transform: translateY(-1px) scale(0.98);
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.alert-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-success {
    background: #d4edda;
    border: 2px solid #28a745;
}

.alert-success .alert-icon {
    background: #28a745;
    color: var(--white);
}

.alert-error {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.alert-error .alert-icon {
    background: #dc3545;
    color: var(--white);
}

.alert-content {
    flex: 1;
}

.alert-content h3 {
    margin-bottom: 0.5rem;
    color: inherit;
}

.submission-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(40, 167, 69, 0.3);
}

.submission-details h4 {
    margin-bottom: 1rem;
    color: #155724;
    font-size: 1.2rem;
    font-weight: 700;
}

.submission-details > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.submission-details > div > div {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border-left: 3px solid #28a745;
}

.submission-details strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #0d4210;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Admin Submissions */
.submissions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.submission-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(139, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.submission-card:hover {
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.2);
    border-color: rgba(139, 0, 0, 0.3);
    transform: translateY(-3px);
}

.submission-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(139, 0, 0, 0.1);
}

.submission-header h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.submission-meta {
    color: var(--text-light);
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.submission-badge {
    display: flex;
    gap: 0.5rem;
}

.badge-device {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--secondary-color), #a00000);
    color: var(--white);
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submission-body {
    margin-top: 1.5rem;
}

.submission-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    padding: 1rem;
    background: rgba(139, 0, 0, 0.05);
    border-left: 3px solid var(--secondary-color);
    border-radius: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submission-message {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 199, 0, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 0;
}

.submission-message strong {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.submission-message p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Updates */
@media (max-width: 768px) {
    .hero-logo-ultraslan {
        max-width: 400px;
    }
    
    .hero-logo-lise {
        max-width: 280px;
    }
    
    .hero-slogan {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slogan-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
        padding: 0.4rem 0.8rem;
    }
    
    .slogan-separator {
        display: none;
    }
    
    .hero-brand-text {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .section-title-large {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-suffix {
        font-size: 1.5rem;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .membership-form-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .membership-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-category-title {
        font-size: 2rem;
    }
    
    .announcement-list {
        grid-template-columns: 1fr;
    }
    
    .announcement-card {
        padding: 2rem;
    }
    
    .announcement-image {
        height: 200px;
    }
    
    .announcement-content {
        padding: 1.5rem;
    }
    
    .announcement-with-image .announcement-title {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .loading-title {
        font-size: 1.8rem;
    }
    
    .loader-video {
        min-width: 150%;
        min-height: 150%;
    }
    
    .announcement-card {
        padding: 2rem;
    }
    
    .about-section {
        padding: 60px 20px;
    }
    
    /* Header & Navigation */
    header {
        padding: 1rem 0;
    }
    
    .nav-brand a {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
    }
    
    .nav-menu li a {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Stats Section */
    .stats-section {
        padding: 3rem 15px;
        margin-top: -30px;
    }
    
    .stats-description {
        font-size: 0.9rem;
    }
    
    /* Content Sections */
    .content-section {
        padding: 3rem 15px;
    }
    
    .page-header {
        padding: 3rem 15px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Temsilcilikler */
    .region-section {
        padding: 2.5rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .region-title {
        font-size: 2rem;
        padding-bottom: 1rem;
    }
    
    .region-title::after {
        display: none;
    }
    
    .representatives-list {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .rep-category {
        padding: 2rem 1.5rem;
    }
    
    .rep-category-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    .cities-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cities-list li {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Membership */
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .membership-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .membership-header-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-category-title {
        font-size: 2rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    /* Yönetim Kurulu */
    .board-members-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .member-info-modern {
        padding: 2rem 1.5rem;
    }
    
    .member-name-modern {
        font-size: 1.3rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    /* Footer */
    footer {
        padding: 2rem 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo-ultraslan {
        max-width: 300px;
    }
    
    .hero-logo-lise {
        max-width: 200px;
    }
    
    .slogan-text {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
        padding: 0.3rem 0.6rem;
    }
    
    .hero-brand-text {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-suffix {
        font-size: 1.2rem;
    }
    
    .section-title-large {
        font-size: 1.7rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Kuruluş hikayesi mobil düzeni */
    .story-content-wrapper {
        padding: 0 !important;
        margin-bottom: 2rem !important;
    }
    
    .story-image-left,
    .story-image-right {
        min-width: 100% !important;
    }
    
    .story-image-left img,
    .story-image-right img {
        border-radius: 8px !important;
        max-width: 100% !important;
    }
    
    .story-text-left,
    .story-text-right,
    .story-text-full {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .story-text-left p,
    .story-text-right p,
    .story-text-full p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
    
    .page-header h1 {
        font-size: 1.8rem !important;
    }
    
    .signature {
        font-size: 1rem !important;
    }
    
    .region-title {
        font-size: 1.6rem;
    }
    
    /* Yönetim kurulu email düzeni */
    .member-email-box {
        padding: 0.7rem 0.8rem !important;
        overflow: hidden;
    }
    
    .member-email-text {
        font-size: 0.75rem !important;
        letter-spacing: 0 !important;
        word-break: break-all !important;
    }
    
    .rep-category-title {
        font-size: 1.3rem;
    }
    
    .cities-list li {
        font-size: 0.9rem;
        padding: 0.9rem 1rem;
    }
}

/* ===================================
   HABER DETAY SAYFASI
   =================================== */
.news-detail-section {
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.05) 0%, 
        rgba(255, 199, 0, 0.03) 50%, 
        rgba(139, 0, 0, 0.05) 100%);
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

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

.breadcrumb .separator {
    color: #ccc;
    font-weight: 300;
    font-size: 0.85rem;
}

.breadcrumb .current {
    color: #666;
    font-weight: 400;
}

/* Haber Article */
.news-article {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(139, 0, 0, 0.08);
    backdrop-filter: blur(5px);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* News Header */
.news-header {
    margin-bottom: 3rem;
}

.news-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.news-category {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.news-category.etkinlik {
    background: #28a745;
    box-shadow: none;
}

.news-category.genel {
    background: #6c757d;
    box-shadow: none;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.news-date svg {
    color: #999;
    stroke-width: 2;
}

.news-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0;
    margin-top: 0.5rem;
    text-shadow: none;
    position: relative;
    padding-bottom: 0;
}

/* Media Gallery (Resim & Video Slider) */
.news-media-gallery {
    width: 100%;
    min-height: 400px;
    max-height: 600px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: fadeIn 0.5s;
    min-height: 400px;
    max-height: 600px;
}

.media-slide.active {
    display: block;
}

.media-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.media-slide img,
.media-slide video {
    width: 100%;
    height: 100%;
    background: #000;
    display: block;
}

.media-slide img {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-image-wrapper:hover img {
    transform: scale(1.05);
}

.media-image-wrapper .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.media-image-wrapper:hover .image-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.media-image-wrapper .image-overlay svg {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.media-image-wrapper:hover .image-overlay svg {
    transform: scale(1);
}

.media-slide video {
    object-fit: contain;
    background: #000;
    max-width: 100%;
    max-height: 100%;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
    left: 15px;
    border-radius: 0 5px 5px 0;
}

.gallery-next {
    right: 15px;
    border-radius: 5px 0 0 5px;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover,
.dot.active {
    background: white;
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.lightbox-image-container {
    position: relative;
    width: 100%;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg) scale(1.1);
}

/* Lightbox Galeri Kontrolleri */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 20px 25px;
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10001;
    backdrop-filter: blur(10px);
    display: none;
}

.lightbox-counter:not(:empty) {
    display: block;
}

.lightbox-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 10px;
    z-index: 10001;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.lightbox-dots:not(:empty) {
    display: flex;
}

.lightbox-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.lightbox-dot.active {
    background: #FFC700;
    border-color: #FFC700;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 199, 0, 0.5);
}

/* Featured Image (Fallback) */
.news-featured-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.95) 0%, 
        rgba(255, 199, 0, 0.85) 50%,
        rgba(139, 0, 0, 0.95) 100%);
}

.news-featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* Placeholder */
.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        #6B0000 50%,
        var(--secondary-color) 100%);
}

.placeholder-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.placeholder-content svg {
    opacity: 0.6;
    margin-bottom: 1.5rem;
    stroke: var(--primary-color);
}

.placeholder-content h3 {
    font-family: 'Freshman', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.placeholder-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* News Content */
.news-content {
    font-size: 1.2rem;
    line-height: 2;
    color: #2c3e50;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin-top: 2rem;
}

.news-lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2;
    color: #2c3e50;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.news-lead p {
    margin-bottom: 1.8rem;
    text-align: left;
}

.news-lead p:last-child {
    margin-bottom: 0;
}

/* External Link */
.news-external-link {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
}

.btn-external-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6B0000 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
}

.btn-external-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.4);
    gap: 15px;
}

/* Share Buttons */
.news-share {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 199, 0, 0.08) 0%, rgba(255, 199, 0, 0.03) 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 199, 0, 0.2);
}

.news-share h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

.share-btn.facebook:hover {
    background: #145dbf;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1a8cd8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.share-btn.copy {
    background: var(--secondary-color);
    color: white;
}

.share-btn.copy:hover {
    background: #6B0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

/* Back Button */
.news-back-btn {
    margin-top: 3rem;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-back:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
    gap: 12px;
}

.btn-back svg {
    transition: transform 0.3s;
}

.btn-back:hover svg {
    transform: translateX(-3px);
}

/* Related News */
.related-news {
    margin-top: 5rem;
}

.related-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 1);
}

.related-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.related-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    border: 2px solid rgba(139, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 199, 0, 0.3);
    border-color: var(--primary-color);
}

.related-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        #6B0000 100%);
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        #6B0000 100%);
}

.related-placeholder svg {
    color: var(--primary-color);
    opacity: 0.7;
}

.related-content {
    padding: 1.5rem;
}

.related-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.related-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .news-article {
        padding: 2rem 1.5rem;
    }
    
    .news-title {
        font-size: 1.6rem;
    }
    
    .news-content {
        padding: 0;
    }
    
    .news-featured-image,
    .news-media-gallery {
        height: 300px;
    }
    
    .gallery-prev,
    .gallery-next {
        padding: 10px 15px;
        font-size: 18px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .placeholder-content h3 {
        font-size: 1.8rem;
    }
    
    .placeholder-content svg {
        width: 80px;
        height: 80px;
    }
    
    .news-content {
        font-size: 1rem;
    }
    
    /* Lightbox Mobile */
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-image-container {
        max-height: 70vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 15px 20px;
        font-size: 22px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-counter {
        top: 60px;
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .lightbox-dots {
        bottom: 20px;
        gap: 8px;
        padding: 8px 15px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 32px;
    }
    
    .lightbox-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Duyuru Başlığı Mobile */
    .announcement-title {
        font-size: 1.35rem;
        line-height: 1.4;
        letter-spacing: -0.01em;
    }
    
    .announcement-with-image .announcement-title {
        font-size: 1.4rem;
    }
    
    .announcement-image {
        height: 200px;
    }
    
    .news-lead {
        font-size: 1rem;
        padding: 0;
        line-height: 1.8;
    }
    
    .news-meta-top {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0;
    }
    
    .news-category {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    .news-date {
        font-size: 0.8rem;
        padding: 0;
    }
    
    .breadcrumb {
        margin-bottom: 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .news-share {
        padding: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
    }
    
    .breadcrumb a svg {
        width: 14px;
        height: 14px;
    }
    
    .breadcrumb .current {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    /* Membership Section - Mobile */
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .info-card h3 {
        font-size: 1.5rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }
    
    .membership-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 0.95rem;
    }
}

