/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2332;
    --secondary-color: #2c3e50;
    --accent-color: #c41e3a;
    --accent-red: #c41e3a;
    --text-dark: #2d3748;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-dark: #2c3e50;
    --bg-dark-nav: #f4f1ea; /* Restored original beige */
    --nav-text: #1a2332; /* New variable for nav text */
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-dark-nav);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    max-width: 1400px;
}

.nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem; /* Logonun ve menünün arasındaki mesafe */
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h2 {
    color: var(--nav-text);
    font-size: 1.4rem;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo img {
    height: 100px; /* Increased size */
    width: auto;
    margin-right: 1rem;
}

.logo span {
    color: var(--nav-text);
    font-size: 0.75rem;
    font-weight: 400;
    display: block;
    margin-top: 2px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex: 1; /* Menünün tüm alanı kaplamasını sağlar */
    align-items: center;
}

/* İletişim butonunu en sağa iter (ve ondan sonrakileri de onunla beraber sağa çeker) */
.nav-menu li:nth-last-child(3) {
    margin-left: auto;
}

.nav-menu a {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a i {
    font-size: 0.9rem;
    margin-left: 0.3rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-red);
}

.lang-toggle,
.search-toggle {
    color: var(--nav-text) !important;
    font-size: 0.9rem;
}

.lang-toggle:hover,
.search-toggle:hover {
    color: var(--accent-red) !important;
}

.lang-flags {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-flag {
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.lang-flag img {
    height: 14px;
    width: 20px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.lang-flag:hover {
    transform: scale(1.1);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Image Section */
.hero-image-section {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 500"><rect fill="%231a2332"/><path d="M0,200 Q300,100 600,200 T1200,200 L1200,500 L0,500 Z" fill="%232c3e50" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 0 0 3rem 3rem;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-image-content {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-slogan {
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-slider-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--accent-red);
}

/* Main Hero Content */
.hero-main {
    background: var(--bg-white);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-main-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.3rem 1rem;
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-main-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
}

/* Feature Cards Section */
.feature-cards-section {
    padding: 0;
    background: var(--bg-white);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.feature-card {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.feature-card-1 {
    background: #4a5568;
}

.feature-card-2 {
    background: var(--accent-red);
}

.feature-card-3 {
    background: #f5f5f5;
    color: var(--accent-red);
}

.feature-number {
    font-size: 4rem;
    font-weight: 300;
    opacity: 0.5;
    line-height: 1;
}

.feature-text {
    font-size: 1.2rem;
    font-weight: 500;
    flex: 1;
}

.feature-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    background: var(--bg-white);
}

.btn-feature {
    padding: 1rem 2.5rem;
    background: var(--bg-dark-nav);
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-feature:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: #c9a52d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 700;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: var(--bg-dark);
    color: white;
}

.section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.section-title-wrapper {
    border-left: 4px solid var(--accent-red);
    padding-left: 1.5rem;
}

.section-label {
    display: block;
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.section-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.btn-services {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-services:hover {
    background: #a01a2e;
    transform: translateY(-2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 250px for 4 cols */
    gap: 2rem;
}

.service-card-dark {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
}

.service-card-dark:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-red);
}

.service-icon-white {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    opacity: 0.9;
}

.service-card-dark:hover .service-icon-white {
    color: var(--accent-red);
    transform: scale(1.1);
    opacity: 1;
}

.service-card-dark h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card-dark p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.service-link-white {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: var(--transition);
    font-size: 0.95rem;
}

.service-card-dark:hover .service-link-white {
    color: var(--accent-red);
    gap: 1rem;
}

.service-link-white i {
    transition: var(--transition);
}

.service-card-dark:hover .service-link-white i {
    transform: translateX(5px);
}

.text-center {
    text-align: center;
}

/* Team Preview */
.team-preview {
    padding: 5rem 0;
    background: var(--bg-light);
}

.team-preview .section-title {
    color: var(--accent-red);
}

.team-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.team-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.team-slider-btn:hover {
    background-color: var(--accent-red);
}

.team-slider-btn.prev {
    left: -20px;
}

.team-slider-btn.next {
    right: -20px;
}

.team-grid {
    display: flex;
    overflow-x: auto;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem; /* Scrollbar için boşluk */
    padding-top: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
}

/* Scrollbar Stilleri (Webkit) */
.team-grid::-webkit-scrollbar {
    height: 8px;
}

.team-grid::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}
 
.team-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color); 
    border-radius: 4px;
}

.team-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red); 
}

.team-card {
    flex: 0 0 calc(25% - 1.875rem); /* 4 tane sığacak şekilde genişlik ayarı */
    min-width: 250px; /* Çok küçülmesini engelle - 4'ü sığsın diye küçültüldü */
    scroll-snap-align: start;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.team-image .image-placeholder {
    height: 100%;
    border-radius: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.team-card h3 {
    color: var(--primary-color);
    padding: 1.5rem 1.5rem 0.5rem;
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.team-card p.team-title {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-bio {
    padding: 0 1.5rem 0.5rem 1.5rem !important;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Sadece 4 satır göster */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0 !important;
}

.team-bio-more-wrapper {
    padding: 0 1.5rem;
    margin-top: auto;
}

.team-bio-more {
    display: inline-block;
    padding: 0.5rem 0 1.5rem 0;
    color: var(--accent-red);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.team-bio-more:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Let the whole card be clickable if needed, but styling just the link */
.team-bio-more {
    z-index: 2;
    position: relative;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Detail */
.about-detail {
    padding: 4rem 0;
}

.about-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    background-color: var(--bg-white);
    padding: 0; /* İç boşluğu sıfırladık */
    border-radius: 0; /* Border radius kaldırdık */
    border-left: none; /* Border left kaldırdık */
    margin-top: 0; /* Üst boşluğu sıfırladık */
    margin-bottom: 2rem;
    text-align: justify; /* Metni iki yana yasla */
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-indent: 2rem; /* Paragraf başlarına (satırbaşı) içeriden başlama payı */
}

.about-intro p:first-child {
    margin-top: -0.3rem; /* Metnin fotoğrafın üst kenarı ile TAM hizalanması için ince ayar */
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-list {
    display: grid;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-light);
    margin: 0;
}

/* Services Page (Accordion) */
.services-detail {
    padding: 4rem 0;
}

.services-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.accordion-item.active {
    border-color: var(--accent-red);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--bg-white);
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-item.active .accordion-header {
    background: var(--primary-color);
}

.accordion-title-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.accordion-title-wrap h2 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.accordion-item.active .accordion-title-wrap h2 {
    color: white;
}

.accordion-toggle-icon {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.accordion-item.active .accordion-toggle-icon {
    color: white;
    transform: rotate(180deg);
}

.accordion-content {
    padding: 2rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-icon-large {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.accordion-item.active .service-icon-large {
    background: white;
    color: var(--accent-red);
}

.service-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-content ul li::before {
    content: '\2022'; /* Temiz bir nokta işareti (bullet) */
    color: var(--accent-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .accordion-title-wrap h2 {
        font-size: 1.1rem;
    }
    
    .service-icon-large {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .accordion-header {
        padding: 1rem;
    }
    
    .accordion-content {
        padding: 1rem;
    }
}

.team-detail {
    padding: 4rem 0;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Changed to columns */
    gap: 2rem;
}

.team-member-card {
    display: flex;
    flex-direction: column; /* Changed to vertical stack */
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
}

.team-member-card .member-image {
    height: 350px;
    width: 100%;
}

/* Sticky Call Button */
.sticky-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-red);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.sticky-call-btn i {
    font-size: 1.2rem;
}

.sticky-call-btn:hover {
    transform: translateY(-5px);
    background-color: #a01a2e;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    color: white;
}

@media (max-width: 768px) {
    .sticky-call-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Force 4 columns on large screens for services */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* About Layout Update */
.about-detail-content {
    /* Container limitlerini kaldırmak için */
    width: 100%;
    max-width: 100%;
}

.about-wrapper {
    display: block; /* Flexbox yerine block kullanıyoruz ki float çalışsın */
}

.about-image {
    float: left; /* Sola yasla ve metnin etrafını sarmasını sağla */
    width: 45%; /* Ekranın sol yarısını kaplasın */
    max-width: 800px;
    margin-right: 4rem; /* Metinle arasına geniş boşluk */
    margin-bottom: 2rem;
    margin-left: calc(-50vw + 50% + 2rem); /* Sola yasla ama 2rem (yaklaşık 32px) boşluk bırak */
}

.about-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 8px; /* Her tarafını yuvarlat */
    box-shadow: var(--shadow-lg);
}

.about-content {
    /* Metnin sağda düzgün durması için */
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 15px;
}

.about-content::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 992px) {
    .about-image {
        float: none;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 2rem auto;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 4rem 0 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

.footer-logo-subtitle {
    color: var(--accent-red);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    gap: 0.5rem;
}

.footer-contact-info strong {
    color: white;
    min-width: 80px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--accent-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-red);
}

.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services-list li {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
}

.footer-services-list li:last-child {
    border-bottom: none;
}

.footer-services-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-services-list a:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.map-container iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: none;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 1rem;
    display: inline-block;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-dark-nav);
    color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--accent-red);
    color: white;
    transform: rotateY(180deg);
}

.contact-details h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-red);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.social-media-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-media-contact h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.social-media-contact .social-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: flex-start;
}

.social-media-contact .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.social-media-contact .social-link i {
    font-size: 1.5rem;
    color: var(--accent-red);
}

.social-media-contact .social-link:hover {
    color: var(--accent-red);
    transform: translateY(-2px);
}

.map-section {
    margin-top: 5rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.map-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    border: 2px solid var(--bg-light);
    transition: var(--transition);
    height: 450px; /* Sabit yükseklik */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-container:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--accent-red);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Articles Page Styles */
.articles-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.articles-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.articles-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.article-image {
    height: 240px;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.article-image img {
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
    background-color: #e9ecef;
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: block;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.article-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-color);
    gap: 0.8rem;
}

.articles-note {
    text-align: center;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.articles-note p {
    color: var(--text-light);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-image {
        height: 200px;
    }
}
