/* Genel Ayarlar ve Tema */
:root {
    --color-primary: #007bff; /* Mavi - Teknoloji ve Güven */
    --color-secondary: #00c6ff; /* Açık Mavi - Vurgu */
    --color-dark: #1a1a1a; /* Koyu Gri - Ana Tema */
    --color-light: #f4f4f4; /* Açık Gri - Arkaplan */
    --color-accent: #ff4500; /* Turuncu/Kırmızı - Tehlike/Savunma Vurgusu */
    --font-mono: 'Roboto Mono', monospace;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    background-color: var(--color-dark);
    color: var(--color-light);
    overflow-x: hidden;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
}

/* --- 1. HEADER & MENÜ STİLLERİ --- */

.header {
background-color: #0a2342; /* Koyu Kurumsal Mavi */
    border-bottom: 2px solid #004a99; /* İnce bir vurgu hattı */
    
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-primary);
    position: relative;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.company-logo {
    height: 120px; 
    margin-right: 10px;
    vertical-align: middle;
}

.logo h1 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--color-light);
}

/* Dil Seçimi ve Arama Çubuğu */
.language-selector, .search-bar-container {
    margin-left: 20px;
}

#language-switcher {
    padding: 8px 12px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-dark);
    color: var(--color-light);
    font-size: 1rem;
    cursor: pointer;
}

.search-bar-container {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-primary);
    background-color: var(--color-dark);
    padding: 2px;
}

#search-input {
    border: none;
    background: transparent;
    color: var(--color-light);
    padding: 5px 10px;
    outline: none;
    width: 150px;
}

#search-button {
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    padding: 5px 8px;
    color: var(--color-dark);
    height: 100%;
}
#search-button svg {
    display: block;
}


/* Hamburger Menü Butonu */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 30px;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-secondary);
    transition: all 0.3s ease;
}

/* Hamburger İkonu Animasyonu */
.menu-toggle.active .bar-1 {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar-2 {
    opacity: 0;
}

.menu-toggle.active .bar-3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Mekanik Kapı Menüsü (Space Gate Effect) --- */

.mechanical-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 999;
    display: flex;
}

.mechanical-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.menu-half {
    background-color: #0a2342; /* Koyu Kurumsal Mavi */
    border-bottom: 2px solid #004a99; /* İnce bir vurgu hattı */
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border: 1px solid var(--color-primary);
}

.left-half {
    left: 0;
    transform: translateX(-100%);
    border-right: 0;
}

.right-half {
    right: 0;
    transform: translateX(100%);
    border-left: 0;
}

.mechanical-menu.open .left-half {
    transform: translateX(0%);
}

.mechanical-menu.open .right-half {
    transform: translateX(0%);
}

.menu-content {
    list-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s 0.6s ease;
}

.mechanical-menu.open .menu-content {
    opacity: 1;
}

