@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #ee7530;
    --primary-dark: #d45a1a;
    --secondary-color: #000000;
    --light-color: #ffffff;
    --dark-color: #333333;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Top Bar - Mobil Çözümlü */
.top-bar {
    background: #151517;
    padding: 8px 0;
    font-size: 0.75rem;
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-shrink: 1;
    min-width: 0;
}

.top-bar-contact::-webkit-scrollbar {
    display: none;
}

.contact-item {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 2px 0;
}

.contact-item i {
    font-size: 0.75rem;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.75rem;
    color: #ffffff;
    white-space: nowrap;
}

.top-bar-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.language-switch {
    display: flex;
    gap: 8px;
}
/* Bayrak Stilleri */
.flag-icon {
    display: inline-block;
    width: 20px;
    height: 15px;
    margin-right: 8px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.flag-tr {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="red"/><circle cx="450" cy="400" r="200" fill="white"/><circle cx="500" cy="400" r="160" fill="red"/><path d="M450,400 L650,250 L650,550 Z" fill="white"/></svg>');
}

.flag-en {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><clipPath id="s"><path d="M0,0 v30 h60 v-30 z"/></clipPath><clipPath id="t"><path d="M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z"/></clipPath><g clip-path="url(#s)"><path d="M0,0 v30 h60 v-30 z" fill="#012169"/><path d="M0,0 L60,30 M60,0 L0,30" stroke="#fff" stroke-width="6"/><path d="M0,0 L60,30 M60,0 L0,30" clip-path="url(#t)" stroke="#C8102E" stroke-width="4"/><path d="M30,0 v30 M0,15 h60" stroke="#fff" stroke-width="10"/><path d="M30,0 v30 M0,15 h60" stroke="#C8102E" stroke-width="6"/></g></svg>');
}

.flag-de {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 3"><path d="M0,0 h5 v3 h-5 z" fill="#000001"/><path d="M0,1 h5 v2 h-5 z" fill="#dd0000"/><path d="M0,2 h5 v1 h-5 z" fill="#ffce00"/></svg>');
}

.flag-ar {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600"><rect width="900" height="600" fill="black"/><rect width="900" height="400" y="100" fill="white"/><rect width="900" height="200" y="200" fill="#007a3d"/><path d="M450,300 L550,200 L550,400 Z" fill="#ce1126"/></svg>');
}

.flag-ru {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600"><rect width="900" height="200" fill="white"/><rect width="900" height="200" y="200" fill="#0039a6"/><rect width="900" height="200" y="400" fill="#d52b1e"/></svg>');
}

/* Language Switch with Flags */
.language-switch {
    display: flex;
    gap: 5px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0;
    width: 40px;
    height: 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.lang-btn.active {
    border-color: var(--primary-color);
    background: rgba(238, 117, 48, 0.1);
}

/* BU KISMI BUL VE SİL */
.lang-btn::after {
    content: attr(data-lang);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--light-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-btn:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -30px;
}

/* Mobile için dil değiştirici */
.mobile-lang-switch {
    display: none;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background: var(--light-color);
    color: var(--dark-color);
}

/* Top Bar için bayrak butonları */
.top-bar .lang-btn {
    width: 35px;
    height: 25px;
    border: none;
}

/* RTL Desteği */
body.rtl .lang-btn {
    margin-left: 5px;
    margin-right: 0;
}

body.rtl .lang-btn::after {
    right: 50%;
    left: auto;
    transform: translateX(50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-switch {
        gap: 3px;
    }
    
    .lang-btn {
        width: 35px;
        height: 25px;
    }
    
    .mobile-lang-switch {
        display: block;
    }
    
    .top-bar .language-switch {
        display: none;
    }
}
/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}
/* Bayrak Stilleri - Resim dosyaları ile */
.flag-icon-tr {
    background-image: url('../images/flag-tr.svg');
}

.flag-icon-en {
    background-image: url('../images/flag-en.svg');
}

.flag-icon-de {
    background-image: url('../images/flag-de.svg');
}

.flag-icon-ar {
    background-image: url('../images/flag-ar.svg');
}

.flag-icon-ru {
    background-image: url('../images/flag-ru.svg');
}

/* Button stilleri */
.lang-btn.tr-flag {
    background-image: url('../images/flag-tr.svg');
    background-size: cover;
}

.lang-btn.en-flag {
    background-image: url('../images/flag-en.svg');
    background-size: cover;
}

.lang-btn.de-flag {
    background-image: url('../images/flag-de.svg');
    background-size: cover;
}

.lang-btn.ar-flag {
    background-image: url('../images/flag-ar.svg');
    background-size: cover;
}

.lang-btn.ru-flag {
    background-image: url('../images/flag-ru.svg');
    background-size: cover;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    padding: 10px 0;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

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

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Navigation Styles */
.navbar {
    background: var(--light-color) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 20px 18px !important;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0;
    margin: 0 2px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.nav-link i:first-child {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: var(--transition);
}

/* Alt çizgi efekti */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    background: transparent !important;
    color: var(--primary-color) !important;
    transform: translateY(0);
    box-shadow: none;
}

.nav-link:hover i:first-child,
.nav-link.active i:first-child {
    color: var(--primary-color) !important;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: auto;
    transition: var(--transition);
}

.nav-link[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 0;
    padding: 10px;
    min-width: 280px;
    border-top: 3px solid var(--primary-color);
    animation: dropdownFadeIn 0.3s ease;
}

.dropdown-item {
    padding: 12px 15px;
    border-radius: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

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

.dropdown-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    transition: var(--transition);
}

.dropdown-item div {
    display: flex;
    flex-direction: column;
}

.dropdown-item span {
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
    font-size: 0.9rem;
}

.dropdown-item small {
    font-size: 0.75rem;
    color: var(--gray-medium);
    margin-top: 2px;
    transition: var(--transition);
    font-weight: 300;
}

/* Dropdown hover - sadece font rengi değişsin */
.dropdown-item:hover {
    background: transparent !important;
    transform: translateX(5px);
}

.dropdown-item:hover i,
.dropdown-item:hover span {
    color: var(--primary-color) !important;
}

.dropdown-item:hover small {
    color: var(--primary-color) !important;
    opacity: 0.8;
}

/* Mobile Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 0;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background: var(--primary-color);
}

.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--light-color);
        border-radius: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 10px;
        padding: 20px;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        margin: 2px 0;
        border-radius: 0;
    }
    
    .dropdown-menu {
        box-shadow: none;
        border: 1px solid var(--gray-light);
        margin: 5px 0;
        border-radius: 0;
    }
    
    .dropdown-item {
        border-radius: 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider */
.carousel {
    position: relative;
}

.carousel-item {
    height: 80vh;
    position: relative;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary-color);
}

.carousel-caption p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-color);
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 2rem;
    opacity: 0.9;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 1.5rem;
    color: var(--light-color);
}

