/* Temel Sıfırlama ve Font Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden; /* Sağa kayma hatalarını engeller */
}

/* Navigasyon Menüsü */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.logo-container .site-logo {
    height: 100px; /* Logonun boyutu */
    width: auto;
    display: block;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    margin-left: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #29abe2;
}

.nav-links .btn-nav {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
}

/* Mobil Hamburger Menü İkon Tasarımı */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
}

/* Hero Bölümü */
/* =========================================
   Hero / Slide Bölümü Stilleri
   ========================================= */

.hero-section {
    height: 100vh; /* Tam ekran yükseklik */
    position: relative;
    overflow: hidden; /* Görselin taşmasını engelle */
    display: flex;
    align-items: center; /* Dikeyde ortala */
    justify-content: flex-end; /* Yatayda sağa yasla (metinler için) */
    padding: 0 10%; /* Sağdan ve soldan boşluk */
}

/* Arka Plan Görseli Konteyneri */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Metinlerin altında kalmasını sağla */
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görseli bozmadan alanı kapla */
    object-position: center; /* Görseli ortala */
}

/* Görselin üzerine hafif bir karartma katmanı (Metinlerin okunması için) */
.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* %40 siyah karartma */
}

/* Görsel Üzerindeki Metin Konteyneri */
.hero-content {
    max-width: 850px; /* Metin kutusunun genişliği */
    z-index: 4; /* Karartma katmanının ve görselin üzerinde */
    text-align: center; /* Metinleri sağa yasla */
    color: #ffffff; /* Tüm metinleri beyaz yap */
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase; /* Tüm harfleri büyük yap */
}

/* Mavi vurgu rengi */
.hero-content h1 span {
    color: #29abe2; 
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.6;
}

/* Butonlar Grubu */
.hero-buttons {
    display: flex;
    justify-content: center; /* Butonları sağa yasla */
    gap: 15px; /* Butonlar arası boşluk */
}

/* Ortak Buton Stilleri */
.hero-buttons a {
    text-decoration: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Mavi Buton */
.btn-primary {
    background-color: #29abe2;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Şeffaf Siyah Buton */
.btn-secondary {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}


/* =========================================
   📱 Mobil Uyumluluk (Responsive)
   ========================================= */

@media (max-width: 968px) {
    /* Navigasyon Alanı Ayarları */
    .navbar {
        padding: 10px 5%; /* Mobilde daha dar padding */
    }

    /* Hamburger Butonunu Göster */
    .hamburger {
        display: flex;
        z-index: 1001; /* Menünün üzerinde kalsın */
    }
    
    /* Navigasyon Linkleri - Varsayılan Gizli Durum (Kapalı) */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Ekranın tamamen dışında gizle */
        width: 70%; /* Menü genişliği */
        height: 100vh; /* Tam ekran yükseklik */
        background-color: rgba(255, 255, 255, 0.98); /* Şeffaf beyaz arka plan */
        display: flex;
        flex-direction: column; /* Linkleri alt alta koy */
        align-items: center;
        justify-content: flex-start; /* Üstten başla */
        padding-top: 100px; /* Üstten boşluk */
        gap: 25px; /* Linkler arası boşluk */
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease; /* Açılma animasyonu */
        z-index: 1000; /* Header'ın altında ama içeriğin üzerinde */
        margin: 0; /* Boşlukları sıfırla */
    }

    /* Link Stilleri */
    .nav-links a {
        margin-left: 0; /* Masaüstü marginini kaldır */
        font-size: 18px;
        width: 80%; /* Linkleri tam genişlik yap */
        text-align: center;
        padding: 10px 0;
        color: #000000;
        border-bottom: 1px solid #f0f0f0; /* Alt çizgi */
    }

    /* Link hover ve aktif durum */
    .nav-links a:hover, .nav-links a.active {
        color: #29abe2;
        border-bottom-color: #29abe2;
    }

    /* İletişim / Teklif Butonu Mobilde Normal Link Olsun */
    .nav-links .btn-nav {
        background-color: transparent;
        color: #000000;
        border: none;
        padding: 10px 0;
        border-radius: 0;
    }

    .nav-links .btn-nav:hover {
        background-color: transparent;
        color: #29abe2;
    }

    /* =========================================
       JavaScript ile Tetiklenen Sınıflar
       ========================================= */

    /* Menü AÇIK Durumu (.active sınıfı eklendiğinde) */
    .nav-links.active {
        right: 0; /* Menüyü ekranın içine kaydır */
    }

    /* Hamburger Animasyonu (Açıkken Çarpı 'X' olma) */
    .hamburger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.toggle span:nth-child(2) {
        opacity: 0; /* Orta çizgiyi gizle */
    }
    .hamburger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* ... Diğer Hero ve Konteyner Responsive Kodlarınız ... */
}

/* 🚚 Kayan Tır CSS Animasyonu */
.truck-animation-container {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    z-index: 1;
}

.road-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
}