.menu-content li {
    margin: 1rem 0;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mechanical-menu.open .menu-content li {
    transform: translateY(0);
    opacity: 1;
}
.mechanical-menu.open .menu-content li:nth-child(1) { transition-delay: 0.6s; }
.mechanical-menu.open .menu-content li:nth-child(2) { transition-delay: 0.7s; }
.mechanical-menu.open .menu-content li:nth-child(3) { transition-delay: 0.8s; }
.mechanical-menu.open .menu-content li:nth-child(4) { transition-delay: 0.9s; }
.mechanical-menu.open .menu-content li:nth-child(5) { transition-delay: 1.0s; }


.menu-content a {
    font-size: 2rem;
    font-family: var(--font-mono);
    color: var(--color-light);
    padding: 0.5rem 1rem;
    display: block;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease, color 0.3s ease;
}

.menu-content a:hover {
    color: var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
}

/* --- 2. SLIDER STİLLERİ --- */

.hero-section {
    height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 90%;
    height: 90%;
    overflow: hidden;
    position: absolute; 
    z-index: 1;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.slide-caption {
    z-index: 2;
    text-align: center;
    padding: 20px;
    background: rgba(26, 26, 26, 0.85);
    border: 2px solid var(--color-primary);
    max-width: 80%;
    animation: fadeIn 2s ease-in-out; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-caption h2 {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.slide-caption p {
    font-size: 1.1rem;
    font-family: var(--font-mono);
    color: var(--color-light);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--color-light);
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.nav-dot.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

/* --- 3. HAKKIMIZDA BÖLÜMÜ STİLLERİ --- */
.about-section {
    padding: 4rem 5%;
    background-color: #E3A37;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

.about-section h3 {
    font-size: 2.2rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
    color: #ccc;
}

/* --- 4. SEO VE ÖZELLİKLER BÖLÜMÜ --- */

.feature-section {
    padding: 4rem 5%;
background-color: #0a2342; /* Koyu Kurumsal Mavi */
    border-bottom: 2px solid #004a99; /* İnce bir vurgu hattı */
}

.animated-header {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--color-light);
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
    padding-bottom: 0.5rem;
    animation: slideInBottom 1s ease-out;
}

@keyframes slideInBottom {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 6px;
    border-left: 5px solid var(--color-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-left-color: var(--color-secondary);
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-family: var(--font-mono);
}

.feature-item p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* --- 5. HARİTA VE İLETİŞİM BÖLÜMÜ STİLLERİ (DÜZELTİLMİŞ) --- */
.contact-section {
    padding: 5rem 5%;
background-color: #0a2342; /* Koyu Kurumsal Mavi */
    border-bottom: 2px solid #004a99; /* İnce bir vurgu hattı */
    text-align: center;
    border-top: 2px solid var(--color-primary);
}

.contact-section h3 {
    font-size: 2.5rem;
    color: var(--color-light);
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-placeholder {
    /* **KRİTİK AYAR 1: YÜKSEKLİK VE KONUMLANDIRMA** */
    height: 400px; 
    position: relative; 
    
    border: 1px solid var(--color-secondary);
    overflow: hidden; 
}

.map-placeholder iframe {
    /* **KRİTİK AYAR 2: IFRAME'İ KUTUYA YAYMA** */
    width: 100%;
    height: 100%;
    border: none;
    display: block; /* Tarayıcı boşluklarını engellemek için */
}

.contact-details {
    text-align: left;
    background-color: #2c2c2c;
    padding: 30px;
    border-left: 5px solid var(--color-accent);
}

.contact-details h4 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* --- 6. TEKLİF TALEP BÖLÜMÜ STİLLERİ --- */

.quote-section {
    background-color: #0d0d0d;
    padding: 5rem 5%;
    text-align: center;
    border-top: 3px solid var(--color-accent);
}

.quote-content h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.quote-content p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.quote-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.quote-form input,
.quote-form textarea {
    padding: 15px;
    border: 1px solid var(--color-primary);
    background-color: #1a1a1a;
    color: var(--color-light);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--color-accent);
    outline: none;
}

.quote-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: var(--color-accent);
    background-color: #0a2342; /* Koyu Kurumsal Mavi */
    border-bottom: 2px solid #004a99; /* İnce bir vurgu hattı */
    border: none;
    padding: 15px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.submit-btn:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

/* --- 7. MOBİL UYUMLULUK --- */

@media (max-width: 768px) {
    
    .header {
        flex-wrap: wrap; 
        padding: 0.8rem 4%;
    }

    .logo {
        width: 50%;
    }
    
    .menu-toggle {
        width: 50%;
        align-items: flex-end; 
    }

    .search-bar-container, .language-selector {
        order: 3; 
        width: 100%;
        margin: 10px 0 0 0;
    }
    
    #search-input {
        width: calc(100% - 40px);
    }
    
    .slide-caption {
        max-width: 90%;
        padding: 15px;
    }
    
    .slide-caption h2 {
        font-size: 1.8rem;
    }
    
    .slide-caption p {
        font-size: 0.9rem;
    }
    
    .hero-section {
        height: 60vh;
    }
    
    .menu-content a {
        font-size: 1.5rem; 
    }

    .feature-section {
        padding: 2rem 5%;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr; 
    }
    
    .map-placeholder {
        height: 300px; /* Mobil için harita yüksekliğini düşürdük */
    }
    
    .quote-content h3 {
        font-size: 2rem;
    }

    .quote-form input,
    .quote-form textarea,
    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }

    .footer p {
        font-size: 0.7rem;
    }
/* style.css dosyasına eklenmesi gerekenler */

/* Slider Kontrol Okları Stili */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-light);
    color: var(--color-light);
    cursor: pointer;
    padding: 15px 10px;
    z-index: 50; /* Slayt içeriğinin üstünde olmalı */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    font-size: 0; /* İçindeki metni gizle */
}

.slider-control:hover {
    background-color: var(--color-primary);
    background-color: #0a2342; /* Koyu Kurumsal Mavi */
    border-bottom: 2px solid #004a99; /* İnce bir vurgu hattı */
    border-color: var(--color-primary);
}

.slider-control svg {
    width: 24px;
    height: 24px;
    display: block;
    color: inherit; /* Buton rengini alsın */
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

/* Mobil görünümde okları biraz küçültelim */
@media (max-width: 768px) {
    .slider-control {
        padding: 10px 5px;
    }
    .slider-control.prev {
        left: 5px;
    }
    .slider-control.next {
        right: 5px;
    }
}
}
/* Ana taşıyıcıyı esnek hale getir */
.team-container {
    display: flex;
    justify-content: center; /* Ortalar */
    gap: 40px;              /* İki yönetici arasındaki boşluk */
    flex-wrap: wrap;        /* Mobilde sığmazsa alt alta geçer */
    padding: 20px;
}

/* Her bir yönetici kutusunun stili */
.team-member {
    text-align: center;     /* Görseli ve yazıyı ortalar */
    flex: 0 1 300px;        /* Maksimum 300px genişlikte kalmasını sağlar */
}

/* Fotoğrafların boyutunu sabitle */
.team-member img {
    width: 200px;           /* İstediğin boyuta göre ayarla */
    height: 200px;
    object-fit: cover;      /* Fotoğrafın bozulmasını engeller */
    border-radius: 10px;    /* Hafif yuvarlatılmış köşeler */
    margin-bottom: 15px;
}
.member-info h3 {
  .member-info h3 {
    margin: 15px 0 5px 0;
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;         /* Daha derin ve okunaklı bir koyu ton */
    font-size: 1.4rem;      /* İsmi biraz daha büyüttük */
    font-weight: 700;       /* Kalınlığı artırdık (Bold) */
    text-transform: uppercase; /* İsimleri büyük harf yaparak otorite kattık */
    letter-spacing: 1px;    /* Harf aralarını açarak ferahlık sağladık */
    border-bottom: 2px solid #004a99; /* Altına kurumsal mavi bir çizgi ekledik */
    display: inline-block;  /* Çizginin sadece isim kadar uzanmasını sağlar */
    padding-bottom: 5px;
}

.member-info .title {
    color: #555;            /* Unvan rengini biraz daha belirgin yaptık */
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    display: block;         /* Başlığın alt satıra geçmesini netleştirdik */

/* Bu blok elemanları yan yana gelmeye zorlar */
.team-container {
    display: flex !important; /* Diğer kuralları geçersiz kılmak için */
    flex-direction: row;      /* Yatay dizilim */
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;          /* Mobilde bozulmaması için çok önemli */
    margin-top: 30px;
    width: 100%;
}

.team-member {
    flex: 0 1 300px;         /* Genişliği sabitler */
    text-align: center;
}

.team-member img {
    max-width: 100%;         /* Resmin taşmasını engeller */
    height: auto;
}
}