/* Butons */
.btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 25px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--light-color);
    color: var(--dark-color);
    border-color: var(--light-color);
}

.btn-light:hover {
    background: transparent;
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Page Header with Random Background */
.page-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--light-color);
    padding: 100px 0;
    text-align: center;
    position: relative;
    transition: background-image 0.5s ease-in-out;
}

.page-header {
    background-image: url('../images/headers/header1.jpg');
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--light-color);
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb-item.active {
    color: var(--light-color);
    opacity: 0.7;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light-color);
    opacity: 0.7;
}

/* Sections */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.feature-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--light-color);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    letter-spacing: -0.2px;
}

.feature-card p {
    color: var(--gray-medium);
    margin: 0;
    font-weight: 300;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-content {
    padding-right: 40px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--gray-medium);
    font-weight: 600;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.experience-badge small {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.service-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 30px;
    text-align: center;
}

.service-icon i {
    font-size: 3rem;
    color: var(--light-color);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    letter-spacing: -0.2px;
}

.service-content p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    font-weight: 300;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--gray-medium);
    font-weight: 300;
}

.service-features i {
    color: var(--primary-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Services Grid Page */
.services-grid-page {
    padding: 80px 0;
}

.service-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.service-box-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.service-box {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-box:hover {
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-box:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-content p {
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
}

.services-sidebar {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
}

.services-sidebar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-item:hover {
    background: var(--gray-light);
    border-color: var(--primary-color);
}

.service-item.active {
    background: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.service-item i {
    font-size: 1.2rem;
    width: 20px;
}

.service-item span {
    font-weight: 600;
}

/* Service Content */
.service-content {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.service-hero {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.service-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-intro {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.service-features {
    margin: 50px 0;
}

.service-features h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
}

/* Process Steps */
.service-process {
    margin: 50px 0;
}

.service-process h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--gray-light);
    border-radius: 15px;
    transition: var(--transition);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.process-step p {
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
}

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.service-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-color);
}

.service-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 300;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
}

.partners-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-item {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex: 0 0 auto;
}

.partner-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.partner-item img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0%);
}

/* CTA Section - Görsel Arka Plan */
.cta-section {
    padding: 80px 0;
    background-image: url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--light-color);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 80px 0 20px;
    font-weight: 300;
}
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px; /* Masaüstü boyutu */
    width: auto;
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-info .logo {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 300; /* Daha ince */
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}


