/* Kamyon Yönetimi CSS */

/* Genel Stiller */
.kamyon-detay-container,
.kamyon-archive-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.kamyon-container {
    margin: 20px 0;
}

/* Kart Görünümü */
.kamyon-kart {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.kamyon-hero {
    background: linear-gradient(135deg, #009246 0%, #ffffff 50%, #ce2b37 100%) !important;
}

.kamyon-kart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.kamyon-kart .kamyon-resim {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.kamyon-kart .kamyon-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kamyon-bilgiler {
    padding: 20px;
}

.kamyon-baslik {
    margin: 0 0 15px 0;
    font-size: 1.5em;
    color: #333;
}

.kamyon-baslik a {
    text-decoration: none;
    color: inherit;
}

.kamyon-baslik a:hover {
    color: #0073aa;
}

.kamyon-plaka,
.kamyon-durum,
.kamyon-yuk,
.kamyon-guzergah {
    margin: 8px 0;
    font-size: 14px;
}

/* Durum Badge'leri */
.durum-badge,
.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.durum-aktif { background: #28a745; color: white; }
.durum-bakim { background: #ffc107; color: #000; }
.durum-ariza { background: #dc3545; color: white; }
.durum-kaza { background: #6c757d; color: white; }

/* Aksiyon Butonları */
.kamyon-aksiyonlar {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.detay-btn,
.teklif-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.detay-btn {
    background-color: #0073aa;
    color: white;
}

.detay-btn:hover {
    background-color: #005a87;
    color: white;
}

.teklif-btn {
    background-color: #28a745;
    color: white;
}

.teklif-btn:hover {
    background-color: #218838;
}

.teklif-btn.disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

/* Kart Görünümü için Grid Layout */
.kamyon-kart {
    display: block;
    width: 100%;
}

@media (min-width: 768px) {
    .kamyon-container.kamyon-kart {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

/* Liste Görünümü */
.kamyon-liste-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #fff;
}

.kamyon-liste-bilgi h4 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
}

.kamyon-liste-bilgi h4 a {
    text-decoration: none;
    color: #333;
}

.kamyon-liste-bilgi h4 a:hover {
    color: #0073aa;
}

.kamyon-liste-bilgi span {
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
}

.kamyon-liste-aksiyonlar {
    flex-shrink: 0;
}

/* Tablo Görünümü */
.kamyon-tablo {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.kamyon-tablo th,
.kamyon-tablo td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.kamyon-tablo th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #495057;
}

.kamyon-tablo tr:hover {
    background-color: #f8f9fa;
}

.kamyon-tablo a {
    text-decoration: none;
    color: #0073aa;
}

.kamyon-tablo a:hover {
    text-decoration: underline;
}

.teklif-pasif {
    color: #6c757d;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kamyon-liste-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .kamyon-liste-aksiyonlar {
        margin-top: 10px;
        width: 100%;
    }
    
    .kamyon-tablo {
        font-size: 14px;
    }
    
    .kamyon-tablo th,
    .kamyon-tablo td {
        padding: 8px;
    }
}

/* Teklif Modal */
.teklif-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.teklif-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: none;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.teklif-modal-close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1000;
}

.teklif-modal-close:hover,
.teklif-modal-close:focus {
    color: #000;
}

.teklif-modal h2 {
    margin: 0 0 25px 0;
    color: #333;
    font-size: 24px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #007bff;
}

.teklif-form {
    margin-top: 20px;
}

.teklif-form .form-group {
    margin-bottom: 20px;
}

.teklif-form .form-row {
    display: flex;
    gap: 15px;
}

.teklif-form .form-row .form-group {
    flex: 1;
}

.teklif-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.teklif-form input,
.teklif-form textarea,
.teklif-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.teklif-form textarea {
    resize: vertical;
    min-height: 80px;
}

.teklif-form input:focus,
.teklif-form textarea:focus,
.teklif-form select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.teklif-gonder-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.teklif-gonder-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.teklif-gonder-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loading ve Success Mesajları */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    font-weight: 500;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    font-weight: 500;
}

body.modal-open {
    overflow: hidden;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .teklif-modal-content {
        margin: 10px;
        width: auto;
        padding: 20px;
    }
    
    .teklif-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Güzergah Şehir Butonları */
.guzergah-sehirler {
    margin: 15px 0;
}

.guzergah-sehir-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 8px 0;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.guzergah-sehir-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.guzergah-sehir-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guzergah-sehir-icon {
    font-size: 18px;
}

.guzergah-sehir-name {
    font-weight: 600;
    color: #2c3e50;
}

.guzergah-sehir-teklif {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guzergah-sehir-teklif:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Güzergah Harita Çizgisi */
.guzergah-yol-cizgisi {
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #007bff, #0056b3);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.guzergah-yol-cizgisi::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border: 2px solid #007bff;
    border-radius: 50%;
}



/* Kamyon Detay Sayfası Stilleri */
.kamyon-detay-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Dil Değiştirici */
.kamyon-language-bar {
    text-align: right;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.kamyon-language-switcher select {
    background: white;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.kamyon-language-switcher select:hover {
    background: #007bff;
    color: white;
}

/* Hero Section */
.kamyon-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-title {
    font-size: 32px;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.hero-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.hero-plaka {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.progress-bar-hero {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill-hero {
    height: 100%;
    background: #28a745;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.progress-text-hero {
    font-size: 14px;
    opacity: 0.9;
}

.hero-gorsel {
    text-align: center;
}

.hero-logo-container {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.hero-marka-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 15px;
    background: white;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 15px;
}

.hero-marka-adi {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-logo-placeholder {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255,255,255,0.3);
}

.placeholder-logo {
    font-size: 80px;
    display: block;
    margin-bottom: 15px;
    opacity: 0.7;
}

.placeholder-text {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-gorsel-container {
    position: relative;
    text-align: center;
}

.marka-logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255,255,255,0.95);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.marka-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 4px;
}

.marka-adi {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
}

.hero-placeholder {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 2px dashed rgba(255,255,255,0.3);
}

.hero-teklif-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.hero-teklif-btn:hover:not(.disabled) {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.hero-teklif-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
    box-shadow: none;
}

/* Content Layout */
.kamyon-detay-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.card-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 10px;
}

/* Kamyon Bilgileri */
.bilgi-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

.bilgi-item:last-child {
    border-bottom: none;
}

.bilgi-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.bilgi-text {
    flex: 1;
}

.bilgi-label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.bilgi-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #6c757d;
}

/* Güzergah */
.guzergah-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

.guzergah-item:last-child {
    border-bottom: none;
}

.guzergah-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
    margin-top: 2px;
}

.guzergah-text {
    flex: 1;
}

.guzergah-label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.guzergah-value {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.guzergah-saat {
    display: block;
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
    margin-top: 3px;
}

/* Şehir Detayları */
.sehir-detay {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sehir-varis-saati {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
}

.sehir-mesafe {
    font-size: 11px;
    color: #6c757d;
}

.sehir-durma {
    font-size: 11px;
    color: #17a2b8;
    font-weight: 500;
}

/* Güzergah Şehir Butonları */
.guzergah-sehirler {
    margin: 15px 0;
}

.guzergah-sehir-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 8px 0;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.guzergah-sehir-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.guzergah-sehir-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guzergah-sehir-icon {
    font-size: 18px;
}

.guzergah-sehir-name {
    font-weight: 600;
    color: #2c3e50;
}

.guzergah-sehir-teklif {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guzergah-sehir-teklif:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Güzergah Harita Çizgisi */
.guzergah-yol-cizgisi {
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #007bff, #0056b3);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.guzergah-yol-cizgisi::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border: 2px solid #007bff;
    border-radius: 50%;
}

/* Yolculuk Bilgileri */
.yolculuk-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.yolculuk-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.yolculuk-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.yolculuk-text {
    flex: 1;
}

.yolculuk-label {
    display: block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.yolculuk-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* Harita */
.kamyon-map {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Sağ Panel */
.teklif-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #dee2e6;
}

.teklif-aktif {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #d4edda;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #28a745;
}

.teklif-pasif {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8d7da;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #dc3545;
}

.teklif-icon {
    font-size: 20px;
}

.teklif-text {
    font-weight: 500;
}

.teklif-btn-full {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.teklif-btn-full:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.teklif-sebep {
    padding: 10px;
    background: #fff3cd;
    border-radius: 5px;
    border-left: 3px solid #ffc107;
}

/* İletişim */
.iletisim-butonlar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.iletisim-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.iletisim-btn.telefon {
    background: #007bff;
    color: white;
}

.iletisim-btn.email {
    background: #28a745;
    color: white;
}

.iletisim-btn.whatsapp {
    background: #25d366;
    color: white;
}

.iletisim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.durum-aktif { background: #28a745; color: white; }
.durum-bakimda { background: #ffc107; color: #000; }
.durum-arizali { background: #dc3545; color: white; }
.durum-kazali { background: #6c757d; color: white; }

/* Teklif Modal Stilleri */
.teklif-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.teklif-modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
    z-index: 1000000;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.modal-close {
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 1;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    padding: 30px 20px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.step {
    display: flex;
    align-items: center;
    margin: 0 20px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
    color: #28a745;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #007bff;
    color: white;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-label {
    font-weight: 600;
    font-size: 14px;
}

/* Form Styles */
.form-step {
    display: none;
    padding: 30px;
}

.form-step.active {
    display: block;
}

.form-step h4 {
    margin: 0 0 25px 0;
    font-size: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.form-group input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    transform: scale(1.2);
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    border-top: 1px solid #e9ecef;
    margin-top: 30px;
}

.btn-next,
.btn-prev,
.btn-submit {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-next {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    margin-left: auto;
}

.btn-next:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

.btn-prev {
    background: #6c757d;
    color: white;
}

.btn-prev:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40,167,69,0.3);
}

.btn-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .kamyon-detay-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .kamyon-detay-container {
        padding: 10px;
    }
    
    .kamyon-map {
        height: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Modal body scroll engelleme */
body.modal-open {
    overflow: hidden;
}

/* ==========================
   Single Kamyon Card (Shortcode)
   ========================== */
.kamyon-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.kamyon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.kamyon-card .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.kamyon-card .kamyon-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kamyon-card:hover .kamyon-thumb {
    transform: scale(1.05);
}

.kamyon-card .no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f8f9fa;
    color: #6c757d;
}

.kamyon-card .card-image .brand-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.kamyon-card .card-image .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}



.kamyon-card .teklif-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.kamyon-card .card-content {
    padding: 20px;
}

.kamyon-card .card-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid #eef1f5;
}

.kamyon-card .card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kamyon-card .card-title a:hover {
    color: #007bff;
}

.kamyon-card .kamyon-plaka {
    color: #6c757d;
    font-size: 14px;
    margin: 0 0 15px 0;
    font-weight: 500;
}

/* ID chip */
.kamyon-card .id-chip { display: inline-flex; align-items: center; gap: 6px; }
.kamyon-card .id-chip-badge { display:inline-block; background:#e9d8fd; color:#6b21a8; font-weight:700; font-size:11px; padding:2px 6px; border-radius:6px; }

.kamyon-card .route-info {
    margin: 15px 0;
}


.kamyon-card .route-line { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; font-size:12px; color:#4a5568; }
.kamyon-card .route-icon { opacity:.9; margin-right:4px; }

.kamyon-card .route-start,
.kamyon-card .route-end {
    flex: 1;
    min-width: 80px;
}

.kamyon-card .route-arrow {
    color: #007bff;
    font-weight: bold;
}

.kamyon-card .load-info { margin: 15px 0; }
.kamyon-card .load-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}
.kamyon-card .load-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 3px;
    transition: width 0.3s ease;
}
.kamyon-card .load-text { font-size: 12px; color: #6c757d; }

.kamyon-card .card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.kamyon-card .btn-detail,
.kamyon-card .btn-quote {
    flex: 1;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kamyon-card .btn-detail {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}
.kamyon-card .btn-detail:hover { background: #e9ecef; transform: translateY(-2px); }

.kamyon-card .btn-quote {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}
.kamyon-card .btn-quote:hover { background: linear-gradient(135deg, #218838, #1e7e34); transform: translateY(-2px); }

.kamyon-card .btn-disabled {
    flex: 1;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    background: #fff5f5;
    color: #dc2626;
    border: 1px solid #fecaca;
}