.moving-truck {
    position: absolute;
    bottom: 2px;
    left: -300px;
    display: flex;
    align-items: flex-end;
    animation: driveTruck 18s linear infinite;
}

.truck-body {
    width: 160px;
    height: 45px;
    background-color: #ffffff;
    border: 2px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.truck-logo {
    width: 100%;
    height: auto;
}

.truck-cabin {
    width: 40px;
    height: 35px;
    background-color: #000000;
    border-radius: 0 10px 0 0;
    position: relative;
}

.truck-cabin::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 15px;
    height: 12px;
    background-color: #29abe2;
}

.wheel {
    width: 14px;
    height: 14px;
    background-color: #000000;
    border-radius: 50%;
    border: 2px solid #ffffff;
    position: absolute;
    bottom: -7px;
}

.wheel-1 { left: 20px; }
.wheel-2 { left: 40px; }
.wheel-3 { right: 10px; }

@keyframes driveTruck {
    0% { left: -250px; }
    100% { left: 100%; }
}

/* Ortak Alan Ayarları */
section {
    padding: 100px 8%;
    border-bottom: 1px solid #f0f0f0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: #29abe2;
    margin: 15px auto 0;
}

/* 🌟 Aşağı Kayarken Açılma Animasyonu Sınıfları (Scroll Reveal) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hakkımızda Bölümü */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.about-text p {
    color: #555555;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Hizmetler Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border: 1px solid #000000;
    transition: all 0.3s ease;
}

.secondary-card {
    border-color: #eeeeee;
}

.service-card:hover {
    border-color: #29abe2;
    transform: translateY(-5px);
}

.fleet-subtitle {
    text-align: center;
    margin: 60px 0 30px;
}
/* =========================================
   Hizmetler Bölümü Stilleri (Tüm Kod)
   ========================================= */

.services-section {
    padding: 100px 10%; /* Masaüstünde geniş boşluk */
    background-color: #ffffff;
}

/* Ortak Bölüm Başlığı */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: #29abe2; /* Marka mavisi */
    margin: 15px auto 0;
}

/* 🌟 Responsive Izgara Düzeni (Hizmetler Grid) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Masaüstünde 3 sütun, mobilde otomatik */
    gap: 30px; /* Kartlar arası boşluk */
}

/* Filo Altyazısı */
.fleet-subtitle {
    text-align: center;
    margin: 70px 0 30px;
}

.fleet-subtitle h3 {
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

/* =========================================
   Hizmet Kartı Stilleri
   ========================================= */

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border: 1px solid #000000; /* Minimalist keskin siyah çerçeve */
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; /* Kartların yüksekliğini eşitle */
}

/* İkincil kartlar (Filo) için daha hafif çerçeve */
.secondary-card {
    border-color: #eeeeee;
}

/* Kart Hover Efekti (Minimalist Mavi Vurgu) */
.service-card:hover {
    border-color: #29abe2;
    transform: translateY(-5px); /* Hafif yukarı kalkma */
    box-shadow: 0 10px 20px rgba(41, 171, 226, 0.1);
}

/* 🌟 Resimlerin Taşmasını Önleyen Responsive Kurallar */
.service-card img {
    max-width: 100%; /* Resmi kartın genişliğine hapseder. 🌟 EN ÖNEMLİ KURAL 🌟 */
    height: auto; /* Yükseklik oranını korur, bozulmayı önler */
    width: 100%; /* Resmin konteyneri doldurmasını sağlar (Gerekirse) */
    object-fit: cover; /* Resim farklı oranlara sahipse, bozmadan sığdırır */
    margin-bottom: 25px; /* Altındaki metinle boşluk */
}

/* Kart Başlıkları */
.service-card h3,
.service-card h4 {
    font-size: 20px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Kart Açıklamaları */
.service-card p {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin-top: auto; /* Açıklamayı kartın altına sabitle */
}


/* =========================================
   📱 Mobil Uyumluluk (Media Queries)
   ========================================= */

@media (max-width: 768px) {
    .services-section {
        padding: 70px 5%; /* Mobilde daha dar boşluk */
    }

    /* 🌟 Mobilde Tek Sütun Düzeni */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px; /* Mobilde kart iç boşluğunu azalt */
    }

    .service-card img {
        margin-bottom: 15px;
    }
}
/* Destinasyonlar (Bayraklı Düzen) */
.destinations-section { background-color: #fcfcfc; }
.section-subtitle { margin-top: 10px; color: #666; }

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.country-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 500;
    gap: 12px; /* Bayrak ile metin arası boşluk */
    transition: all 0.3s ease;
}

.country-item .fi {
    font-size: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.country-item:hover {
    border-color: #29abe2;
    color: #29abe2;
}

.all-europe {
    grid-column: 1 / -1;
    background-color: #000000;
    color: #ffffff;
    justify-content: center;
}

/* 🖼️ Sektörler Görsel Kart Yapısı */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.sector-card {
    position: relative;
    height: 180px;
    overflow: hidden;
    border: 1px solid #000000;
}

.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.sector-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.2));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.sector-overlay h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-left: 3px solid #29abe2;
    padding-left: 10px;
}