.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light-color);
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-contact .contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact .contact-item div span {
    font-weight: 400;
    font-size: 0.9rem;
    display: block;
}

.footer-contact .contact-item div small {
    font-weight: 300; /* Daha ince */
    font-size: 0.8rem;
    opacity: 0.7;
    display: block;
    margin-top: 2px;
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 20px;
    font-weight: 300; /* Daha ince */
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}
.footer-links h4,
.footer-newsletter h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500; /* Daha ince */
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}

/* Footer Linkleri - Daha İnce */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
    font-weight: 300; /* Çok daha ince */
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    font-family: 'Manrope', sans-serif;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -15px;
    transition: var(--transition);
    opacity: 0;
    font-weight: 300;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}


/* Footer Sosyal Medya İkonları */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--light-color);
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Sosyal medya platform renkleri */
.footer-social .social-icon.facebook {
    background: #3b5998;
}

.footer-social .social-icon.twitter {
    background: #1da1f2;
}

.footer-social .social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social .social-icon.linkedin {
    background: #0077b5;
}

.footer-social .social-icon.whatsapp {
    background: #25d366;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-bottom p {
    opacity: 0.7;
    font-weight: 300; /* Daha ince */
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--light-color);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 300; /* Daha ince */
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Sosyal Medya İkonları */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--light-color);
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Sosyal medya platform renkleri */
.footer-social .social-icon.facebook {
    background: #3b5998;
}

.footer-social .social-icon.twitter {
    background: #1da1f2;
}

.footer-social .social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social .social-icon.linkedin {
    background: #0077b5;
}

.footer-social .social-icon.whatsapp {
    background: #25d366;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-logo-img {
        height: 45px; /* Tablet boyutu */
    }
    
    .footer-links h4,
    .footer-newsletter h4 {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .footer-logo-img {
        height: 40px; /* Mobil boyutu */
    }
    
    .footer-links h4,
    .footer-newsletter h4 {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-social .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideLeft 0.8s ease forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideRight 0.8s ease forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Page Content */
.page-content {
    padding: 80px 0;
}

.vision-mission {
    margin: 60px 0;
}

.vm-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

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

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vm-icon i {
    font-size: 2rem;
    color: var(--light-color);
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.vm-card p {
    color: var(--gray-medium);
    margin: 0;
    font-weight: 300;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.value-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    color: var(--gray-medium);
    margin: 0;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-form p {
    color: var(--gray-medium);
    margin-bottom: 30px;
    font-weight: 300;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: var(--transition);
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(238, 117, 48, 0.25);
}

.contact-info {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--light-color);
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--gray-medium);
    margin: 0;
    font-weight: 300;
}

.contact-details small {
    color: var(--primary-color);
    font-weight: 500;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.map-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.map-overlay p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .services-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-hero img {
        height: 250px;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        padding: 30px 20px;
    }
    
    .page-header {
        padding: 80px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        margin: 0 !important;
    }
}
/* PRESS PAGE FIXES - Görsel Sorunları için */
.press-section {
    padding: 80px 0;
}

.press-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.press-image {
    position: relative;
    height: 250px; /* Sabit yükseklik */
    width: 100%;
    overflow: hidden;
    background: #f8f9fa; /* Arkaplan rengi ekle */
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-image img {
    width: auto; /* Genişliği otomatik ayarla */
    max-width: 100%; /* Maksimum genişlik konteyner kadar */
    height: auto; /* Yüksekliği otomatik ayarla */
    max-height: 100%; /* Maksimum yükseklik konteyner kadar */
    object-fit: contain; /* Görseli kesmeden sığdır */
    object-position: center;
    transition: var(--transition);
}

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

.press-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.press-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.press-date {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.press-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
    flex-grow: 1;
}

.press-content p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.6;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--gray-light);
}

.press-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Press Filters */
.press-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Press Items Grid Düzeni */
.press-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.press-item {
    display: block !important; /* JavaScript için önemli */
    opacity: 1 !important;
    transition: var(--transition);
}

/* Responsive Press Items */
@media (max-width: 1199px) {
    .press-items {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .press-items {
        grid-template-columns: 1fr;
    }
    
    .press-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .press-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .press-image {
        height: 200px;
    }
}

/* Press Statistics Section */
.press-statistics {
    background: linear-gradient(135deg, #151517 0%, #333333 100%);
    color: var(--light-color);
    padding: 80px 0;
    margin-top: 80px;
}

.stats-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.stats-content p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--light-color);
}

.stat-item p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

/* Load More Button */
#loadMore {
    margin-top: 50px;
    padding: 12px 40px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
}

