/* ============================================
   GRANDE FINALE - CSS STYLESHEET
   Modern, Responsive, Corporate Design
   Tasarım ve Kodlama: Bora Erimler
   İletişim: 0545 230 20 10
   © 2026 - Tüm hakları saklıdır.
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-dark: #0d1b3e;
    --primary-blue: #1a3a5f;
    --accent-gold: #c9a227;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(201, 162, 39, 0.2);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 27, 62, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo a img {
    height: 75px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 1rem 0;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
}

.contact-btn {
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 5px;
    font-weight: 600;
}

.contact-btn:hover {
    background: #b8921f;
    color: var(--white) !important;
}

.contact-btn.active::after {
    display: none;
}

.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 4px;
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    opacity: 0.75;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.06);
}

.lang-btn.active {
    opacity: 1;
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.lang-btn img {
    width: 28px;
    height: 18px;
    object-fit: cover;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Slider */
.hero-slider {
    margin-top: 95px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

/* SEO H1 – gorunmez, slider duzenini bozmaz */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-svg {
    position: absolute;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-svg-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-svg-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-svg img {
    width: 200px;
    height: auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
}

.slide-content::before {
    content: '';
    position: absolute;
    inset: -1.5rem -2.5rem;
    background: radial-gradient(ellipse at center, rgba(13, 27, 62, 0.45) 0%, transparent 72%);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(48px) scale(0.96);
    filter: blur(6px);
    will-change: transform, opacity, filter;
}

.slide-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 260px;
    max-width: 90%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0;
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(28px);
    letter-spacing: 0.02em;
    will-change: transform, opacity;
}

.slide.active .slide-content::before {
    animation: slideContentGlow 1.8s ease forwards;
}

.slide.active .slide-title {
    animation: slideTitleIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.active .slide-title::after {
    animation: slideTitleLine 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards,
               slideTitleLinePulse 3.5s ease-in-out 2s infinite;
}

.slide.active .slide-subtitle {
    animation: slideSubtitleIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

@keyframes slideTitleIn {
    0% {
        opacity: 0;
        transform: translateY(48px) scale(0.96);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes slideSubtitleIn {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0);
    }
}

@keyframes slideTitleLine {
    0% {
        transform: translateX(-50%) scaleX(0);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) scaleX(1);
        opacity: 1;
    }
}

@keyframes slideTitleLinePulse {
    0%, 100% {
        opacity: 0.65;
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 14px rgba(212, 175, 55, 0.45);
    }
}

@keyframes slideContentGlow {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .slide-title,
    .slide-subtitle,
    .slide-content::before,
    .slide-title::after {
        animation: none !important;
        transition: none !important;
        filter: none !important;
    }

    .slide.active .slide-title,
    .slide.active .slide-subtitle {
        opacity: 1;
        transform: none;
    }

    .slide.active .slide-subtitle {
        opacity: 0.9;
    }

    .slide.active .slide-title::after {
        transform: translateX(-50%) scaleX(1);
        opacity: 1;
    }

    .slide.active .slide-content::before {
        opacity: 1;
        transform: none;
    }
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* Sections */
.section-padding {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
}

.bg-light {
    background-color: var(--light-gray);
}

/* About Brief Section */
.about-brief-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-brief-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-brief-text h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.about-brief-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Activity Preview */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.activity-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.activity-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 1.5rem;
}

.activity-content h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.activity-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Principles Preview */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.principle-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.principle-icon {
    width: 100%;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principle-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.principles-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.principle-card-full {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.principle-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.principle-card-full .principle-icon {
    margin-bottom: 1.5rem;
}

.principle-card-full h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: bold;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Page Banner */
.page-banner {
    margin-top: 70px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><path d="M0,150 Q300,100 600,150 T1200,150 L1200,300 L0,300 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* About Content */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-section {
    margin-bottom: 2rem;
}

.about-section h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Activities Content */
.activity-section {
    margin-bottom: 4rem;
}

.activity-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.activity-row.reverse {
    direction: rtl;
}

.activity-row.reverse > * {
    direction: ltr;
}

.activity-text h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.activity-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.activity-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* News Content */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content-card {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.news-content-card h2 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-content-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* News page — compact list + sidebar */
.news-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1.5rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.news-card-compact {
    transition: var(--transition);
}

.news-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-card-compact-link {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-card-compact .news-image {
    flex: 0 0 220px;
    width: 220px;
    height: 150px;
}

.news-card-compact .news-content-card {
    flex: 1;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.news-card-compact .news-content-card .news-category-tag {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
}

.news-card-compact .news-date {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.news-card-compact .news-content-card h2 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.news-card-compact .news-content-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read-more {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.news-card-compact:hover .news-read-more {
    color: var(--accent-gold);
}

.news-sidebar-inner {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 110px;
}

.news-sidebar-title {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-gold);
    font-weight: 600;
}

.news-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-sidebar-item {
    display: flex;
    gap: 0.875rem;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.news-sidebar-item:hover {
    background: rgba(0, 0, 0, 0.04);
}

.news-sidebar-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
}

.news-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-sidebar-item:hover .news-sidebar-thumb img {
    transform: scale(1.05);
}

.news-sidebar-text {
    flex: 1;
    min-width: 0;
}

.news-sidebar-text .news-date {
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
}

.news-sidebar-text h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-sidebar-item:hover .news-sidebar-text h3 {
    color: var(--primary-blue);
}

/* News Detail */
.news-detail-page-layout {
    margin-top: 0;
}

.news-detail-page-layout .news-detail-main {
    min-width: 0;
}

.news-detail-page-layout .news-detail-wrapper {
    max-width: none;
    margin: 0;
}

.news-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent-gold);
}

.news-detail-article {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-content {
    padding: 2rem;
}

.news-detail-content h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.news-detail-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.news-detail-text p {
    margin-bottom: 1.5rem;
}

/* Contact Content */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.branch-info {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-gold);
}

.branch-info p {
    margin-bottom: 0.5rem;
}

.contact-map h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: #b8921f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
}

.text-center {
    text-align: center;
}

.news-preview .text-center {
    margin-top: 2.5rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-design {
    margin-left: auto;
}

.footer-design a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-design a:hover {
    color: var(--accent-gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: #b8921f;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-dark);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .dropdown .nav-link {
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        margin-left: 0;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .dropdown-menu a {
        color: var(--white);
        text-align: center;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .about-brief-content,
    .about-wrapper,
    .activity-row,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .activity-row.reverse {
        direction: ltr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        margin-top: 80px;
        height: 400px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .floating-svg img {
        width: 100px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .activity-grid,
    .principles-grid,
    .principles-grid-full,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-page-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-sidebar-inner {
        position: static;
    }

    .news-detail-page-layout .news-detail-content h1 {
        font-size: 1.75rem;
    }

    .news-card-compact-link {
        flex-direction: column;
    }

    .news-card-compact .news-image {
        flex: none;
        width: 100%;
        height: 180px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-design {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* SEO & Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
}

.skip-link:focus {
    top: 1rem;
}

.seo-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 2rem 0 1.5rem;
    text-align: center;
}

.seo-hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 1rem;
}

.seo-hero-lead {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.92;
    font-size: 1.05rem;
}

.seo-intro {
    padding: 1.5rem 0 0;
}

.seo-intro p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    line-height: 1.7;
}

.breadcrumb-nav {
    padding: 0.75rem 0 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
    color: var(--text-light);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--accent-gold);
}

.breadcrumb-list a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--accent-gold);
}

.seo-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.seo-overview-card {
    background: var(--white);
    border: 1px solid rgba(13, 27, 62, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.seo-overview-title {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.seo-cta-block {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.seo-cta-block .section-title {
    margin-bottom: 1rem;
}

.seo-trust-line {
    margin: 1rem 0 1.5rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.news-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.news-category-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--light-gray);
    color: var(--primary-dark);
    border-radius: 999px;
}

img[loading="lazy"] {
    content-visibility: auto;
}

/* ============================================
   Tasarım ve Kodlama: Bora Erimler
   İletişim: 0545 230 20 10
   © 2026 - Tüm hakları saklıdır.
   ============================================ */