.sector-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

/* İletişim Form ve Konteyner */
.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.quote-form-container {
    border: 1px solid #000000;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { margin-bottom: 20px; }
label { display: block; font-size: 14px; margin-bottom: 5px; font-weight: 500; }
input, select, textarea { width: 100%; padding: 12px; border: 1px solid #ccc; font-size: 15px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: #29abe2; }

.btn-submit {
    background-color: #29abe2; color: #ffffff; border: none;
    padding: 15px 30px; font-size: 16px; font-weight: 700;
    cursor: pointer; width: 100%; transition: background-color 0.3s;
}

.btn-submit:hover { background-color: #000000; }
.contact-info-container { display: flex; flex-direction: column; justify-content: space-between; }
.info-block { margin-bottom: 25px; }
.info-block h4 { color: #29abe2; font-size: 16px; margin-bottom: 2px; }
.email-block a { color: #000000; font-weight: 700; text-decoration: none; }
.email-block a:hover { color: #29abe2; }
.main-footer { background-color: #000000; color: #ffffff; text-align: center; padding: 30px; font-size: 14px; }

/* 📱 %100 MOBİL UYUMLULUK AYARLARI (Media Queries) */
@media (max-width: 968px) {
    .navbar { padding: 15px 5%; }
    .hamburger { display: flex; } /* Hamburger menüyü aç */
    
    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%; /* Gizli başla */
        width: 70%;
        height: calc(100vh - 75px);
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top
		
		
		/* =========================================
   Hizmetler ve İletişim Bölümü Stilleri
   ========================================= */

.contact-section {
    padding: 100px 10%; /* Masaüstünde geniş boşluk */
    background-color: #f9f9f9; /* Hafif gri arka plan */
}

/* Ana Konteyner - Dikey Hiyerarşi */
.contact-page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Bloklar, form ve harita arası dikey boşluk */
}

/* Ortak Kart Tasarımı (Minimalist Keskin Hatlar) */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border: 1px solid #000000; /* Minimalist siyah keskin çerçeve */
    border-radius: 0px; /* Keskin hatlar */
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

/* Hover Efekti (Marka Mavisi Vurgu) */
.contact-card:hover {
    border-color: #29abe2;
    transform: translateY(-3px);
}


/* =========================================
   1. İletişim Blokları (4'lü Düzen)
   ========================================= */

.contact-blocks-grid {
    display: grid;
    /* Masaüstünde 4 sütun yan yana. Mobilde otomatik tek sütun olacak. */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; /* Bloklar arası boşluk */
}

/* Blok İçi Detaylar */
.info-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-block h4 {
    font-size: 16px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.info-block p {
    color: #333333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.icon-block {
    font-size: 30px;
    color: #29abe2;
    margin-bottom: 20px;
}

/* Konum Al Butonu (Mavi) */
.btn-block-action {
    display: inline-block;
    text-decoration: none;
    background-color: #29abe2;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.btn-block-action:hover {
    background-color: #000000;
}


/* =========================================
   2. Teklif Formu (Tam Genişlik)
   ========================================= */

.quote-form-container h3 {
    text-align: center;
    margin-bottom: 30px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1; /* Sütunları eşit genişlikte yap */
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 0px;
    font-size: 15px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #29abe2;
}

.btn-submit {
    background-color: #29abe2;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #000000;
}


/* =========================================
   3. Google Harita (Tam Genişlik)
   ========================================= */

.map-container h3 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 400px; /* Masaüstünde sabit yükseklik */
    border: 1px solid #eeeeee;
}


/* =========================================
   📱 Mobil Uyumluluk (Media Queries)
   ========================================= */

@media (max-width: 968px) {
    .contact-section {
        padding: 70px 5%; /* Mobilde dar boşluk */
    }
}

@media (max-width: 768px) {
    /* Blokları, formu ve haritayı alt alta koy */
    .contact-page-wrapper {
        gap: 30px;
    }

    /* Mobilde dikey dikey sığmayan gridleri tek sütun yap */
    .contact-blocks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Form sütunlarını (inputları) mobilde alt alta koy */
    .form-row {
        flex-direction: column;
        gap: 0px;
    }

    .contact-card {
        padding: 30px 20px; /* Mobilde iç boşluğu azalt */
    }

    .map-container iframe {
        height: 300px; /* Mobilde haritayı kısalt */
    }
}