#loadMore:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

/* Görsel hatalarını düzeltme */
.press-card .press-image {
    min-height: 250px; /* Minimum yükseklik */
}

.press-card .press-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
}

/* Eğer görseller bozuk görünüyorsa bu ayarı ekleyin */
.press-card {
    position: relative;
}

.press-image:empty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.press-image:empty::after {
    content: 'Görsel Yükleniyor...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* Fade in animation for press items */
.press-item {
    animation: fadeInUp 0.5s ease forwards;
}

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

/* Language Switch - Top Bar için güncelleme */
.language-switch {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 4px 12px;
    cursor: pointer;
    font-size: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
	transition: all 0.2s ease;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
	filter: brightness(0.7);
    transform: scale(0.95);
}



.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

/* Mobile için dil butonları */
@media (max-width: 768px) {
    .lang-btn {
        padding: 3px 10px;
        font-size: 0.7rem;
        min-width: 28px;
    }
}

@media (max-width: 576px) {
    .lang-btn {
        padding: 2px 8px;
        font-size: 0.65rem;
        min-width: 26px;
    }
}
/* Arapça Dili için RTL Desteği */
html[lang="ar"] body {
    direction: rtl;
    text-align: right;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html[lang="ar"] .logo {
    text-align: right;
}

html[lang="ar"] .navbar-nav {
    margin-right: 0;
    margin-left: auto;
}

html[lang="ar"] .nav-link {
    flex-direction: row-reverse;
}

html[lang="ar"] .nav-link i:first-child {
    margin-right: 0;
    margin-left: 8px;
}

html[lang="ar"] .dropdown-menu {
    text-align: right;
}

html[lang="ar"] .dropdown-item {
    flex-direction: row-reverse;
    text-align: right;
}

html[lang="ar"] .dropdown-item i {
    margin-right: 0;
    margin-left: 12px;
}

html[lang="ar"] .carousel-caption {
    text-align: center;
}

html[lang="ar"] .feature-card,
html[lang="ar"] .service-card,
html[lang="ar"] .about-content,
html[lang="ar"] .section-header {
    text-align: right;
}

html[lang="ar"] .about-stats {
    justify-content: flex-end;
}

html[lang="ar"] .service-features li {
    justify-content: flex-end;
    text-align: right;
}

html[lang="ar"] .service-features i {
    margin-right: 0;
    margin-left: 10px;
}

html[lang="ar"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 10px;
}

html[lang="ar"] .footer-links a::before {
    content: '‹';
    right: -15px;
    left: auto;
}

html[lang="ar"] .footer-links a:hover::before {
    right: 0;
    left: auto;
}

/* Rusça için ek font desteği */
html[lang="ru"] body {
    font-family: 'Inter', 'Arial', sans-serif;
}



/* Hakkımızda Sayfası Stilleri */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/headers/about-header.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 120px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--light-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Timeline Stilleri */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

/* Company Info Stilleri */
.company-info .info-item {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}

/* Who We Are Cards */
.who-card {
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

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

.who-icon {
    color: var(--primary-color);
}

.who-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-content::before {
        left: -40px !important;
        right: auto !important;
    }
    
    .page-header {
        padding: 80px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Value Cards Update */
.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--light-color);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Timeline Stilleri - DÜZELTİLMİŞ VERSİYON */
.about-story {
    margin: 60px 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    display: block;
    clear: both;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--light-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(238, 117, 48, 0.3);
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    width: 45%;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Sağdaki timeline item'ları */
.timeline-item:nth-child(odd) .timeline-content {
    float: right;
    margin-left: 5%;
}

/* Soldaki timeline item'ları */
.timeline-item:nth-child(even) .timeline-content {
    float: left;
    margin-right: 5%;
}

/* Sağdaki timeline item'ları için ok */
.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--light-color);
}

/* Soldaki timeline item'ları için ok */
.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--light-color);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.timeline-content p {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Nokta (dot) için stil */
.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--light-color);
    box-shadow: 0 0 0 3px var(--primary-color);
    z-index: 3;
}

/* Timeline item'ları temizleme */
.timeline::after {
    content: '';
    display: table;
    clear: both;
}

/* Responsive Timeline - MOBİL */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
        transform: none;
        top: -25px;
        min-width: 80px;
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        float: none !important;
        margin-left: 80px !important;
        margin-right: 0 !important;
        margin-top: 40px;
    }
    
    .timeline-item::after {
        left: 30px;
        transform: translateX(0);
    }
    
    /* Mobilde okları kaldıralım */
    .timeline-content::before {
        display: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px !important;
        margin-top: 40px;
    }
}
/* BASİT TIMELINE - GARANTİ ÇÖZÜM */
.simple-timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    padding-left: 50px;
}

.simple-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    z-index: 1;
}

.simple-timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.simple-timeline-year {
    position: absolute;
    left: -45px;
    top: 0;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 90px;
    text-align: center;
    z-index: 2;
    box-shadow: var(--shadow);
}

.simple-timeline-content {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.simple-timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.3rem;
}

.simple-timeline-content p {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 0;
}

.simple-timeline-item::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
    z-index: 3;
}

/* Responsive */
@media (max-width: 768px) {
    .simple-timeline {
        padding-left: 40px;
    }
    
    .simple-timeline::before {
        left: 15px;
    }
    
    .simple-timeline-year {
        left: -35px;
        min-width: 80px;
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .simple-timeline-item::before {
        left: 11px;
    }
}/* ============================================
   TIMELINE STYLES
   ============================================ */

.about-story {
    margin: 60px 0;
    padding: 40px 20px;
}

.about-story h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.about-story h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--light-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(238, 117, 48, 0.3);
    min-width: 100px;
    text-align: center;
    border: 3px solid white;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Sağdaki timeline item'ları */
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

/* Soldaki timeline item'ları */
.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

/* Sağdaki timeline item'ları için ok */
.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid var(--light-color);
    filter: drop-shadow(-2px 0 2px rgba(0,0,0,0.1));
}

/* Soldaki timeline item'ları için ok */
.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid var(--light-color);
    filter: drop-shadow(2px 0 2px rgba(0,0,0,0.1));
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.timeline-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

.timeline-content p {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 300;
}

/* Nokta (dot) için stil */
.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--light-color);
    box-shadow: 0 0 0 4px var(--primary-color);
    z-index: 3;
}

/* Alternatif: timeline item'lar arası bağlantı noktası */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 24px;
    bottom: -36px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(238, 117, 48, 0.3), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item:last-child::before {
    display: none;
}

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

.timeline-item {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }

/* Responsive Timeline - MOBİL */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
        transform: none;
        top: -20px;
        min-width: 80px;
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
        margin-top: 40px;
    }
    
    .timeline-item::after {
        left: 30px;
        transform: translateX(0);
    }
    
    .timeline-item::before {
        left: 30px;
    }
    
    /* Mobilde okları kaldıralım */
    .timeline-content::before {
        display: none;
    }
    
    /* Timeline item'ları düzenle */
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px !important;
        margin-top: 40px;
    }
    
    .timeline-content h4 {
        font-size: 1.3rem;
    }
    
    .timeline-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .about-story {
        padding: 20px 10px;
    }
    
    .about-story h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .timeline-year {
        left: 20px;
        min-width: 70px;
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 20px;
    }
    
    .timeline-item::after {
        left: 20px;
        width: 20px;
        height: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px !important;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
}

/* Timeline için geçici debug (kullanımdan sonra kaldırın) */
.timeline-debug .timeline::before {
    background: red !important;
}

.timeline-debug .timeline-year {
    background: blue !important;
    color: white !important;
}

.timeline-debug .timeline-content {
    border: 2px solid green !important;
}
/* ============================================
   TIMELINE STYLES - MODERN TABLO TASARIMI
   ============================================ */

.about-story {
    margin: 80px 0;
    padding: 60px 0;
    background: var(--gray-light);
    border-radius: 20px;
}

.about-story h2 {
    color: var(--dark-color);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.5px;
}

.about-story h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Timeline Table Layout */
.timeline-table {
    max-width: 1000px;
    margin: 0 auto;
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 30px;
}

.timeline-row {
    display: table-row;
}

.timeline-year-cell {
    display: table-cell;
    width: 150px;
    vertical-align: top;
    padding-right: 40px;
    position: relative;
}

.timeline-year-cell::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 15px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 5px solid var(--light-color);
    box-shadow: 0 0 0 3px var(--primary-color);
    z-index: 2;
}

.timeline-year-cell::after {
    content: '';
    position: absolute;
    right: 0;
    top: 30px;
    width: 15px;
    height: 2px;
    background: var(--primary-color);
    z-index: 1;
}

.timeline-year-cell span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: right;
    padding: 10px 20px;
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    min-width: 100px;
}

.timeline-content-cell {
    display: table-cell;
    vertical-align: top;
    padding-left: 40px;
    position: relative;
}

.timeline-content-cell::before {
    content: '';
    position: absolute;
    left: 0;
    top: 30px;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    z-index: 1;
}

.timeline-row:last-child .timeline-content-cell::before {
    display: none;
}

.timeline-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    position: relative;
    transition: var(--transition);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--primary-color);
}

.timeline-card h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-card h4::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    font-size: 0.9rem;
}

.timeline-card p {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 300;
}

/* Today Stili */
.timeline-row:last-child .timeline-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-left: 4px solid var(--light-color);
}

.timeline-row:last-child .timeline-card h4,
.timeline-row:last-child .timeline-card p {
    color: var(--light-color);
}

.timeline-row:last-child .timeline-card h4::before {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Responsive Timeline */
@media (max-width: 992px) {
    .timeline-table {
        display: block;
    }
    
    .timeline-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
        position: relative;
    }
    
    .timeline-year-cell {
        display: block;
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
        text-align: left !important;
    }
    
    .timeline-year-cell::before,
    .timeline-year-cell::after {
        display: none;
    }
    
    .timeline-year-cell span {
        display: inline-block;
        text-align: center;
        padding: 12px 25px;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .timeline-content-cell {
        display: block;
        padding: 0;
    }
    
    .timeline-content-cell::before {
        left: 20px;
        top: -20px;
        height: 20px;
        width: 2px;
        background: var(--primary-color);
    }
    
    .timeline-card::before {
        left: 16px;
        top: -10px;
        border-top: none;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid var(--primary-color);
    }
    
    .timeline-card {
        margin-left: 0;
        min-height: auto;
    }
    
    .timeline-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .about-story {
        margin: 40px 0;
        padding: 40px 20px;
        border-radius: 15px;
    }
    
    .about-story h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .timeline-card {
        padding: 25px;
    }
    
    .timeline-card h4 {
        font-size: 1.3rem;
    }
    
    .timeline-year-cell span {
        font-size: 1.3rem;
        padding: 10px 20px;
    }
}

/* Animasyonlar */
.timeline-row {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.timeline-row:nth-child(1) { animation-delay: 0.1s; }
.timeline-row:nth-child(2) { animation-delay: 0.3s; }
.timeline-row:nth-child(3) { animation-delay: 0.5s; }
.timeline-row:nth-child(4) { animation-delay: 0.7s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RTL Desteği */
html[lang="ar"] .timeline-year-cell {
    padding-right: 0;
    padding-left: 40px;
    text-align: right;
}

html[lang="ar"] .timeline-year-cell::before {
    right: auto;
    left: -15px;
}

html[lang="ar"] .timeline-year-cell::after {
    right: auto;
    left: 0;
}

html[lang="ar"] .timeline-year-cell span {
    text-align: left;
}

html[lang="ar"] .timeline-content-cell {
    padding-left: 0;
    padding-right: 40px;
}

html[lang="ar"] .timeline-content-cell::before {
    left: auto;
    right: 0;
}

html[lang="ar"] .timeline-card {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

html[lang="ar"] .timeline-card::before {
    left: auto;
    right: -8px;
    border-right: none;
    border-left: 10px solid var(--primary-color);
}

html[lang="ar"] .timeline-card:hover {
    transform: translateX(-10px);
}

html[lang="ar"] .timeline-row:last-child .timeline-card {
    border-right: 4px solid var(--light-color);
}

/* Responsive RTL */
@media (max-width: 992px) {
    html[lang="ar"] .timeline-content-cell::before {
        left: auto;
        right: 20px;
    }
    
    html[lang="ar"] .timeline-card::before {
        left: auto;
        right: 16px;
    }
}